Change memcpy/memove/memset to have dest and source alignment attributes (Step 1).
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
2018-01-20 01:12:54 +08:00
|
|
|
// RUN: %clang_cc1 -fcxx-exceptions -fexceptions -triple x86_64-apple-darwin -std=c++11 -emit-llvm %s -o - \
|
|
|
|
// RUN: | FileCheck %s
|
2009-11-21 02:51:28 +08:00
|
|
|
|
|
|
|
struct test1_D {
|
|
|
|
double d;
|
|
|
|
} d1;
|
|
|
|
|
|
|
|
void test1() {
|
|
|
|
throw d1;
|
|
|
|
}
|
|
|
|
|
2013-08-15 14:47:53 +08:00
|
|
|
// CHECK-LABEL: define void @_Z5test1v()
|
2011-01-28 16:37:24 +08:00
|
|
|
// CHECK: [[EXNOBJ:%.*]] = call i8* @__cxa_allocate_exception(i64 8)
|
2010-04-22 09:10:34 +08:00
|
|
|
// CHECK-NEXT: [[EXN:%.*]] = bitcast i8* [[EXNOBJ]] to [[DSTAR:%[^*]*\*]]
|
|
|
|
// CHECK-NEXT: [[EXN2:%.*]] = bitcast [[DSTAR]] [[EXN]] to i8*
|
Change memcpy/memove/memset to have dest and source alignment attributes.
Summary:
This change is step three in the series of changes to remove alignment argument from
memcpy/memmove/memset in favour of alignment attributes. Steps:
Step 1) Remove alignment parameter and create alignment parameter attributes for
memcpy/memmove/memset. ( rL322965, rC322964, rL322963 )
Step 2) Expand the IRBuilder API to allow creation of memcpy/memmove with differing
source and dest alignments. ( rL323597 )
Step 3) Update Clang to use the new IRBuilder API.
Step 4) Update Polly to use the new IRBuilder API.
Step 5) Update LLVM passes that create memcpy/memmove calls to use the new IRBuilder API,
and those that use use MemIntrinsicInst::[get|set]Alignment() to use getDestAlignment()
and getSourceAlignment() instead.
Step 6) Remove the single-alignment IRBuilder API for memcpy/memmove, and the
MemIntrinsicInst::[get|set]Alignment() methods.
Reference
http://lists.llvm.org/pipermail/llvm-dev/2015-August/089384.html
http://lists.llvm.org/pipermail/llvm-commits/Week-of-Mon-20151109/312083.html
Reviewers: rjmccall
Subscribers: jyknight, nemanjai, nhaehnle, javed.absar, sbc100, aheejin, kbarton, fedor.sergeev, cfe-commits
Differential Revision: https://reviews.llvm.org/D41677
llvm-svn: 323617
2018-01-29 01:27:45 +08:00
|
|
|
// CHECK-NEXT: call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 [[EXN2]], i8* align 8 bitcast ([[DSTAR]] @d1 to i8*), i64 8, i1 false)
|
2013-02-22 17:10:20 +08:00
|
|
|
// CHECK-NEXT: call void @__cxa_throw(i8* [[EXNOBJ]], i8* bitcast ({ i8*, i8* }* @_ZTI7test1_D to i8*), i8* null) [[NR:#[0-9]+]]
|
2009-11-21 02:51:28 +08:00
|
|
|
// CHECK-NEXT: unreachable
|
|
|
|
|
|
|
|
|
|
|
|
struct test2_D {
|
|
|
|
test2_D(const test2_D&o);
|
|
|
|
test2_D();
|
|
|
|
virtual void bar() { }
|
|
|
|
int i; int j;
|
|
|
|
} d2;
|
|
|
|
|
|
|
|
void test2() {
|
|
|
|
throw d2;
|
|
|
|
}
|
|
|
|
|
2013-08-15 14:47:53 +08:00
|
|
|
// CHECK-LABEL: define void @_Z5test2v()
|
2011-05-29 05:13:02 +08:00
|
|
|
// CHECK: [[EXNVAR:%.*]] = alloca i8*
|
|
|
|
// CHECK-NEXT: [[SELECTORVAR:%.*]] = alloca i32
|
2010-04-22 09:10:34 +08:00
|
|
|
// CHECK-NEXT: [[EXNOBJ:%.*]] = call i8* @__cxa_allocate_exception(i64 16)
|
|
|
|
// CHECK-NEXT: [[EXN:%.*]] = bitcast i8* [[EXNOBJ]] to [[DSTAR:%[^*]*\*]]
|
2018-10-15 23:43:00 +08:00
|
|
|
// CHECK-NEXT: invoke void @_ZN7test2_DC1ERKS_([[DSTAR]] [[EXN]], [[DSTAR]] dereferenceable({{[0-9]+}}) @d2)
|
2010-04-22 09:10:34 +08:00
|
|
|
// CHECK-NEXT: to label %[[CONT:.*]] unwind label %{{.*}}
|
2010-04-22 11:27:09 +08:00
|
|
|
// : [[CONT]]: (can't check this in Release-Asserts builds)
|
2013-02-22 17:10:20 +08:00
|
|
|
// CHECK: call void @__cxa_throw(i8* [[EXNOBJ]], i8* bitcast ({{.*}}* @_ZTI7test2_D to i8*), i8* null) [[NR]]
|
2009-11-21 02:51:28 +08:00
|
|
|
// CHECK-NEXT: unreachable
|
|
|
|
|
|
|
|
|
|
|
|
struct test3_D {
|
|
|
|
test3_D() { }
|
|
|
|
test3_D(volatile test3_D&o);
|
|
|
|
virtual void bar();
|
|
|
|
};
|
|
|
|
|
|
|
|
void test3() {
|
|
|
|
throw (volatile test3_D *)0;
|
|
|
|
}
|
|
|
|
|
2013-08-15 14:47:53 +08:00
|
|
|
// CHECK-LABEL: define void @_Z5test3v()
|
2011-01-28 16:37:24 +08:00
|
|
|
// CHECK: [[EXNOBJ:%.*]] = call i8* @__cxa_allocate_exception(i64 8)
|
|
|
|
// CHECK-NEXT: [[EXN:%.*]] = bitcast i8* [[EXNOBJ]] to [[D:%[^*]+]]**
|
|
|
|
// CHECK-NEXT: store [[D]]* null, [[D]]** [[EXN]]
|
2013-02-22 17:10:20 +08:00
|
|
|
// CHECK-NEXT: call void @__cxa_throw(i8* [[EXNOBJ]], i8* bitcast ({ i8*, i8*, i32, i8* }* @_ZTIPV7test3_D to i8*), i8* null) [[NR]]
|
2010-04-22 09:10:34 +08:00
|
|
|
// CHECK-NEXT: unreachable
|
2009-11-21 02:51:28 +08:00
|
|
|
|
|
|
|
|
|
|
|
void test4() {
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
|
2013-08-15 14:47:53 +08:00
|
|
|
// CHECK-LABEL: define void @_Z5test4v()
|
2013-02-22 17:10:20 +08:00
|
|
|
// CHECK: call void @__cxa_rethrow() [[NR]]
|
2009-11-21 02:51:28 +08:00
|
|
|
// CHECK-NEXT: unreachable
|
2010-04-22 09:10:34 +08:00
|
|
|
|
|
|
|
|
|
|
|
// rdar://problem/7696549
|
|
|
|
namespace test5 {
|
|
|
|
struct A {
|
|
|
|
A();
|
|
|
|
A(const A&);
|
|
|
|
~A();
|
|
|
|
};
|
|
|
|
|
|
|
|
void test() {
|
|
|
|
try { throw A(); } catch (A &x) {}
|
|
|
|
}
|
2013-08-15 14:47:53 +08:00
|
|
|
// CHECK-LABEL: define void @_ZN5test54testEv()
|
2010-04-22 09:10:34 +08:00
|
|
|
// CHECK: [[EXNOBJ:%.*]] = call i8* @__cxa_allocate_exception(i64 1)
|
|
|
|
// CHECK: [[EXNCAST:%.*]] = bitcast i8* [[EXNOBJ]] to [[A:%[^*]*]]*
|
2018-10-15 23:43:00 +08:00
|
|
|
// CHECK-NEXT: invoke void @_ZN5test51AC1Ev([[A]]* [[EXNCAST]])
|
2013-02-22 17:10:20 +08:00
|
|
|
// CHECK: invoke void @__cxa_throw(i8* [[EXNOBJ]], i8* bitcast ({{.*}}* @_ZTIN5test51AE to i8*), i8* bitcast (void ([[A]]*)* @_ZN5test51AD1Ev to i8*)) [[NR]]
|
2010-04-22 09:10:34 +08:00
|
|
|
// CHECK-NEXT: to label {{%.*}} unwind label %[[HANDLER:[^ ]*]]
|
2010-04-22 11:27:09 +08:00
|
|
|
// : [[HANDLER]]: (can't check this in Release-Asserts builds)
|
2011-07-10 01:41:47 +08:00
|
|
|
// CHECK: {{%.*}} = call i32 @llvm.eh.typeid.for(i8* bitcast ({{.*}}* @_ZTIN5test51AE to i8*))
|
2010-04-22 09:10:34 +08:00
|
|
|
}
|
2010-07-06 09:34:17 +08:00
|
|
|
|
|
|
|
namespace test6 {
|
|
|
|
template <class T> struct allocator {
|
|
|
|
~allocator() throw() { }
|
|
|
|
};
|
|
|
|
|
|
|
|
void foo() {
|
|
|
|
allocator<int> a;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// PR7127
|
|
|
|
namespace test7 {
|
2013-08-15 14:47:53 +08:00
|
|
|
// CHECK-LABEL: define i32 @_ZN5test73fooEv()
|
2015-06-18 04:53:19 +08:00
|
|
|
// CHECK-SAME: personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*)
|
2010-07-06 09:34:17 +08:00
|
|
|
int foo() {
|
2011-01-28 16:37:24 +08:00
|
|
|
// CHECK: [[CAUGHTEXNVAR:%.*]] = alloca i8*
|
2011-05-29 05:13:02 +08:00
|
|
|
// CHECK-NEXT: [[SELECTORVAR:%.*]] = alloca i32
|
2010-07-06 09:34:17 +08:00
|
|
|
// CHECK-NEXT: [[INTCATCHVAR:%.*]] = alloca i32
|
|
|
|
try {
|
|
|
|
try {
|
|
|
|
// CHECK-NEXT: [[EXNALLOC:%.*]] = call i8* @__cxa_allocate_exception
|
|
|
|
// CHECK-NEXT: bitcast i8* [[EXNALLOC]] to i32*
|
|
|
|
// CHECK-NEXT: store i32 1, i32*
|
|
|
|
// CHECK-NEXT: invoke void @__cxa_throw(i8* [[EXNALLOC]], i8* bitcast (i8** @_ZTIi to i8*), i8* null
|
|
|
|
throw 1;
|
|
|
|
}
|
|
|
|
|
2015-06-18 04:53:19 +08:00
|
|
|
// CHECK: [[CAUGHTVAL:%.*]] = landingpad { i8*, i32 }
|
2011-09-20 04:31:14 +08:00
|
|
|
// CHECK-NEXT: catch i8* bitcast (i8** @_ZTIi to i8*)
|
|
|
|
// CHECK-NEXT: catch i8* null
|
|
|
|
// CHECK-NEXT: [[CAUGHTEXN:%.*]] = extractvalue { i8*, i32 } [[CAUGHTVAL]], 0
|
2011-08-11 10:22:43 +08:00
|
|
|
// CHECK-NEXT: store i8* [[CAUGHTEXN]], i8** [[CAUGHTEXNVAR]]
|
2011-09-20 04:31:14 +08:00
|
|
|
// CHECK-NEXT: [[SELECTOR:%.*]] = extractvalue { i8*, i32 } [[CAUGHTVAL]], 1
|
2011-05-29 05:13:02 +08:00
|
|
|
// CHECK-NEXT: store i32 [[SELECTOR]], i32* [[SELECTORVAR]]
|
2011-08-11 10:22:43 +08:00
|
|
|
// CHECK-NEXT: br label
|
2015-02-28 05:19:58 +08:00
|
|
|
// CHECK: [[SELECTOR:%.*]] = load i32, i32* [[SELECTORVAR]]
|
2011-08-11 10:22:43 +08:00
|
|
|
// CHECK-NEXT: [[T0:%.*]] = call i32 @llvm.eh.typeid.for(i8* bitcast (i8** @_ZTIi to i8*))
|
|
|
|
// CHECK-NEXT: icmp eq i32 [[SELECTOR]], [[T0]]
|
2010-07-06 09:34:17 +08:00
|
|
|
// CHECK-NEXT: br i1
|
2015-02-28 05:19:58 +08:00
|
|
|
// CHECK: [[T0:%.*]] = load i8*, i8** [[CAUGHTEXNVAR]]
|
2011-08-11 10:22:43 +08:00
|
|
|
// CHECK-NEXT: [[T1:%.*]] = call i8* @__cxa_begin_catch(i8* [[T0]])
|
|
|
|
// CHECK-NEXT: [[T2:%.*]] = bitcast i8* [[T1]] to i32*
|
2015-02-28 05:19:58 +08:00
|
|
|
// CHECK-NEXT: [[T3:%.*]] = load i32, i32* [[T2]]
|
2011-08-11 10:22:43 +08:00
|
|
|
// CHECK-NEXT: store i32 [[T3]], i32* {{%.*}}, align 4
|
|
|
|
// CHECK-NEXT: invoke void @__cxa_rethrow
|
2010-07-06 09:34:17 +08:00
|
|
|
catch (int) {
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
}
|
2015-06-18 04:53:19 +08:00
|
|
|
// CHECK: [[CAUGHTVAL:%.*]] = landingpad { i8*, i32 }
|
2011-09-20 04:31:14 +08:00
|
|
|
// CHECK-NEXT: catch i8* null
|
|
|
|
// CHECK-NEXT: [[CAUGHTEXN:%.*]] = extractvalue { i8*, i32 } [[CAUGHTVAL]], 0
|
2011-08-11 10:22:43 +08:00
|
|
|
// CHECK-NEXT: store i8* [[CAUGHTEXN]], i8** [[CAUGHTEXNVAR]]
|
2011-09-20 04:31:14 +08:00
|
|
|
// CHECK-NEXT: [[SELECTOR:%.*]] = extractvalue { i8*, i32 } [[CAUGHTVAL]], 1
|
2011-05-29 05:13:02 +08:00
|
|
|
// CHECK-NEXT: store i32 [[SELECTOR]], i32* [[SELECTORVAR]]
|
2010-07-06 09:34:17 +08:00
|
|
|
// CHECK-NEXT: call void @__cxa_end_catch()
|
|
|
|
// CHECK-NEXT: br label
|
2015-02-28 05:19:58 +08:00
|
|
|
// CHECK: load i8*, i8** [[CAUGHTEXNVAR]]
|
2010-07-06 09:34:17 +08:00
|
|
|
// CHECK-NEXT: call i8* @__cxa_begin_catch
|
|
|
|
// CHECK-NEXT: call void @__cxa_end_catch
|
|
|
|
catch (...) {
|
|
|
|
}
|
|
|
|
// CHECK: ret i32 0
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ordering of destructors in a catch handler.
|
|
|
|
namespace test8 {
|
|
|
|
struct A { A(const A&); ~A(); };
|
|
|
|
void bar();
|
|
|
|
|
2013-08-15 14:47:53 +08:00
|
|
|
// CHECK-LABEL: define void @_ZN5test83fooEv()
|
2010-07-06 09:34:17 +08:00
|
|
|
void foo() {
|
|
|
|
try {
|
|
|
|
// CHECK: invoke void @_ZN5test83barEv()
|
|
|
|
bar();
|
|
|
|
} catch (A a) {
|
|
|
|
// CHECK: call i8* @__cxa_get_exception_ptr
|
|
|
|
// CHECK-NEXT: bitcast
|
|
|
|
// CHECK-NEXT: invoke void @_ZN5test81AC1ERKS0_(
|
|
|
|
// CHECK: call i8* @__cxa_begin_catch
|
2011-05-19 13:13:44 +08:00
|
|
|
// CHECK-NEXT: call void @_ZN5test81AD1Ev(
|
2010-07-06 09:34:17 +08:00
|
|
|
// CHECK: call void @__cxa_end_catch()
|
|
|
|
// CHECK: ret void
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-07-07 14:56:46 +08:00
|
|
|
|
|
|
|
// Constructor function-try-block must rethrow on fallthrough.
|
|
|
|
// rdar://problem/7696603
|
|
|
|
namespace test9 {
|
|
|
|
void opaque();
|
|
|
|
|
|
|
|
struct A { A(); };
|
|
|
|
|
|
|
|
|
2018-10-15 23:43:00 +08:00
|
|
|
// CHECK-LABEL: define void @_ZN5test91AC2Ev(%"struct.test9::A"* %this) unnamed_addr
|
2015-06-18 04:53:19 +08:00
|
|
|
// CHECK-SAME: personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*)
|
2010-07-07 14:56:46 +08:00
|
|
|
A::A() try {
|
|
|
|
// CHECK: invoke void @_ZN5test96opaqueEv()
|
|
|
|
opaque();
|
|
|
|
} catch (int x) {
|
2015-06-18 04:53:19 +08:00
|
|
|
// CHECK: landingpad { i8*, i32 }
|
2011-09-20 04:31:14 +08:00
|
|
|
// CHECK-NEXT: catch i8* bitcast (i8** @_ZTIi to i8*)
|
2011-08-11 10:22:43 +08:00
|
|
|
|
2010-07-07 14:56:46 +08:00
|
|
|
// CHECK: call i8* @__cxa_begin_catch
|
|
|
|
// CHECK: invoke void @_ZN5test96opaqueEv()
|
|
|
|
// CHECK: invoke void @__cxa_rethrow()
|
2013-12-09 22:51:17 +08:00
|
|
|
|
2018-10-15 23:43:00 +08:00
|
|
|
// CHECK-LABEL: define void @_ZN5test91AC1Ev(%"struct.test9::A"* %this) unnamed_addr
|
2013-12-09 22:51:17 +08:00
|
|
|
// CHECK: call void @_ZN5test91AC2Ev
|
|
|
|
// CHECK-NEXT: ret void
|
2010-07-07 14:56:46 +08:00
|
|
|
opaque();
|
|
|
|
}
|
|
|
|
}
|
2010-07-14 06:12:14 +08:00
|
|
|
|
|
|
|
// __cxa_end_catch can throw for some kinds of caught exceptions.
|
|
|
|
namespace test10 {
|
|
|
|
void opaque();
|
|
|
|
|
|
|
|
struct A { ~A(); };
|
|
|
|
struct B { int x; };
|
|
|
|
|
2013-08-15 14:47:53 +08:00
|
|
|
// CHECK-LABEL: define void @_ZN6test103fooEv()
|
2010-07-14 06:12:14 +08:00
|
|
|
void foo() {
|
|
|
|
A a; // force a cleanup context
|
|
|
|
|
|
|
|
try {
|
|
|
|
// CHECK: invoke void @_ZN6test106opaqueEv()
|
|
|
|
opaque();
|
|
|
|
} catch (int i) {
|
|
|
|
// CHECK: call i8* @__cxa_begin_catch
|
|
|
|
// CHECK-NEXT: bitcast
|
2015-02-28 05:19:58 +08:00
|
|
|
// CHECK-NEXT: load i32, i32*
|
2010-07-14 06:12:14 +08:00
|
|
|
// CHECK-NEXT: store i32
|
2013-02-22 17:10:20 +08:00
|
|
|
// CHECK-NEXT: call void @__cxa_end_catch() [[NUW:#[0-9]+]]
|
2010-07-14 06:12:14 +08:00
|
|
|
} catch (B a) {
|
|
|
|
// CHECK: call i8* @__cxa_begin_catch
|
|
|
|
// CHECK-NEXT: bitcast
|
|
|
|
// CHECK-NEXT: bitcast
|
|
|
|
// CHECK-NEXT: bitcast
|
|
|
|
// CHECK-NEXT: call void @llvm.memcpy
|
|
|
|
// CHECK-NEXT: invoke void @__cxa_end_catch()
|
|
|
|
} catch (...) {
|
|
|
|
// CHECK: call i8* @__cxa_begin_catch
|
|
|
|
// CHECK-NEXT: invoke void @__cxa_end_catch()
|
|
|
|
}
|
|
|
|
|
|
|
|
// CHECK: call void @_ZN6test101AD1Ev(
|
|
|
|
}
|
|
|
|
}
|
2010-07-21 06:17:55 +08:00
|
|
|
|
|
|
|
// __cxa_begin_catch returns pointers by value, even when catching by reference
|
|
|
|
// <rdar://problem/8212123>
|
|
|
|
namespace test11 {
|
|
|
|
void opaque();
|
|
|
|
|
2013-08-15 14:47:53 +08:00
|
|
|
// CHECK-LABEL: define void @_ZN6test113fooEv()
|
2010-07-21 06:17:55 +08:00
|
|
|
void foo() {
|
|
|
|
try {
|
|
|
|
// CHECK: invoke void @_ZN6test116opaqueEv()
|
|
|
|
opaque();
|
|
|
|
} catch (int**&p) {
|
2015-02-28 05:19:58 +08:00
|
|
|
// CHECK: [[EXN:%.*]] = load i8*, i8**
|
2013-02-22 17:10:20 +08:00
|
|
|
// CHECK-NEXT: call i8* @__cxa_begin_catch(i8* [[EXN]]) [[NUW]]
|
2015-02-28 03:18:17 +08:00
|
|
|
// CHECK-NEXT: [[ADJ1:%.*]] = getelementptr i8, i8* [[EXN]], i32 32
|
2010-07-21 06:17:55 +08:00
|
|
|
// CHECK-NEXT: [[ADJ2:%.*]] = bitcast i8* [[ADJ1]] to i32***
|
|
|
|
// CHECK-NEXT: store i32*** [[ADJ2]], i32**** [[P:%.*]]
|
2013-02-22 17:10:20 +08:00
|
|
|
// CHECK-NEXT: call void @__cxa_end_catch() [[NUW]]
|
2010-07-21 06:17:55 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct A {};
|
|
|
|
|
2013-08-15 14:47:53 +08:00
|
|
|
// CHECK-LABEL: define void @_ZN6test113barEv()
|
2010-07-21 06:17:55 +08:00
|
|
|
void bar() {
|
|
|
|
try {
|
|
|
|
// CHECK: [[EXNSLOT:%.*]] = alloca i8*
|
2011-05-29 05:13:02 +08:00
|
|
|
// CHECK-NEXT: [[SELECTORSLOT:%.*]] = alloca i32
|
2010-07-21 06:17:55 +08:00
|
|
|
// CHECK-NEXT: [[P:%.*]] = alloca [[A:%.*]]**,
|
|
|
|
// CHECK-NEXT: [[TMP:%.*]] = alloca [[A]]*
|
|
|
|
// CHECK-NEXT: invoke void @_ZN6test116opaqueEv()
|
|
|
|
opaque();
|
|
|
|
} catch (A*&p) {
|
2015-02-28 05:19:58 +08:00
|
|
|
// CHECK: [[EXN:%.*]] = load i8*, i8** [[EXNSLOT]]
|
2013-02-22 17:10:20 +08:00
|
|
|
// CHECK-NEXT: [[ADJ1:%.*]] = call i8* @__cxa_begin_catch(i8* [[EXN]]) [[NUW]]
|
2010-07-21 06:17:55 +08:00
|
|
|
// CHECK-NEXT: [[ADJ2:%.*]] = bitcast i8* [[ADJ1]] to [[A]]*
|
|
|
|
// CHECK-NEXT: store [[A]]* [[ADJ2]], [[A]]** [[TMP]]
|
|
|
|
// CHECK-NEXT: store [[A]]** [[TMP]], [[A]]*** [[P]]
|
2013-02-22 17:10:20 +08:00
|
|
|
// CHECK-NEXT: call void @__cxa_end_catch() [[NUW]]
|
2010-07-21 06:17:55 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-07-24 05:56:41 +08:00
|
|
|
|
|
|
|
// PR7686
|
|
|
|
namespace test12 {
|
2011-05-19 13:13:44 +08:00
|
|
|
struct A { ~A() noexcept(false); };
|
2010-07-24 05:56:41 +08:00
|
|
|
bool opaque(const A&);
|
|
|
|
|
2013-08-15 14:47:53 +08:00
|
|
|
// CHECK-LABEL: define void @_ZN6test124testEv()
|
2010-07-24 05:56:41 +08:00
|
|
|
void test() {
|
|
|
|
// CHECK: [[X:%.*]] = alloca [[A:%.*]],
|
|
|
|
// CHECK: [[EHCLEANUPDEST:%.*]] = alloca i32
|
|
|
|
// CHECK: [[Y:%.*]] = alloca [[A]]
|
|
|
|
// CHECK: [[Z:%.*]] = alloca [[A]]
|
|
|
|
// CHECK: [[CLEANUPDEST:%.*]] = alloca i32
|
|
|
|
|
|
|
|
A x;
|
|
|
|
// CHECK: invoke zeroext i1 @_ZN6test126opaqueERKNS_1AE(
|
|
|
|
if (opaque(x)) {
|
|
|
|
A y;
|
|
|
|
A z;
|
|
|
|
|
|
|
|
// CHECK: invoke void @_ZN6test121AD1Ev([[A]]* [[Z]])
|
|
|
|
// CHECK: invoke void @_ZN6test121AD1Ev([[A]]* [[Y]])
|
2011-08-06 14:53:52 +08:00
|
|
|
// CHECK-NOT: switch
|
2010-07-24 05:56:41 +08:00
|
|
|
goto success;
|
|
|
|
}
|
|
|
|
|
|
|
|
success:
|
|
|
|
bool _ = true;
|
|
|
|
|
|
|
|
// CHECK: call void @_ZN6test121AD1Ev([[A]]* [[X]])
|
|
|
|
// CHECK-NEXT: ret void
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Reduced from some TableGen code that was causing a self-host crash.
|
|
|
|
namespace test13 {
|
|
|
|
struct A { ~A(); };
|
|
|
|
|
|
|
|
void test0(int x) {
|
|
|
|
try {
|
|
|
|
switch (x) {
|
|
|
|
case 0:
|
|
|
|
break;
|
|
|
|
case 1:{
|
|
|
|
A a;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
} catch (int x) {
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
void test1(int x) {
|
|
|
|
A y;
|
|
|
|
try {
|
|
|
|
switch (x) {
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
} catch (int x) {}
|
|
|
|
}
|
|
|
|
}
|
2010-07-27 06:44:58 +08:00
|
|
|
|
|
|
|
// rdar://problem/8231514
|
|
|
|
namespace test14 {
|
|
|
|
struct A { ~A(); };
|
|
|
|
struct B { ~B(); };
|
|
|
|
|
|
|
|
B b();
|
|
|
|
void opaque();
|
|
|
|
|
|
|
|
void foo() {
|
|
|
|
A a;
|
|
|
|
try {
|
|
|
|
B str = b();
|
|
|
|
opaque();
|
|
|
|
} catch (int x) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-07-28 09:07:35 +08:00
|
|
|
|
|
|
|
// rdar://problem/8231514
|
|
|
|
// JumpDests shouldn't get confused by scopes that aren't normal cleanups.
|
|
|
|
namespace test15 {
|
|
|
|
struct A { ~A(); };
|
|
|
|
|
|
|
|
bool opaque(int);
|
|
|
|
|
2013-08-15 14:47:53 +08:00
|
|
|
// CHECK-LABEL: define void @_ZN6test153fooEv()
|
2010-07-28 09:07:35 +08:00
|
|
|
void foo() {
|
|
|
|
A a;
|
|
|
|
|
|
|
|
try {
|
|
|
|
// CHECK: [[X:%.*]] = alloca i32
|
|
|
|
// CHECK: store i32 10, i32* [[X]]
|
|
|
|
// CHECK-NEXT: br label
|
|
|
|
// -> while.cond
|
|
|
|
int x = 10;
|
|
|
|
|
|
|
|
while (true) {
|
2015-02-28 05:19:58 +08:00
|
|
|
// CHECK: load i32, i32* [[X]]
|
2010-07-28 09:07:35 +08:00
|
|
|
// CHECK-NEXT: [[COND:%.*]] = invoke zeroext i1 @_ZN6test156opaqueEi
|
|
|
|
// CHECK: br i1 [[COND]]
|
|
|
|
if (opaque(x))
|
|
|
|
// CHECK: br label
|
|
|
|
break;
|
|
|
|
|
|
|
|
// CHECK: br label
|
|
|
|
}
|
|
|
|
// CHECK: br label
|
|
|
|
} catch (int x) { }
|
|
|
|
|
|
|
|
// CHECK: call void @_ZN6test151AD1Ev
|
|
|
|
}
|
|
|
|
}
|
2011-01-28 16:37:24 +08:00
|
|
|
|
|
|
|
namespace test16 {
|
2011-05-19 13:13:44 +08:00
|
|
|
struct A { A(); ~A() noexcept(false); };
|
|
|
|
struct B { int x; B(const A &); ~B() noexcept(false); };
|
2011-01-28 16:37:24 +08:00
|
|
|
void foo();
|
|
|
|
bool cond();
|
|
|
|
|
2013-08-15 14:47:53 +08:00
|
|
|
// CHECK-LABEL: define void @_ZN6test163barEv()
|
2011-01-28 16:37:24 +08:00
|
|
|
void bar() {
|
|
|
|
// CHECK: [[EXN_SAVE:%.*]] = alloca i8*
|
|
|
|
// CHECK-NEXT: [[EXN_ACTIVE:%.*]] = alloca i1
|
|
|
|
// CHECK-NEXT: [[TEMP:%.*]] = alloca [[A:%.*]],
|
|
|
|
// CHECK-NEXT: [[EXNSLOT:%.*]] = alloca i8*
|
2011-05-29 05:13:02 +08:00
|
|
|
// CHECK-NEXT: [[SELECTORSLOT:%.*]] = alloca i32
|
2011-01-28 16:37:24 +08:00
|
|
|
// CHECK-NEXT: [[TEMP_ACTIVE:%.*]] = alloca i1
|
|
|
|
|
|
|
|
cond() ? throw B(A()) : foo();
|
|
|
|
|
|
|
|
// CHECK-NEXT: [[COND:%.*]] = call zeroext i1 @_ZN6test164condEv()
|
|
|
|
// CHECK-NEXT: store i1 false, i1* [[EXN_ACTIVE]]
|
|
|
|
// CHECK-NEXT: store i1 false, i1* [[TEMP_ACTIVE]]
|
|
|
|
// CHECK-NEXT: br i1 [[COND]],
|
|
|
|
|
|
|
|
// CHECK: [[EXN:%.*]] = call i8* @__cxa_allocate_exception(i64 4)
|
|
|
|
// CHECK-NEXT: store i8* [[EXN]], i8** [[EXN_SAVE]]
|
|
|
|
// CHECK-NEXT: store i1 true, i1* [[EXN_ACTIVE]]
|
|
|
|
// CHECK-NEXT: [[T0:%.*]] = bitcast i8* [[EXN]] to [[B:%.*]]*
|
2018-10-15 23:43:00 +08:00
|
|
|
// CHECK-NEXT: invoke void @_ZN6test161AC1Ev([[A]]* [[TEMP]])
|
2011-01-28 16:37:24 +08:00
|
|
|
// CHECK: store i1 true, i1* [[TEMP_ACTIVE]]
|
2018-10-15 23:43:00 +08:00
|
|
|
// CHECK-NEXT: invoke void @_ZN6test161BC1ERKNS_1AE([[B]]* [[T0]], [[A]]* dereferenceable({{[0-9]+}}) [[TEMP]])
|
2011-01-28 16:37:24 +08:00
|
|
|
// CHECK: store i1 false, i1* [[EXN_ACTIVE]]
|
|
|
|
// CHECK-NEXT: invoke void @__cxa_throw(i8* [[EXN]],
|
|
|
|
|
|
|
|
// CHECK: invoke void @_ZN6test163fooEv()
|
|
|
|
// CHECK: br label
|
|
|
|
|
|
|
|
// CHECK: invoke void @_ZN6test161AD1Ev([[A]]* [[TEMP]])
|
|
|
|
// CHECK: ret void
|
|
|
|
|
2015-02-28 05:19:58 +08:00
|
|
|
// CHECK: [[T0:%.*]] = load i1, i1* [[EXN_ACTIVE]]
|
2011-01-28 16:37:24 +08:00
|
|
|
// CHECK-NEXT: br i1 [[T0]]
|
2015-02-28 05:19:58 +08:00
|
|
|
// CHECK: [[T1:%.*]] = load i8*, i8** [[EXN_SAVE]]
|
2011-01-28 16:37:24 +08:00
|
|
|
// CHECK-NEXT: call void @__cxa_free_exception(i8* [[T1]])
|
|
|
|
// CHECK-NEXT: br label
|
|
|
|
}
|
|
|
|
}
|
2013-02-22 17:10:20 +08:00
|
|
|
|
2016-03-31 14:36:07 +08:00
|
|
|
namespace test17 {
|
|
|
|
class BaseException {
|
|
|
|
private:
|
|
|
|
int a[4];
|
|
|
|
public:
|
|
|
|
BaseException() {};
|
|
|
|
};
|
|
|
|
|
|
|
|
class DerivedException: public BaseException {
|
|
|
|
};
|
|
|
|
|
|
|
|
int foo() {
|
|
|
|
throw DerivedException();
|
2017-07-28 09:58:14 +08:00
|
|
|
// The alignment passed to memset is 16 on Darwin.
|
2016-03-31 14:36:07 +08:00
|
|
|
|
|
|
|
// CHECK: [[T0:%.*]] = call i8* @__cxa_allocate_exception(i64 16)
|
|
|
|
// CHECK-NEXT: [[T1:%.*]] = bitcast i8* [[T0]] to %"class.test17::DerivedException"*
|
|
|
|
// CHECK-NEXT: [[T2:%.*]] = bitcast %"class.test17::DerivedException"* [[T1]] to i8*
|
Change memcpy/memove/memset to have dest and source alignment attributes (Step 1).
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
2018-01-20 01:12:54 +08:00
|
|
|
// CHECK-NEXT: call void @llvm.memset.p0i8.i64(i8* align 16 [[T2]], i8 0, i64 16, i1 false)
|
2016-03-31 14:36:07 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-22 17:10:20 +08:00
|
|
|
// CHECK: attributes [[NUW]] = { nounwind }
|
|
|
|
// CHECK: attributes [[NR]] = { noreturn }
|