
Summary: Upstream LLVM is changing the the prototypes of the @llvm.memcpy/memmove/memset intrinsics. This change updates the Clang tests for this change. The @llvm.memcpy/memmove/memset intrinsics currently have an explicit argument which is required to be a constant integer. It represents the alignment of the dest (and source), and so must be the minimum of the actual alignment of the two. This change removes the alignment argument in favour of placing the alignment attribute on the source and destination pointers of the memory intrinsic call. For example, code which used to read: call void @llvm.memcpy.p0i8.p0i8.i32(i8* %dest, i8* %src, i32 100, i32 4, i1 false) will now read call void @llvm.memcpy.p0i8.p0i8.i32(i8* align 4 %dest, i8* align 4 %src, i32 100, i1 false) At this time the source and destination alignments must be the same (Step 1). Step 2 of the change, to be landed shortly, will relax that contraint and allow the source and destination to have different alignments. llvm-svn: 322964
60 lines
1.4 KiB
C++
60 lines
1.4 KiB
C++
// RUN: %clang_cc1 -triple i686-pc-mingw32 -fms-extensions -Wmicrosoft %s -emit-llvm -o - | FileCheck %s
|
|
|
|
class Test1 {
|
|
public:
|
|
int a;
|
|
};
|
|
|
|
void f1() {
|
|
Test1 var;
|
|
var.Test1::Test1();
|
|
|
|
// CHECK: call void @llvm.memcpy.p0i8.p0i8.i32(i8* align 4 %{{.*}}, i8* align 4 %{{.*}}, i32 4, i1 false)
|
|
var.Test1::Test1(var);
|
|
}
|
|
|
|
class Test2 {
|
|
public:
|
|
Test2() { a = 10; b = 10; }
|
|
int a;
|
|
int b;
|
|
};
|
|
|
|
void f2() {
|
|
// CHECK: %var = alloca %class.Test2, align 4
|
|
// CHECK-NEXT: call x86_thiscallcc void @_ZN5Test2C1Ev(%class.Test2* %var)
|
|
Test2 var;
|
|
|
|
// CHECK-NEXT: call x86_thiscallcc void @_ZN5Test2C1Ev(%class.Test2* %var)
|
|
var.Test2::Test2();
|
|
|
|
// CHECK: call void @llvm.memcpy.p0i8.p0i8.i32(i8* align 4 %{{.*}}, i8* align 4 %{{.*}}, i32 8, i1 false)
|
|
var.Test2::Test2(var);
|
|
}
|
|
|
|
|
|
|
|
|
|
class Test3 {
|
|
public:
|
|
Test3() { a = 10; b = 15; c = 20; }
|
|
Test3(const Test3& that) { a = that.a; b = that.b; c = that.c; }
|
|
int a;
|
|
int b;
|
|
int c;
|
|
};
|
|
|
|
void f3() {
|
|
// CHECK: call x86_thiscallcc void @_ZN5Test3C1Ev(%class.Test3* %var)
|
|
Test3 var;
|
|
|
|
// CHECK-NEXT: call x86_thiscallcc void @_ZN5Test3C1Ev(%class.Test3* %var2)
|
|
Test3 var2;
|
|
|
|
// CHECK-NEXT: call x86_thiscallcc void @_ZN5Test3C1Ev(%class.Test3* %var)
|
|
var.Test3::Test3();
|
|
|
|
// CHECK-NEXT: call x86_thiscallcc void @_ZN5Test3C1ERKS_(%class.Test3* %var, %class.Test3* dereferenceable({{[0-9]+}}) %var2)
|
|
var.Test3::Test3(var2);
|
|
}
|