Skip to content

Commit 3715ad9

Browse files
bcardosolopeslanza
authored andcommitted
[CIR][CIRGen] Fix follow up stores for atomic loads
1 parent e04f725 commit 3715ad9

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed

clang/lib/CIR/CodeGen/CIRGenAtomic.cpp

+8
Original file line numberDiff line numberDiff line change
@@ -449,6 +449,14 @@ static void buildAtomicOp(CIRGenFunction &CGF, AtomicExpr *E, Address Dest,
449449
load->setAttr("mem_order", orderAttr);
450450
if (E->isVolatile())
451451
load->setAttr("is_volatile", mlir::UnitAttr::get(builder.getContext()));
452+
453+
// TODO(cir): this logic should be part of createStore, but doing so
454+
// currently breaks CodeGen/union.cpp and CodeGen/union.cpp.
455+
auto ptrTy = Dest.getPointer().getType().cast<mlir::cir::PointerType>();
456+
if (Dest.getElementType() != ptrTy.getPointee()) {
457+
Dest = Dest.withPointer(
458+
builder.createPtrBitcast(Dest.getPointer(), Dest.getElementType()));
459+
}
452460
builder.createStore(loc, load->getResult(0), Dest);
453461
return;
454462
}

clang/test/CIR/CodeGen/atomic-xchg-field.c

+15-1
Original file line numberDiff line numberDiff line change
@@ -65,4 +65,18 @@ void structAtomicExchange(unsigned referenceCount, wPtr item) {
6565

6666
// LLVM: [[STORE_OLD]]:
6767
// LLVM: store i32 %[[OLD]], ptr
68-
// LLVM: br label %[[CONTINUE]]
68+
// LLVM: br label %[[CONTINUE]]
69+
70+
void f2(const void *cf);
71+
72+
void structLoad(unsigned referenceCount, wPtr item) {
73+
f2(__atomic_load_n(&item->ref, 5));
74+
}
75+
76+
// CHECK-LABEL: @structLoad
77+
// CHECK: %[[ATOMIC_TEMP:.*]] = cir.alloca !cir.ptr<!void>, cir.ptr <!cir.ptr<!void>>, ["atomic-temp"]
78+
// CHECK: %[[ATOMIC_LOAD:.*]] = cir.load atomic(seq_cst) %6 : cir.ptr <!u64i>, !u64i
79+
// CHECK: %[[RES:.*]] = cir.cast(bitcast, %[[ATOMIC_TEMP]] : !cir.ptr<!cir.ptr<!void>>), !cir.ptr<!u64i>
80+
// CHECK: cir.store %[[ATOMIC_LOAD]], %[[RES]] : !u64i, cir.ptr <!u64i>
81+
82+
// No LLVM tests needed for this one, already covered elsewhere.

0 commit comments

Comments
 (0)