blob: 65b9ad111fd85843cf2bf0e05adf4572c53f069d [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -emit-llvm -o %t %s
Daniel Dunbard417d962008-09-03 21:17:21 +00002// RUN: not grep __builtin %t
John McCalldb7b72a2010-02-28 13:00:19 +00003// RUN: %clang_cc1 %s -emit-llvm -o - -triple x86_64-darwin-apple | FileCheck %s
Daniel Dunbard417d962008-09-03 21:17:21 +00004
Daniel Dunbar23afaad2009-11-17 08:57:36 +00005int printf(const char *, ...);
Daniel Dunbard417d962008-09-03 21:17:21 +00006
7void p(char *str, int x) {
8 printf("%s: %d\n", str, x);
9}
10void q(char *str, double x) {
11 printf("%s: %f\n", str, x);
12}
John McCalldb7b72a2010-02-28 13:00:19 +000013void r(char *str, void *ptr) {
14 printf("%s: %p\n", str, ptr);
15}
16
17int random(void);
Daniel Dunbard417d962008-09-03 21:17:21 +000018
19int main() {
20 int N = random();
21#define P(n,args) p(#n #args, __builtin_##n args)
22#define Q(n,args) q(#n #args, __builtin_##n args)
John McCalldb7b72a2010-02-28 13:00:19 +000023#define R(n,args) r(#n #args, __builtin_##n args)
Daniel Dunbard417d962008-09-03 21:17:21 +000024#define V(n,args) p(#n #args, (__builtin_##n args, 0))
25 P(types_compatible_p, (int, float));
26 P(choose_expr, (0, 10, 20));
27 P(constant_p, (sizeof(10)));
28 P(expect, (N == 12, 0));
29 V(prefetch, (&N));
30 V(prefetch, (&N, 1));
31 V(prefetch, (&N, 1, 0));
32
33 // Numeric Constants
34
35 Q(huge_val, ());
36 Q(huge_valf, ());
37 Q(huge_vall, ());
38 Q(inf, ());
39 Q(inff, ());
40 Q(infl, ());
41
Benjamin Kramera6cebab2010-06-14 10:41:45 +000042 P(fpclassify, (0, 1, 2, 3, 4, 1.0));
43 P(fpclassify, (0, 1, 2, 3, 4, 1.0f));
44 P(fpclassify, (0, 1, 2, 3, 4, 1.0l));
Daniel Dunbard417d962008-09-03 21:17:21 +000045 // FIXME:
Daniel Dunbard417d962008-09-03 21:17:21 +000046 // P(isinf_sign, (1.0));
47
Daniel Dunbar1768a622008-10-05 06:34:45 +000048 Q(nan, (""));
49 Q(nanf, (""));
50 Q(nanl, (""));
51 Q(nans, (""));
52 Q(nan, ("10"));
53 Q(nanf, ("10"));
54 Q(nanl, ("10"));
55 Q(nans, ("10"));
56
57 P(isgreater, (1., 2.));
58 P(isgreaterequal, (1., 2.));
59 P(isless, (1., 2.));
60 P(islessequal, (1., 2.));
61 P(islessgreater, (1., 2.));
62 P(isunordered, (1., 2.));
Daniel Dunbard417d962008-09-03 21:17:21 +000063
Eli Friedmand6139892009-09-01 04:19:44 +000064 P(isnan, (1.));
65
Daniel Dunbard417d962008-09-03 21:17:21 +000066 // Bitwise & Numeric Functions
67
Daniel Dunbar1768a622008-10-05 06:34:45 +000068 P(abs, (N));
69
Daniel Dunbard417d962008-09-03 21:17:21 +000070 P(clz, (N));
71 P(clzl, (N));
72 P(clzll, (N));
73 P(ctz, (N));
74 P(ctzl, (N));
75 P(ctzll, (N));
76 P(ffs, (N));
77 P(ffsl, (N));
78 P(ffsll, (N));
79 P(parity, (N));
80 P(parityl, (N));
81 P(parityll, (N));
82 P(popcount, (N));
83 P(popcountl, (N));
84 P(popcountll, (N));
85 Q(powi, (1.2f, N));
86 Q(powif, (1.2f, N));
87 Q(powil, (1.2f, N));
88
Daniel Dunbarf8ebb412009-02-20 06:36:40 +000089 // Lib functions
Daniel Dunbard417d962008-09-03 21:17:21 +000090 int a, b, n = random(); // Avoid optimizing out.
91 char s0[10], s1[] = "Hello";
Daniel Dunbarf8ebb412009-02-20 06:36:40 +000092 V(strcat, (s0, s1));
Daniel Dunbar7a0048b2009-04-09 16:42:50 +000093 V(strcmp, (s0, s1));
Daniel Dunbarf8ebb412009-02-20 06:36:40 +000094 V(strncat, (s0, s1, n));
95 V(strchr, (s0, s1[0]));
96 V(strrchr, (s0, s1[0]));
97 V(strcpy, (s0, s1));
98 V(strncpy, (s0, s1, n));
99
100 // Object size checking
Daniel Dunbard417d962008-09-03 21:17:21 +0000101 V(__memset_chk, (s0, 0, sizeof s0, n));
102 V(__memcpy_chk, (s0, s1, sizeof s0, n));
103 V(__memmove_chk, (s0, s1, sizeof s0, n));
104 V(__mempcpy_chk, (s0, s1, sizeof s0, n));
105 V(__strncpy_chk, (s0, s1, sizeof s0, n));
106 V(__strcpy_chk, (s0, s1, n));
107 s0[0] = 0;
108 V(__strcat_chk, (s0, s1, n));
109 P(object_size, (s0, 0));
110 P(object_size, (s0, 1));
111 P(object_size, (s0, 2));
112 P(object_size, (s0, 3));
113
114 // Whatever
115
116 P(bswap32, (N));
117 P(bswap64, (N));
118 // FIXME
119 // V(clear_cache, (&N, &N+1));
120 V(trap, ());
John McCalldb7b72a2010-02-28 13:00:19 +0000121 R(extract_return_addr, (&N));
Eli Friedmanba68b082010-03-06 02:17:52 +0000122 P(signbit, (1.0));
Daniel Dunbard417d962008-09-03 21:17:21 +0000123
124 return 0;
125}
126
Chris Lattnerb808c952009-03-22 21:56:56 +0000127
128
Chris Lattnerb808c952009-03-22 21:56:56 +0000129void foo() {
130 __builtin_strcat(0, 0);
131}
132
John McCalldb7b72a2010-02-28 13:00:19 +0000133// CHECK: define void @bar(
134void bar() {
135 float f;
136 double d;
137 long double ld;
138
139 // LLVM's hex representation of float constants is really unfortunate;
140 // basically it does a float-to-double "conversion" and then prints the
Chris Lattnerfc8f0e12011-04-15 05:22:18 +0000141 // hex form of that. That gives us weird artifacts like exponents
John McCalldb7b72a2010-02-28 13:00:19 +0000142 // that aren't numerically similar to the original exponent and
143 // significand bit-patterns that are offset by three bits (because
144 // the exponent was expanded from 8 bits to 11).
145 //
146 // 0xAE98 == 1010111010011000
147 // 0x15D3 == 1010111010011
148
149 f = __builtin_huge_valf(); // CHECK: float 0x7FF0000000000000
150 d = __builtin_huge_val(); // CHECK: double 0x7FF0000000000000
151 ld = __builtin_huge_vall(); // CHECK: x86_fp80 0xK7FFF8000000000000000
152 f = __builtin_nanf(""); // CHECK: float 0x7FF8000000000000
153 d = __builtin_nan(""); // CHECK: double 0x7FF8000000000000
154 ld = __builtin_nanl(""); // CHECK: x86_fp80 0xK7FFFC000000000000000
155 f = __builtin_nanf("0xAE98"); // CHECK: float 0x7FF815D300000000
156 d = __builtin_nan("0xAE98"); // CHECK: double 0x7FF800000000AE98
157 ld = __builtin_nanl("0xAE98"); // CHECK: x86_fp80 0xK7FFFC00000000000AE98
158 f = __builtin_nansf(""); // CHECK: float 0x7FF4000000000000
159 d = __builtin_nans(""); // CHECK: double 0x7FF4000000000000
160 ld = __builtin_nansl(""); // CHECK: x86_fp80 0xK7FFFA000000000000000
161 f = __builtin_nansf("0xAE98"); // CHECK: float 0x7FF015D300000000
162 d = __builtin_nans("0xAE98"); // CHECK: double 0x7FF000000000AE98
163 ld = __builtin_nansl("0xAE98");// CHECK: x86_fp80 0xK7FFF800000000000AE98
164
165}
166// CHECK: }
Chris Lattner81368fb2010-05-06 05:50:07 +0000167
168
Chris Lattnered074152010-05-06 06:04:13 +0000169// CHECK: define void @test_float_builtins
170void test_float_builtins(float F, double D, long double LD) {
Chris Lattner81368fb2010-05-06 05:50:07 +0000171 volatile int res;
172 res = __builtin_isinf(F);
173 // CHECK: call float @fabsf(float
174 // CHECK: fcmp oeq float {{.*}}, 0x7FF0000000000000
175
176 res = __builtin_isinf(D);
177 // CHECK: call double @fabs(double
178 // CHECK: fcmp oeq double {{.*}}, 0x7FF0000000000000
179
180 res = __builtin_isinf(LD);
181 // CHECK: call x86_fp80 @fabsl(x86_fp80
182 // CHECK: fcmp oeq x86_fp80 {{.*}}, 0xK7FFF8000000000000000
Chris Lattnered074152010-05-06 06:04:13 +0000183
184 res = __builtin_isfinite(F);
185 // CHECK: fcmp oeq float
186 // CHECK: call float @fabsf
187 // CHECK: fcmp une float {{.*}}, 0x7FF0000000000000
188 // CHECK: and i1
Benjamin Kramer6349ce92010-05-19 11:24:26 +0000189
190 res = __builtin_isnormal(F);
191 // CHECK: fcmp oeq float
192 // CHECK: call float @fabsf
193 // CHECK: fcmp ult float {{.*}}, 0x7FF0000000000000
194 // CHECK: fcmp uge float {{.*}}, 0x3810000000000000
195 // CHECK: and i1
196 // CHECK: and i1
Chris Lattner81368fb2010-05-06 05:50:07 +0000197}
198
John McCall78673d92010-05-27 18:47:06 +0000199// CHECK: define void @test_builtin_longjmp
200void test_builtin_longjmp(void **buffer) {
201 // CHECK: [[BITCAST:%.*]] = bitcast
202 // CHECK-NEXT: call void @llvm.eh.sjlj.longjmp(i8* [[BITCAST]])
203 __builtin_longjmp(buffer, 1);
204 // CHECK-NEXT: unreachable
205}
Hal Finkela841c192012-08-05 22:03:08 +0000206
207// CHECK: define i64 @test_builtin_readcyclecounter
208long long test_builtin_readcyclecounter() {
209 // CHECK: call i64 @llvm.readcyclecounter()
210 return __builtin_readcyclecounter();
211}