diff options
| author | Brian Homerding <homerdin@gmail.com> | 2019-07-08 15:57:56 +0000 |
|---|---|---|
| committer | Brian Homerding <homerdin@gmail.com> | 2019-07-08 15:57:56 +0000 |
| commit | b4b21d807e4f47f1f87b05fddf6bb3167b14476e (patch) | |
| tree | 2ca1fdfcf72d73e5d6245cbd845c3f372e0a9dc9 /llvm/docs/LangRef.rst | |
| parent | b52a0c0cc88f0d66ae8ea770f92ed3448aee88a7 (diff) | |
| download | bcm5719-llvm-b4b21d807e4f47f1f87b05fddf6bb3167b14476e.tar.gz bcm5719-llvm-b4b21d807e4f47f1f87b05fddf6bb3167b14476e.zip | |
Add, and infer, a nofree function attribute
This patch adds a function attribute, nofree, to indicate that a function does
not, directly or indirectly, call a memory-deallocation function (e.g., free,
C++'s operator delete).
Reviewers: jdoerfert
Differential Revision: https://reviews.llvm.org/D49165
llvm-svn: 365336
Diffstat (limited to 'llvm/docs/LangRef.rst')
| -rw-r--r-- | llvm/docs/LangRef.rst | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/llvm/docs/LangRef.rst b/llvm/docs/LangRef.rst index 8325e08e180..ae266629a64 100644 --- a/llvm/docs/LangRef.rst +++ b/llvm/docs/LangRef.rst @@ -1453,6 +1453,14 @@ example: duplicated by inlining. That implies that the function has internal linkage and only has one call site, so the original call is dead after inlining. +``nofree`` + This function attribute indicates that the function does not, directly or + indirectly, call a memory-deallocation function (free, for example). As a + result, uncaptured pointers that are known to be dereferenceable prior to a + call to a function with the ``nofree`` attribute are still known to be + dereferenceable after the call (the capturing condition is necessary in + environments where the function might communicate the pointer to another thread + which then deallocates the memory). ``noimplicitfloat`` This attributes disables implicit floating-point instructions. ``noinline`` |

