diff options
author | Nikita Popov <npopov@redhat.com> | 2023-08-16 15:22:57 +0200 |
---|---|---|
committer | Nikita Popov <npopov@redhat.com> | 2023-11-01 10:46:31 +0100 |
commit | 6b8ed78719d0ae8eff55b937a976602f3a748697 (patch) | |
tree | 777ad1d42bb2be569d79dc46b66a66c05119878c /llvm/lib/Bitcode/Reader/BitcodeReader.cpp | |
parent | 50dec541f328a251c2830421f354e4439e635def (diff) | |
download | llvm-6b8ed78719d0ae8eff55b937a976602f3a748697.zip llvm-6b8ed78719d0ae8eff55b937a976602f3a748697.tar.gz llvm-6b8ed78719d0ae8eff55b937a976602f3a748697.tar.bz2 |
[IR] Add writable attribute
This adds a writable attribute, which in conjunction with
dereferenceable(N) states that a spurious store of N bytes is
introduced on function entry. This implies that this many bytes
are writable without trapping or introducing data races. See
https://llvm.org/docs/Atomics.html#optimization-outside-atomic for
why the second point is important.
This attribute can be added to sret arguments. I believe Rust will
also be able to use it for by-value (moved) arguments. Rust likely
won't be able to use it for &mut arguments (tree borrows does not
appear to allow spurious stores).
In this patch the new attribute is only used by LICM scalar promotion.
However, the actual motivation for this is to fix a correctness issue
in call slot optimization, which needs this attribute to avoid
optimization regressions.
Followup to the discussion on D157499.
Differential Revision: https://reviews.llvm.org/D158081
Diffstat (limited to 'llvm/lib/Bitcode/Reader/BitcodeReader.cpp')
-rw-r--r-- | llvm/lib/Bitcode/Reader/BitcodeReader.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/Bitcode/Reader/BitcodeReader.cpp b/llvm/lib/Bitcode/Reader/BitcodeReader.cpp index fcba736..747968b 100644 --- a/llvm/lib/Bitcode/Reader/BitcodeReader.cpp +++ b/llvm/lib/Bitcode/Reader/BitcodeReader.cpp @@ -2058,6 +2058,8 @@ static Attribute::AttrKind getAttrFromCode(uint64_t Code) { return Attribute::Hot; case bitc::ATTR_KIND_PRESPLIT_COROUTINE: return Attribute::PresplitCoroutine; + case bitc::ATTR_KIND_WRITABLE: + return Attribute::Writable; } } |