blob: 6174634c31d86abc2a4140c1a4fd2e1ef78ea7b6 [file] [log] [blame]
Daniel Dunbar23e97b02009-04-01 21:53:23 +00001//===--- Triple.cpp - Target triple helper class --------------------------===//
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#include "llvm/ADT/Triple.h"
Daniel Dunbara14d2252009-07-26 03:31:47 +000011
Jeffrey Yasskin0b228732009-10-06 21:45:26 +000012#include "llvm/ADT/SmallString.h"
Duncan Sands5754a452010-09-16 08:25:48 +000013#include "llvm/ADT/STLExtras.h"
Daniel Dunbara14d2252009-07-26 03:31:47 +000014#include "llvm/ADT/Twine.h"
Daniel Dunbar23e97b02009-04-01 21:53:23 +000015#include <cassert>
Mikhail Glushenkov70748752009-04-02 01:11:37 +000016#include <cstring>
Daniel Dunbar23e97b02009-04-01 21:53:23 +000017using namespace llvm;
18
19//
20
21const char *Triple::getArchTypeName(ArchType Kind) {
22 switch (Kind) {
23 case InvalidArch: return "<invalid>";
24 case UnknownArch: return "unknown";
Daniel Dunbar6337f152009-07-26 04:23:03 +000025
26 case alpha: return "alpha";
27 case arm: return "arm";
Jakob Stoklund Olesend9509412009-08-02 17:32:10 +000028 case bfin: return "bfin";
Daniel Dunbar6337f152009-07-26 04:23:03 +000029 case cellspu: return "cellspu";
30 case mips: return "mips";
31 case mipsel: return "mipsel";
32 case msp430: return "msp430";
Daniel Dunbar8c2f1d72009-07-26 04:52:45 +000033 case ppc64: return "powerpc64";
34 case ppc: return "powerpc";
Daniel Dunbar6337f152009-07-26 04:23:03 +000035 case sparc: return "sparc";
Chris Lattner87c06d62010-02-04 06:34:01 +000036 case sparcv9: return "sparcv9";
Daniel Dunbar6337f152009-07-26 04:23:03 +000037 case systemz: return "s390x";
Eli Friedman74db89e2009-08-19 20:46:03 +000038 case tce: return "tce";
Daniel Dunbar6337f152009-07-26 04:23:03 +000039 case thumb: return "thumb";
40 case x86: return "i386";
41 case x86_64: return "x86_64";
Daniel Dunbar8c2f1d72009-07-26 04:52:45 +000042 case xcore: return "xcore";
Wesley Pecka70f28c2010-02-23 19:15:24 +000043 case mblaze: return "mblaze";
Nick Lewyckyf7a3c502010-09-07 18:14:24 +000044 case ptx: return "ptx";
Daniel Dunbar23e97b02009-04-01 21:53:23 +000045 }
46
47 return "<invalid>";
48}
49
Daniel Dunbar688b55b2009-08-24 09:53:06 +000050const char *Triple::getArchTypePrefix(ArchType Kind) {
51 switch (Kind) {
52 default:
53 return 0;
54
55 case alpha: return "alpha";
56
57 case arm:
58 case thumb: return "arm";
59
60 case bfin: return "bfin";
61
62 case cellspu: return "spu";
63
64 case ppc64:
65 case ppc: return "ppc";
66
Wesley Pecka70f28c2010-02-23 19:15:24 +000067 case mblaze: return "mblaze";
68
Chris Lattner87c06d62010-02-04 06:34:01 +000069 case sparcv9:
Daniel Dunbar688b55b2009-08-24 09:53:06 +000070 case sparc: return "sparc";
71
72 case x86:
73 case x86_64: return "x86";
Nick Lewyckyf7a3c502010-09-07 18:14:24 +000074
Daniel Dunbar688b55b2009-08-24 09:53:06 +000075 case xcore: return "xcore";
Nick Lewyckyf7a3c502010-09-07 18:14:24 +000076
77 case ptx: return "ptx";
Daniel Dunbar688b55b2009-08-24 09:53:06 +000078 }
79}
80
Daniel Dunbar23e97b02009-04-01 21:53:23 +000081const char *Triple::getVendorTypeName(VendorType Kind) {
82 switch (Kind) {
83 case UnknownVendor: return "unknown";
84
85 case Apple: return "apple";
Chris Lattner56ce0f42009-08-14 18:48:13 +000086 case PC: return "pc";
Daniel Dunbar23e97b02009-04-01 21:53:23 +000087 }
88
89 return "<invalid>";
90}
91
92const char *Triple::getOSTypeName(OSType Kind) {
93 switch (Kind) {
94 case UnknownOS: return "unknown";
95
Duncan Sands852cd112009-06-19 14:40:01 +000096 case AuroraUX: return "auroraux";
Daniel Dunbar6337f152009-07-26 04:23:03 +000097 case Cygwin: return "cygwin";
Daniel Dunbar23e97b02009-04-01 21:53:23 +000098 case Darwin: return "darwin";
Daniel Dunbar7eaf0572009-05-22 02:24:11 +000099 case DragonFly: return "dragonfly";
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000100 case FreeBSD: return "freebsd";
101 case Linux: return "linux";
Edward O'Callaghancc9fa812009-11-19 11:59:00 +0000102 case Lv2: return "lv2";
Daniel Dunbar6337f152009-07-26 04:23:03 +0000103 case MinGW32: return "mingw32";
Chris Lattner8e620832009-08-12 06:32:10 +0000104 case MinGW64: return "mingw64";
Chris Lattnerb8ac8412009-07-13 20:22:23 +0000105 case NetBSD: return "netbsd";
Duncan Sandscd1267d2009-06-29 13:36:13 +0000106 case OpenBSD: return "openbsd";
Edward O'Callaghane0fb75d2009-11-15 10:18:17 +0000107 case Psp: return "psp";
Daniel Dunbarfdb0b7b2009-08-18 04:43:27 +0000108 case Solaris: return "solaris";
Daniel Dunbar6337f152009-07-26 04:23:03 +0000109 case Win32: return "win32";
Chris Lattnera43fc342009-10-16 02:06:30 +0000110 case Haiku: return "haiku";
Chris Lattner29269d02010-07-07 15:52:27 +0000111 case Minix: return "minix";
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000112 }
113
114 return "<invalid>";
115}
116
Duncan Sands5754a452010-09-16 08:25:48 +0000117const char *Triple::getEnvironmentTypeName(EnvironmentType Kind) {
118 switch (Kind) {
119 case UnknownEnvironment: return "unknown";
120 }
121
122 return "<invalid>";
123}
124
Daniel Dunbar2928c832009-11-06 10:58:06 +0000125Triple::ArchType Triple::getArchTypeForLLVMName(StringRef Name) {
Daniel Dunbar3c2d4bf2009-08-03 04:03:51 +0000126 if (Name == "alpha")
127 return alpha;
128 if (Name == "arm")
129 return arm;
130 if (Name == "bfin")
131 return bfin;
132 if (Name == "cellspu")
133 return cellspu;
134 if (Name == "mips")
135 return mips;
136 if (Name == "mipsel")
137 return mipsel;
138 if (Name == "msp430")
139 return msp430;
140 if (Name == "ppc64")
141 return ppc64;
142 if (Name == "ppc")
143 return ppc;
Wesley Pecka70f28c2010-02-23 19:15:24 +0000144 if (Name == "mblaze")
145 return mblaze;
Daniel Dunbar3c2d4bf2009-08-03 04:03:51 +0000146 if (Name == "sparc")
147 return sparc;
Chris Lattner87c06d62010-02-04 06:34:01 +0000148 if (Name == "sparcv9")
149 return sparcv9;
Daniel Dunbar3c2d4bf2009-08-03 04:03:51 +0000150 if (Name == "systemz")
151 return systemz;
Eli Friedman74db89e2009-08-19 20:46:03 +0000152 if (Name == "tce")
153 return tce;
Daniel Dunbar3c2d4bf2009-08-03 04:03:51 +0000154 if (Name == "thumb")
155 return thumb;
156 if (Name == "x86")
157 return x86;
Chris Lattnerb796c4f2009-08-12 06:45:02 +0000158 if (Name == "x86-64")
Daniel Dunbar3c2d4bf2009-08-03 04:03:51 +0000159 return x86_64;
160 if (Name == "xcore")
161 return xcore;
Nick Lewyckyf7a3c502010-09-07 18:14:24 +0000162 if (Name == "ptx")
163 return ptx;
Daniel Dunbar3c2d4bf2009-08-03 04:03:51 +0000164
165 return UnknownArch;
166}
167
Daniel Dunbar2928c832009-11-06 10:58:06 +0000168Triple::ArchType Triple::getArchTypeForDarwinArchName(StringRef Str) {
Daniel Dunbarbaf9b562009-09-08 23:32:51 +0000169 // See arch(3) and llvm-gcc's driver-driver.c. We don't implement support for
170 // archs which Darwin doesn't use.
171
172 // The matching this routine does is fairly pointless, since it is neither the
173 // complete architecture list, nor a reasonable subset. The problem is that
174 // historically the driver driver accepts this and also ties its -march=
175 // handling to the architecture name, so we need to be careful before removing
176 // support for it.
177
Daniel Dunbared687882009-09-09 23:01:25 +0000178 // This code must be kept in sync with Clang's Darwin specific argument
179 // translation.
180
Daniel Dunbarbaf9b562009-09-08 23:32:51 +0000181 if (Str == "ppc" || Str == "ppc601" || Str == "ppc603" || Str == "ppc604" ||
182 Str == "ppc604e" || Str == "ppc750" || Str == "ppc7400" ||
183 Str == "ppc7450" || Str == "ppc970")
184 return Triple::ppc;
185
186 if (Str == "ppc64")
187 return Triple::ppc64;
188
189 if (Str == "i386" || Str == "i486" || Str == "i486SX" || Str == "pentium" ||
190 Str == "i586" || Str == "pentpro" || Str == "i686" || Str == "pentIIm3" ||
191 Str == "pentIIm5" || Str == "pentium4")
192 return Triple::x86;
193
194 if (Str == "x86_64")
195 return Triple::x86_64;
196
197 // This is derived from the driver driver.
198 if (Str == "arm" || Str == "armv4t" || Str == "armv5" || Str == "xscale" ||
199 Str == "armv6" || Str == "armv7")
200 return Triple::arm;
201
Nick Lewyckyf7a3c502010-09-07 18:14:24 +0000202 if (Str == "ptx")
203 return Triple::ptx;
204
Daniel Dunbarbaf9b562009-09-08 23:32:51 +0000205 return Triple::UnknownArch;
206}
207
Duncan Sandsbbdca3f2010-03-24 09:05:14 +0000208// Returns architecture name that is understood by the target assembler.
Viktor Kutuzov51cdac02009-11-17 18:48:27 +0000209const char *Triple::getArchNameForAssembler() {
210 if (getOS() != Triple::Darwin && getVendor() != Triple::Apple)
211 return NULL;
212
213 StringRef Str = getArchName();
214 if (Str == "i386")
215 return "i386";
216 if (Str == "x86_64")
217 return "x86_64";
218 if (Str == "powerpc")
219 return "ppc";
220 if (Str == "powerpc64")
221 return "ppc64";
Wesley Pecka70f28c2010-02-23 19:15:24 +0000222 if (Str == "mblaze" || Str == "microblaze")
223 return "mblaze";
Viktor Kutuzov51cdac02009-11-17 18:48:27 +0000224 if (Str == "arm")
225 return "arm";
226 if (Str == "armv4t" || Str == "thumbv4t")
227 return "armv4t";
228 if (Str == "armv5" || Str == "armv5e" || Str == "thumbv5" || Str == "thumbv5e")
229 return "armv5";
230 if (Str == "armv6" || Str == "thumbv6")
231 return "armv6";
232 if (Str == "armv7" || Str == "thumbv7")
233 return "armv7";
Nick Lewyckyf7a3c502010-09-07 18:14:24 +0000234 if (Str == "ptx")
235 return "ptx";
Viktor Kutuzov51cdac02009-11-17 18:48:27 +0000236 return NULL;
237}
238
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000239//
240
Duncan Sands335db222010-08-12 11:31:39 +0000241Triple::ArchType Triple::ParseArch(StringRef ArchName) {
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000242 if (ArchName.size() == 4 && ArchName[0] == 'i' &&
Daniel Dunbar6337f152009-07-26 04:23:03 +0000243 ArchName[2] == '8' && ArchName[3] == '6' &&
244 ArchName[1] - '3' < 6) // i[3-9]86
Duncan Sands335db222010-08-12 11:31:39 +0000245 return x86;
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000246 else if (ArchName == "amd64" || ArchName == "x86_64")
Duncan Sands335db222010-08-12 11:31:39 +0000247 return x86_64;
Daniel Dunbarb26bc422009-08-18 07:06:26 +0000248 else if (ArchName == "bfin")
Duncan Sands335db222010-08-12 11:31:39 +0000249 return bfin;
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000250 else if (ArchName == "powerpc")
Duncan Sands335db222010-08-12 11:31:39 +0000251 return ppc;
Edward O'Callaghancc9fa812009-11-19 11:59:00 +0000252 else if ((ArchName == "powerpc64") || (ArchName == "ppu"))
Duncan Sands335db222010-08-12 11:31:39 +0000253 return ppc64;
Wesley Pecka70f28c2010-02-23 19:15:24 +0000254 else if (ArchName == "mblaze")
Duncan Sands335db222010-08-12 11:31:39 +0000255 return mblaze;
Daniel Dunbar6337f152009-07-26 04:23:03 +0000256 else if (ArchName == "arm" ||
Daniel Dunbar24473892009-08-18 04:51:26 +0000257 ArchName.startswith("armv") ||
258 ArchName == "xscale")
Duncan Sands335db222010-08-12 11:31:39 +0000259 return arm;
Daniel Dunbar6337f152009-07-26 04:23:03 +0000260 else if (ArchName == "thumb" ||
261 ArchName.startswith("thumbv"))
Duncan Sands335db222010-08-12 11:31:39 +0000262 return thumb;
Daniel Dunbar6337f152009-07-26 04:23:03 +0000263 else if (ArchName.startswith("alpha"))
Duncan Sands335db222010-08-12 11:31:39 +0000264 return alpha;
Daniel Dunbar6337f152009-07-26 04:23:03 +0000265 else if (ArchName == "spu" || ArchName == "cellspu")
Duncan Sands335db222010-08-12 11:31:39 +0000266 return cellspu;
Daniel Dunbar6337f152009-07-26 04:23:03 +0000267 else if (ArchName == "msp430")
Duncan Sands335db222010-08-12 11:31:39 +0000268 return msp430;
Daniel Dunbar6337f152009-07-26 04:23:03 +0000269 else if (ArchName == "mips" || ArchName == "mipsallegrex")
Duncan Sands335db222010-08-12 11:31:39 +0000270 return mips;
Daniel Dunbar6337f152009-07-26 04:23:03 +0000271 else if (ArchName == "mipsel" || ArchName == "mipsallegrexel" ||
272 ArchName == "psp")
Duncan Sands335db222010-08-12 11:31:39 +0000273 return mipsel;
Daniel Dunbar6337f152009-07-26 04:23:03 +0000274 else if (ArchName == "sparc")
Duncan Sands335db222010-08-12 11:31:39 +0000275 return sparc;
Chris Lattner87c06d62010-02-04 06:34:01 +0000276 else if (ArchName == "sparcv9")
Duncan Sands335db222010-08-12 11:31:39 +0000277 return sparcv9;
Daniel Dunbar6337f152009-07-26 04:23:03 +0000278 else if (ArchName == "s390x")
Duncan Sands335db222010-08-12 11:31:39 +0000279 return systemz;
Eli Friedman74db89e2009-08-19 20:46:03 +0000280 else if (ArchName == "tce")
Duncan Sands335db222010-08-12 11:31:39 +0000281 return tce;
Richard Osborne768f1dd2009-08-31 21:51:36 +0000282 else if (ArchName == "xcore")
Duncan Sands335db222010-08-12 11:31:39 +0000283 return xcore;
Nick Lewyckyf7a3c502010-09-07 18:14:24 +0000284 else if (ArchName == "ptx")
285 return ptx;
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000286 else
Duncan Sands335db222010-08-12 11:31:39 +0000287 return UnknownArch;
288}
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000289
Duncan Sands335db222010-08-12 11:31:39 +0000290Triple::VendorType Triple::ParseVendor(StringRef VendorName) {
291 if (VendorName == "apple")
292 return Apple;
293 else if (VendorName == "pc")
294 return PC;
295 else
296 return UnknownVendor;
297}
298
299Triple::OSType Triple::ParseOS(StringRef OSName) {
300 if (OSName.startswith("auroraux"))
301 return AuroraUX;
302 else if (OSName.startswith("cygwin"))
303 return Cygwin;
304 else if (OSName.startswith("darwin"))
305 return Darwin;
306 else if (OSName.startswith("dragonfly"))
307 return DragonFly;
308 else if (OSName.startswith("freebsd"))
309 return FreeBSD;
310 else if (OSName.startswith("linux"))
311 return Linux;
312 else if (OSName.startswith("lv2"))
313 return Lv2;
314 else if (OSName.startswith("mingw32"))
315 return MinGW32;
316 else if (OSName.startswith("mingw64"))
317 return MinGW64;
318 else if (OSName.startswith("netbsd"))
319 return NetBSD;
320 else if (OSName.startswith("openbsd"))
321 return OpenBSD;
322 else if (OSName.startswith("psp"))
323 return Psp;
324 else if (OSName.startswith("solaris"))
325 return Solaris;
326 else if (OSName.startswith("win32"))
327 return Win32;
328 else if (OSName.startswith("haiku"))
329 return Haiku;
330 else if (OSName.startswith("minix"))
331 return Minix;
332 else
333 return UnknownOS;
334}
335
Duncan Sands5754a452010-09-16 08:25:48 +0000336Triple::EnvironmentType Triple::ParseEnvironment(StringRef EnvironmentName) {
337 return UnknownEnvironment;
338}
339
Duncan Sands335db222010-08-12 11:31:39 +0000340void Triple::Parse() const {
341 assert(!isInitialized() && "Invalid parse call.");
342
343 Arch = ParseArch(getArchName());
344 Vendor = ParseVendor(getVendorName());
345 OS = ParseOS(getOSName());
Duncan Sands5754a452010-09-16 08:25:48 +0000346 Environment = ParseEnvironment(getEnvironmentName());
Daniel Dunbar651aa682009-08-18 19:26:55 +0000347
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000348 assert(isInitialized() && "Failed to initialize!");
349}
350
Duncan Sands335db222010-08-12 11:31:39 +0000351std::string Triple::normalize(StringRef Str) {
352 // Parse into components.
353 SmallVector<StringRef, 4> Components;
354 for (size_t First = 0, Last = 0; Last != StringRef::npos; First = Last + 1) {
355 Last = Str.find('-', First);
356 Components.push_back(Str.slice(First, Last));
357 }
358
359 // If the first component corresponds to a known architecture, preferentially
360 // use it for the architecture. If the second component corresponds to a
361 // known vendor, preferentially use it for the vendor, etc. This avoids silly
362 // component movement when a component parses as (eg) both a valid arch and a
363 // valid os.
364 ArchType Arch = UnknownArch;
365 if (Components.size() > 0)
366 Arch = ParseArch(Components[0]);
367 VendorType Vendor = UnknownVendor;
368 if (Components.size() > 1)
369 Vendor = ParseVendor(Components[1]);
370 OSType OS = UnknownOS;
371 if (Components.size() > 2)
372 OS = ParseOS(Components[2]);
Duncan Sands5754a452010-09-16 08:25:48 +0000373 EnvironmentType Environment = UnknownEnvironment;
374 if (Components.size() > 3)
375 Environment = ParseEnvironment(Components[3]);
Duncan Sands335db222010-08-12 11:31:39 +0000376
377 // Note which components are already in their final position. These will not
378 // be moved.
Duncan Sands5754a452010-09-16 08:25:48 +0000379 bool Found[4];
Duncan Sands335db222010-08-12 11:31:39 +0000380 Found[0] = Arch != UnknownArch;
381 Found[1] = Vendor != UnknownVendor;
382 Found[2] = OS != UnknownOS;
Duncan Sands5754a452010-09-16 08:25:48 +0000383 Found[3] = Environment != UnknownEnvironment;
Duncan Sands335db222010-08-12 11:31:39 +0000384
385 // If they are not there already, permute the components into their canonical
386 // positions by seeing if they parse as a valid architecture, and if so moving
387 // the component to the architecture position etc.
Duncan Sands5754a452010-09-16 08:25:48 +0000388 for (unsigned Pos = 0; Pos != array_lengthof(Found); ++Pos) {
Duncan Sands335db222010-08-12 11:31:39 +0000389 if (Found[Pos])
390 continue; // Already in the canonical position.
391
392 for (unsigned Idx = 0; Idx != Components.size(); ++Idx) {
393 // Do not reparse any components that already matched.
Duncan Sands5754a452010-09-16 08:25:48 +0000394 if (Idx < array_lengthof(Found) && Found[Idx])
Duncan Sands335db222010-08-12 11:31:39 +0000395 continue;
396
397 // Does this component parse as valid for the target position?
398 bool Valid = false;
399 StringRef Comp = Components[Idx];
400 switch (Pos) {
401 default:
402 assert(false && "unexpected component type!");
403 case 0:
404 Arch = ParseArch(Comp);
405 Valid = Arch != UnknownArch;
406 break;
407 case 1:
408 Vendor = ParseVendor(Comp);
409 Valid = Vendor != UnknownVendor;
410 break;
411 case 2:
412 OS = ParseOS(Comp);
413 Valid = OS != UnknownOS;
414 break;
Duncan Sands5754a452010-09-16 08:25:48 +0000415 case 3:
416 Environment = ParseEnvironment(Comp);
417 Valid = Environment != UnknownEnvironment;
418 break;
Duncan Sands335db222010-08-12 11:31:39 +0000419 }
420 if (!Valid)
421 continue; // Nope, try the next component.
422
423 // Move the component to the target position, pushing any non-fixed
424 // components that are in the way to the right. This tends to give
425 // good results in the common cases of a forgotten vendor component
426 // or a wrongly positioned environment.
427 if (Pos < Idx) {
428 // Insert left, pushing the existing components to the right. For
429 // example, a-b-i386 -> i386-a-b when moving i386 to the front.
430 StringRef CurrentComponent(""); // The empty component.
431 // Replace the component we are moving with an empty component.
432 std::swap(CurrentComponent, Components[Idx]);
433 // Insert the component being moved at Pos, displacing any existing
434 // components to the right.
435 for (unsigned i = Pos; !CurrentComponent.empty(); ++i) {
436 // Skip over any fixed components.
Duncan Sands5754a452010-09-16 08:25:48 +0000437 while (i < array_lengthof(Found) && Found[i]) ++i;
Duncan Sands335db222010-08-12 11:31:39 +0000438 // Place the component at the new position, getting the component
439 // that was at this position - it will be moved right.
440 std::swap(CurrentComponent, Components[i]);
441 }
442 } else if (Pos > Idx) {
443 // Push right by inserting empty components until the component at Idx
444 // reaches the target position Pos. For example, pc-a -> -pc-a when
445 // moving pc to the second position.
446 do {
447 // Insert one empty component at Idx.
448 StringRef CurrentComponent(""); // The empty component.
449 for (unsigned i = Idx; i < Components.size(); ++i) {
450 // Skip over any fixed components.
Duncan Sands5754a452010-09-16 08:25:48 +0000451 while (i < array_lengthof(Found) && Found[i]) ++i;
Duncan Sands335db222010-08-12 11:31:39 +0000452 // Place the component at the new position, getting the component
453 // that was at this position - it will be moved right.
454 std::swap(CurrentComponent, Components[i]);
455 // If it was placed on top of an empty component then we are done.
456 if (CurrentComponent.empty())
457 break;
458 }
459 // The last component was pushed off the end - append it.
460 if (!CurrentComponent.empty())
461 Components.push_back(CurrentComponent);
462
463 // Advance Idx to the component's new position.
Duncan Sands5754a452010-09-16 08:25:48 +0000464 while (++Idx < array_lengthof(Found) && Found[Idx]) {}
Duncan Sands335db222010-08-12 11:31:39 +0000465 } while (Idx < Pos); // Add more until the final position is reached.
466 }
467 assert(Pos < Components.size() && Components[Pos] == Comp &&
468 "Component moved wrong!");
469 Found[Pos] = true;
470 break;
471 }
472 }
473
474 // Special case logic goes here. At this point Arch, Vendor and OS have the
475 // correct values for the computed components.
476
477 // Stick the corrected components back together to form the normalized string.
478 std::string Normalized;
479 for (unsigned i = 0, e = Components.size(); i != e; ++i) {
480 if (i) Normalized += '-';
481 Normalized += Components[i];
482 }
483 return Normalized;
484}
485
Daniel Dunbara14d2252009-07-26 03:31:47 +0000486StringRef Triple::getArchName() const {
487 return StringRef(Data).split('-').first; // Isolate first component
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000488}
489
Daniel Dunbara14d2252009-07-26 03:31:47 +0000490StringRef Triple::getVendorName() const {
491 StringRef Tmp = StringRef(Data).split('-').second; // Strip first component
492 return Tmp.split('-').first; // Isolate second component
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000493}
494
Daniel Dunbara14d2252009-07-26 03:31:47 +0000495StringRef Triple::getOSName() const {
496 StringRef Tmp = StringRef(Data).split('-').second; // Strip first component
497 Tmp = Tmp.split('-').second; // Strip second component
498 return Tmp.split('-').first; // Isolate third component
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000499}
500
Daniel Dunbara14d2252009-07-26 03:31:47 +0000501StringRef Triple::getEnvironmentName() const {
502 StringRef Tmp = StringRef(Data).split('-').second; // Strip first component
503 Tmp = Tmp.split('-').second; // Strip second component
504 return Tmp.split('-').second; // Strip third component
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000505}
506
Daniel Dunbara14d2252009-07-26 03:31:47 +0000507StringRef Triple::getOSAndEnvironmentName() const {
508 StringRef Tmp = StringRef(Data).split('-').second; // Strip first component
509 return Tmp.split('-').second; // Strip second component
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000510}
511
Chris Lattnerdfc17f72009-08-12 06:19:40 +0000512static unsigned EatNumber(StringRef &Str) {
513 assert(!Str.empty() && Str[0] >= '0' && Str[0] <= '9' && "Not a number");
514 unsigned Result = Str[0]-'0';
515
516 // Eat the digit.
517 Str = Str.substr(1);
518
519 // Handle "darwin11".
520 if (Result == 1 && !Str.empty() && Str[0] >= '0' && Str[0] <= '9') {
521 Result = Result*10 + (Str[0] - '0');
522 // Eat the digit.
523 Str = Str.substr(1);
524 }
525
526 return Result;
527}
528
529/// getDarwinNumber - Parse the 'darwin number' out of the specific target
530/// triple. For example, if we have darwin8.5 return 8,5,0. If any entry is
531/// not defined, return 0's. This requires that the triple have an OSType of
532/// darwin before it is called.
533void Triple::getDarwinNumber(unsigned &Maj, unsigned &Min,
534 unsigned &Revision) const {
535 assert(getOS() == Darwin && "Not a darwin target triple!");
536 StringRef OSName = getOSName();
537 assert(OSName.startswith("darwin") && "Unknown darwin target triple!");
538
539 // Strip off "darwin".
540 OSName = OSName.substr(6);
541
542 Maj = Min = Revision = 0;
543
544 if (OSName.empty() || OSName[0] < '0' || OSName[0] > '9')
545 return;
546
547 // The major version is the first digit.
548 Maj = EatNumber(OSName);
549 if (OSName.empty()) return;
550
551 // Handle minor version: 10.4.9 -> darwin8.9.
552 if (OSName[0] != '.')
553 return;
554
555 // Eat the '.'.
556 OSName = OSName.substr(1);
557
558 if (OSName.empty() || OSName[0] < '0' || OSName[0] > '9')
559 return;
560
561 Min = EatNumber(OSName);
562 if (OSName.empty()) return;
563
564 // Handle revision darwin8.9.1
565 if (OSName[0] != '.')
566 return;
567
568 // Eat the '.'.
569 OSName = OSName.substr(1);
570
571 if (OSName.empty() || OSName[0] < '0' || OSName[0] > '9')
572 return;
573
574 Revision = EatNumber(OSName);
575}
576
Daniel Dunbara14d2252009-07-26 03:31:47 +0000577void Triple::setTriple(const Twine &Str) {
578 Data = Str.str();
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000579 Arch = InvalidArch;
580}
581
582void Triple::setArch(ArchType Kind) {
583 setArchName(getArchTypeName(Kind));
584}
585
586void Triple::setVendor(VendorType Kind) {
587 setVendorName(getVendorTypeName(Kind));
588}
589
590void Triple::setOS(OSType Kind) {
591 setOSName(getOSTypeName(Kind));
592}
593
Duncan Sands5754a452010-09-16 08:25:48 +0000594void Triple::setEnvironment(EnvironmentType Kind) {
595 setEnvironmentName(getEnvironmentTypeName(Kind));
596}
597
Daniel Dunbar2928c832009-11-06 10:58:06 +0000598void Triple::setArchName(StringRef Str) {
Jeffrey Yasskin0b228732009-10-06 21:45:26 +0000599 // Work around a miscompilation bug for Twines in gcc 4.0.3.
600 SmallString<64> Triple;
601 Triple += Str;
602 Triple += "-";
603 Triple += getVendorName();
604 Triple += "-";
605 Triple += getOSAndEnvironmentName();
606 setTriple(Triple.str());
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000607}
608
Daniel Dunbar2928c832009-11-06 10:58:06 +0000609void Triple::setVendorName(StringRef Str) {
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000610 setTriple(getArchName() + "-" + Str + "-" + getOSAndEnvironmentName());
611}
612
Daniel Dunbar2928c832009-11-06 10:58:06 +0000613void Triple::setOSName(StringRef Str) {
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000614 if (hasEnvironment())
615 setTriple(getArchName() + "-" + getVendorName() + "-" + Str +
616 "-" + getEnvironmentName());
617 else
618 setTriple(getArchName() + "-" + getVendorName() + "-" + Str);
619}
620
Daniel Dunbar2928c832009-11-06 10:58:06 +0000621void Triple::setEnvironmentName(StringRef Str) {
622 setTriple(getArchName() + "-" + getVendorName() + "-" + getOSName() +
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000623 "-" + Str);
624}
625
Daniel Dunbar2928c832009-11-06 10:58:06 +0000626void Triple::setOSAndEnvironmentName(StringRef Str) {
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000627 setTriple(getArchName() + "-" + getVendorName() + "-" + Str);
628}