blob: 2ac5f1b0799902476c63194c4d3e6da5ba2f99ff [file] [log] [blame]
Stephen Hines651f13c2014-04-23 16:59:28 -07001// RUN: %clang_cc1 -emit-llvm %s -o - -DDEFINE_GUID -triple=i386-pc-linux -fms-extensions | FileCheck %s --check-prefix=CHECK-DEFINE-GUID
2// RUN: %clang_cc1 -emit-llvm %s -o - -triple=i386-pc-linux -fms-extensions | FileCheck %s
3// RUN: %clang_cc1 -emit-llvm %s -o - -DDEFINE_GUID -DWRONG_GUID -triple=i386-pc-linux -fms-extensions | FileCheck %s --check-prefix=CHECK-DEFINE-WRONG-GUID
Nico Weberc5f80462012-10-11 10:13:44 +00004
David Majnemer8effeda2013-08-15 19:59:14 +00005#ifdef DEFINE_GUID
6struct _GUID {
7#ifdef WRONG_GUID
8 unsigned int SomethingWentWrong;
9#else
Nico Weberc5f80462012-10-11 10:13:44 +000010 unsigned long Data1;
11 unsigned short Data2;
12 unsigned short Data3;
13 unsigned char Data4[8];
David Majnemer8effeda2013-08-15 19:59:14 +000014#endif
15};
16#endif
17typedef struct _GUID GUID;
Nico Weberc5f80462012-10-11 10:13:44 +000018
David Majnemerc8fe0112013-08-09 08:35:59 +000019struct __declspec(uuid("12345678-1234-1234-1234-1234567890aB")) S1 { } s1;
Nico Weberc5f80462012-10-11 10:13:44 +000020struct __declspec(uuid("87654321-4321-4321-4321-ba0987654321")) S2 { };
David Majnemerbb0ed292013-08-09 08:56:20 +000021struct __declspec(uuid("{12345678-1234-1234-1234-1234567890ac}")) Curly;
Stephen Hines0e2c34f2015-03-23 12:09:02 -070022struct __declspec(uuid("{12345678-1234-1234-1234-1234567890ac}")) Curly;
David Majnemerbb0ed292013-08-09 08:56:20 +000023
David Majnemer8effeda2013-08-15 19:59:14 +000024#ifdef DEFINE_GUID
David Majnemerbb0ed292013-08-09 08:56:20 +000025// Make sure we can properly generate code when the UUID has curly braces on it.
26GUID thing = __uuidof(Curly);
David Majnemer8effeda2013-08-15 19:59:14 +000027// CHECK-DEFINE-GUID: @thing = global %struct._GUID zeroinitializer, align 4
28// CHECK-DEFINE-WRONG-GUID: @thing = global %struct._GUID zeroinitializer, align 4
Nico Weberc5f80462012-10-11 10:13:44 +000029
30// This gets initialized in a static initializer.
David Majnemer8effeda2013-08-15 19:59:14 +000031// CHECK-DEFINE-GUID: @g = global %struct._GUID zeroinitializer, align 4
32// CHECK-DEFINE-WRONG-GUID: @g = global %struct._GUID zeroinitializer, align 4
Nico Weberc5f80462012-10-11 10:13:44 +000033GUID g = __uuidof(S1);
David Majnemer8effeda2013-08-15 19:59:14 +000034#endif
Nico Weberc5f80462012-10-11 10:13:44 +000035
36// First global use of __uuidof(S1) forces the creation of the global.
Stephen Hines0e2c34f2015-03-23 12:09:02 -070037// CHECK: @_GUID_12345678_1234_1234_1234_1234567890ab = linkonce_odr constant { i32, i16, i16, [8 x i8] } { i32 305419896, i16 4660, i16 4660, [8 x i8] c"\124\124Vx\90\AB" }, comdat
David Majnemer8effeda2013-08-15 19:59:14 +000038// CHECK: @gr = constant %struct._GUID* bitcast ({ i32, i16, i16, [8 x i8] }* @_GUID_12345678_1234_1234_1234_1234567890ab to %struct._GUID*), align 4
Nico Weberc5f80462012-10-11 10:13:44 +000039const GUID& gr = __uuidof(S1);
40
David Majnemer8effeda2013-08-15 19:59:14 +000041// CHECK: @gp = global %struct._GUID* bitcast ({ i32, i16, i16, [8 x i8] }* @_GUID_12345678_1234_1234_1234_1234567890ab to %struct._GUID*), align 4
Nico Weberc5f80462012-10-11 10:13:44 +000042const GUID* gp = &__uuidof(S1);
43
David Majnemer8effeda2013-08-15 19:59:14 +000044// CHECK: @cp = global %struct._GUID* bitcast ({ i32, i16, i16, [8 x i8] }* @_GUID_12345678_1234_1234_1234_1234567890ac to %struct._GUID*), align 4
David Majnemerbb0ed292013-08-09 08:56:20 +000045const GUID* cp = &__uuidof(Curly);
46
Nico Weberc5f80462012-10-11 10:13:44 +000047// Special case: _uuidof(0)
David Majnemer8effeda2013-08-15 19:59:14 +000048// CHECK: @zeroiid = constant %struct._GUID* bitcast ({ i32, i16, i16, [8 x i8] }* @_GUID_00000000_0000_0000_0000_000000000000 to %struct._GUID*), align 4
Nico Weberc5f80462012-10-11 10:13:44 +000049const GUID& zeroiid = __uuidof(0);
50
51// __uuidof(S2) hasn't been used globally yet, so it's emitted when it's used
52// in a function and is emitted at the end of the globals section.
Stephen Hines0e2c34f2015-03-23 12:09:02 -070053// CHECK: @_GUID_87654321_4321_4321_4321_ba0987654321 = linkonce_odr constant { i32, i16, i16, [8 x i8] } { i32 -2023406815, i16 17185, i16 17185, [8 x i8] c"C!\BA\09\87eC!" }, comdat
David Majnemer8effeda2013-08-15 19:59:14 +000054
55// The static initializer for thing.
56// CHECK-DEFINE-GUID: call void @llvm.memcpy.p0i8.p0i8.i32(i8* bitcast (%struct._GUID* @thing to i8*), i8* bitcast ({ i32, i16, i16, [8 x i8] }* @_GUID_12345678_1234_1234_1234_1234567890ac to i8*), i32 16, i32 4, i1 false)
57// CHECK-DEFINE-WRONG-GUID: call void @llvm.memcpy.p0i8.p0i8.i32(i8* bitcast (%struct._GUID* @thing to i8*), i8* bitcast ({ i32, i16, i16, [8 x i8] }* @_GUID_12345678_1234_1234_1234_1234567890ac to i8*), i32 4, i32 4, i1 false)
Nico Weberc5f80462012-10-11 10:13:44 +000058
59// The static initializer for g.
David Majnemer8effeda2013-08-15 19:59:14 +000060// CHECK-DEFINE-GUID: call void @llvm.memcpy.p0i8.p0i8.i32(i8* bitcast (%struct._GUID* @g to i8*), i8* bitcast ({ i32, i16, i16, [8 x i8] }* @_GUID_12345678_1234_1234_1234_1234567890ab to i8*), i32 16, i32 4, i1 false)
61// CHECK-DEFINE-WRONG-GUID: call void @llvm.memcpy.p0i8.p0i8.i32(i8* bitcast (%struct._GUID* @g to i8*), i8* bitcast ({ i32, i16, i16, [8 x i8] }* @_GUID_12345678_1234_1234_1234_1234567890ab to i8*), i32 4, i32 4, i1 false)
Nico Weberc5f80462012-10-11 10:13:44 +000062
David Majnemer8effeda2013-08-15 19:59:14 +000063#ifdef DEFINE_GUID
Nico Weberc5f80462012-10-11 10:13:44 +000064void fun() {
David Majnemer8effeda2013-08-15 19:59:14 +000065 // CHECK-DEFINE-GUID: %s1_1 = alloca %struct._GUID, align 4
66 // CHECK-DEFINE-WRONG-GUID: %s1_1 = alloca %struct._GUID, align 4
67 // CHECK-DEFINE-GUID: %s1_2 = alloca %struct._GUID, align 4
68 // CHECK-DEFINE-WRONG-GUID: %s1_2 = alloca %struct._GUID, align 4
69 // CHECK-DEFINE-GUID: %s1_3 = alloca %struct._GUID, align 4
70 // CHECK-DEFINE-WRONG-GUID: %s1_3 = alloca %struct._GUID, align 4
Nico Weberc5f80462012-10-11 10:13:44 +000071
David Majnemer8effeda2013-08-15 19:59:14 +000072 // CHECK-DEFINE-GUID: [[U1:%.+]] = bitcast %struct._GUID* %s1_1 to i8*
73 // CHECK-DEFINE-WRONG-GUID: [[U1:%.+]] = bitcast %struct._GUID* %s1_1 to i8*
74 // CHECK-DEFINE-GUID: call void @llvm.memcpy.p0i8.p0i8.i32(i8* [[U1]], i8* bitcast ({ i32, i16, i16, [8 x i8] }* @_GUID_12345678_1234_1234_1234_1234567890ab to i8*), i32 16, i32 4, i1 false)
75 // CHECK-DEFINE-WRONG-GUID: call void @llvm.memcpy.p0i8.p0i8.i32(i8* [[U1]], i8* bitcast ({ i32, i16, i16, [8 x i8] }* @_GUID_12345678_1234_1234_1234_1234567890ab to i8*), i32 4, i32 4, i1 false)
Nico Weberc5f80462012-10-11 10:13:44 +000076 GUID s1_1 = __uuidof(S1);
77
David Majnemer8effeda2013-08-15 19:59:14 +000078 // CHECK-DEFINE-GUID: [[U2:%.+]] = bitcast %struct._GUID* %s1_2 to i8*
79 // CHECK-DEFINE-WRONG-GUID: [[U2:%.+]] = bitcast %struct._GUID* %s1_2 to i8*
80 // CHECK-DEFINE-GUID: call void @llvm.memcpy.p0i8.p0i8.i32(i8* [[U2]], i8* bitcast ({ i32, i16, i16, [8 x i8] }* @_GUID_12345678_1234_1234_1234_1234567890ab to i8*), i32 16, i32 4, i1 false)
81 // CHECK-DEFINE-WRONG-GUID: call void @llvm.memcpy.p0i8.p0i8.i32(i8* [[U2]], i8* bitcast ({ i32, i16, i16, [8 x i8] }* @_GUID_12345678_1234_1234_1234_1234567890ab to i8*), i32 4, i32 4, i1 false)
Nico Weberc5f80462012-10-11 10:13:44 +000082 GUID s1_2 = __uuidof(S1);
83
David Majnemer8effeda2013-08-15 19:59:14 +000084 // CHECK-DEFINE-GUID: [[U3:%.+]] = bitcast %struct._GUID* %s1_3 to i8*
85 // CHECK-DEFINE-WRONG-GUID: [[U3:%.+]] = bitcast %struct._GUID* %s1_3 to i8*
86 // CHECK-DEFINE-GUID: call void @llvm.memcpy.p0i8.p0i8.i32(i8* [[U3]], i8* bitcast ({ i32, i16, i16, [8 x i8] }* @_GUID_12345678_1234_1234_1234_1234567890ab to i8*), i32 16, i32 4, i1 false)
87 // CHECK-DEFINE-WRONG-GUID: call void @llvm.memcpy.p0i8.p0i8.i32(i8* [[U3]], i8* bitcast ({ i32, i16, i16, [8 x i8] }* @_GUID_12345678_1234_1234_1234_1234567890ab to i8*), i32 4, i32 4, i1 false)
Nico Weberc5f80462012-10-11 10:13:44 +000088 GUID s1_3 = __uuidof(s1);
89}
David Majnemer8effeda2013-08-15 19:59:14 +000090#endif
Nico Weberc5f80462012-10-11 10:13:44 +000091
92void gun() {
David Majnemer8effeda2013-08-15 19:59:14 +000093#ifdef DEFINE_GUID
94 // CHECK-DEFINE-GUID: %s2_1 = alloca %struct._GUID, align 4
95 // CHECK-DEFINE-WRONG-GUID: %s2_1 = alloca %struct._GUID, align 4
96 // CHECK-DEFINE-GUID: %s2_2 = alloca %struct._GUID, align 4
97 // CHECK-DEFINE-WRONG-GUID: %s2_2 = alloca %struct._GUID, align 4
98 GUID s2_1 = __uuidof(S2);
99 GUID s2_2 = __uuidof(S2);
100#endif
Nico Weberc5f80462012-10-11 10:13:44 +0000101 // CHECK: %r = alloca %struct._GUID*, align 4
102 // CHECK: %p = alloca %struct._GUID*, align 4
103 // CHECK: %zeroiid = alloca %struct._GUID*, align 4
Nico Weberc5f80462012-10-11 10:13:44 +0000104
David Majnemer8effeda2013-08-15 19:59:14 +0000105 // CHECK: store %struct._GUID* bitcast ({ i32, i16, i16, [8 x i8] }* @_GUID_87654321_4321_4321_4321_ba0987654321 to %struct._GUID*), %struct._GUID** %r, align 4
Nico Weberc5f80462012-10-11 10:13:44 +0000106 const GUID& r = __uuidof(S2);
David Majnemer8effeda2013-08-15 19:59:14 +0000107 // CHECK: store %struct._GUID* bitcast ({ i32, i16, i16, [8 x i8] }* @_GUID_87654321_4321_4321_4321_ba0987654321 to %struct._GUID*), %struct._GUID** %p, align 4
Nico Weberc5f80462012-10-11 10:13:44 +0000108 const GUID* p = &__uuidof(S2);
109
110 // Special case _uuidof(0), local scope version.
David Majnemer8effeda2013-08-15 19:59:14 +0000111 // CHECK: store %struct._GUID* bitcast ({ i32, i16, i16, [8 x i8] }* @_GUID_00000000_0000_0000_0000_000000000000 to %struct._GUID*), %struct._GUID** %zeroiid, align 4
Nico Weberc5f80462012-10-11 10:13:44 +0000112 const GUID& zeroiid = __uuidof(0);
113}