[llvm-branch-commits] [llvm] [AMDGPU] Enable atomic optimizer for divergent i64 and double values (PR #96934)

Vikram Hegde via llvm-branch-commits llvm-branch-commits at lists.llvm.org
Mon Jul 1 01:05:00 PDT 2024


================
@@ -178,6 +178,20 @@ bool AMDGPUAtomicOptimizerImpl::run(Function &F) {
   return Changed;
 }
 
+static bool shouldOptimizeForType(Type *Ty) {
+  switch (Ty->getTypeID()) {
+  case Type::FloatTyID:
+  case Type::DoubleTyID:
+    return true;
+  case Type::IntegerTyID: {
+    if (Ty->getIntegerBitWidth() == 32 || Ty->getIntegerBitWidth() == 64)
+      return true;
+  default:
----------------
vikramRH wrote:

I feel pointers should be handled as a follow up too since I intend this patch to reflect current requirements (changed the title since it was misleading)

https://github.com/llvm/llvm-project/pull/96934


More information about the llvm-branch-commits mailing list