Hal Finkel via llvm-dev
2018-Jul-11 02:01 UTC
[llvm-dev] [RFC] A nofree (and nosynch) function attribute: Mixing dereferenceable and delete
Hi, everyone, I'd like to propose adding a nofree function attribute to indicate that a function does not, directly or indirectly, call a memory-deallocation function (e.g., free, C++'s operator delete). Clang/LLVM can currently misoptimize functions that: 1. Have a reference argument. 2. Free the memory backing the object to which the reference is bound during the function's execution. Because we tag, in Clang, all reference arguments using the dereferenceable attribute, LLVM assumes that the pointer is unconditionally dereferenceable throughout the course of the entire function. This isn't true, however, if the memory is freed during the execution of the function. For more information, please see the discussion in https://reviews.llvm.org/D48239. To solve this problem, we need to give LLVM more information in order to help it determine when a pointer, which is dereferenceable when the functions begins to execute, will still be dereferenceable later on in the function's execution. This nofree attribute can be part of that solution. If we know that free (and friends) are not called by the function (nor by any function called by the function, and so on), then we know that pointers that started out dereferenceable will stay that way (except as explained below). I'm initially proposing this to be only a function attribute, although one could easily imagine a parameter attribute as well (that indicates that a particular pointer argument is not freed by the function). This might be useful, but for the use case of helping dereferenceable, it would be subtle to use, unless the parameter was also marked as noalias, because you'd need to know that the parameter was not also aliased with another argument (or had not been captured). Another analysis would need to provide this kind of information. Also, just because a function does not, directly or indirectly, call free does not mean that it cannot cause memory to be deallocated. The function might communicate (synchronize) with another thread causing that other thread to delete the memory. For this reason, to use dereferenceable as we currently do, we also need to know that the function does not synchronize with any other threads. To solve this problem, like nofree, I propose to add a nosynch attribute (to indicate that a function does not use (non-relaxed) atomics or otherwise synchronize with any other threads (e.g., perform I/O or, as a practical matter, use volatile accesses). I've posted a patch for the nofree attribute (https://reviews.llvm.org/D49165). nosynch's implementation would be very similar (except instead of looking for calls to free, it would look for uses of non-relaxed atomics, volatile ops, and known functions that are not I/O functions). With both of these attributes (nofree and nosynch), a function argument with the dereferenceable attribute will be known to be dereferenceable throughout the execution of the attributed function. We can update isDereferenceableAndAlignedPointer to include these additional checks on the current function. One more choice we have: We can, as I proposed above, essentially weaken the current semantics of dereferenceable to not exclude mid-function-execution deallocation. We can also add a second attribute with the current, stronger, semantics. We can keep the current attribute as-is, and add a second attribute with the weaker semantics (and switch Clang to use that). Please let me know what you think. Thanks again, Hal -- Hal Finkel Lead, Compiler Technology and Programming Languages Leadership Computing Facility Argonne National Laboratory
Dean Michael Berris via llvm-dev
2018-Jul-11 02:12 UTC
[llvm-dev] [RFC] A nofree (and nosynch) function attribute: Mixing dereferenceable and delete
Hi Hal, I'm interested in this functionality and the overall idea of inferring things from the function body to turn into attributes. I'm looking at this from the XRay instrumentation angle. Overall, this is a +1 from me. Some questions below though: On Wed, Jul 11, 2018 at 12:01 PM Hal Finkel via llvm-dev <llvm-dev at lists.llvm.org> wrote:> > Hi, everyone, > > I'd like to propose adding a nofree function attribute to indicate that > a function does not, directly or indirectly, call a memory-deallocation > function (e.g., free, C++'s operator delete). Clang/LLVM can currently > misoptimize functions that: > > 1. Have a reference argument. > > 2. Free the memory backing the object to which the reference is bound > during the function's execution. > > Because we tag, in Clang, all reference arguments using the > dereferenceable attribute, LLVM assumes that the pointer is > unconditionally dereferenceable throughout the course of the entire > function. This isn't true, however, if the memory is freed during the > execution of the function. For more information, please see the > discussion in https://reviews.llvm.org/D48239. > > To solve this problem, we need to give LLVM more information in order to > help it determine when a pointer, which is dereferenceable when the > functions begins to execute, will still be dereferenceable later on in > the function's execution. This nofree attribute can be part of that > solution. If we know that free (and friends) are not called by the > function (nor by any function called by the function, and so on), then > we know that pointers that started out dereferenceable will stay that > way (except as explained below). > > I'm initially proposing this to be only a function attribute, although > one could easily imagine a parameter attribute as well (that indicates > that a particular pointer argument is not freed by the function). This > might be useful, but for the use case of helping dereferenceable, it > would be subtle to use, unless the parameter was also marked as noalias, > because you'd need to know that the parameter was not also aliased with > another argument (or had not been captured). Another analysis would need > to provide this kind of information. > > Also, just because a function does not, directly or indirectly, call > free does not mean that it cannot cause memory to be deallocated. The > function might communicate (synchronize) with another thread causing > that other thread to delete the memory. For this reason, to use > dereferenceable as we currently do, we also need to know that the > function does not synchronize with any other threads. To solve this > problem, like nofree, I propose to add a nosynch attribute (to indicate > that a function does not use (non-relaxed) atomics or otherwise > synchronize with any other threads (e.g., perform I/O or, as a practical > matter, use volatile accesses). >How far does the attribute go? For example, does it propagate up the caller stack? This might be a basic IR question but I suppose this only works for definitions in the same module -- I wonder whether the attribute can be asserted/added in the declarations, and ensured that somehow at link-time the attribute holds. For example, while we might assume that a function declaration says `nofree` today but the implementation might actually change to do something else, how we might be able to guard against this. Will this also extend/change the default attributes that are defined for the intrinsics? XRay has a couple of intrinsics that have a number of attributes, and I imagine some other intrinsics for the sanitizers would need to learn about the attribute as well. How extensive do we expect changes like this to be handled when doing things like inlining, outlining, partial-inlining, etc.? Is the default assumption going to be that a function that isn't marked `nofree` *will* free and pessimize that way? Does it make more sense then to make an attribute that's positive, say 'frees' and relax the default assumption to "does not free"?> I've posted a patch for the nofree attribute > (https://reviews.llvm.org/D49165). nosynch's implementation would be > very similar (except instead of looking for calls to free, it would look > for uses of non-relaxed atomics, volatile ops, and known functions that > are not I/O functions). > > With both of these attributes (nofree and nosynch), a function argument > with the dereferenceable attribute will be known to be dereferenceable > throughout the execution of the attributed function. We can update > isDereferenceableAndAlignedPointer to include these additional checks on > the current function. > > One more choice we have: We can, as I proposed above, essentially weaken > the current semantics of dereferenceable to not exclude > mid-function-execution deallocation. We can also add a second attribute > with the current, stronger, semantics. We can keep the current attribute > as-is, and add a second attribute with the weaker semantics (and switch > Clang to use that). > > Please let me know what you think. >I've not worked out the full matrix of possibilities here in my head yet, but what are the risks with relaxing the default semantics then introducing the stronger attributes? Maybe you or someone has thought that through before, and it would be great to have a summary or an idea what the pros/cons are of doing that instead of attempting to infer non-freeing behaviour. Cheers -- Dean
Hal Finkel via llvm-dev
2018-Jul-11 02:37 UTC
[llvm-dev] [RFC] A nofree (and nosynch) function attribute: Mixing dereferenceable and delete
On 07/10/2018 09:12 PM, Dean Michael Berris wrote:> Hi Hal, > > I'm interested in this functionality and the overall idea of inferring > things from the function body to turn into attributes. I'm looking at > this from the XRay instrumentation angle. > > Overall, this is a +1 from me. Some questions below though: > > On Wed, Jul 11, 2018 at 12:01 PM Hal Finkel via llvm-dev > <llvm-dev at lists.llvm.org> wrote: >> Hi, everyone, >> >> I'd like to propose adding a nofree function attribute to indicate that >> a function does not, directly or indirectly, call a memory-deallocation >> function (e.g., free, C++'s operator delete). Clang/LLVM can currently >> misoptimize functions that: >> >> 1. Have a reference argument. >> >> 2. Free the memory backing the object to which the reference is bound >> during the function's execution. >> >> Because we tag, in Clang, all reference arguments using the >> dereferenceable attribute, LLVM assumes that the pointer is >> unconditionally dereferenceable throughout the course of the entire >> function. This isn't true, however, if the memory is freed during the >> execution of the function. For more information, please see the >> discussion in https://reviews.llvm.org/D48239. >> >> To solve this problem, we need to give LLVM more information in order to >> help it determine when a pointer, which is dereferenceable when the >> functions begins to execute, will still be dereferenceable later on in >> the function's execution. This nofree attribute can be part of that >> solution. If we know that free (and friends) are not called by the >> function (nor by any function called by the function, and so on), then >> we know that pointers that started out dereferenceable will stay that >> way (except as explained below). >> >> I'm initially proposing this to be only a function attribute, although >> one could easily imagine a parameter attribute as well (that indicates >> that a particular pointer argument is not freed by the function). This >> might be useful, but for the use case of helping dereferenceable, it >> would be subtle to use, unless the parameter was also marked as noalias, >> because you'd need to know that the parameter was not also aliased with >> another argument (or had not been captured). Another analysis would need >> to provide this kind of information. >> >> Also, just because a function does not, directly or indirectly, call >> free does not mean that it cannot cause memory to be deallocated. The >> function might communicate (synchronize) with another thread causing >> that other thread to delete the memory. For this reason, to use >> dereferenceable as we currently do, we also need to know that the >> function does not synchronize with any other threads. To solve this >> problem, like nofree, I propose to add a nosynch attribute (to indicate >> that a function does not use (non-relaxed) atomics or otherwise >> synchronize with any other threads (e.g., perform I/O or, as a practical >> matter, use volatile accesses). >> > How far does the attribute go? For example, does it propagate up the > caller stack? > > This might be a basic IR question but I suppose this only works for > definitions in the same module -- I wonder whether the attribute can > be asserted/added in the declarations, and ensured that somehow at > link-time the attribute holds. For example, while we might assume that > a function declaration says `nofree` today but the implementation > might actually change to do something else, how we might be able to > guard against this.Currently, we can only infer in the same module, and only when we have a definitive implementation. inline linkage, and similar, doesn't count (for all the same reasons why we generally can't do IPA over inline-linkage functions). If we add a user-level attribute in Clang (and I do generally like exposing these kinds of things to the user too), then it's the user's responsibility to make sure that the attributes remain semantically correct.> > Will this also extend/change the default attributes that are defined > for the intrinsics? XRay has a couple of intrinsics that have a number > of attributes, and I imagine some other intrinsics for the sanitizers > would need to learn about the attribute as well.We can certainly add these for intrinsics. Nearly everything intrinsic that writes to memory could be usefully marked.> > How extensive do we expect changes like this to be handled when doing > things like inlining, outlining, partial-inlining, etc.?I don't envision this being any different from most other attributes. They're lost when inlining, and we can infer them -- We don't currently infer late to handle late outlining, etc., but could change that, as an orthogonal matter, if we'd like (maybe functions created as a result of partial inlining could benefit from this today).> > Is the default assumption going to be that a function that isn't > marked `nofree` *will* free and pessimize that way? Does it make more > sense then to make an attribute that's positive, say 'frees' and relax > the default assumption to "does not free"?The default for unknown functions needs to be that they might free memory. Otherwise, it's not conservatively correct.> >> I've posted a patch for the nofree attribute >> (https://reviews.llvm.org/D49165). nosynch's implementation would be >> very similar (except instead of looking for calls to free, it would look >> for uses of non-relaxed atomics, volatile ops, and known functions that >> are not I/O functions). >> >> With both of these attributes (nofree and nosynch), a function argument >> with the dereferenceable attribute will be known to be dereferenceable >> throughout the execution of the attributed function. We can update >> isDereferenceableAndAlignedPointer to include these additional checks on >> the current function. >> >> One more choice we have: We can, as I proposed above, essentially weaken >> the current semantics of dereferenceable to not exclude >> mid-function-execution deallocation. We can also add a second attribute >> with the current, stronger, semantics. We can keep the current attribute >> as-is, and add a second attribute with the weaker semantics (and switch >> Clang to use that). >> >> Please let me know what you think. >> > I've not worked out the full matrix of possibilities here in my head > yet, but what are the risks with relaxing the default semantics then > introducing the stronger attributes?Benefits: Current IR produced by Clang becomes conservatively correct. No changes to Clang's codegen are necessary (minor). Downsides: Other frontends producing the attribute in a currently-correct way now need to change to a new attribute to retain current behavior. If we introduce a new attribute with the weaker semantics, then: Benefits: Currently-correct IR remains unchanged and will continue to be optimized strongly. Downsides: Older IR produced by Clang will remain incorrect. Clang's codegen will need to be updated (minor). I don't have sufficient knowledge of non-Clang usage of the attribute to have a strong opinion. I'm happy to add a new weaker attribute, we just need to figure out what to name it. deferenceable_entry, perhaps?> Maybe you or someone has thought > that through before, and it would be great to have a summary or an > idea what the pros/cons are of doing that instead of attempting to > infer non-freeing behaviour.I think that we need to infer regardless to get optimizations going forward. Thanks again, Hal> > Cheers >-- Hal Finkel Lead, Compiler Technology and Programming Languages Leadership Computing Facility Argonne National Laboratory
Artur Pilipenko via llvm-dev
2018-Jul-11 09:07 UTC
[llvm-dev] [RFC] A nofree (and nosynch) function attribute: Mixing dereferenceable and delete
It looks like the current proposal doesn’t allow to express the semantics of GC managed pointers. In this scenario functions don’t deallocate. We might be able to mark every single function as nofree, but nosynch part is problematic. We do have functions which synchronize with other threads but it doesn’t change the property that no function call can invalidate a reference. With that in mind the alternative with a new attribute looks like a better option for me. But I haven't given it much thought. Artur> On 11 Jul 2018, at 05:01, Hal Finkel via llvm-dev <llvm-dev at lists.llvm.org> wrote: > > Hi, everyone, > > I'd like to propose adding a nofree function attribute to indicate that > a function does not, directly or indirectly, call a memory-deallocation > function (e.g., free, C++'s operator delete). Clang/LLVM can currently > misoptimize functions that: > > 1. Have a reference argument. > > 2. Free the memory backing the object to which the reference is bound > during the function's execution. > > Because we tag, in Clang, all reference arguments using the > dereferenceable attribute, LLVM assumes that the pointer is > unconditionally dereferenceable throughout the course of the entire > function. This isn't true, however, if the memory is freed during the > execution of the function. For more information, please see the > discussion in https://reviews.llvm.org/D48239. > > To solve this problem, we need to give LLVM more information in order to > help it determine when a pointer, which is dereferenceable when the > functions begins to execute, will still be dereferenceable later on in > the function's execution. This nofree attribute can be part of that > solution. If we know that free (and friends) are not called by the > function (nor by any function called by the function, and so on), then > we know that pointers that started out dereferenceable will stay that > way (except as explained below). > > I'm initially proposing this to be only a function attribute, although > one could easily imagine a parameter attribute as well (that indicates > that a particular pointer argument is not freed by the function). This > might be useful, but for the use case of helping dereferenceable, it > would be subtle to use, unless the parameter was also marked as noalias, > because you'd need to know that the parameter was not also aliased with > another argument (or had not been captured). Another analysis would need > to provide this kind of information. > > Also, just because a function does not, directly or indirectly, call > free does not mean that it cannot cause memory to be deallocated. The > function might communicate (synchronize) with another thread causing > that other thread to delete the memory. For this reason, to use > dereferenceable as we currently do, we also need to know that the > function does not synchronize with any other threads. To solve this > problem, like nofree, I propose to add a nosynch attribute (to indicate > that a function does not use (non-relaxed) atomics or otherwise > synchronize with any other threads (e.g., perform I/O or, as a practical > matter, use volatile accesses). > > I've posted a patch for the nofree attribute > (https://reviews.llvm.org/D49165). nosynch's implementation would be > very similar (except instead of looking for calls to free, it would look > for uses of non-relaxed atomics, volatile ops, and known functions that > are not I/O functions). > > With both of these attributes (nofree and nosynch), a function argument > with the dereferenceable attribute will be known to be dereferenceable > throughout the execution of the attributed function. We can update > isDereferenceableAndAlignedPointer to include these additional checks on > the current function. > > One more choice we have: We can, as I proposed above, essentially weaken > the current semantics of dereferenceable to not exclude > mid-function-execution deallocation. We can also add a second attribute > with the current, stronger, semantics. We can keep the current attribute > as-is, and add a second attribute with the weaker semantics (and switch > Clang to use that). > > Please let me know what you think. > > Thanks again, > > Hal > > -- > Hal Finkel > Lead, Compiler Technology and Programming Languages > Leadership Computing Facility > Argonne National Laboratory > > _______________________________________________ > LLVM Developers mailing list > llvm-dev at lists.llvm.org > http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev
Sanjoy Das via llvm-dev
2018-Jul-11 13:29 UTC
[llvm-dev] [RFC] A nofree (and nosynch) function attribute: Mixing dereferenceable and delete
I'm not sure if nosynch is sufficient. What if we had: void f(int& x) { if (false) { int r0 = x; } } // other thread free(<pointer to x>); The source program is race free, but LLVM may speculate the read from x (seeing that it is dereferenceable) creating a race. -- Sanjoy On Tue, Jul 10, 2018 at 7:01 PM Hal Finkel via llvm-dev <llvm-dev at lists.llvm.org> wrote:> > Hi, everyone, > > I'd like to propose adding a nofree function attribute to indicate that > a function does not, directly or indirectly, call a memory-deallocation > function (e.g., free, C++'s operator delete). Clang/LLVM can currently > misoptimize functions that: > > 1. Have a reference argument. > > 2. Free the memory backing the object to which the reference is bound > during the function's execution. > > Because we tag, in Clang, all reference arguments using the > dereferenceable attribute, LLVM assumes that the pointer is > unconditionally dereferenceable throughout the course of the entire > function. This isn't true, however, if the memory is freed during the > execution of the function. For more information, please see the > discussion in https://reviews.llvm.org/D48239. > > To solve this problem, we need to give LLVM more information in order to > help it determine when a pointer, which is dereferenceable when the > functions begins to execute, will still be dereferenceable later on in > the function's execution. This nofree attribute can be part of that > solution. If we know that free (and friends) are not called by the > function (nor by any function called by the function, and so on), then > we know that pointers that started out dereferenceable will stay that > way (except as explained below). > > I'm initially proposing this to be only a function attribute, although > one could easily imagine a parameter attribute as well (that indicates > that a particular pointer argument is not freed by the function). This > might be useful, but for the use case of helping dereferenceable, it > would be subtle to use, unless the parameter was also marked as noalias, > because you'd need to know that the parameter was not also aliased with > another argument (or had not been captured). Another analysis would need > to provide this kind of information. > > Also, just because a function does not, directly or indirectly, call > free does not mean that it cannot cause memory to be deallocated. The > function might communicate (synchronize) with another thread causing > that other thread to delete the memory. For this reason, to use > dereferenceable as we currently do, we also need to know that the > function does not synchronize with any other threads. To solve this > problem, like nofree, I propose to add a nosynch attribute (to indicate > that a function does not use (non-relaxed) atomics or otherwise > synchronize with any other threads (e.g., perform I/O or, as a practical > matter, use volatile accesses). > > I've posted a patch for the nofree attribute > (https://reviews.llvm.org/D49165). nosynch's implementation would be > very similar (except instead of looking for calls to free, it would look > for uses of non-relaxed atomics, volatile ops, and known functions that > are not I/O functions). > > With both of these attributes (nofree and nosynch), a function argument > with the dereferenceable attribute will be known to be dereferenceable > throughout the execution of the attributed function. We can update > isDereferenceableAndAlignedPointer to include these additional checks on > the current function. > > One more choice we have: We can, as I proposed above, essentially weaken > the current semantics of dereferenceable to not exclude > mid-function-execution deallocation. We can also add a second attribute > with the current, stronger, semantics. We can keep the current attribute > as-is, and add a second attribute with the weaker semantics (and switch > Clang to use that). > > Please let me know what you think. > > Thanks again, > > Hal > > -- > Hal Finkel > Lead, Compiler Technology and Programming Languages > Leadership Computing Facility > Argonne National Laboratory > > _______________________________________________ > LLVM Developers mailing list > llvm-dev at lists.llvm.org > http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev
Hal Finkel via llvm-dev
2018-Jul-11 23:12 UTC
[llvm-dev] [RFC] A nofree (and nosynch) function attribute: Mixing dereferenceable and delete
[+Richard] On 07/11/2018 08:29 AM, Sanjoy Das wrote:> I'm not sure if nosynch is sufficient. What if we had: > > void f(int& x) { > if (false) { > int r0 = x; > } > } > > // other thread > free(<pointer to x>); > > The source program is race free, but LLVM may speculate the read from > x (seeing that it is dereferenceable) creating a race.Interestingly, I'm not sure. I trust that Richard can answer this question. :-) So, if we had: int y = ...; ... f(y); then I think that Clang's use of dereferenceable is almost certainly okay (because the standard explicitly says, 9.2.3.2p5, "A reference shall be initialized to refer to a valid object or function."). Because the reference must have been valid when f(y) began executing, unless it synchronizes somehow with the other thread, any asynchronous deletion of y must be a race. On the other hand, if we have: int &y = ...; ... f(y); do we know that, when f(y) begins executing, the reference points to a valid object? My reading of 9.3.3p2, which says, "Argument passing (7.6.1.2) and function value return (8.6.3) are initializations.", combined with the statement above, implies that, perhaps surprisingly, the same holds here. When the argument to f is initialized, it must refer to a valid object (even if the initializer is another reference). Richard, what do you think? Thanks again, Hal P.S. If I'm right, then I might be happy, but it's also somewhat scary (although we've been doing this optimization for multiple releases and I don't think we have a bug along these lines), and I'd at least smell the need for a sanitizer.> > -- Sanjoy > On Tue, Jul 10, 2018 at 7:01 PM Hal Finkel via llvm-dev > <llvm-dev at lists.llvm.org> wrote: >> Hi, everyone, >> >> I'd like to propose adding a nofree function attribute to indicate that >> a function does not, directly or indirectly, call a memory-deallocation >> function (e.g., free, C++'s operator delete). Clang/LLVM can currently >> misoptimize functions that: >> >> 1. Have a reference argument. >> >> 2. Free the memory backing the object to which the reference is bound >> during the function's execution. >> >> Because we tag, in Clang, all reference arguments using the >> dereferenceable attribute, LLVM assumes that the pointer is >> unconditionally dereferenceable throughout the course of the entire >> function. This isn't true, however, if the memory is freed during the >> execution of the function. For more information, please see the >> discussion in https://reviews.llvm.org/D48239. >> >> To solve this problem, we need to give LLVM more information in order to >> help it determine when a pointer, which is dereferenceable when the >> functions begins to execute, will still be dereferenceable later on in >> the function's execution. This nofree attribute can be part of that >> solution. If we know that free (and friends) are not called by the >> function (nor by any function called by the function, and so on), then >> we know that pointers that started out dereferenceable will stay that >> way (except as explained below). >> >> I'm initially proposing this to be only a function attribute, although >> one could easily imagine a parameter attribute as well (that indicates >> that a particular pointer argument is not freed by the function). This >> might be useful, but for the use case of helping dereferenceable, it >> would be subtle to use, unless the parameter was also marked as noalias, >> because you'd need to know that the parameter was not also aliased with >> another argument (or had not been captured). Another analysis would need >> to provide this kind of information. >> >> Also, just because a function does not, directly or indirectly, call >> free does not mean that it cannot cause memory to be deallocated. The >> function might communicate (synchronize) with another thread causing >> that other thread to delete the memory. For this reason, to use >> dereferenceable as we currently do, we also need to know that the >> function does not synchronize with any other threads. To solve this >> problem, like nofree, I propose to add a nosynch attribute (to indicate >> that a function does not use (non-relaxed) atomics or otherwise >> synchronize with any other threads (e.g., perform I/O or, as a practical >> matter, use volatile accesses). >> >> I've posted a patch for the nofree attribute >> (https://reviews.llvm.org/D49165). nosynch's implementation would be >> very similar (except instead of looking for calls to free, it would look >> for uses of non-relaxed atomics, volatile ops, and known functions that >> are not I/O functions). >> >> With both of these attributes (nofree and nosynch), a function argument >> with the dereferenceable attribute will be known to be dereferenceable >> throughout the execution of the attributed function. We can update >> isDereferenceableAndAlignedPointer to include these additional checks on >> the current function. >> >> One more choice we have: We can, as I proposed above, essentially weaken >> the current semantics of dereferenceable to not exclude >> mid-function-execution deallocation. We can also add a second attribute >> with the current, stronger, semantics. We can keep the current attribute >> as-is, and add a second attribute with the weaker semantics (and switch >> Clang to use that). >> >> Please let me know what you think. >> >> Thanks again, >> >> Hal >> >> -- >> Hal Finkel >> Lead, Compiler Technology and Programming Languages >> Leadership Computing Facility >> Argonne National Laboratory >> >> _______________________________________________ >> LLVM Developers mailing list >> llvm-dev at lists.llvm.org >> http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev-- Hal Finkel Lead, Compiler Technology and Programming Languages Leadership Computing Facility Argonne National Laboratory
Hal Finkel via llvm-dev
2018-Jul-11 23:17 UTC
[llvm-dev] [RFC] A nofree (and nosynch) function attribute: Mixing dereferenceable and delete
On 07/11/2018 04:07 AM, Artur Pilipenko wrote:> It looks like the current proposal doesn’t allow to express the semantics > of GC managed pointers. In this scenario functions don’t deallocate. We > might be able to mark every single function as nofree, but nosynch part is > problematic. We do have functions which synchronize with other threads > but it doesn’t change the property that no function call can invalidate a > reference. > > With that in mind the alternative with a new attribute looks like a better option > for me.Makes sense to me. -Hal> But I haven't given it much thought. > > Artur > >> On 11 Jul 2018, at 05:01, Hal Finkel via llvm-dev <llvm-dev at lists.llvm.org> wrote: >> >> Hi, everyone, >> >> I'd like to propose adding a nofree function attribute to indicate that >> a function does not, directly or indirectly, call a memory-deallocation >> function (e.g., free, C++'s operator delete). Clang/LLVM can currently >> misoptimize functions that: >> >> 1. Have a reference argument. >> >> 2. Free the memory backing the object to which the reference is bound >> during the function's execution. >> >> Because we tag, in Clang, all reference arguments using the >> dereferenceable attribute, LLVM assumes that the pointer is >> unconditionally dereferenceable throughout the course of the entire >> function. This isn't true, however, if the memory is freed during the >> execution of the function. For more information, please see the >> discussion in https://reviews.llvm.org/D48239. >> >> To solve this problem, we need to give LLVM more information in order to >> help it determine when a pointer, which is dereferenceable when the >> functions begins to execute, will still be dereferenceable later on in >> the function's execution. This nofree attribute can be part of that >> solution. If we know that free (and friends) are not called by the >> function (nor by any function called by the function, and so on), then >> we know that pointers that started out dereferenceable will stay that >> way (except as explained below). >> >> I'm initially proposing this to be only a function attribute, although >> one could easily imagine a parameter attribute as well (that indicates >> that a particular pointer argument is not freed by the function). This >> might be useful, but for the use case of helping dereferenceable, it >> would be subtle to use, unless the parameter was also marked as noalias, >> because you'd need to know that the parameter was not also aliased with >> another argument (or had not been captured). Another analysis would need >> to provide this kind of information. >> >> Also, just because a function does not, directly or indirectly, call >> free does not mean that it cannot cause memory to be deallocated. The >> function might communicate (synchronize) with another thread causing >> that other thread to delete the memory. For this reason, to use >> dereferenceable as we currently do, we also need to know that the >> function does not synchronize with any other threads. To solve this >> problem, like nofree, I propose to add a nosynch attribute (to indicate >> that a function does not use (non-relaxed) atomics or otherwise >> synchronize with any other threads (e.g., perform I/O or, as a practical >> matter, use volatile accesses). >> >> I've posted a patch for the nofree attribute >> (https://reviews.llvm.org/D49165). nosynch's implementation would be >> very similar (except instead of looking for calls to free, it would look >> for uses of non-relaxed atomics, volatile ops, and known functions that >> are not I/O functions). >> >> With both of these attributes (nofree and nosynch), a function argument >> with the dereferenceable attribute will be known to be dereferenceable >> throughout the execution of the attributed function. We can update >> isDereferenceableAndAlignedPointer to include these additional checks on >> the current function. >> >> One more choice we have: We can, as I proposed above, essentially weaken >> the current semantics of dereferenceable to not exclude >> mid-function-execution deallocation. We can also add a second attribute >> with the current, stronger, semantics. We can keep the current attribute >> as-is, and add a second attribute with the weaker semantics (and switch >> Clang to use that). >> >> Please let me know what you think. >> >> Thanks again, >> >> Hal >> >> -- >> Hal Finkel >> Lead, Compiler Technology and Programming Languages >> Leadership Computing Facility >> Argonne National Laboratory >> >> _______________________________________________ >> LLVM Developers mailing list >> llvm-dev at lists.llvm.org >> http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev-- Hal Finkel Lead, Compiler Technology and Programming Languages Leadership Computing Facility Argonne National Laboratory
Philip Reames via llvm-dev
2018-Sep-14 22:45 UTC
[llvm-dev] [RFC] A nofree (and nosynch) function attribute: Mixing dereferenceable and delete
Sorry for the late response. Reading over the thread, the general plan expressed seems non-objectionable, but I find myself questioning the premise. Can you give an example or two of how we miscompile such functions? My mental model here is that free conceptually writes an unspecified value to the memory before actually releasing it. With that, I'd expect most obvious miscompiles to be inhibited by memory dependence. Can you provide a concrete example to illustrate why my mental model is broken? Philip On 07/10/2018 07:01 PM, Hal Finkel via llvm-dev wrote:> Hi, everyone, > > I'd like to propose adding a nofree function attribute to indicate that > a function does not, directly or indirectly, call a memory-deallocation > function (e.g., free, C++'s operator delete). Clang/LLVM can currently > misoptimize functions that: > > 1. Have a reference argument. > > 2. Free the memory backing the object to which the reference is bound > during the function's execution. > > Because we tag, in Clang, all reference arguments using the > dereferenceable attribute, LLVM assumes that the pointer is > unconditionally dereferenceable throughout the course of the entire > function. This isn't true, however, if the memory is freed during the > execution of the function. For more information, please see the > discussion in https://reviews.llvm.org/D48239. > > To solve this problem, we need to give LLVM more information in order to > help it determine when a pointer, which is dereferenceable when the > functions begins to execute, will still be dereferenceable later on in > the function's execution. This nofree attribute can be part of that > solution. If we know that free (and friends) are not called by the > function (nor by any function called by the function, and so on), then > we know that pointers that started out dereferenceable will stay that > way (except as explained below). > > I'm initially proposing this to be only a function attribute, although > one could easily imagine a parameter attribute as well (that indicates > that a particular pointer argument is not freed by the function). This > might be useful, but for the use case of helping dereferenceable, it > would be subtle to use, unless the parameter was also marked as noalias, > because you'd need to know that the parameter was not also aliased with > another argument (or had not been captured). Another analysis would need > to provide this kind of information. > > Also, just because a function does not, directly or indirectly, call > free does not mean that it cannot cause memory to be deallocated. The > function might communicate (synchronize) with another thread causing > that other thread to delete the memory. For this reason, to use > dereferenceable as we currently do, we also need to know that the > function does not synchronize with any other threads. To solve this > problem, like nofree, I propose to add a nosynch attribute (to indicate > that a function does not use (non-relaxed) atomics or otherwise > synchronize with any other threads (e.g., perform I/O or, as a practical > matter, use volatile accesses). > > I've posted a patch for the nofree attribute > (https://reviews.llvm.org/D49165). nosynch's implementation would be > very similar (except instead of looking for calls to free, it would look > for uses of non-relaxed atomics, volatile ops, and known functions that > are not I/O functions). > > With both of these attributes (nofree and nosynch), a function argument > with the dereferenceable attribute will be known to be dereferenceable > throughout the execution of the attributed function. We can update > isDereferenceableAndAlignedPointer to include these additional checks on > the current function. > > One more choice we have: We can, as I proposed above, essentially weaken > the current semantics of dereferenceable to not exclude > mid-function-execution deallocation. We can also add a second attribute > with the current, stronger, semantics. We can keep the current attribute > as-is, and add a second attribute with the weaker semantics (and switch > Clang to use that). > > Please let me know what you think. > > Thanks again, > > Hal >
Sanjoy Das via llvm-dev
2018-Sep-15 23:51 UTC
[llvm-dev] [RFC] A nofree (and nosynch) function attribute: Mixing dereferenceable and delete
On Fri, Sep 14, 2018 at 3:45 PM Philip Reames via llvm-dev <llvm-dev at lists.llvm.org> wrote:> > Sorry for the late response. Reading over the thread, the general plan > expressed seems non-objectionable, but I find myself questioning the > premise. > > Can you give an example or two of how we miscompile such functions? MyMaybe something like: void f(int& x) { free(&x); for (;;) { if (false) { int k = x; } } } => void f(int& x) { free(&x); // "safe" to hoist since the "x" arg will be lowered to i32* dereferenceable(4) int k = x; for (;;) { if (false) { } } }> mental model here is that free conceptually writes an unspecified value > to the memory before actually releasing it. With that, I'd expect most > obvious miscompiles to be inhibited by memory dependence. Can you > provide a concrete example to illustrate why my mental model is broken? > > Philip > > > On 07/10/2018 07:01 PM, Hal Finkel via llvm-dev wrote: > > Hi, everyone, > > > > I'd like to propose adding a nofree function attribute to indicate that > > a function does not, directly or indirectly, call a memory-deallocation > > function (e.g., free, C++'s operator delete). Clang/LLVM can currently > > misoptimize functions that: > > > > 1. Have a reference argument. > > > > 2. Free the memory backing the object to which the reference is bound > > during the function's execution. > > > > Because we tag, in Clang, all reference arguments using the > > dereferenceable attribute, LLVM assumes that the pointer is > > unconditionally dereferenceable throughout the course of the entire > > function. This isn't true, however, if the memory is freed during the > > execution of the function. For more information, please see the > > discussion in https://reviews.llvm.org/D48239. > > > > To solve this problem, we need to give LLVM more information in order to > > help it determine when a pointer, which is dereferenceable when the > > functions begins to execute, will still be dereferenceable later on in > > the function's execution. This nofree attribute can be part of that > > solution. If we know that free (and friends) are not called by the > > function (nor by any function called by the function, and so on), then > > we know that pointers that started out dereferenceable will stay that > > way (except as explained below). > > > > I'm initially proposing this to be only a function attribute, although > > one could easily imagine a parameter attribute as well (that indicates > > that a particular pointer argument is not freed by the function). This > > might be useful, but for the use case of helping dereferenceable, it > > would be subtle to use, unless the parameter was also marked as noalias, > > because you'd need to know that the parameter was not also aliased with > > another argument (or had not been captured). Another analysis would need > > to provide this kind of information. > > > > Also, just because a function does not, directly or indirectly, call > > free does not mean that it cannot cause memory to be deallocated. The > > function might communicate (synchronize) with another thread causing > > that other thread to delete the memory. For this reason, to use > > dereferenceable as we currently do, we also need to know that the > > function does not synchronize with any other threads. To solve this > > problem, like nofree, I propose to add a nosynch attribute (to indicate > > that a function does not use (non-relaxed) atomics or otherwise > > synchronize with any other threads (e.g., perform I/O or, as a practical > > matter, use volatile accesses). > > > > I've posted a patch for the nofree attribute > > (https://reviews.llvm.org/D49165). nosynch's implementation would be > > very similar (except instead of looking for calls to free, it would look > > for uses of non-relaxed atomics, volatile ops, and known functions that > > are not I/O functions). > > > > With both of these attributes (nofree and nosynch), a function argument > > with the dereferenceable attribute will be known to be dereferenceable > > throughout the execution of the attributed function. We can update > > isDereferenceableAndAlignedPointer to include these additional checks on > > the current function. > > > > One more choice we have: We can, as I proposed above, essentially weaken > > the current semantics of dereferenceable to not exclude > > mid-function-execution deallocation. We can also add a second attribute > > with the current, stronger, semantics. We can keep the current attribute > > as-is, and add a second attribute with the weaker semantics (and switch > > Clang to use that). > > > > Please let me know what you think. > > > > Thanks again, > > > > Hal > > > > _______________________________________________ > LLVM Developers mailing list > llvm-dev at lists.llvm.org > http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev
Reasonably Related Threads
- [RFC] A nofree (and nosynch) function attribute: Mixing dereferenceable and delete
- [RFC] A nofree (and nosynch) function attribute: Mixing dereferenceable and delete
- [RFC] Increase the scope of Value::getPointerXXX methods
- Bug in pass 'ipsccp' on function attribute 'argmemonly'?
- Bug in pass 'ipsccp' on function attribute 'argmemonly'?