John McCall | 044cc54 | 2010-07-06 04:38:10 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -triple=x86_64-apple-darwin10 -emit-llvm -fexceptions %s -o - |FileCheck %s |
| 2 | // RUN: %clang_cc1 -triple=x86_64-apple-darwin10 -emit-llvm %s -o - |FileCheck -check-prefix NOEXC %s |
Anders Carlsson | 89ed31d | 2009-08-08 23:24:23 +0000 | [diff] [blame] | 3 | |
| 4 | struct A { |
| 5 | A(); |
| 6 | ~A(); |
| 7 | }; |
| 8 | |
Anders Carlsson | 74d644a | 2009-10-08 17:28:59 +0000 | [diff] [blame] | 9 | struct B { B(); ~B(); }; |
| 10 | |
John McCall | fb8b69a | 2010-02-02 08:02:49 +0000 | [diff] [blame] | 11 | struct C { void *field; }; |
| 12 | |
Anders Carlsson | 2ca4f63 | 2010-02-05 18:38:45 +0000 | [diff] [blame] | 13 | struct D { ~D(); }; |
| 14 | |
Rafael Espindola | c532b50 | 2011-01-18 21:07:57 +0000 | [diff] [blame] | 15 | // CHECK: @__dso_handle = external unnamed_addr global i8* |
John McCall | fb8b69a | 2010-02-02 08:02:49 +0000 | [diff] [blame] | 16 | // CHECK: @c = global %struct.C zeroinitializer, align 8 |
| 17 | |
John McCall | 6d31122 | 2010-08-12 07:31:42 +0000 | [diff] [blame] | 18 | // It's okay if we ever implement the IR-generation optimization to remove this. |
| 19 | // CHECK: @_ZN5test3L3varE = internal constant i8* getelementptr inbounds ([7 x i8]* |
| 20 | |
Anders Carlsson | 5c5a764 | 2010-10-31 20:41:46 +0000 | [diff] [blame] | 21 | // PR6205: The casts should not require global initializers |
| 22 | // CHECK: @_ZN6PR59741cE = external global %"struct.PR5974::C" |
Anders Carlsson | eb9d81d | 2011-04-17 21:56:13 +0000 | [diff] [blame] | 23 | // CHECK: @_ZN6PR59741aE = global %"struct.PR5974::A"* getelementptr inbounds (%"struct.PR5974::C"* @_ZN6PR59741cE, i32 0, i32 0) |
| 24 | // CHECK: @_ZN6PR59741bE = global %"struct.PR5974::A"* bitcast (i8* getelementptr (i8* bitcast (%"struct.PR5974::C"* @_ZN6PR59741cE to i8*), i64 4) to %"struct.PR5974::A"*), align 8 |
Anders Carlsson | 5c5a764 | 2010-10-31 20:41:46 +0000 | [diff] [blame] | 25 | |
Anders Carlsson | 74d644a | 2009-10-08 17:28:59 +0000 | [diff] [blame] | 26 | // CHECK: call void @_ZN1AC1Ev(%struct.A* @a) |
Anders Carlsson | a3f36ab | 2009-10-08 17:22:47 +0000 | [diff] [blame] | 27 | // CHECK: call i32 @__cxa_atexit(void (i8*)* bitcast (void (%struct.A*)* @_ZN1AD1Ev to void (i8*)*), i8* getelementptr inbounds (%struct.A* @a, i32 0, i32 0), i8* bitcast (i8** @__dso_handle to i8*)) |
Anders Carlsson | 89ed31d | 2009-08-08 23:24:23 +0000 | [diff] [blame] | 28 | A a; |
Anders Carlsson | 74d644a | 2009-10-08 17:28:59 +0000 | [diff] [blame] | 29 | |
| 30 | // CHECK: call void @_ZN1BC1Ev(%struct.A* @b) |
| 31 | // CHECK: call i32 @__cxa_atexit(void (i8*)* bitcast (void (%struct.A*)* @_ZN1BD1Ev to void (i8*)*), i8* getelementptr inbounds (%struct.A* @b, i32 0, i32 0), i8* bitcast (i8** @__dso_handle to i8*)) |
| 32 | B b; |
John McCall | fb8b69a | 2010-02-02 08:02:49 +0000 | [diff] [blame] | 33 | |
| 34 | // PR6205: this should not require a global initializer |
| 35 | // CHECK-NOT: call void @_ZN1CC1Ev(%struct.C* @c) |
| 36 | C c; |
| 37 | |
Anders Carlsson | 2ca4f63 | 2010-02-05 18:38:45 +0000 | [diff] [blame] | 38 | // CHECK: call i32 @__cxa_atexit(void (i8*)* bitcast (void (%struct.A*)* @_ZN1DD1Ev to void (i8*)*), i8* getelementptr inbounds (%struct.A* @d, i32 0, i32 0), i8* bitcast (i8** @__dso_handle to i8*)) |
| 39 | D d; |
| 40 | |
John McCall | bf40cb5 | 2010-07-15 23:40:35 +0000 | [diff] [blame] | 41 | // <rdar://problem/7458115> |
| 42 | namespace test1 { |
| 43 | int f(); |
| 44 | const int x = f(); // This has side-effects and gets emitted immediately. |
| 45 | const int y = x - 1; // This gets deferred. |
| 46 | const int z = ~y; // This also gets deferred, but gets "undeferred" before y. |
| 47 | int test() { return z; } |
John McCall | 39dad53 | 2010-08-03 22:46:07 +0000 | [diff] [blame] | 48 | // CHECK: define i32 @_ZN5test14testEv() |
John McCall | 85aca0f | 2010-07-30 04:56:58 +0000 | [diff] [blame] | 49 | |
| 50 | // All of these initializers end up delayed, so we check them later. |
| 51 | } |
| 52 | |
| 53 | // <rdar://problem/8246444> |
| 54 | namespace test2 { |
| 55 | struct allocator { allocator(); ~allocator(); }; |
| 56 | struct A { A(const allocator &a = allocator()); ~A(); }; |
| 57 | |
| 58 | A a; |
| 59 | // CHECK: call void @_ZN5test29allocatorC1Ev( |
| 60 | // CHECK: invoke void @_ZN5test21AC1ERKNS_9allocatorE( |
| 61 | // CHECK: call void @_ZN5test29allocatorD1Ev( |
| 62 | // CHECK: call i32 @__cxa_atexit({{.*}} @_ZN5test21AD1Ev {{.*}} @_ZN5test21aE |
| 63 | } |
| 64 | |
John McCall | 6d31122 | 2010-08-12 07:31:42 +0000 | [diff] [blame] | 65 | namespace test3 { |
| 66 | // Tested at the beginning of the file. |
| 67 | const char * const var = "string"; |
| 68 | extern const char * const var; |
| 69 | |
| 70 | const char *test() { return var; } |
| 71 | } |
| 72 | |
Douglas Gregor | e67d151 | 2011-07-01 21:54:36 +0000 | [diff] [blame^] | 73 | namespace test6 { |
| 74 | struct A { |
| 75 | A(); |
| 76 | }; |
| 77 | extern int foo(); |
| 78 | |
| 79 | // This needs an initialization function and guard variables. |
| 80 | // CHECK: load i8* bitcast (i64* @_ZGVN5test61xE |
| 81 | // CHECK: [[CALL:%.*]] = call i32 @_ZN5test63fooEv |
| 82 | // CHECK-NEXT: store i32 [[CALL]], i32* @_ZN5test61xE |
| 83 | // CHECK-NEXT: store i64 1, i64* @_ZGVN5test61xE |
| 84 | __attribute__((weak)) int x = foo(); |
| 85 | } |
| 86 | |
Anders Carlsson | 5c5a764 | 2010-10-31 20:41:46 +0000 | [diff] [blame] | 87 | namespace PR5974 { |
| 88 | struct A { int a; }; |
| 89 | struct B { int b; }; |
| 90 | struct C : A, B { int c; }; |
| 91 | |
| 92 | extern C c; |
| 93 | |
| 94 | // These should not require global initializers. |
| 95 | A* a = &c; |
| 96 | B* b = &c; |
| 97 | } |
John McCall | bf40cb5 | 2010-07-15 23:40:35 +0000 | [diff] [blame] | 98 | // CHECK: define internal void [[TEST1_Z_INIT:@.*]]() |
| 99 | // CHECK: load i32* @_ZN5test1L1yE |
| 100 | // CHECK-NEXT: xor |
| 101 | // CHECK-NEXT: store i32 {{.*}}, i32* @_ZN5test1L1zE |
| 102 | // CHECK: define internal void [[TEST1_Y_INIT:@.*]]() |
| 103 | // CHECK: load i32* @_ZN5test1L1xE |
| 104 | // CHECK-NEXT: sub |
| 105 | // CHECK-NEXT: store i32 {{.*}}, i32* @_ZN5test1L1yE |
| 106 | |
John McCall | 26fbc72 | 2011-04-12 01:01:22 +0000 | [diff] [blame] | 107 | // PR9570: the indirect field shouldn't crash IR gen. |
| 108 | namespace test5 { |
John McCall | 1d1a679 | 2011-04-12 01:15:45 +0000 | [diff] [blame] | 109 | static union { |
John McCall | 26fbc72 | 2011-04-12 01:01:22 +0000 | [diff] [blame] | 110 | unsigned bar[4096] __attribute__((aligned(128))); |
| 111 | }; |
| 112 | } |
| 113 | |
John McCall | 99ace16 | 2011-04-12 01:46:54 +0000 | [diff] [blame] | 114 | |
John McCall | 85aca0f | 2010-07-30 04:56:58 +0000 | [diff] [blame] | 115 | // At the end of the file, we check that y is initialized before z. |
John McCall | bf40cb5 | 2010-07-15 23:40:35 +0000 | [diff] [blame] | 116 | |
Anders Carlsson | 9df792c | 2010-06-09 01:42:52 +0000 | [diff] [blame] | 117 | // CHECK: define internal void @_GLOBAL__I_a() section "__TEXT,__StaticInit,regular,pure_instructions" { |
John McCall | bf40cb5 | 2010-07-15 23:40:35 +0000 | [diff] [blame] | 118 | // CHECK: call void [[TEST1_Y_INIT]] |
| 119 | // CHECK: call void [[TEST1_Z_INIT]] |
Anders Carlsson | 9df792c | 2010-06-09 01:42:52 +0000 | [diff] [blame] | 120 | |
John McCall | 044cc54 | 2010-07-06 04:38:10 +0000 | [diff] [blame] | 121 | // rdar://problem/8090834: this should be nounwind |
| 122 | // CHECK-NOEXC: define internal void @_GLOBAL__I_a() nounwind section "__TEXT,__StaticInit,regular,pure_instructions" { |