Skip to content

Commit e498cd2

Browse files
committed
[KeyInstr][Clang] Coerce through memory atom
1 parent 3bd7879 commit e498cd2

File tree

2 files changed

+31
-4
lines changed

2 files changed

+31
-4
lines changed

clang/lib/CodeGen/CGCall.cpp

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1459,10 +1459,11 @@ void CodeGenFunction::CreateCoercedStore(llvm::Value *Src, Address Dst,
14591459
RawAddress Tmp =
14601460
CreateTempAllocaForCoercion(*this, SrcTy, Dst.getAlignment());
14611461
Builder.CreateStore(Src, Tmp);
1462-
Builder.CreateMemCpy(Dst.emitRawPointer(*this),
1463-
Dst.getAlignment().getAsAlign(), Tmp.getPointer(),
1464-
Tmp.getAlignment().getAsAlign(),
1465-
Builder.CreateTypeSize(IntPtrTy, DstSize));
1462+
auto *I = Builder.CreateMemCpy(
1463+
Dst.emitRawPointer(*this), Dst.getAlignment().getAsAlign(),
1464+
Tmp.getPointer(), Tmp.getAlignment().getAsAlign(),
1465+
Builder.CreateTypeSize(IntPtrTy, DstSize));
1466+
addInstToCurrentSourceAtom(I, Src);
14661467
}
14671468
}
14681469

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
// RUN: %clang -gkey-instructions -gno-column-info -x c++ %s -gmlt -S -emit-llvm -o - -target aarch64-windows-msvc \
2+
// RUN: | FileCheck %s --implicit-check-not atomGroup --implicit-check-not atomRank
3+
4+
// RUN: %clang -gkey-instructions -gno-column-info -x c %s -gmlt -S -emit-llvm -o - -target aarch64-windows-msvc \
5+
// RUN: | FileCheck %s --implicit-check-not atomGroup --implicit-check-not atomRank
6+
7+
typedef struct {
8+
short a;
9+
int b;
10+
short c;
11+
} S;
12+
13+
S getS(void);
14+
15+
void f() {
16+
// CHECK: %call = call [2 x i64] {{.*}}getS{{.*}}(), !dbg [[G1R2:!.*]]
17+
//// Note: The store to the tmp alloca isn't part of the atom.
18+
// CHECK: store [2 x i64] %call, ptr %tmp.coerce, align 8
19+
// CHECK: call void @llvm.memcpy.p0.p0.i64(ptr align 4 %s, ptr align 8 %tmp.coerce, i64 12, i1 false), !dbg [[G1R1:!.*]]
20+
S s = getS();
21+
// CHECK: ret void, !dbg [[G2R1:!.*]]
22+
}
23+
24+
// CHECK: [[G1R2]] = !DILocation({{.*}}, atomGroup: 1, atomRank: 2)
25+
// CHECK: [[G1R1]] = !DILocation({{.*}}, atomGroup: 1, atomRank: 1)
26+
// CHECK: [[G2R1]] = !DILocation({{.*}}, atomGroup: 2, atomRank: 1)

0 commit comments

Comments
 (0)