blob: 23fdbdef4680d2dd822db55e7b03aa7007b23946 [file] [log] [blame]
Nate Begeman5ddb0872010-05-28 01:08:32 +00001//===- NeonEmitter.cpp - Generate arm_neon.h for use with clang -*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This tablegen backend is responsible for emitting arm_neon.h, which includes
Bob Wilson7f762182010-12-04 04:40:15 +000011// a declaration and definition of each function specified by the ARM NEON
Nate Begeman5ddb0872010-05-28 01:08:32 +000012// compiler interface. See ARM document DUI0348B.
13//
Nate Begemand72c9002010-06-13 04:47:03 +000014// Each NEON instruction is implemented in terms of 1 or more functions which
Bob Wilson7f762182010-12-04 04:40:15 +000015// are suffixed with the element type of the input vectors. Functions may be
Nate Begemand72c9002010-06-13 04:47:03 +000016// implemented in terms of generic vector operations such as +, *, -, etc. or
17// by calling a __builtin_-prefixed function which will be handled by clang's
18// CodeGen library.
19//
20// Additional validation code can be generated by this file when runHeader() is
Bob Wilson333f5192010-12-15 16:58:45 +000021// called, rather than the normal run() entry point. A complete set of tests
22// for Neon intrinsics can be generated by calling the runTests() entry point.
Nate Begemand72c9002010-06-13 04:47:03 +000023//
Nate Begeman5ddb0872010-05-28 01:08:32 +000024//===----------------------------------------------------------------------===//
25
26#include "NeonEmitter.h"
Nate Begeman22237772010-06-02 00:34:55 +000027#include "llvm/ADT/SmallString.h"
28#include "llvm/ADT/SmallVector.h"
Nate Begeman5ddb0872010-05-28 01:08:32 +000029#include "llvm/ADT/StringExtras.h"
Nate Begeman5ddb0872010-05-28 01:08:32 +000030#include <string>
31
32using namespace llvm;
33
Nate Begemand72c9002010-06-13 04:47:03 +000034/// ParseTypes - break down a string such as "fQf" into a vector of StringRefs,
35/// which each StringRef representing a single type declared in the string.
36/// for "fQf" we would end up with 2 StringRefs, "f", and "Qf", representing
37/// 2xfloat and 4xfloat respectively.
Nate Begeman22237772010-06-02 00:34:55 +000038static void ParseTypes(Record *r, std::string &s,
39 SmallVectorImpl<StringRef> &TV) {
40 const char *data = s.data();
41 int len = 0;
Bob Wilson7f762182010-12-04 04:40:15 +000042
Nate Begeman22237772010-06-02 00:34:55 +000043 for (unsigned i = 0, e = s.size(); i != e; ++i, ++len) {
44 if (data[len] == 'P' || data[len] == 'Q' || data[len] == 'U')
45 continue;
Bob Wilson7f762182010-12-04 04:40:15 +000046
Nate Begeman22237772010-06-02 00:34:55 +000047 switch (data[len]) {
48 case 'c':
49 case 's':
50 case 'i':
51 case 'l':
52 case 'h':
53 case 'f':
54 break;
55 default:
56 throw TGError(r->getLoc(),
57 "Unexpected letter: " + std::string(data + len, 1));
58 break;
59 }
60 TV.push_back(StringRef(data, len + 1));
61 data += len + 1;
62 len = -1;
63 }
64}
65
Nate Begemand72c9002010-06-13 04:47:03 +000066/// Widen - Convert a type code into the next wider type. char -> short,
67/// short -> int, etc.
Duncan Sands8dbbace2010-06-02 08:37:30 +000068static char Widen(const char t) {
Nate Begeman22237772010-06-02 00:34:55 +000069 switch (t) {
70 case 'c':
71 return 's';
72 case 's':
73 return 'i';
74 case 'i':
75 return 'l';
Bob Wilsonae6be762010-12-15 23:16:25 +000076 case 'h':
77 return 'f';
Nate Begeman22237772010-06-02 00:34:55 +000078 default: throw "unhandled type in widen!";
79 }
80 return '\0';
81}
82
Nate Begemand72c9002010-06-13 04:47:03 +000083/// Narrow - Convert a type code into the next smaller type. short -> char,
84/// float -> half float, etc.
Nate Begeman3861e742010-06-03 21:35:22 +000085static char Narrow(const char t) {
86 switch (t) {
87 case 's':
88 return 'c';
89 case 'i':
90 return 's';
91 case 'l':
92 return 'i';
Nate Begeman900f4672010-06-08 00:14:42 +000093 case 'f':
94 return 'h';
Bob Wilsonb055f742010-11-23 19:38:34 +000095 default: throw "unhandled type in narrow!";
Nate Begeman3861e742010-06-03 21:35:22 +000096 }
97 return '\0';
98}
99
Nate Begemand72c9002010-06-13 04:47:03 +0000100/// For a particular StringRef, return the base type code, and whether it has
101/// the quad-vector, polynomial, or unsigned modifiers set.
Nate Begemanaf905ef2010-06-02 06:17:19 +0000102static char ClassifyType(StringRef ty, bool &quad, bool &poly, bool &usgn) {
Nate Begeman22237772010-06-02 00:34:55 +0000103 unsigned off = 0;
Bob Wilson7f762182010-12-04 04:40:15 +0000104
Nate Begemanaf905ef2010-06-02 06:17:19 +0000105 // remember quad.
106 if (ty[off] == 'Q') {
107 quad = true;
108 ++off;
109 }
Bob Wilson7f762182010-12-04 04:40:15 +0000110
Nate Begemanaf905ef2010-06-02 06:17:19 +0000111 // remember poly.
112 if (ty[off] == 'P') {
113 poly = true;
114 ++off;
115 }
Bob Wilson7f762182010-12-04 04:40:15 +0000116
Nate Begemanaf905ef2010-06-02 06:17:19 +0000117 // remember unsigned.
118 if (ty[off] == 'U') {
119 usgn = true;
120 ++off;
121 }
Bob Wilson7f762182010-12-04 04:40:15 +0000122
Nate Begemanaf905ef2010-06-02 06:17:19 +0000123 // base type to get the type string for.
124 return ty[off];
125}
126
Nate Begemand72c9002010-06-13 04:47:03 +0000127/// ModType - Transform a type code and its modifiers based on a mod code. The
128/// mod code definitions may be found at the top of arm_neon.td.
Nate Begemanb0a4e452010-06-07 16:00:37 +0000129static char ModType(const char mod, char type, bool &quad, bool &poly,
130 bool &usgn, bool &scal, bool &cnst, bool &pntr) {
Nate Begeman22237772010-06-02 00:34:55 +0000131 switch (mod) {
Nate Begeman22237772010-06-02 00:34:55 +0000132 case 't':
133 if (poly) {
134 poly = false;
135 usgn = true;
136 }
137 break;
Nate Begeman900f4672010-06-08 00:14:42 +0000138 case 'u':
Nate Begeman22237772010-06-02 00:34:55 +0000139 usgn = true;
Bob Wilson181b76d2010-11-18 21:43:22 +0000140 poly = false;
141 if (type == 'f')
142 type = 'i';
143 break;
Nate Begeman900f4672010-06-08 00:14:42 +0000144 case 'x':
Bob Wilson181b76d2010-11-18 21:43:22 +0000145 usgn = false;
Nate Begeman162d3ba2010-06-03 04:04:09 +0000146 poly = false;
Nate Begeman22237772010-06-02 00:34:55 +0000147 if (type == 'f')
148 type = 'i';
149 break;
150 case 'f':
Nate Begeman900f4672010-06-08 00:14:42 +0000151 if (type == 'h')
152 quad = true;
Nate Begeman22237772010-06-02 00:34:55 +0000153 type = 'f';
Nate Begeman162d3ba2010-06-03 04:04:09 +0000154 usgn = false;
Nate Begeman22237772010-06-02 00:34:55 +0000155 break;
Nate Begeman59d70cb2010-08-06 01:24:11 +0000156 case 'g':
157 quad = false;
158 break;
Nate Begeman22237772010-06-02 00:34:55 +0000159 case 'w':
160 type = Widen(type);
161 quad = true;
162 break;
163 case 'n':
164 type = Widen(type);
165 break;
Bob Wilsonf00140c2010-12-01 19:49:58 +0000166 case 'i':
167 type = 'i';
168 scal = true;
169 break;
Nate Begeman22237772010-06-02 00:34:55 +0000170 case 'l':
171 type = 'l';
172 scal = true;
173 usgn = true;
174 break;
175 case 's':
Nate Begeman4b425a82010-06-10 00:16:56 +0000176 case 'a':
Nate Begeman22237772010-06-02 00:34:55 +0000177 scal = true;
178 break;
179 case 'k':
180 quad = true;
181 break;
182 case 'c':
183 cnst = true;
184 case 'p':
185 pntr = true;
186 scal = true;
187 break;
Nate Begeman3861e742010-06-03 21:35:22 +0000188 case 'h':
189 type = Narrow(type);
Nate Begeman900f4672010-06-08 00:14:42 +0000190 if (type == 'h')
191 quad = false;
Nate Begeman3861e742010-06-03 21:35:22 +0000192 break;
193 case 'e':
194 type = Narrow(type);
195 usgn = true;
196 break;
Nate Begeman22237772010-06-02 00:34:55 +0000197 default:
198 break;
199 }
Nate Begemanb0a4e452010-06-07 16:00:37 +0000200 return type;
201}
202
Nate Begemand72c9002010-06-13 04:47:03 +0000203/// TypeString - for a modifier and type, generate the name of the typedef for
Bob Wilson6904d7a2010-11-16 19:39:14 +0000204/// that type. QUc -> uint8x8_t.
205static std::string TypeString(const char mod, StringRef typestr) {
Nate Begemanb0a4e452010-06-07 16:00:37 +0000206 bool quad = false;
207 bool poly = false;
208 bool usgn = false;
209 bool scal = false;
210 bool cnst = false;
211 bool pntr = false;
Bob Wilson7f762182010-12-04 04:40:15 +0000212
Nate Begemanb0a4e452010-06-07 16:00:37 +0000213 if (mod == 'v')
214 return "void";
215 if (mod == 'i')
216 return "int";
Bob Wilson7f762182010-12-04 04:40:15 +0000217
Nate Begemanb0a4e452010-06-07 16:00:37 +0000218 // base type to get the type string for.
219 char type = ClassifyType(typestr, quad, poly, usgn);
Bob Wilson7f762182010-12-04 04:40:15 +0000220
Nate Begemanb0a4e452010-06-07 16:00:37 +0000221 // Based on the modifying character, change the type and width if necessary.
222 type = ModType(mod, type, quad, poly, usgn, scal, cnst, pntr);
Bob Wilson7f762182010-12-04 04:40:15 +0000223
Nate Begeman22237772010-06-02 00:34:55 +0000224 SmallString<128> s;
Bob Wilson7f762182010-12-04 04:40:15 +0000225
Nate Begeman22237772010-06-02 00:34:55 +0000226 if (usgn)
227 s.push_back('u');
Bob Wilson7f762182010-12-04 04:40:15 +0000228
Nate Begeman22237772010-06-02 00:34:55 +0000229 switch (type) {
230 case 'c':
231 s += poly ? "poly8" : "int8";
232 if (scal)
233 break;
234 s += quad ? "x16" : "x8";
235 break;
236 case 's':
237 s += poly ? "poly16" : "int16";
238 if (scal)
239 break;
240 s += quad ? "x8" : "x4";
241 break;
242 case 'i':
243 s += "int32";
244 if (scal)
245 break;
246 s += quad ? "x4" : "x2";
247 break;
248 case 'l':
249 s += "int64";
250 if (scal)
251 break;
252 s += quad ? "x2" : "x1";
253 break;
254 case 'h':
255 s += "float16";
256 if (scal)
257 break;
258 s += quad ? "x8" : "x4";
259 break;
260 case 'f':
261 s += "float32";
262 if (scal)
263 break;
264 s += quad ? "x4" : "x2";
265 break;
Nate Begeman22237772010-06-02 00:34:55 +0000266 default:
267 throw "unhandled type!";
268 break;
269 }
270
271 if (mod == '2')
272 s += "x2";
273 if (mod == '3')
274 s += "x3";
275 if (mod == '4')
276 s += "x4";
Bob Wilson7f762182010-12-04 04:40:15 +0000277
Nate Begeman22237772010-06-02 00:34:55 +0000278 // Append _t, finishing the type string typedef type.
279 s += "_t";
Bob Wilson7f762182010-12-04 04:40:15 +0000280
Nate Begeman22237772010-06-02 00:34:55 +0000281 if (cnst)
282 s += " const";
Bob Wilson7f762182010-12-04 04:40:15 +0000283
Nate Begeman22237772010-06-02 00:34:55 +0000284 if (pntr)
285 s += " *";
Bob Wilson7f762182010-12-04 04:40:15 +0000286
Nate Begeman22237772010-06-02 00:34:55 +0000287 return s.str();
288}
289
Bob Wilson1ac27cf2010-06-24 22:04:30 +0000290/// BuiltinTypeString - for a modifier and type, generate the clang
291/// BuiltinsARM.def prototype code for the function. See the top of clang's
292/// Builtins.def for a description of the type strings.
Nate Begeman7c21f742010-06-04 21:36:00 +0000293static std::string BuiltinTypeString(const char mod, StringRef typestr,
294 ClassKind ck, bool ret) {
Nate Begeman92f98af2010-06-04 07:11:25 +0000295 bool quad = false;
296 bool poly = false;
297 bool usgn = false;
298 bool scal = false;
299 bool cnst = false;
300 bool pntr = false;
Bob Wilson7f762182010-12-04 04:40:15 +0000301
Nate Begeman92f98af2010-06-04 07:11:25 +0000302 if (mod == 'v')
Bob Wilson95148ad2010-12-01 19:49:56 +0000303 return "v"; // void
Nate Begeman92f98af2010-06-04 07:11:25 +0000304 if (mod == 'i')
Bob Wilson95148ad2010-12-01 19:49:56 +0000305 return "i"; // int
Bob Wilson7f762182010-12-04 04:40:15 +0000306
Nate Begeman92f98af2010-06-04 07:11:25 +0000307 // base type to get the type string for.
308 char type = ClassifyType(typestr, quad, poly, usgn);
Bob Wilson7f762182010-12-04 04:40:15 +0000309
Nate Begeman92f98af2010-06-04 07:11:25 +0000310 // Based on the modifying character, change the type and width if necessary.
Nate Begemanb0a4e452010-06-07 16:00:37 +0000311 type = ModType(mod, type, quad, poly, usgn, scal, cnst, pntr);
312
Bob Wilson95148ad2010-12-01 19:49:56 +0000313 // All pointers are void* pointers. Change type to 'v' now.
Nate Begemanc4a1b652010-06-20 21:09:52 +0000314 if (pntr) {
315 usgn = false;
316 poly = false;
Nate Begemanb0a4e452010-06-07 16:00:37 +0000317 type = 'v';
Nate Begemanc4a1b652010-06-20 21:09:52 +0000318 }
Bob Wilson95148ad2010-12-01 19:49:56 +0000319 // Treat half-float ('h') types as unsigned short ('s') types.
Nate Begeman92f98af2010-06-04 07:11:25 +0000320 if (type == 'h') {
321 type = 's';
322 usgn = true;
323 }
Nate Begeman7c21f742010-06-04 21:36:00 +0000324 usgn = usgn | poly | ((ck == ClassI || ck == ClassW) && scal && type != 'f');
Nate Begeman92f98af2010-06-04 07:11:25 +0000325
326 if (scal) {
327 SmallString<128> s;
328
329 if (usgn)
330 s.push_back('U');
Bob Wilson317bafb2010-12-02 00:24:59 +0000331 else if (type == 'c')
332 s.push_back('S'); // make chars explicitly signed
Bob Wilson7f762182010-12-04 04:40:15 +0000333
Bob Wilson95148ad2010-12-01 19:49:56 +0000334 if (type == 'l') // 64-bit long
Nate Begeman7c21f742010-06-04 21:36:00 +0000335 s += "LLi";
336 else
337 s.push_back(type);
Bob Wilson7f762182010-12-04 04:40:15 +0000338
Nate Begeman92f98af2010-06-04 07:11:25 +0000339 if (cnst)
340 s.push_back('C');
341 if (pntr)
342 s.push_back('*');
343 return s.str();
344 }
Nate Begeman7c21f742010-06-04 21:36:00 +0000345
346 // Since the return value must be one type, return a vector type of the
Nate Begemanc4a1b652010-06-20 21:09:52 +0000347 // appropriate width which we will bitcast. An exception is made for
348 // returning structs of 2, 3, or 4 vectors which are returned in a sret-like
349 // fashion, storing them to a pointer arg.
Nate Begeman7c21f742010-06-04 21:36:00 +0000350 if (ret) {
Bob Wilson5b7fe592010-12-01 19:49:51 +0000351 if (mod >= '2' && mod <= '4')
Bob Wilson95148ad2010-12-01 19:49:56 +0000352 return "vv*"; // void result with void* first argument
Nate Begemanf50551e2010-06-09 18:02:26 +0000353 if (mod == 'f' || (ck != ClassB && type == 'f'))
Nate Begeman56387832010-06-08 06:01:16 +0000354 return quad ? "V4f" : "V2f";
Nate Begemanf50551e2010-06-09 18:02:26 +0000355 if (ck != ClassB && type == 's')
Nate Begeman007afe42010-06-09 05:11:55 +0000356 return quad ? "V8s" : "V4s";
Nate Begemanf50551e2010-06-09 18:02:26 +0000357 if (ck != ClassB && type == 'i')
Nate Begeman56387832010-06-08 06:01:16 +0000358 return quad ? "V4i" : "V2i";
Nate Begemanf50551e2010-06-09 18:02:26 +0000359 if (ck != ClassB && type == 'l')
Nate Begeman007afe42010-06-09 05:11:55 +0000360 return quad ? "V2LLi" : "V1LLi";
Bob Wilson7f762182010-12-04 04:40:15 +0000361
Bob Wilson317bafb2010-12-02 00:24:59 +0000362 return quad ? "V16Sc" : "V8Sc";
Bob Wilson7f762182010-12-04 04:40:15 +0000363 }
Nate Begeman7c21f742010-06-04 21:36:00 +0000364
365 // Non-return array types are passed as individual vectors.
Nate Begeman92f98af2010-06-04 07:11:25 +0000366 if (mod == '2')
Bob Wilson317bafb2010-12-02 00:24:59 +0000367 return quad ? "V16ScV16Sc" : "V8ScV8Sc";
Nate Begeman92f98af2010-06-04 07:11:25 +0000368 if (mod == '3')
Bob Wilson317bafb2010-12-02 00:24:59 +0000369 return quad ? "V16ScV16ScV16Sc" : "V8ScV8ScV8Sc";
Nate Begeman92f98af2010-06-04 07:11:25 +0000370 if (mod == '4')
Bob Wilson317bafb2010-12-02 00:24:59 +0000371 return quad ? "V16ScV16ScV16ScV16Sc" : "V8ScV8ScV8ScV8Sc";
Nate Begeman92f98af2010-06-04 07:11:25 +0000372
Nate Begemanf50551e2010-06-09 18:02:26 +0000373 if (mod == 'f' || (ck != ClassB && type == 'f'))
Nate Begeman007afe42010-06-09 05:11:55 +0000374 return quad ? "V4f" : "V2f";
Nate Begemanf50551e2010-06-09 18:02:26 +0000375 if (ck != ClassB && type == 's')
Nate Begeman007afe42010-06-09 05:11:55 +0000376 return quad ? "V8s" : "V4s";
Nate Begemanf50551e2010-06-09 18:02:26 +0000377 if (ck != ClassB && type == 'i')
Nate Begeman007afe42010-06-09 05:11:55 +0000378 return quad ? "V4i" : "V2i";
Nate Begemanf50551e2010-06-09 18:02:26 +0000379 if (ck != ClassB && type == 'l')
Nate Begeman007afe42010-06-09 05:11:55 +0000380 return quad ? "V2LLi" : "V1LLi";
Bob Wilson7f762182010-12-04 04:40:15 +0000381
Bob Wilson317bafb2010-12-02 00:24:59 +0000382 return quad ? "V16Sc" : "V8Sc";
Nate Begeman92f98af2010-06-04 07:11:25 +0000383}
384
Bob Wilson7f762182010-12-04 04:40:15 +0000385/// MangleName - Append a type or width suffix to a base neon function name,
Nate Begemand72c9002010-06-13 04:47:03 +0000386/// and insert a 'q' in the appropriate location if the operation works on
387/// 128b rather than 64b. E.g. turn "vst2_lane" into "vst2q_lane_f32", etc.
Nate Begemana8979a02010-06-04 00:21:41 +0000388static std::string MangleName(const std::string &name, StringRef typestr,
389 ClassKind ck) {
Nate Begeman900f4672010-06-08 00:14:42 +0000390 if (name == "vcvt_f32_f16")
391 return name;
Bob Wilson7f762182010-12-04 04:40:15 +0000392
Nate Begemanaf905ef2010-06-02 06:17:19 +0000393 bool quad = false;
394 bool poly = false;
395 bool usgn = false;
396 char type = ClassifyType(typestr, quad, poly, usgn);
397
398 std::string s = name;
Bob Wilson7f762182010-12-04 04:40:15 +0000399
Nate Begemanaf905ef2010-06-02 06:17:19 +0000400 switch (type) {
Nate Begemana8979a02010-06-04 00:21:41 +0000401 case 'c':
402 switch (ck) {
403 case ClassS: s += poly ? "_p8" : usgn ? "_u8" : "_s8"; break;
404 case ClassI: s += "_i8"; break;
405 case ClassW: s += "_8"; break;
406 default: break;
407 }
408 break;
409 case 's':
410 switch (ck) {
411 case ClassS: s += poly ? "_p16" : usgn ? "_u16" : "_s16"; break;
412 case ClassI: s += "_i16"; break;
413 case ClassW: s += "_16"; break;
414 default: break;
415 }
416 break;
417 case 'i':
418 switch (ck) {
419 case ClassS: s += usgn ? "_u32" : "_s32"; break;
420 case ClassI: s += "_i32"; break;
421 case ClassW: s += "_32"; break;
422 default: break;
423 }
424 break;
425 case 'l':
426 switch (ck) {
427 case ClassS: s += usgn ? "_u64" : "_s64"; break;
428 case ClassI: s += "_i64"; break;
429 case ClassW: s += "_64"; break;
430 default: break;
431 }
432 break;
433 case 'h':
434 switch (ck) {
435 case ClassS:
436 case ClassI: s += "_f16"; break;
437 case ClassW: s += "_16"; break;
438 default: break;
439 }
440 break;
441 case 'f':
442 switch (ck) {
443 case ClassS:
444 case ClassI: s += "_f32"; break;
445 case ClassW: s += "_32"; break;
446 default: break;
447 }
448 break;
449 default:
450 throw "unhandled type!";
451 break;
Nate Begemanaf905ef2010-06-02 06:17:19 +0000452 }
Nate Begemana8979a02010-06-04 00:21:41 +0000453 if (ck == ClassB)
Nate Begeman92f98af2010-06-04 07:11:25 +0000454 s += "_v";
Bob Wilson7f762182010-12-04 04:40:15 +0000455
456 // Insert a 'q' before the first '_' character so that it ends up before
Nate Begemanaf905ef2010-06-02 06:17:19 +0000457 // _lane or _n on vector-scalar operations.
458 if (quad) {
459 size_t pos = s.find('_');
460 s = s.insert(pos, "q");
461 }
462 return s;
Nate Begeman22237772010-06-02 00:34:55 +0000463}
464
Bob Wilsonc1fe1002011-04-22 00:37:01 +0000465/// UseMacro - Examine the prototype string to determine if the intrinsic
466/// should be defined as a preprocessor macro instead of an inline function.
467static bool UseMacro(const std::string &proto) {
468 // If this builtin takes an immediate argument, we need to #define it rather
469 // than use a standard declaration, so that SemaChecking can range check
470 // the immediate passed by the user.
471 if (proto.find('i') != std::string::npos)
472 return true;
473
474 // Pointer arguments need to use macros to avoid hiding aligned attributes
475 // from the pointer type.
476 if (proto.find('p') != std::string::npos ||
477 proto.find('c') != std::string::npos)
478 return true;
479
480 return false;
481}
482
483/// MacroArgUsedDirectly - Return true if argument i for an intrinsic that is
484/// defined as a macro should be accessed directly instead of being first
485/// assigned to a local temporary.
486static bool MacroArgUsedDirectly(const std::string &proto, unsigned i) {
487 return (proto[i] == 'i' || proto[i] == 'p' || proto[i] == 'c');
488}
489
Nate Begemanaf905ef2010-06-02 06:17:19 +0000490// Generate the string "(argtype a, argtype b, ...)"
Nate Begeman22237772010-06-02 00:34:55 +0000491static std::string GenArgs(const std::string &proto, StringRef typestr) {
Bob Wilsonc1fe1002011-04-22 00:37:01 +0000492 bool define = UseMacro(proto);
Nate Begemanaf905ef2010-06-02 06:17:19 +0000493 char arg = 'a';
Bob Wilson7f762182010-12-04 04:40:15 +0000494
Nate Begemanaf905ef2010-06-02 06:17:19 +0000495 std::string s;
496 s += "(";
Bob Wilson7f762182010-12-04 04:40:15 +0000497
Nate Begemanaf905ef2010-06-02 06:17:19 +0000498 for (unsigned i = 1, e = proto.size(); i != e; ++i, ++arg) {
Bob Wilson194aa582010-12-03 00:34:09 +0000499 if (define) {
Bob Wilsonc1fe1002011-04-22 00:37:01 +0000500 // Some macro arguments are used directly instead of being assigned
Bob Wilson194aa582010-12-03 00:34:09 +0000501 // to local temporaries; prepend an underscore prefix to make their
502 // names consistent with the local temporaries.
Bob Wilsonc1fe1002011-04-22 00:37:01 +0000503 if (MacroArgUsedDirectly(proto, i))
Bob Wilson194aa582010-12-03 00:34:09 +0000504 s += "__";
505 } else {
506 s += TypeString(proto[i], typestr) + " __";
Nate Begeman6c060db2010-06-09 01:09:00 +0000507 }
Nate Begemanaf905ef2010-06-02 06:17:19 +0000508 s.push_back(arg);
509 if ((i + 1) < e)
510 s += ", ";
511 }
Bob Wilson7f762182010-12-04 04:40:15 +0000512
Nate Begemanaf905ef2010-06-02 06:17:19 +0000513 s += ")";
514 return s;
Nate Begeman22237772010-06-02 00:34:55 +0000515}
516
Bob Wilson194aa582010-12-03 00:34:09 +0000517// Macro arguments are not type-checked like inline function arguments, so
518// assign them to local temporaries to get the right type checking.
Bob Wilson377296e2010-12-02 07:10:39 +0000519static std::string GenMacroLocals(const std::string &proto, StringRef typestr) {
520 char arg = 'a';
521 std::string s;
Bob Wilsonc1fe1002011-04-22 00:37:01 +0000522 bool generatedLocal = false;
Bob Wilson7f762182010-12-04 04:40:15 +0000523
Bob Wilson377296e2010-12-02 07:10:39 +0000524 for (unsigned i = 1, e = proto.size(); i != e; ++i, ++arg) {
525 // Do not create a temporary for an immediate argument.
526 // That would defeat the whole point of using a macro!
Bob Wilsonc1fe1002011-04-22 00:37:01 +0000527 if (proto[i] == 'i')
528 continue;
529 generatedLocal = true;
530
531 // For other (non-immediate) arguments that are used directly, a local
532 // temporary is still needed to get the correct type checking, even though
533 // that temporary is not used for anything.
534 if (MacroArgUsedDirectly(proto, i)) {
535 s += TypeString(proto[i], typestr) + " __";
536 s.push_back(arg);
537 s += "_ = (__";
538 s.push_back(arg);
539 s += "); (void)__";
540 s.push_back(arg);
541 s += "_; ";
542 continue;
543 }
Bob Wilson377296e2010-12-02 07:10:39 +0000544
545 s += TypeString(proto[i], typestr) + " __";
546 s.push_back(arg);
547 s += " = (";
548 s.push_back(arg);
549 s += "); ";
550 }
Bob Wilson7f762182010-12-04 04:40:15 +0000551
Bob Wilsonc1fe1002011-04-22 00:37:01 +0000552 if (generatedLocal)
553 s += "\\\n ";
Bob Wilson377296e2010-12-02 07:10:39 +0000554 return s;
555}
556
Bob Wilsonc4ba09d2010-12-07 20:02:45 +0000557// Use the vmovl builtin to sign-extend or zero-extend a vector.
Bob Wilsonb1e9df32010-12-08 21:39:00 +0000558static std::string Extend(StringRef typestr, const std::string &a) {
Bob Wilsonc4ba09d2010-12-07 20:02:45 +0000559 std::string s;
560 s = MangleName("vmovl", typestr, ClassS);
561 s += "(" + a + ")";
562 return s;
563}
564
Bob Wilson7f762182010-12-04 04:40:15 +0000565static std::string Duplicate(unsigned nElts, StringRef typestr,
Nate Begemancc3c41a2010-06-12 03:09:49 +0000566 const std::string &a) {
Nate Begeman4b425a82010-06-10 00:16:56 +0000567 std::string s;
Bob Wilson7f762182010-12-04 04:40:15 +0000568
Bob Wilson6904d7a2010-11-16 19:39:14 +0000569 s = "(" + TypeString('d', typestr) + "){ ";
Nate Begeman4b425a82010-06-10 00:16:56 +0000570 for (unsigned i = 0; i != nElts; ++i) {
571 s += a;
572 if ((i + 1) < nElts)
573 s += ", ";
574 }
575 s += " }";
Bob Wilson7f762182010-12-04 04:40:15 +0000576
Nate Begeman4b425a82010-06-10 00:16:56 +0000577 return s;
578}
579
Bob Wilsonb0d98692010-12-03 00:34:12 +0000580static std::string SplatLane(unsigned nElts, const std::string &vec,
581 const std::string &lane) {
582 std::string s = "__builtin_shufflevector(" + vec + ", " + vec;
583 for (unsigned i = 0; i < nElts; ++i)
584 s += ", " + lane;
585 s += ")";
586 return s;
587}
588
Bob Wilsonb308b622010-11-16 23:57:01 +0000589static unsigned GetNumElements(StringRef typestr, bool &quad) {
590 quad = false;
591 bool dummy = false;
Nate Begemancc3c41a2010-06-12 03:09:49 +0000592 char type = ClassifyType(typestr, quad, dummy, dummy);
593 unsigned nElts = 0;
594 switch (type) {
Bob Wilsonb308b622010-11-16 23:57:01 +0000595 case 'c': nElts = 8; break;
596 case 's': nElts = 4; break;
597 case 'i': nElts = 2; break;
598 case 'l': nElts = 1; break;
599 case 'h': nElts = 4; break;
600 case 'f': nElts = 2; break;
601 default:
602 throw "unhandled type!";
603 break;
Nate Begemancc3c41a2010-06-12 03:09:49 +0000604 }
Bob Wilsonb308b622010-11-16 23:57:01 +0000605 if (quad) nElts <<= 1;
606 return nElts;
607}
608
609// Generate the definition for this intrinsic, e.g. "a + b" for OpAdd.
610static std::string GenOpString(OpKind op, const std::string &proto,
611 StringRef typestr) {
612 bool quad;
613 unsigned nElts = GetNumElements(typestr, quad);
Bob Wilsonc1fe1002011-04-22 00:37:01 +0000614 bool define = UseMacro(proto);
Bob Wilson194aa582010-12-03 00:34:09 +0000615
Nate Begeman4b425a82010-06-10 00:16:56 +0000616 std::string ts = TypeString(proto[0], typestr);
Bob Wilsonee9ca072010-09-15 01:52:33 +0000617 std::string s;
Bob Wilson067a16c2011-01-07 23:40:49 +0000618 if (!define) {
Bob Wilson37a0b542010-12-02 07:44:23 +0000619 s = "return ";
Bob Wilsonee9ca072010-09-15 01:52:33 +0000620 }
Bob Wilson7f762182010-12-04 04:40:15 +0000621
Nate Begeman162d3ba2010-06-03 04:04:09 +0000622 switch(op) {
623 case OpAdd:
Bob Wilson194aa582010-12-03 00:34:09 +0000624 s += "__a + __b;";
Nate Begeman162d3ba2010-06-03 04:04:09 +0000625 break;
Bob Wilsone113ae52010-12-08 00:14:04 +0000626 case OpAddl:
Bob Wilsonb1e9df32010-12-08 21:39:00 +0000627 s += Extend(typestr, "__a") + " + " + Extend(typestr, "__b") + ";";
Bob Wilsone113ae52010-12-08 00:14:04 +0000628 break;
629 case OpAddw:
Bob Wilsonb1e9df32010-12-08 21:39:00 +0000630 s += "__a + " + Extend(typestr, "__b") + ";";
Bob Wilsone113ae52010-12-08 00:14:04 +0000631 break;
Nate Begeman162d3ba2010-06-03 04:04:09 +0000632 case OpSub:
Bob Wilson194aa582010-12-03 00:34:09 +0000633 s += "__a - __b;";
Nate Begeman162d3ba2010-06-03 04:04:09 +0000634 break;
Bob Wilsone113ae52010-12-08 00:14:04 +0000635 case OpSubl:
Bob Wilsonb1e9df32010-12-08 21:39:00 +0000636 s += Extend(typestr, "__a") + " - " + Extend(typestr, "__b") + ";";
Bob Wilsone113ae52010-12-08 00:14:04 +0000637 break;
638 case OpSubw:
Bob Wilsonb1e9df32010-12-08 21:39:00 +0000639 s += "__a - " + Extend(typestr, "__b") + ";";
Bob Wilsone113ae52010-12-08 00:14:04 +0000640 break;
Nate Begeman4b425a82010-06-10 00:16:56 +0000641 case OpMulN:
Bob Wilson194aa582010-12-03 00:34:09 +0000642 s += "__a * " + Duplicate(nElts, typestr, "__b") + ";";
Bob Wilsonf18dfec2010-11-16 19:16:06 +0000643 break;
Bob Wilsonb0d98692010-12-03 00:34:12 +0000644 case OpMulLane:
645 s += "__a * " + SplatLane(nElts, "__b", "__c") + ";";
646 break;
Nate Begeman162d3ba2010-06-03 04:04:09 +0000647 case OpMul:
Bob Wilson194aa582010-12-03 00:34:09 +0000648 s += "__a * __b;";
Nate Begeman162d3ba2010-06-03 04:04:09 +0000649 break;
Bob Wilson3467cd02010-12-07 22:02:48 +0000650 case OpMullLane:
Bob Wilsonbbe7c652011-03-31 00:09:35 +0000651 s += MangleName("vmull", typestr, ClassS) + "(__a, " +
652 SplatLane(nElts, "__b", "__c") + ");";
Bob Wilsonc4ba09d2010-12-07 20:02:45 +0000653 break;
Nate Begeman4b425a82010-06-10 00:16:56 +0000654 case OpMlaN:
Bob Wilson194aa582010-12-03 00:34:09 +0000655 s += "__a + (__b * " + Duplicate(nElts, typestr, "__c") + ");";
Bob Wilsonf18dfec2010-11-16 19:16:06 +0000656 break;
Bob Wilsonb0d98692010-12-03 00:34:12 +0000657 case OpMlaLane:
658 s += "__a + (__b * " + SplatLane(nElts, "__c", "__d") + ");";
659 break;
Nate Begeman162d3ba2010-06-03 04:04:09 +0000660 case OpMla:
Bob Wilson194aa582010-12-03 00:34:09 +0000661 s += "__a + (__b * __c);";
Nate Begeman162d3ba2010-06-03 04:04:09 +0000662 break;
Bob Wilson05843162010-12-07 23:53:37 +0000663 case OpMlalN:
Bob Wilsonbbe7c652011-03-31 00:09:35 +0000664 s += "__a + " + MangleName("vmull", typestr, ClassS) + "(__b, " +
665 Duplicate(nElts, typestr, "__c") + ");";
Bob Wilson05843162010-12-07 23:53:37 +0000666 break;
667 case OpMlalLane:
Bob Wilsonbbe7c652011-03-31 00:09:35 +0000668 s += "__a + " + MangleName("vmull", typestr, ClassS) + "(__b, " +
669 SplatLane(nElts, "__c", "__d") + ");";
Bob Wilson05843162010-12-07 23:53:37 +0000670 break;
671 case OpMlal:
Bob Wilsonbbe7c652011-03-31 00:09:35 +0000672 s += "__a + " + MangleName("vmull", typestr, ClassS) + "(__b, __c);";
Bob Wilson05843162010-12-07 23:53:37 +0000673 break;
Nate Begeman4b425a82010-06-10 00:16:56 +0000674 case OpMlsN:
Bob Wilson194aa582010-12-03 00:34:09 +0000675 s += "__a - (__b * " + Duplicate(nElts, typestr, "__c") + ");";
Bob Wilsonf18dfec2010-11-16 19:16:06 +0000676 break;
Bob Wilsonb0d98692010-12-03 00:34:12 +0000677 case OpMlsLane:
678 s += "__a - (__b * " + SplatLane(nElts, "__c", "__d") + ");";
679 break;
Nate Begeman162d3ba2010-06-03 04:04:09 +0000680 case OpMls:
Bob Wilson194aa582010-12-03 00:34:09 +0000681 s += "__a - (__b * __c);";
Nate Begeman162d3ba2010-06-03 04:04:09 +0000682 break;
Bob Wilson05843162010-12-07 23:53:37 +0000683 case OpMlslN:
Bob Wilsonbbe7c652011-03-31 00:09:35 +0000684 s += "__a - " + MangleName("vmull", typestr, ClassS) + "(__b, " +
685 Duplicate(nElts, typestr, "__c") + ");";
Bob Wilson05843162010-12-07 23:53:37 +0000686 break;
687 case OpMlslLane:
Bob Wilsonbbe7c652011-03-31 00:09:35 +0000688 s += "__a - " + MangleName("vmull", typestr, ClassS) + "(__b, " +
689 SplatLane(nElts, "__c", "__d") + ");";
Bob Wilson05843162010-12-07 23:53:37 +0000690 break;
691 case OpMlsl:
Bob Wilsonbbe7c652011-03-31 00:09:35 +0000692 s += "__a - " + MangleName("vmull", typestr, ClassS) + "(__b, __c);";
Bob Wilson05843162010-12-07 23:53:37 +0000693 break;
Bob Wilson74410892010-12-08 22:36:08 +0000694 case OpQDMullLane:
695 s += MangleName("vqdmull", typestr, ClassS) + "(__a, " +
696 SplatLane(nElts, "__b", "__c") + ");";
697 break;
698 case OpQDMlalLane:
Bob Wilsonc2ef8282010-12-10 06:37:53 +0000699 s += MangleName("vqdmlal", typestr, ClassS) + "(__a, __b, " +
700 SplatLane(nElts, "__c", "__d") + ");";
Bob Wilson74410892010-12-08 22:36:08 +0000701 break;
702 case OpQDMlslLane:
Bob Wilsonc2ef8282010-12-10 06:37:53 +0000703 s += MangleName("vqdmlsl", typestr, ClassS) + "(__a, __b, " +
704 SplatLane(nElts, "__c", "__d") + ");";
Bob Wilson74410892010-12-08 22:36:08 +0000705 break;
706 case OpQDMulhLane:
707 s += MangleName("vqdmulh", typestr, ClassS) + "(__a, " +
708 SplatLane(nElts, "__b", "__c") + ");";
709 break;
710 case OpQRDMulhLane:
711 s += MangleName("vqrdmulh", typestr, ClassS) + "(__a, " +
712 SplatLane(nElts, "__b", "__c") + ");";
713 break;
Nate Begeman162d3ba2010-06-03 04:04:09 +0000714 case OpEq:
Bob Wilson194aa582010-12-03 00:34:09 +0000715 s += "(" + ts + ")(__a == __b);";
Nate Begeman162d3ba2010-06-03 04:04:09 +0000716 break;
717 case OpGe:
Bob Wilson194aa582010-12-03 00:34:09 +0000718 s += "(" + ts + ")(__a >= __b);";
Nate Begeman162d3ba2010-06-03 04:04:09 +0000719 break;
720 case OpLe:
Bob Wilson194aa582010-12-03 00:34:09 +0000721 s += "(" + ts + ")(__a <= __b);";
Nate Begeman162d3ba2010-06-03 04:04:09 +0000722 break;
723 case OpGt:
Bob Wilson194aa582010-12-03 00:34:09 +0000724 s += "(" + ts + ")(__a > __b);";
Nate Begeman162d3ba2010-06-03 04:04:09 +0000725 break;
726 case OpLt:
Bob Wilson194aa582010-12-03 00:34:09 +0000727 s += "(" + ts + ")(__a < __b);";
Nate Begeman162d3ba2010-06-03 04:04:09 +0000728 break;
729 case OpNeg:
Bob Wilson194aa582010-12-03 00:34:09 +0000730 s += " -__a;";
Nate Begeman162d3ba2010-06-03 04:04:09 +0000731 break;
732 case OpNot:
Bob Wilson194aa582010-12-03 00:34:09 +0000733 s += " ~__a;";
Nate Begeman162d3ba2010-06-03 04:04:09 +0000734 break;
735 case OpAnd:
Bob Wilson194aa582010-12-03 00:34:09 +0000736 s += "__a & __b;";
Nate Begeman162d3ba2010-06-03 04:04:09 +0000737 break;
738 case OpOr:
Bob Wilson194aa582010-12-03 00:34:09 +0000739 s += "__a | __b;";
Nate Begeman162d3ba2010-06-03 04:04:09 +0000740 break;
741 case OpXor:
Bob Wilson194aa582010-12-03 00:34:09 +0000742 s += "__a ^ __b;";
Nate Begeman162d3ba2010-06-03 04:04:09 +0000743 break;
744 case OpAndNot:
Bob Wilson194aa582010-12-03 00:34:09 +0000745 s += "__a & ~__b;";
Nate Begeman162d3ba2010-06-03 04:04:09 +0000746 break;
747 case OpOrNot:
Bob Wilson194aa582010-12-03 00:34:09 +0000748 s += "__a | ~__b;";
Nate Begeman162d3ba2010-06-03 04:04:09 +0000749 break;
Nate Begeman3861e742010-06-03 21:35:22 +0000750 case OpCast:
Bob Wilson194aa582010-12-03 00:34:09 +0000751 s += "(" + ts + ")__a;";
Nate Begeman3861e742010-06-03 21:35:22 +0000752 break;
Nate Begeman900f4672010-06-08 00:14:42 +0000753 case OpConcat:
Bob Wilson194aa582010-12-03 00:34:09 +0000754 s += "(" + ts + ")__builtin_shufflevector((int64x1_t)__a";
755 s += ", (int64x1_t)__b, 0, 1);";
Nate Begeman900f4672010-06-08 00:14:42 +0000756 break;
Nate Begeman6c060db2010-06-09 01:09:00 +0000757 case OpHi:
Bob Wilson067a16c2011-01-07 23:40:49 +0000758 s += "(" + ts +
759 ")__builtin_shufflevector((int64x2_t)__a, (int64x2_t)__a, 1);";
Nate Begeman6c060db2010-06-09 01:09:00 +0000760 break;
761 case OpLo:
Bob Wilson067a16c2011-01-07 23:40:49 +0000762 s += "(" + ts +
763 ")__builtin_shufflevector((int64x2_t)__a, (int64x2_t)__a, 0);";
Nate Begeman6c060db2010-06-09 01:09:00 +0000764 break;
Nate Begeman900f4672010-06-08 00:14:42 +0000765 case OpDup:
Bob Wilson194aa582010-12-03 00:34:09 +0000766 s += Duplicate(nElts, typestr, "__a") + ";";
Nate Begemancc3c41a2010-06-12 03:09:49 +0000767 break;
Bob Wilson2196caa2010-12-07 22:39:24 +0000768 case OpDupLane:
769 s += SplatLane(nElts, "__a", "__b") + ";";
770 break;
Nate Begemancc3c41a2010-06-12 03:09:49 +0000771 case OpSelect:
772 // ((0 & 1) | (~0 & 2))
Bob Wilson1dbfa912010-12-02 01:18:20 +0000773 s += "(" + ts + ")";
Nate Begemancc3c41a2010-06-12 03:09:49 +0000774 ts = TypeString(proto[1], typestr);
Bob Wilson194aa582010-12-03 00:34:09 +0000775 s += "((__a & (" + ts + ")__b) | ";
776 s += "(~__a & (" + ts + ")__c));";
Nate Begemancc3c41a2010-06-12 03:09:49 +0000777 break;
778 case OpRev16:
Bob Wilson194aa582010-12-03 00:34:09 +0000779 s += "__builtin_shufflevector(__a, __a";
Bob Wilsonb308b622010-11-16 23:57:01 +0000780 for (unsigned i = 2; i <= nElts; i += 2)
Nate Begemancc3c41a2010-06-12 03:09:49 +0000781 for (unsigned j = 0; j != 2; ++j)
782 s += ", " + utostr(i - j - 1);
Bob Wilson37a0b542010-12-02 07:44:23 +0000783 s += ");";
Nate Begemancc3c41a2010-06-12 03:09:49 +0000784 break;
Bob Wilsonb308b622010-11-16 23:57:01 +0000785 case OpRev32: {
786 unsigned WordElts = nElts >> (1 + (int)quad);
Bob Wilson194aa582010-12-03 00:34:09 +0000787 s += "__builtin_shufflevector(__a, __a";
Bob Wilsonb308b622010-11-16 23:57:01 +0000788 for (unsigned i = WordElts; i <= nElts; i += WordElts)
789 for (unsigned j = 0; j != WordElts; ++j)
Nate Begemancc3c41a2010-06-12 03:09:49 +0000790 s += ", " + utostr(i - j - 1);
Bob Wilson37a0b542010-12-02 07:44:23 +0000791 s += ");";
Nate Begemancc3c41a2010-06-12 03:09:49 +0000792 break;
Bob Wilsonb308b622010-11-16 23:57:01 +0000793 }
794 case OpRev64: {
795 unsigned DblWordElts = nElts >> (int)quad;
Bob Wilson194aa582010-12-03 00:34:09 +0000796 s += "__builtin_shufflevector(__a, __a";
Bob Wilsonb308b622010-11-16 23:57:01 +0000797 for (unsigned i = DblWordElts; i <= nElts; i += DblWordElts)
798 for (unsigned j = 0; j != DblWordElts; ++j)
Nate Begemancc3c41a2010-06-12 03:09:49 +0000799 s += ", " + utostr(i - j - 1);
Bob Wilson37a0b542010-12-02 07:44:23 +0000800 s += ");";
Nate Begeman900f4672010-06-08 00:14:42 +0000801 break;
Bob Wilsonb308b622010-11-16 23:57:01 +0000802 }
Bob Wilsonb4504302010-12-08 21:39:04 +0000803 case OpAbdl: {
804 std::string abd = MangleName("vabd", typestr, ClassS) + "(__a, __b)";
805 if (typestr[0] != 'U') {
806 // vabd results are always unsigned and must be zero-extended.
807 std::string utype = "U" + typestr.str();
808 s += "(" + TypeString(proto[0], typestr) + ")";
809 abd = "(" + TypeString('d', utype) + ")" + abd;
810 s += Extend(utype, abd) + ";";
811 } else {
812 s += Extend(typestr, abd) + ";";
813 }
814 break;
815 }
Bob Wilsonf4f39d32010-12-08 20:09:10 +0000816 case OpAba:
817 s += "__a + " + MangleName("vabd", typestr, ClassS) + "(__b, __c);";
818 break;
Bob Wilsonb4504302010-12-08 21:39:04 +0000819 case OpAbal: {
820 s += "__a + ";
821 std::string abd = MangleName("vabd", typestr, ClassS) + "(__b, __c)";
822 if (typestr[0] != 'U') {
823 // vabd results are always unsigned and must be zero-extended.
824 std::string utype = "U" + typestr.str();
825 s += "(" + TypeString(proto[0], typestr) + ")";
826 abd = "(" + TypeString('d', utype) + ")" + abd;
827 s += Extend(utype, abd) + ";";
828 } else {
829 s += Extend(typestr, abd) + ";";
830 }
831 break;
832 }
Nate Begeman162d3ba2010-06-03 04:04:09 +0000833 default:
834 throw "unknown OpKind!";
835 break;
836 }
Nate Begeman162d3ba2010-06-03 04:04:09 +0000837 return s;
Nate Begemane66aab52010-06-02 07:14:28 +0000838}
839
Nate Begemanb0a4e452010-06-07 16:00:37 +0000840static unsigned GetNeonEnum(const std::string &proto, StringRef typestr) {
841 unsigned mod = proto[0];
842 unsigned ret = 0;
843
Nate Begeman900f4672010-06-08 00:14:42 +0000844 if (mod == 'v' || mod == 'f')
Nate Begemanb0a4e452010-06-07 16:00:37 +0000845 mod = proto[1];
846
847 bool quad = false;
848 bool poly = false;
849 bool usgn = false;
850 bool scal = false;
851 bool cnst = false;
852 bool pntr = false;
Bob Wilson7f762182010-12-04 04:40:15 +0000853
Nate Begeman59d70cb2010-08-06 01:24:11 +0000854 // Base type to get the type string for.
Nate Begemanb0a4e452010-06-07 16:00:37 +0000855 char type = ClassifyType(typestr, quad, poly, usgn);
Bob Wilson7f762182010-12-04 04:40:15 +0000856
Nate Begemanb0a4e452010-06-07 16:00:37 +0000857 // Based on the modifying character, change the type and width if necessary.
858 type = ModType(mod, type, quad, poly, usgn, scal, cnst, pntr);
Nate Begeman59d70cb2010-08-06 01:24:11 +0000859
Nate Begemanb0a4e452010-06-07 16:00:37 +0000860 if (usgn)
861 ret |= 0x08;
Nate Begeman59d70cb2010-08-06 01:24:11 +0000862 if (quad && proto[1] != 'g')
Nate Begemanb0a4e452010-06-07 16:00:37 +0000863 ret |= 0x10;
Bob Wilson7f762182010-12-04 04:40:15 +0000864
Nate Begemanb0a4e452010-06-07 16:00:37 +0000865 switch (type) {
Bob Wilson7f762182010-12-04 04:40:15 +0000866 case 'c':
Nate Begemanb0a4e452010-06-07 16:00:37 +0000867 ret |= poly ? 5 : 0;
868 break;
869 case 's':
870 ret |= poly ? 6 : 1;
871 break;
872 case 'i':
873 ret |= 2;
874 break;
875 case 'l':
876 ret |= 3;
877 break;
878 case 'h':
879 ret |= 7;
880 break;
881 case 'f':
882 ret |= 4;
883 break;
884 default:
885 throw "unhandled type!";
886 break;
887 }
888 return ret;
889}
890
Nate Begeman7c8c8832010-06-02 21:53:00 +0000891// Generate the definition for this intrinsic, e.g. __builtin_neon_cls(a)
Nate Begeman7c8c8832010-06-02 21:53:00 +0000892static std::string GenBuiltin(const std::string &name, const std::string &proto,
Bob Wilsonf18dfec2010-11-16 19:16:06 +0000893 StringRef typestr, ClassKind ck) {
Nate Begeman162d3ba2010-06-03 04:04:09 +0000894 std::string s;
Nate Begeman9e584b32010-06-04 22:53:30 +0000895
Nate Begemanc4a1b652010-06-20 21:09:52 +0000896 // If this builtin returns a struct 2, 3, or 4 vectors, pass it as an implicit
897 // sret-like argument.
Bob Wilson5b7fe592010-12-01 19:49:51 +0000898 bool sret = (proto[0] >= '2' && proto[0] <= '4');
Nate Begemanc4a1b652010-06-20 21:09:52 +0000899
Bob Wilsonc1fe1002011-04-22 00:37:01 +0000900 bool define = UseMacro(proto);
Nate Begeman9e584b32010-06-04 22:53:30 +0000901
Bob Wilson95148ad2010-12-01 19:49:56 +0000902 // Check if the prototype has a scalar operand with the type of the vector
903 // elements. If not, bitcasting the args will take care of arg checking.
904 // The actual signedness etc. will be taken care of with special enums.
Nate Begeman9e584b32010-06-04 22:53:30 +0000905 if (proto.find('s') == std::string::npos)
906 ck = ClassB;
Nate Begeman7c21f742010-06-04 21:36:00 +0000907
Nate Begeman162d3ba2010-06-03 04:04:09 +0000908 if (proto[0] != 'v') {
Nate Begeman6c060db2010-06-09 01:09:00 +0000909 std::string ts = TypeString(proto[0], typestr);
Bob Wilson7f762182010-12-04 04:40:15 +0000910
Nate Begeman6c060db2010-06-09 01:09:00 +0000911 if (define) {
Nate Begemanc4a1b652010-06-20 21:09:52 +0000912 if (sret)
Bob Wilson052008b2010-12-02 02:42:51 +0000913 s += ts + " r; ";
Bob Wilsone106bc12010-12-02 00:24:56 +0000914 else
Bob Wilsonf18dfec2010-11-16 19:16:06 +0000915 s += "(" + ts + ")";
Nate Begemanc4a1b652010-06-20 21:09:52 +0000916 } else if (sret) {
917 s += ts + " r; ";
Nate Begeman9e584b32010-06-04 22:53:30 +0000918 } else {
Bob Wilson37a0b542010-12-02 07:44:23 +0000919 s += "return (" + ts + ")";
Nate Begeman162d3ba2010-06-03 04:04:09 +0000920 }
Nate Begeman4b425a82010-06-10 00:16:56 +0000921 }
Bob Wilson7f762182010-12-04 04:40:15 +0000922
Nate Begeman4b425a82010-06-10 00:16:56 +0000923 bool splat = proto.find('a') != std::string::npos;
Bob Wilson7f762182010-12-04 04:40:15 +0000924
Nate Begeman7c8c8832010-06-02 21:53:00 +0000925 s += "__builtin_neon_";
Nate Begeman4b425a82010-06-10 00:16:56 +0000926 if (splat) {
Bob Wilson95148ad2010-12-01 19:49:56 +0000927 // Call the non-splat builtin: chop off the "_n" suffix from the name.
Nate Begeman4b425a82010-06-10 00:16:56 +0000928 std::string vname(name, 0, name.size()-2);
929 s += MangleName(vname, typestr, ck);
930 } else {
931 s += MangleName(name, typestr, ck);
932 }
Nate Begeman7c8c8832010-06-02 21:53:00 +0000933 s += "(";
Nate Begemanc4a1b652010-06-20 21:09:52 +0000934
935 // Pass the address of the return variable as the first argument to sret-like
936 // builtins.
937 if (sret)
938 s += "&r, ";
Bob Wilson7f762182010-12-04 04:40:15 +0000939
Bob Wilson377296e2010-12-02 07:10:39 +0000940 char arg = 'a';
Nate Begeman7c8c8832010-06-02 21:53:00 +0000941 for (unsigned i = 1, e = proto.size(); i != e; ++i, ++arg) {
Nate Begemancc3c41a2010-06-12 03:09:49 +0000942 std::string args = std::string(&arg, 1);
Bob Wilson95148ad2010-12-01 19:49:56 +0000943
Bob Wilson194aa582010-12-03 00:34:09 +0000944 // Use the local temporaries instead of the macro arguments.
945 args = "__" + args;
Bob Wilsonf00140c2010-12-01 19:49:58 +0000946
947 bool argQuad = false;
948 bool argPoly = false;
949 bool argUsgn = false;
950 bool argScalar = false;
951 bool dummy = false;
952 char argType = ClassifyType(typestr, argQuad, argPoly, argUsgn);
953 argType = ModType(proto[i], argType, argQuad, argPoly, argUsgn, argScalar,
954 dummy, dummy);
955
Nate Begeman9e584b32010-06-04 22:53:30 +0000956 // Handle multiple-vector values specially, emitting each subvector as an
957 // argument to the __builtin.
Bob Wilson5b7fe592010-12-01 19:49:51 +0000958 if (proto[i] >= '2' && proto[i] <= '4') {
Bob Wilsonf00140c2010-12-01 19:49:58 +0000959 // Check if an explicit cast is needed.
960 if (argType != 'c' || argPoly || argUsgn)
961 args = (argQuad ? "(int8x16_t)" : "(int8x8_t)") + args;
962
Nate Begeman9e584b32010-06-04 22:53:30 +0000963 for (unsigned vi = 0, ve = proto[i] - '0'; vi != ve; ++vi) {
Bob Wilsonf18dfec2010-11-16 19:16:06 +0000964 s += args + ".val[" + utostr(vi) + "]";
Nate Begeman9e584b32010-06-04 22:53:30 +0000965 if ((vi + 1) < ve)
966 s += ", ";
967 }
968 if ((i + 1) < e)
969 s += ", ";
970
971 continue;
972 }
Bob Wilson7f762182010-12-04 04:40:15 +0000973
Bob Wilson4a6c7fc2010-12-02 01:18:23 +0000974 if (splat && (i + 1) == e)
975 args = Duplicate(GetNumElements(typestr, argQuad), typestr, args);
976
Bob Wilsonf00140c2010-12-01 19:49:58 +0000977 // Check if an explicit cast is needed.
Bob Wilson4a6c7fc2010-12-02 01:18:23 +0000978 if ((splat || !argScalar) &&
Bob Wilsonf00140c2010-12-01 19:49:58 +0000979 ((ck == ClassB && argType != 'c') || argPoly || argUsgn)) {
980 std::string argTypeStr = "c";
981 if (ck != ClassB)
982 argTypeStr = argType;
983 if (argQuad)
984 argTypeStr = "Q" + argTypeStr;
985 args = "(" + TypeString('d', argTypeStr) + ")" + args;
986 }
Bob Wilson7f762182010-12-04 04:40:15 +0000987
Bob Wilson4a6c7fc2010-12-02 01:18:23 +0000988 s += args;
Nate Begeman7c8c8832010-06-02 21:53:00 +0000989 if ((i + 1) < e)
990 s += ", ";
991 }
Bob Wilson7f762182010-12-04 04:40:15 +0000992
Nate Begeman9e584b32010-06-04 22:53:30 +0000993 // Extra constant integer to hold type class enum for this function, e.g. s8
Nate Begeman9e584b32010-06-04 22:53:30 +0000994 if (ck == ClassB)
Nate Begemanb0a4e452010-06-07 16:00:37 +0000995 s += ", " + utostr(GetNeonEnum(proto, typestr));
Bob Wilson7f762182010-12-04 04:40:15 +0000996
Bob Wilson052008b2010-12-02 02:42:51 +0000997 s += ");";
Nate Begeman9e584b32010-06-04 22:53:30 +0000998
Bob Wilson37a0b542010-12-02 07:44:23 +0000999 if (proto[0] != 'v' && sret) {
1000 if (define)
1001 s += " r;";
1002 else
Nate Begemanc4a1b652010-06-20 21:09:52 +00001003 s += " return r;";
Nate Begeman9e584b32010-06-04 22:53:30 +00001004 }
Nate Begeman7c8c8832010-06-02 21:53:00 +00001005 return s;
Nate Begemane66aab52010-06-02 07:14:28 +00001006}
1007
Bob Wilson7f762182010-12-04 04:40:15 +00001008static std::string GenBuiltinDef(const std::string &name,
Nate Begeman73cef3e2010-06-04 01:26:15 +00001009 const std::string &proto,
1010 StringRef typestr, ClassKind ck) {
1011 std::string s("BUILTIN(__builtin_neon_");
Nate Begeman92f98af2010-06-04 07:11:25 +00001012
Bob Wilson7f762182010-12-04 04:40:15 +00001013 // If all types are the same size, bitcasting the args will take care
Nate Begeman92f98af2010-06-04 07:11:25 +00001014 // of arg checking. The actual signedness etc. will be taken care of with
1015 // special enums.
1016 if (proto.find('s') == std::string::npos)
1017 ck = ClassB;
Bob Wilson7f762182010-12-04 04:40:15 +00001018
Nate Begeman73cef3e2010-06-04 01:26:15 +00001019 s += MangleName(name, typestr, ck);
1020 s += ", \"";
Bob Wilson7f762182010-12-04 04:40:15 +00001021
Nate Begeman92f98af2010-06-04 07:11:25 +00001022 for (unsigned i = 0, e = proto.size(); i != e; ++i)
Nate Begeman7c21f742010-06-04 21:36:00 +00001023 s += BuiltinTypeString(proto[i], typestr, ck, i == 0);
1024
1025 // Extra constant integer to hold type class enum for this function, e.g. s8
1026 if (ck == ClassB)
1027 s += "i";
Bob Wilson7f762182010-12-04 04:40:15 +00001028
Nate Begeman73cef3e2010-06-04 01:26:15 +00001029 s += "\", \"n\")";
1030 return s;
1031}
1032
Bob Wilson3890e392010-12-07 01:12:23 +00001033static std::string GenIntrinsic(const std::string &name,
1034 const std::string &proto,
1035 StringRef outTypeStr, StringRef inTypeStr,
1036 OpKind kind, ClassKind classKind) {
1037 assert(!proto.empty() && "");
Bob Wilsonc1fe1002011-04-22 00:37:01 +00001038 bool define = UseMacro(proto);
Bob Wilson3890e392010-12-07 01:12:23 +00001039 std::string s;
1040
1041 // static always inline + return type
1042 if (define)
1043 s += "#define ";
1044 else
1045 s += "__ai " + TypeString(proto[0], outTypeStr) + " ";
1046
1047 // Function name with type suffix
1048 std::string mangledName = MangleName(name, outTypeStr, ClassS);
1049 if (outTypeStr != inTypeStr) {
1050 // If the input type is different (e.g., for vreinterpret), append a suffix
1051 // for the input type. String off a "Q" (quad) prefix so that MangleName
1052 // does not insert another "q" in the name.
1053 unsigned typeStrOff = (inTypeStr[0] == 'Q' ? 1 : 0);
1054 StringRef inTypeNoQuad = inTypeStr.substr(typeStrOff);
1055 mangledName = MangleName(mangledName, inTypeNoQuad, ClassS);
1056 }
1057 s += mangledName;
1058
1059 // Function arguments
1060 s += GenArgs(proto, inTypeStr);
1061
1062 // Definition.
1063 if (define) {
1064 s += " __extension__ ({ \\\n ";
1065 s += GenMacroLocals(proto, inTypeStr);
1066 } else {
1067 s += " { \\\n ";
1068 }
1069
1070 if (kind != OpNone)
1071 s += GenOpString(kind, proto, outTypeStr);
1072 else
1073 s += GenBuiltin(name, proto, outTypeStr, classKind);
1074 if (define)
1075 s += " })";
1076 else
1077 s += " }";
1078 s += "\n";
1079 return s;
1080}
1081
Nate Begemand72c9002010-06-13 04:47:03 +00001082/// run - Read the records in arm_neon.td and output arm_neon.h. arm_neon.h
1083/// is comprised of type definitions and function declarations.
Nate Begeman5ddb0872010-05-28 01:08:32 +00001084void NeonEmitter::run(raw_ostream &OS) {
Bob Wilson0e1fb7a2010-12-09 18:31:01 +00001085 OS <<
Bob Wilsonb78558c2010-12-09 18:43:35 +00001086 "/*===---- arm_neon.h - ARM Neon intrinsics ------------------------------"
1087 "---===\n"
Bob Wilson0e1fb7a2010-12-09 18:31:01 +00001088 " *\n"
Bob Wilsonb78558c2010-12-09 18:43:35 +00001089 " * Permission is hereby granted, free of charge, to any person obtaining "
1090 "a copy\n"
1091 " * of this software and associated documentation files (the \"Software\"),"
1092 " to deal\n"
1093 " * in the Software without restriction, including without limitation the "
1094 "rights\n"
1095 " * to use, copy, modify, merge, publish, distribute, sublicense, "
1096 "and/or sell\n"
Bob Wilson0e1fb7a2010-12-09 18:31:01 +00001097 " * copies of the Software, and to permit persons to whom the Software is\n"
1098 " * furnished to do so, subject to the following conditions:\n"
1099 " *\n"
Bob Wilsonb78558c2010-12-09 18:43:35 +00001100 " * The above copyright notice and this permission notice shall be "
1101 "included in\n"
Bob Wilson0e1fb7a2010-12-09 18:31:01 +00001102 " * all copies or substantial portions of the Software.\n"
1103 " *\n"
Bob Wilsonb78558c2010-12-09 18:43:35 +00001104 " * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, "
1105 "EXPRESS OR\n"
1106 " * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF "
1107 "MERCHANTABILITY,\n"
1108 " * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT "
1109 "SHALL THE\n"
1110 " * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR "
1111 "OTHER\n"
1112 " * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, "
1113 "ARISING FROM,\n"
1114 " * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER "
1115 "DEALINGS IN\n"
Bob Wilson0e1fb7a2010-12-09 18:31:01 +00001116 " * THE SOFTWARE.\n"
1117 " *\n"
Bob Wilsonb78558c2010-12-09 18:43:35 +00001118 " *===--------------------------------------------------------------------"
1119 "---===\n"
Bob Wilson0e1fb7a2010-12-09 18:31:01 +00001120 " */\n\n";
Bob Wilson7f762182010-12-04 04:40:15 +00001121
Nate Begeman5ddb0872010-05-28 01:08:32 +00001122 OS << "#ifndef __ARM_NEON_H\n";
1123 OS << "#define __ARM_NEON_H\n\n";
Bob Wilson7f762182010-12-04 04:40:15 +00001124
Nate Begeman5ddb0872010-05-28 01:08:32 +00001125 OS << "#ifndef __ARM_NEON__\n";
1126 OS << "#error \"NEON support not enabled\"\n";
1127 OS << "#endif\n\n";
1128
1129 OS << "#include <stdint.h>\n\n";
Nate Begeman7c8c8832010-06-02 21:53:00 +00001130
1131 // Emit NEON-specific scalar typedefs.
Nate Begeman7c8c8832010-06-02 21:53:00 +00001132 OS << "typedef float float32_t;\n";
Bob Wilson4fbf6382010-11-16 23:57:03 +00001133 OS << "typedef int8_t poly8_t;\n";
1134 OS << "typedef int16_t poly16_t;\n";
Nate Begeman162d3ba2010-06-03 04:04:09 +00001135 OS << "typedef uint16_t float16_t;\n";
Nate Begeman9e584b32010-06-04 22:53:30 +00001136
Nate Begeman7c8c8832010-06-02 21:53:00 +00001137 // Emit Neon vector typedefs.
1138 std::string TypedefTypes("cQcsQsiQilQlUcQUcUsQUsUiQUiUlQUlhQhfQfPcQPcPsQPs");
1139 SmallVector<StringRef, 24> TDTypeVec;
1140 ParseTypes(0, TypedefTypes, TDTypeVec);
1141
1142 // Emit vector typedefs.
Bob Wilson6904d7a2010-11-16 19:39:14 +00001143 for (unsigned i = 0, e = TDTypeVec.size(); i != e; ++i) {
Bob Wilson6a8aceb2010-11-16 23:57:06 +00001144 bool dummy, quad = false, poly = false;
1145 (void) ClassifyType(TDTypeVec[i], quad, poly, dummy);
1146 if (poly)
1147 OS << "typedef __attribute__((neon_polyvector_type(";
1148 else
1149 OS << "typedef __attribute__((neon_vector_type(";
Bob Wilson7f762182010-12-04 04:40:15 +00001150
Bob Wilson6a8aceb2010-11-16 23:57:06 +00001151 unsigned nElts = GetNumElements(TDTypeVec[i], quad);
1152 OS << utostr(nElts) << "))) ";
1153 if (nElts < 10)
Bob Wilson6904d7a2010-11-16 19:39:14 +00001154 OS << " ";
Bob Wilson7f762182010-12-04 04:40:15 +00001155
Bob Wilson6904d7a2010-11-16 19:39:14 +00001156 OS << TypeString('s', TDTypeVec[i]);
1157 OS << " " << TypeString('d', TDTypeVec[i]) << ";\n";
Nate Begeman7c8c8832010-06-02 21:53:00 +00001158 }
1159 OS << "\n";
1160
1161 // Emit struct typedefs.
Bob Wilson6904d7a2010-11-16 19:39:14 +00001162 for (unsigned vi = 2; vi != 5; ++vi) {
Nate Begeman7c8c8832010-06-02 21:53:00 +00001163 for (unsigned i = 0, e = TDTypeVec.size(); i != e; ++i) {
Bob Wilson6904d7a2010-11-16 19:39:14 +00001164 std::string ts = TypeString('d', TDTypeVec[i]);
1165 std::string vs = TypeString('0' + vi, TDTypeVec[i]);
1166 OS << "typedef struct " << vs << " {\n";
1167 OS << " " << ts << " val";
1168 OS << "[" << utostr(vi) << "]";
1169 OS << ";\n} ";
Bob Wilsonf18dfec2010-11-16 19:16:06 +00001170 OS << vs << ";\n\n";
Nate Begeman7c8c8832010-06-02 21:53:00 +00001171 }
1172 }
Bob Wilson7f762182010-12-04 04:40:15 +00001173
Nate Begeman7c8c8832010-06-02 21:53:00 +00001174 OS << "#define __ai static __attribute__((__always_inline__))\n\n";
1175
Nate Begeman5ddb0872010-05-28 01:08:32 +00001176 std::vector<Record*> RV = Records.getAllDerivedDefinitions("Inst");
Bob Wilson7f762182010-12-04 04:40:15 +00001177
Bob Wilsonbbe7c652011-03-31 00:09:35 +00001178 // Emit vmovl, vmull and vabd intrinsics first so they can be used by other
Bob Wilson74410892010-12-08 22:36:08 +00001179 // intrinsics. (Some of the saturating multiply instructions are also
1180 // used to implement the corresponding "_lane" variants, but tablegen
1181 // sorts the records into alphabetical order so that the "_lane" variants
1182 // come after the intrinsics they use.)
Bob Wilsonda1d3dc2010-12-07 23:53:32 +00001183 emitIntrinsic(OS, Records.getDef("VMOVL"));
Bob Wilsonbbe7c652011-03-31 00:09:35 +00001184 emitIntrinsic(OS, Records.getDef("VMULL"));
Bob Wilsonf4f39d32010-12-08 20:09:10 +00001185 emitIntrinsic(OS, Records.getDef("VABD"));
Bob Wilsonda1d3dc2010-12-07 23:53:32 +00001186
Nate Begeman5ddb0872010-05-28 01:08:32 +00001187 for (unsigned i = 0, e = RV.size(); i != e; ++i) {
1188 Record *R = RV[i];
Bob Wilsonbbe7c652011-03-31 00:09:35 +00001189 if (R->getName() != "VMOVL" &&
1190 R->getName() != "VMULL" &&
1191 R->getName() != "VABD")
Bob Wilsonda1d3dc2010-12-07 23:53:32 +00001192 emitIntrinsic(OS, R);
Nate Begeman5ddb0872010-05-28 01:08:32 +00001193 }
Bob Wilsonda1d3dc2010-12-07 23:53:32 +00001194
Nate Begeman73cef3e2010-06-04 01:26:15 +00001195 OS << "#undef __ai\n\n";
Nate Begeman7c8c8832010-06-02 21:53:00 +00001196 OS << "#endif /* __ARM_NEON_H */\n";
Nate Begeman5ddb0872010-05-28 01:08:32 +00001197}
Nate Begemana8979a02010-06-04 00:21:41 +00001198
Bob Wilsonda1d3dc2010-12-07 23:53:32 +00001199/// emitIntrinsic - Write out the arm_neon.h header file definitions for the
1200/// intrinsics specified by record R.
1201void NeonEmitter::emitIntrinsic(raw_ostream &OS, Record *R) {
1202 std::string name = R->getValueAsString("Name");
1203 std::string Proto = R->getValueAsString("Prototype");
1204 std::string Types = R->getValueAsString("Types");
1205
1206 SmallVector<StringRef, 16> TypeVec;
1207 ParseTypes(R, Types, TypeVec);
1208
1209 OpKind kind = OpMap[R->getValueAsDef("Operand")->getName()];
1210
1211 ClassKind classKind = ClassNone;
1212 if (R->getSuperClasses().size() >= 2)
1213 classKind = ClassMap[R->getSuperClasses()[1]];
1214 if (classKind == ClassNone && kind == OpNone)
1215 throw TGError(R->getLoc(), "Builtin has no class kind");
1216
1217 for (unsigned ti = 0, te = TypeVec.size(); ti != te; ++ti) {
1218 if (kind == OpReinterpret) {
1219 bool outQuad = false;
1220 bool dummy = false;
1221 (void)ClassifyType(TypeVec[ti], outQuad, dummy, dummy);
1222 for (unsigned srcti = 0, srcte = TypeVec.size();
1223 srcti != srcte; ++srcti) {
1224 bool inQuad = false;
1225 (void)ClassifyType(TypeVec[srcti], inQuad, dummy, dummy);
1226 if (srcti == ti || inQuad != outQuad)
1227 continue;
1228 OS << GenIntrinsic(name, Proto, TypeVec[ti], TypeVec[srcti],
1229 OpCast, ClassS);
1230 }
1231 } else {
1232 OS << GenIntrinsic(name, Proto, TypeVec[ti], TypeVec[ti],
1233 kind, classKind);
1234 }
1235 }
1236 OS << "\n";
1237}
1238
Bob Wilson06b04aa2010-12-15 16:58:42 +00001239static unsigned RangeFromType(const char mod, StringRef typestr) {
Nate Begeman918f8e42010-06-14 05:17:23 +00001240 // base type to get the type string for.
1241 bool quad = false, dummy = false;
1242 char type = ClassifyType(typestr, quad, dummy, dummy);
Bob Wilson06b04aa2010-12-15 16:58:42 +00001243 type = ModType(mod, type, quad, dummy, dummy, dummy, dummy, dummy);
Bob Wilson7f762182010-12-04 04:40:15 +00001244
Nate Begeman918f8e42010-06-14 05:17:23 +00001245 switch (type) {
1246 case 'c':
Nate Begeman4da883a2010-06-15 22:10:31 +00001247 return (8 << (int)quad) - 1;
Nate Begeman918f8e42010-06-14 05:17:23 +00001248 case 'h':
1249 case 's':
Nate Begeman4da883a2010-06-15 22:10:31 +00001250 return (4 << (int)quad) - 1;
Nate Begeman918f8e42010-06-14 05:17:23 +00001251 case 'f':
1252 case 'i':
Nate Begeman4da883a2010-06-15 22:10:31 +00001253 return (2 << (int)quad) - 1;
Nate Begeman918f8e42010-06-14 05:17:23 +00001254 case 'l':
Nate Begeman4da883a2010-06-15 22:10:31 +00001255 return (1 << (int)quad) - 1;
Nate Begeman918f8e42010-06-14 05:17:23 +00001256 default:
1257 throw "unhandled type!";
1258 break;
1259 }
Bob Wilsonfdb530d2010-07-28 18:21:10 +00001260 assert(0 && "unreachable");
1261 return 0;
Nate Begeman918f8e42010-06-14 05:17:23 +00001262}
1263
Nate Begemanf8c4c272010-06-17 04:15:13 +00001264/// runHeader - Emit a file with sections defining:
1265/// 1. the NEON section of BuiltinsARM.def.
1266/// 2. the SemaChecking code for the type overload checking.
1267/// 3. the SemaChecking code for validation of intrinsic immedate arguments.
Nate Begemana8979a02010-06-04 00:21:41 +00001268void NeonEmitter::runHeader(raw_ostream &OS) {
Nate Begeman73cef3e2010-06-04 01:26:15 +00001269 std::vector<Record*> RV = Records.getAllDerivedDefinitions("Inst");
1270
1271 StringMap<OpKind> EmittedMap;
Bob Wilson7f762182010-12-04 04:40:15 +00001272
Nate Begemanf8c4c272010-06-17 04:15:13 +00001273 // Generate BuiltinsARM.def for NEON
1274 OS << "#ifdef GET_NEON_BUILTINS\n";
Nate Begeman73cef3e2010-06-04 01:26:15 +00001275 for (unsigned i = 0, e = RV.size(); i != e; ++i) {
1276 Record *R = RV[i];
Nate Begeman73cef3e2010-06-04 01:26:15 +00001277 OpKind k = OpMap[R->getValueAsDef("Operand")->getName()];
1278 if (k != OpNone)
1279 continue;
Nate Begeman73cef3e2010-06-04 01:26:15 +00001280
Nate Begemanf8c4c272010-06-17 04:15:13 +00001281 std::string Proto = R->getValueAsString("Prototype");
Bob Wilson7f762182010-12-04 04:40:15 +00001282
Nate Begemand72c9002010-06-13 04:47:03 +00001283 // Functions with 'a' (the splat code) in the type prototype should not get
1284 // their own builtin as they use the non-splat variant.
Nate Begeman4b425a82010-06-10 00:16:56 +00001285 if (Proto.find('a') != std::string::npos)
1286 continue;
Bob Wilson7f762182010-12-04 04:40:15 +00001287
Nate Begemanf8c4c272010-06-17 04:15:13 +00001288 std::string Types = R->getValueAsString("Types");
Nate Begeman73cef3e2010-06-04 01:26:15 +00001289 SmallVector<StringRef, 16> TypeVec;
1290 ParseTypes(R, Types, TypeVec);
Bob Wilson7f762182010-12-04 04:40:15 +00001291
Nate Begeman73cef3e2010-06-04 01:26:15 +00001292 if (R->getSuperClasses().size() < 2)
1293 throw TGError(R->getLoc(), "Builtin has no class kind");
Bob Wilson7f762182010-12-04 04:40:15 +00001294
Bob Wilsonce0bb542010-12-03 17:19:39 +00001295 std::string name = R->getValueAsString("Name");
Nate Begeman73cef3e2010-06-04 01:26:15 +00001296 ClassKind ck = ClassMap[R->getSuperClasses()[1]];
Bob Wilson7f762182010-12-04 04:40:15 +00001297
Nate Begeman73cef3e2010-06-04 01:26:15 +00001298 for (unsigned ti = 0, te = TypeVec.size(); ti != te; ++ti) {
Nate Begemand72c9002010-06-13 04:47:03 +00001299 // Generate the BuiltinsARM.def declaration for this builtin, ensuring
1300 // that each unique BUILTIN() macro appears only once in the output
1301 // stream.
Nate Begeman73cef3e2010-06-04 01:26:15 +00001302 std::string bd = GenBuiltinDef(name, Proto, TypeVec[ti], ck);
1303 if (EmittedMap.count(bd))
1304 continue;
Bob Wilson7f762182010-12-04 04:40:15 +00001305
Nate Begeman73cef3e2010-06-04 01:26:15 +00001306 EmittedMap[bd] = OpNone;
1307 OS << bd << "\n";
1308 }
Nate Begemanf8c4c272010-06-17 04:15:13 +00001309 }
1310 OS << "#endif\n\n";
Bob Wilson7f762182010-12-04 04:40:15 +00001311
Nate Begemanf8c4c272010-06-17 04:15:13 +00001312 // Generate the overloaded type checking code for SemaChecking.cpp
1313 OS << "#ifdef GET_NEON_OVERLOAD_CHECK\n";
1314 for (unsigned i = 0, e = RV.size(); i != e; ++i) {
1315 Record *R = RV[i];
1316 OpKind k = OpMap[R->getValueAsDef("Operand")->getName()];
1317 if (k != OpNone)
Nate Begemand72c9002010-06-13 04:47:03 +00001318 continue;
Bob Wilson7f762182010-12-04 04:40:15 +00001319
Nate Begemanf8c4c272010-06-17 04:15:13 +00001320 std::string Proto = R->getValueAsString("Prototype");
1321 std::string Types = R->getValueAsString("Types");
Bob Wilsonce0bb542010-12-03 17:19:39 +00001322 std::string name = R->getValueAsString("Name");
Bob Wilson7f762182010-12-04 04:40:15 +00001323
Nate Begemanf8c4c272010-06-17 04:15:13 +00001324 // Functions with 'a' (the splat code) in the type prototype should not get
1325 // their own builtin as they use the non-splat variant.
1326 if (Proto.find('a') != std::string::npos)
1327 continue;
Bob Wilson7f762182010-12-04 04:40:15 +00001328
Nate Begemanf8c4c272010-06-17 04:15:13 +00001329 // Functions which have a scalar argument cannot be overloaded, no need to
1330 // check them if we are emitting the type checking code.
1331 if (Proto.find('s') != std::string::npos)
1332 continue;
Bob Wilson7f762182010-12-04 04:40:15 +00001333
Nate Begemanf8c4c272010-06-17 04:15:13 +00001334 SmallVector<StringRef, 16> TypeVec;
1335 ParseTypes(R, Types, TypeVec);
Bob Wilson7f762182010-12-04 04:40:15 +00001336
Nate Begemanf8c4c272010-06-17 04:15:13 +00001337 if (R->getSuperClasses().size() < 2)
1338 throw TGError(R->getLoc(), "Builtin has no class kind");
Bob Wilson7f762182010-12-04 04:40:15 +00001339
Nate Begemanf8c4c272010-06-17 04:15:13 +00001340 int si = -1, qi = -1;
1341 unsigned mask = 0, qmask = 0;
1342 for (unsigned ti = 0, te = TypeVec.size(); ti != te; ++ti) {
1343 // Generate the switch case(s) for this builtin for the type validation.
1344 bool quad = false, poly = false, usgn = false;
1345 (void) ClassifyType(TypeVec[ti], quad, poly, usgn);
Bob Wilson7f762182010-12-04 04:40:15 +00001346
Nate Begemanf8c4c272010-06-17 04:15:13 +00001347 if (quad) {
1348 qi = ti;
1349 qmask |= 1 << GetNeonEnum(Proto, TypeVec[ti]);
1350 } else {
1351 si = ti;
1352 mask |= 1 << GetNeonEnum(Proto, TypeVec[ti]);
1353 }
1354 }
1355 if (mask)
Bob Wilson7f762182010-12-04 04:40:15 +00001356 OS << "case ARM::BI__builtin_neon_"
Bob Wilsond8b84702010-12-07 01:12:19 +00001357 << MangleName(name, TypeVec[si], ClassB)
1358 << ": mask = " << "0x" << utohexstr(mask) << "; break;\n";
Nate Begemanf8c4c272010-06-17 04:15:13 +00001359 if (qmask)
Bob Wilson7f762182010-12-04 04:40:15 +00001360 OS << "case ARM::BI__builtin_neon_"
Bob Wilsond8b84702010-12-07 01:12:19 +00001361 << MangleName(name, TypeVec[qi], ClassB)
1362 << ": mask = " << "0x" << utohexstr(qmask) << "; break;\n";
Nate Begemanf8c4c272010-06-17 04:15:13 +00001363 }
1364 OS << "#endif\n\n";
Bob Wilson7f762182010-12-04 04:40:15 +00001365
Nate Begemanf8c4c272010-06-17 04:15:13 +00001366 // Generate the intrinsic range checking code for shift/lane immediates.
1367 OS << "#ifdef GET_NEON_IMMEDIATE_CHECK\n";
1368 for (unsigned i = 0, e = RV.size(); i != e; ++i) {
1369 Record *R = RV[i];
Bob Wilson7f762182010-12-04 04:40:15 +00001370
Nate Begemanf8c4c272010-06-17 04:15:13 +00001371 OpKind k = OpMap[R->getValueAsDef("Operand")->getName()];
1372 if (k != OpNone)
1373 continue;
Bob Wilson7f762182010-12-04 04:40:15 +00001374
Bob Wilsonce0bb542010-12-03 17:19:39 +00001375 std::string name = R->getValueAsString("Name");
Nate Begemanf8c4c272010-06-17 04:15:13 +00001376 std::string Proto = R->getValueAsString("Prototype");
1377 std::string Types = R->getValueAsString("Types");
Bob Wilson7f762182010-12-04 04:40:15 +00001378
Nate Begemanf8c4c272010-06-17 04:15:13 +00001379 // Functions with 'a' (the splat code) in the type prototype should not get
1380 // their own builtin as they use the non-splat variant.
1381 if (Proto.find('a') != std::string::npos)
1382 continue;
Bob Wilson7f762182010-12-04 04:40:15 +00001383
Nate Begemanf8c4c272010-06-17 04:15:13 +00001384 // Functions which do not have an immediate do not need to have range
1385 // checking code emitted.
Bob Wilson06b04aa2010-12-15 16:58:42 +00001386 size_t immPos = Proto.find('i');
1387 if (immPos == std::string::npos)
Nate Begemanf8c4c272010-06-17 04:15:13 +00001388 continue;
Bob Wilson7f762182010-12-04 04:40:15 +00001389
Nate Begemanf8c4c272010-06-17 04:15:13 +00001390 SmallVector<StringRef, 16> TypeVec;
1391 ParseTypes(R, Types, TypeVec);
Bob Wilson7f762182010-12-04 04:40:15 +00001392
Nate Begemanf8c4c272010-06-17 04:15:13 +00001393 if (R->getSuperClasses().size() < 2)
1394 throw TGError(R->getLoc(), "Builtin has no class kind");
Bob Wilson7f762182010-12-04 04:40:15 +00001395
Nate Begemanf8c4c272010-06-17 04:15:13 +00001396 ClassKind ck = ClassMap[R->getSuperClasses()[1]];
Bob Wilson7f762182010-12-04 04:40:15 +00001397
Nate Begemanf8c4c272010-06-17 04:15:13 +00001398 for (unsigned ti = 0, te = TypeVec.size(); ti != te; ++ti) {
1399 std::string namestr, shiftstr, rangestr;
Bob Wilson7f762182010-12-04 04:40:15 +00001400
Bob Wilsone450a002011-06-09 16:57:29 +00001401 if (R->getValueAsBit("isVCVT_N")) {
1402 // VCVT between floating- and fixed-point values takes an immediate
1403 // in the range 1 to 32.
1404 ck = ClassB;
1405 rangestr = "l = 1; u = 31"; // upper bound = l + u
1406 } else if (Proto.find('s') == std::string::npos) {
1407 // Builtins which are overloaded by type will need to have their upper
1408 // bound computed at Sema time based on the type constant.
Nate Begemanf8c4c272010-06-17 04:15:13 +00001409 ck = ClassB;
1410 if (R->getValueAsBit("isShift")) {
1411 shiftstr = ", true";
Bob Wilson7f762182010-12-04 04:40:15 +00001412
Nate Begemanf8c4c272010-06-17 04:15:13 +00001413 // Right shifts have an 'r' in the name, left shifts do not.
1414 if (name.find('r') != std::string::npos)
1415 rangestr = "l = 1; ";
1416 }
1417 rangestr += "u = RFT(TV" + shiftstr + ")";
1418 } else {
Bob Wilson06b04aa2010-12-15 16:58:42 +00001419 // The immediate generally refers to a lane in the preceding argument.
1420 assert(immPos > 0 && "unexpected immediate operand");
1421 rangestr = "u = " + utostr(RangeFromType(Proto[immPos-1], TypeVec[ti]));
Nate Begemanf8c4c272010-06-17 04:15:13 +00001422 }
Nate Begemanc4a1b652010-06-20 21:09:52 +00001423 // Make sure cases appear only once by uniquing them in a string map.
Nate Begemanf8c4c272010-06-17 04:15:13 +00001424 namestr = MangleName(name, TypeVec[ti], ck);
1425 if (EmittedMap.count(namestr))
1426 continue;
1427 EmittedMap[namestr] = OpNone;
Nate Begemanc4a1b652010-06-20 21:09:52 +00001428
1429 // Calculate the index of the immediate that should be range checked.
Nate Begemanf8c4c272010-06-17 04:15:13 +00001430 unsigned immidx = 0;
Bob Wilson7f762182010-12-04 04:40:15 +00001431
Nate Begemanc4a1b652010-06-20 21:09:52 +00001432 // Builtins that return a struct of multiple vectors have an extra
1433 // leading arg for the struct return.
Bob Wilson5b7fe592010-12-01 19:49:51 +00001434 if (Proto[0] >= '2' && Proto[0] <= '4')
Nate Begemanc4a1b652010-06-20 21:09:52 +00001435 ++immidx;
Bob Wilson7f762182010-12-04 04:40:15 +00001436
1437 // Add one to the index for each argument until we reach the immediate
Nate Begemanc4a1b652010-06-20 21:09:52 +00001438 // to be checked. Structs of vectors are passed as multiple arguments.
Nate Begemanf8c4c272010-06-17 04:15:13 +00001439 for (unsigned ii = 1, ie = Proto.size(); ii != ie; ++ii) {
1440 switch (Proto[ii]) {
1441 default: immidx += 1; break;
1442 case '2': immidx += 2; break;
1443 case '3': immidx += 3; break;
1444 case '4': immidx += 4; break;
1445 case 'i': ie = ii + 1; break;
1446 }
1447 }
Bob Wilsond8b84702010-12-07 01:12:19 +00001448 OS << "case ARM::BI__builtin_neon_" << MangleName(name, TypeVec[ti], ck)
Nate Begemanf8c4c272010-06-17 04:15:13 +00001449 << ": i = " << immidx << "; " << rangestr << "; break;\n";
Nate Begemand72c9002010-06-13 04:47:03 +00001450 }
Nate Begeman73cef3e2010-06-04 01:26:15 +00001451 }
Nate Begemanf8c4c272010-06-17 04:15:13 +00001452 OS << "#endif\n\n";
Nate Begemana8979a02010-06-04 00:21:41 +00001453}
Bob Wilson333f5192010-12-15 16:58:45 +00001454
1455/// GenTest - Write out a test for the intrinsic specified by the name and
1456/// type strings, including the embedded patterns for FileCheck to match.
1457static std::string GenTest(const std::string &name,
1458 const std::string &proto,
1459 StringRef outTypeStr, StringRef inTypeStr,
1460 bool isShift) {
1461 assert(!proto.empty() && "");
1462 std::string s;
1463
1464 // Function name with type suffix
1465 std::string mangledName = MangleName(name, outTypeStr, ClassS);
1466 if (outTypeStr != inTypeStr) {
1467 // If the input type is different (e.g., for vreinterpret), append a suffix
1468 // for the input type. String off a "Q" (quad) prefix so that MangleName
1469 // does not insert another "q" in the name.
1470 unsigned typeStrOff = (inTypeStr[0] == 'Q' ? 1 : 0);
1471 StringRef inTypeNoQuad = inTypeStr.substr(typeStrOff);
1472 mangledName = MangleName(mangledName, inTypeNoQuad, ClassS);
1473 }
1474
1475 // Emit the FileCheck patterns.
1476 s += "// CHECK: test_" + mangledName + "\n";
1477 // s += "// CHECK: \n"; // FIXME: + expected instruction opcode.
1478
1479 // Emit the start of the test function.
1480 s += TypeString(proto[0], outTypeStr) + " test_" + mangledName + "(";
1481 char arg = 'a';
1482 std::string comma;
1483 for (unsigned i = 1, e = proto.size(); i != e; ++i, ++arg) {
1484 // Do not create arguments for values that must be immediate constants.
1485 if (proto[i] == 'i')
1486 continue;
1487 s += comma + TypeString(proto[i], inTypeStr) + " ";
1488 s.push_back(arg);
1489 comma = ", ";
1490 }
1491 s += ") { \\\n ";
1492
1493 if (proto[0] != 'v')
1494 s += "return ";
1495 s += mangledName + "(";
1496 arg = 'a';
1497 for (unsigned i = 1, e = proto.size(); i != e; ++i, ++arg) {
1498 if (proto[i] == 'i') {
1499 // For immediate operands, test the maximum value.
1500 if (isShift)
1501 s += "1"; // FIXME
1502 else
1503 // The immediate generally refers to a lane in the preceding argument.
1504 s += utostr(RangeFromType(proto[i-1], inTypeStr));
1505 } else {
1506 s.push_back(arg);
1507 }
1508 if ((i + 1) < e)
1509 s += ", ";
1510 }
1511 s += ");\n}\n\n";
1512 return s;
1513}
1514
1515/// runTests - Write out a complete set of tests for all of the Neon
1516/// intrinsics.
1517void NeonEmitter::runTests(raw_ostream &OS) {
1518 OS <<
1519 "// RUN: %clang_cc1 -triple thumbv7-apple-darwin \\\n"
Bob Wilson14595d92010-12-17 01:21:03 +00001520 "// RUN: -target-cpu cortex-a9 -ffreestanding -S -o - %s | FileCheck %s\n"
Bob Wilson333f5192010-12-15 16:58:45 +00001521 "\n"
1522 "#include <arm_neon.h>\n"
1523 "\n";
1524
1525 std::vector<Record*> RV = Records.getAllDerivedDefinitions("Inst");
1526 for (unsigned i = 0, e = RV.size(); i != e; ++i) {
1527 Record *R = RV[i];
1528 std::string name = R->getValueAsString("Name");
1529 std::string Proto = R->getValueAsString("Prototype");
1530 std::string Types = R->getValueAsString("Types");
1531 bool isShift = R->getValueAsBit("isShift");
1532
1533 SmallVector<StringRef, 16> TypeVec;
1534 ParseTypes(R, Types, TypeVec);
1535
1536 OpKind kind = OpMap[R->getValueAsDef("Operand")->getName()];
1537 for (unsigned ti = 0, te = TypeVec.size(); ti != te; ++ti) {
1538 if (kind == OpReinterpret) {
1539 bool outQuad = false;
1540 bool dummy = false;
1541 (void)ClassifyType(TypeVec[ti], outQuad, dummy, dummy);
1542 for (unsigned srcti = 0, srcte = TypeVec.size();
1543 srcti != srcte; ++srcti) {
1544 bool inQuad = false;
1545 (void)ClassifyType(TypeVec[srcti], inQuad, dummy, dummy);
1546 if (srcti == ti || inQuad != outQuad)
1547 continue;
1548 OS << GenTest(name, Proto, TypeVec[ti], TypeVec[srcti], isShift);
1549 }
1550 } else {
1551 OS << GenTest(name, Proto, TypeVec[ti], TypeVec[ti], isShift);
1552 }
1553 }
1554 OS << "\n";
1555 }
1556}
1557