aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Bitcode/Reader/BitcodeReader.cpp
diff options
context:
space:
mode:
authorMatt Arsenault <Matthew.Arsenault@amd.com>2022-11-02 18:50:48 -0700
committerMatt Arsenault <arsenm2@gmail.com>2023-01-24 17:55:11 -0400
commit778cf5431cafc243f81dd5c8cbd27701ff7f9120 (patch)
tree1a1c63468df1436efd906da8f33afcb033e77e2a /llvm/lib/Bitcode/Reader/BitcodeReader.cpp
parente44a305690add9f759d2fba85827bca260c94b41 (diff)
downloadllvm-778cf5431cafc243f81dd5c8cbd27701ff7f9120.zip
llvm-778cf5431cafc243f81dd5c8cbd27701ff7f9120.tar.gz
llvm-778cf5431cafc243f81dd5c8cbd27701ff7f9120.tar.bz2
IR: Add atomicrmw uinc_wrap and udec_wrap
These are essentially add/sub 1 with a clamping value. AMDGPU has instructions for these. CUDA/HIP expose these as atomicInc/atomicDec. Currently we use target intrinsics for these, but those do no carry the ordering and syncscope. Add these to atomicrmw so we can carry these and benefit from the regular legalization processes.
Diffstat (limited to 'llvm/lib/Bitcode/Reader/BitcodeReader.cpp')
-rw-r--r--llvm/lib/Bitcode/Reader/BitcodeReader.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/llvm/lib/Bitcode/Reader/BitcodeReader.cpp b/llvm/lib/Bitcode/Reader/BitcodeReader.cpp
index 0a346e3..f014521 100644
--- a/llvm/lib/Bitcode/Reader/BitcodeReader.cpp
+++ b/llvm/lib/Bitcode/Reader/BitcodeReader.cpp
@@ -1256,6 +1256,10 @@ static AtomicRMWInst::BinOp getDecodedRMWOperation(unsigned Val) {
case bitc::RMW_FSUB: return AtomicRMWInst::FSub;
case bitc::RMW_FMAX: return AtomicRMWInst::FMax;
case bitc::RMW_FMIN: return AtomicRMWInst::FMin;
+ case bitc::RMW_UINC_WRAP:
+ return AtomicRMWInst::UIncWrap;
+ case bitc::RMW_UDEC_WRAP:
+ return AtomicRMWInst::UDecWrap;
}
}