blob: c7ad7b7611178654f9c3fb1f494ece852ddff2e7 [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";
Jim Grosbache509aa92010-12-17 02:10:59 +000025
Daniel Dunbar6337f152009-07-26 04:23:03 +000026 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";
Jim Grosbache509aa92010-12-17 02:10:59 +0000228 if (Str == "armv5" || Str == "armv5e" || Str == "thumbv5"
229 || Str == "thumbv5e")
Viktor Kutuzov51cdac02009-11-17 18:48:27 +0000230 return "armv5";
231 if (Str == "armv6" || Str == "thumbv6")
232 return "armv6";
233 if (Str == "armv7" || Str == "thumbv7")
234 return "armv7";
Nick Lewyckyf7a3c502010-09-07 18:14:24 +0000235 if (Str == "ptx")
236 return "ptx";
Viktor Kutuzov51cdac02009-11-17 18:48:27 +0000237 return NULL;
238}
239
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000240//
241
Duncan Sands335db222010-08-12 11:31:39 +0000242Triple::ArchType Triple::ParseArch(StringRef ArchName) {
Jim Grosbache509aa92010-12-17 02:10:59 +0000243 if (ArchName.size() == 4 && ArchName[0] == 'i' &&
244 ArchName[2] == '8' && ArchName[3] == '6' &&
Daniel Dunbar6337f152009-07-26 04:23:03 +0000245 ArchName[1] - '3' < 6) // i[3-9]86
Duncan Sands335db222010-08-12 11:31:39 +0000246 return x86;
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000247 else if (ArchName == "amd64" || ArchName == "x86_64")
Duncan Sands335db222010-08-12 11:31:39 +0000248 return x86_64;
Daniel Dunbarb26bc422009-08-18 07:06:26 +0000249 else if (ArchName == "bfin")
Duncan Sands335db222010-08-12 11:31:39 +0000250 return bfin;
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000251 else if (ArchName == "powerpc")
Duncan Sands335db222010-08-12 11:31:39 +0000252 return ppc;
Edward O'Callaghancc9fa812009-11-19 11:59:00 +0000253 else if ((ArchName == "powerpc64") || (ArchName == "ppu"))
Duncan Sands335db222010-08-12 11:31:39 +0000254 return ppc64;
Wesley Pecka70f28c2010-02-23 19:15:24 +0000255 else if (ArchName == "mblaze")
Duncan Sands335db222010-08-12 11:31:39 +0000256 return mblaze;
Daniel Dunbar6337f152009-07-26 04:23:03 +0000257 else if (ArchName == "arm" ||
Daniel Dunbar24473892009-08-18 04:51:26 +0000258 ArchName.startswith("armv") ||
259 ArchName == "xscale")
Duncan Sands335db222010-08-12 11:31:39 +0000260 return arm;
Daniel Dunbar6337f152009-07-26 04:23:03 +0000261 else if (ArchName == "thumb" ||
262 ArchName.startswith("thumbv"))
Duncan Sands335db222010-08-12 11:31:39 +0000263 return thumb;
Daniel Dunbar6337f152009-07-26 04:23:03 +0000264 else if (ArchName.startswith("alpha"))
Duncan Sands335db222010-08-12 11:31:39 +0000265 return alpha;
Daniel Dunbar6337f152009-07-26 04:23:03 +0000266 else if (ArchName == "spu" || ArchName == "cellspu")
Duncan Sands335db222010-08-12 11:31:39 +0000267 return cellspu;
Daniel Dunbar6337f152009-07-26 04:23:03 +0000268 else if (ArchName == "msp430")
Duncan Sands335db222010-08-12 11:31:39 +0000269 return msp430;
Daniel Dunbar6337f152009-07-26 04:23:03 +0000270 else if (ArchName == "mips" || ArchName == "mipsallegrex")
Duncan Sands335db222010-08-12 11:31:39 +0000271 return mips;
Daniel Dunbar6337f152009-07-26 04:23:03 +0000272 else if (ArchName == "mipsel" || ArchName == "mipsallegrexel" ||
273 ArchName == "psp")
Duncan Sands335db222010-08-12 11:31:39 +0000274 return mipsel;
Daniel Dunbar6337f152009-07-26 04:23:03 +0000275 else if (ArchName == "sparc")
Duncan Sands335db222010-08-12 11:31:39 +0000276 return sparc;
Chris Lattner87c06d62010-02-04 06:34:01 +0000277 else if (ArchName == "sparcv9")
Duncan Sands335db222010-08-12 11:31:39 +0000278 return sparcv9;
Daniel Dunbar6337f152009-07-26 04:23:03 +0000279 else if (ArchName == "s390x")
Duncan Sands335db222010-08-12 11:31:39 +0000280 return systemz;
Eli Friedman74db89e2009-08-19 20:46:03 +0000281 else if (ArchName == "tce")
Duncan Sands335db222010-08-12 11:31:39 +0000282 return tce;
Richard Osborne768f1dd2009-08-31 21:51:36 +0000283 else if (ArchName == "xcore")
Duncan Sands335db222010-08-12 11:31:39 +0000284 return xcore;
Nick Lewyckyf7a3c502010-09-07 18:14:24 +0000285 else if (ArchName == "ptx")
286 return ptx;
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000287 else
Duncan Sands335db222010-08-12 11:31:39 +0000288 return UnknownArch;
289}
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000290
Duncan Sands335db222010-08-12 11:31:39 +0000291Triple::VendorType Triple::ParseVendor(StringRef VendorName) {
292 if (VendorName == "apple")
293 return Apple;
294 else if (VendorName == "pc")
295 return PC;
296 else
297 return UnknownVendor;
298}
299
300Triple::OSType Triple::ParseOS(StringRef OSName) {
301 if (OSName.startswith("auroraux"))
302 return AuroraUX;
303 else if (OSName.startswith("cygwin"))
304 return Cygwin;
305 else if (OSName.startswith("darwin"))
306 return Darwin;
307 else if (OSName.startswith("dragonfly"))
308 return DragonFly;
309 else if (OSName.startswith("freebsd"))
310 return FreeBSD;
311 else if (OSName.startswith("linux"))
312 return Linux;
313 else if (OSName.startswith("lv2"))
314 return Lv2;
315 else if (OSName.startswith("mingw32"))
316 return MinGW32;
317 else if (OSName.startswith("mingw64"))
318 return MinGW64;
319 else if (OSName.startswith("netbsd"))
320 return NetBSD;
321 else if (OSName.startswith("openbsd"))
322 return OpenBSD;
323 else if (OSName.startswith("psp"))
324 return Psp;
325 else if (OSName.startswith("solaris"))
326 return Solaris;
327 else if (OSName.startswith("win32"))
328 return Win32;
329 else if (OSName.startswith("haiku"))
330 return Haiku;
331 else if (OSName.startswith("minix"))
332 return Minix;
333 else
334 return UnknownOS;
335}
336
Duncan Sands5754a452010-09-16 08:25:48 +0000337Triple::EnvironmentType Triple::ParseEnvironment(StringRef EnvironmentName) {
338 return UnknownEnvironment;
339}
340
Duncan Sands335db222010-08-12 11:31:39 +0000341void Triple::Parse() const {
342 assert(!isInitialized() && "Invalid parse call.");
343
344 Arch = ParseArch(getArchName());
345 Vendor = ParseVendor(getVendorName());
346 OS = ParseOS(getOSName());
Duncan Sands5754a452010-09-16 08:25:48 +0000347 Environment = ParseEnvironment(getEnvironmentName());
Daniel Dunbar651aa682009-08-18 19:26:55 +0000348
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000349 assert(isInitialized() && "Failed to initialize!");
350}
351
Duncan Sands335db222010-08-12 11:31:39 +0000352std::string Triple::normalize(StringRef Str) {
353 // Parse into components.
354 SmallVector<StringRef, 4> Components;
355 for (size_t First = 0, Last = 0; Last != StringRef::npos; First = Last + 1) {
356 Last = Str.find('-', First);
357 Components.push_back(Str.slice(First, Last));
358 }
359
360 // If the first component corresponds to a known architecture, preferentially
361 // use it for the architecture. If the second component corresponds to a
362 // known vendor, preferentially use it for the vendor, etc. This avoids silly
363 // component movement when a component parses as (eg) both a valid arch and a
364 // valid os.
365 ArchType Arch = UnknownArch;
366 if (Components.size() > 0)
367 Arch = ParseArch(Components[0]);
368 VendorType Vendor = UnknownVendor;
369 if (Components.size() > 1)
370 Vendor = ParseVendor(Components[1]);
371 OSType OS = UnknownOS;
372 if (Components.size() > 2)
373 OS = ParseOS(Components[2]);
Duncan Sands5754a452010-09-16 08:25:48 +0000374 EnvironmentType Environment = UnknownEnvironment;
375 if (Components.size() > 3)
376 Environment = ParseEnvironment(Components[3]);
Duncan Sands335db222010-08-12 11:31:39 +0000377
378 // Note which components are already in their final position. These will not
379 // be moved.
Duncan Sands5754a452010-09-16 08:25:48 +0000380 bool Found[4];
Duncan Sands335db222010-08-12 11:31:39 +0000381 Found[0] = Arch != UnknownArch;
382 Found[1] = Vendor != UnknownVendor;
383 Found[2] = OS != UnknownOS;
Duncan Sands5754a452010-09-16 08:25:48 +0000384 Found[3] = Environment != UnknownEnvironment;
Duncan Sands335db222010-08-12 11:31:39 +0000385
386 // If they are not there already, permute the components into their canonical
387 // positions by seeing if they parse as a valid architecture, and if so moving
388 // the component to the architecture position etc.
Duncan Sands5754a452010-09-16 08:25:48 +0000389 for (unsigned Pos = 0; Pos != array_lengthof(Found); ++Pos) {
Duncan Sands335db222010-08-12 11:31:39 +0000390 if (Found[Pos])
391 continue; // Already in the canonical position.
392
393 for (unsigned Idx = 0; Idx != Components.size(); ++Idx) {
394 // Do not reparse any components that already matched.
Duncan Sands5754a452010-09-16 08:25:48 +0000395 if (Idx < array_lengthof(Found) && Found[Idx])
Duncan Sands335db222010-08-12 11:31:39 +0000396 continue;
397
398 // Does this component parse as valid for the target position?
399 bool Valid = false;
400 StringRef Comp = Components[Idx];
401 switch (Pos) {
402 default:
403 assert(false && "unexpected component type!");
404 case 0:
405 Arch = ParseArch(Comp);
406 Valid = Arch != UnknownArch;
407 break;
408 case 1:
409 Vendor = ParseVendor(Comp);
410 Valid = Vendor != UnknownVendor;
411 break;
412 case 2:
413 OS = ParseOS(Comp);
414 Valid = OS != UnknownOS;
415 break;
Duncan Sands5754a452010-09-16 08:25:48 +0000416 case 3:
417 Environment = ParseEnvironment(Comp);
418 Valid = Environment != UnknownEnvironment;
419 break;
Duncan Sands335db222010-08-12 11:31:39 +0000420 }
421 if (!Valid)
422 continue; // Nope, try the next component.
423
424 // Move the component to the target position, pushing any non-fixed
425 // components that are in the way to the right. This tends to give
426 // good results in the common cases of a forgotten vendor component
427 // or a wrongly positioned environment.
428 if (Pos < Idx) {
429 // Insert left, pushing the existing components to the right. For
430 // example, a-b-i386 -> i386-a-b when moving i386 to the front.
431 StringRef CurrentComponent(""); // The empty component.
432 // Replace the component we are moving with an empty component.
433 std::swap(CurrentComponent, Components[Idx]);
434 // Insert the component being moved at Pos, displacing any existing
435 // components to the right.
436 for (unsigned i = Pos; !CurrentComponent.empty(); ++i) {
437 // Skip over any fixed components.
Duncan Sands5754a452010-09-16 08:25:48 +0000438 while (i < array_lengthof(Found) && Found[i]) ++i;
Duncan Sands335db222010-08-12 11:31:39 +0000439 // Place the component at the new position, getting the component
440 // that was at this position - it will be moved right.
441 std::swap(CurrentComponent, Components[i]);
442 }
443 } else if (Pos > Idx) {
444 // Push right by inserting empty components until the component at Idx
445 // reaches the target position Pos. For example, pc-a -> -pc-a when
446 // moving pc to the second position.
447 do {
448 // Insert one empty component at Idx.
449 StringRef CurrentComponent(""); // The empty component.
450 for (unsigned i = Idx; i < Components.size(); ++i) {
451 // Skip over any fixed components.
Duncan Sands5754a452010-09-16 08:25:48 +0000452 while (i < array_lengthof(Found) && Found[i]) ++i;
Duncan Sands335db222010-08-12 11:31:39 +0000453 // Place the component at the new position, getting the component
454 // that was at this position - it will be moved right.
455 std::swap(CurrentComponent, Components[i]);
456 // If it was placed on top of an empty component then we are done.
457 if (CurrentComponent.empty())
458 break;
459 }
460 // The last component was pushed off the end - append it.
461 if (!CurrentComponent.empty())
462 Components.push_back(CurrentComponent);
463
464 // Advance Idx to the component's new position.
Duncan Sands5754a452010-09-16 08:25:48 +0000465 while (++Idx < array_lengthof(Found) && Found[Idx]) {}
Duncan Sands335db222010-08-12 11:31:39 +0000466 } while (Idx < Pos); // Add more until the final position is reached.
467 }
468 assert(Pos < Components.size() && Components[Pos] == Comp &&
469 "Component moved wrong!");
470 Found[Pos] = true;
471 break;
472 }
473 }
474
475 // Special case logic goes here. At this point Arch, Vendor and OS have the
476 // correct values for the computed components.
477
478 // Stick the corrected components back together to form the normalized string.
479 std::string Normalized;
480 for (unsigned i = 0, e = Components.size(); i != e; ++i) {
481 if (i) Normalized += '-';
482 Normalized += Components[i];
483 }
484 return Normalized;
485}
486
Daniel Dunbara14d2252009-07-26 03:31:47 +0000487StringRef Triple::getArchName() const {
488 return StringRef(Data).split('-').first; // Isolate first component
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000489}
490
Daniel Dunbara14d2252009-07-26 03:31:47 +0000491StringRef Triple::getVendorName() const {
492 StringRef Tmp = StringRef(Data).split('-').second; // Strip first component
493 return Tmp.split('-').first; // Isolate second component
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000494}
495
Daniel Dunbara14d2252009-07-26 03:31:47 +0000496StringRef Triple::getOSName() const {
497 StringRef Tmp = StringRef(Data).split('-').second; // Strip first component
498 Tmp = Tmp.split('-').second; // Strip second component
499 return Tmp.split('-').first; // Isolate third component
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000500}
501
Daniel Dunbara14d2252009-07-26 03:31:47 +0000502StringRef Triple::getEnvironmentName() const {
503 StringRef Tmp = StringRef(Data).split('-').second; // Strip first component
504 Tmp = Tmp.split('-').second; // Strip second component
505 return Tmp.split('-').second; // Strip third component
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000506}
507
Daniel Dunbara14d2252009-07-26 03:31:47 +0000508StringRef Triple::getOSAndEnvironmentName() const {
509 StringRef Tmp = StringRef(Data).split('-').second; // Strip first component
510 return Tmp.split('-').second; // Strip second component
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000511}
512
Chris Lattnerdfc17f72009-08-12 06:19:40 +0000513static unsigned EatNumber(StringRef &Str) {
514 assert(!Str.empty() && Str[0] >= '0' && Str[0] <= '9' && "Not a number");
515 unsigned Result = Str[0]-'0';
Jim Grosbache509aa92010-12-17 02:10:59 +0000516
Chris Lattnerdfc17f72009-08-12 06:19:40 +0000517 // Eat the digit.
518 Str = Str.substr(1);
Jim Grosbache509aa92010-12-17 02:10:59 +0000519
Chris Lattnerdfc17f72009-08-12 06:19:40 +0000520 // Handle "darwin11".
521 if (Result == 1 && !Str.empty() && Str[0] >= '0' && Str[0] <= '9') {
522 Result = Result*10 + (Str[0] - '0');
523 // Eat the digit.
524 Str = Str.substr(1);
525 }
Jim Grosbache509aa92010-12-17 02:10:59 +0000526
Chris Lattnerdfc17f72009-08-12 06:19:40 +0000527 return Result;
528}
529
530/// getDarwinNumber - Parse the 'darwin number' out of the specific target
531/// triple. For example, if we have darwin8.5 return 8,5,0. If any entry is
532/// not defined, return 0's. This requires that the triple have an OSType of
533/// darwin before it is called.
534void Triple::getDarwinNumber(unsigned &Maj, unsigned &Min,
535 unsigned &Revision) const {
536 assert(getOS() == Darwin && "Not a darwin target triple!");
537 StringRef OSName = getOSName();
538 assert(OSName.startswith("darwin") && "Unknown darwin target triple!");
Jim Grosbache509aa92010-12-17 02:10:59 +0000539
Chris Lattnerdfc17f72009-08-12 06:19:40 +0000540 // Strip off "darwin".
541 OSName = OSName.substr(6);
Jim Grosbache509aa92010-12-17 02:10:59 +0000542
Chris Lattnerdfc17f72009-08-12 06:19:40 +0000543 Maj = Min = Revision = 0;
544
545 if (OSName.empty() || OSName[0] < '0' || OSName[0] > '9')
546 return;
547
548 // The major version is the first digit.
549 Maj = EatNumber(OSName);
550 if (OSName.empty()) return;
Jim Grosbache509aa92010-12-17 02:10:59 +0000551
Chris Lattnerdfc17f72009-08-12 06:19:40 +0000552 // Handle minor version: 10.4.9 -> darwin8.9.
553 if (OSName[0] != '.')
554 return;
Jim Grosbache509aa92010-12-17 02:10:59 +0000555
Chris Lattnerdfc17f72009-08-12 06:19:40 +0000556 // Eat the '.'.
557 OSName = OSName.substr(1);
558
559 if (OSName.empty() || OSName[0] < '0' || OSName[0] > '9')
560 return;
Jim Grosbache509aa92010-12-17 02:10:59 +0000561
Chris Lattnerdfc17f72009-08-12 06:19:40 +0000562 Min = EatNumber(OSName);
563 if (OSName.empty()) return;
564
565 // Handle revision darwin8.9.1
566 if (OSName[0] != '.')
567 return;
Jim Grosbache509aa92010-12-17 02:10:59 +0000568
Chris Lattnerdfc17f72009-08-12 06:19:40 +0000569 // Eat the '.'.
570 OSName = OSName.substr(1);
Jim Grosbache509aa92010-12-17 02:10:59 +0000571
Chris Lattnerdfc17f72009-08-12 06:19:40 +0000572 if (OSName.empty() || OSName[0] < '0' || OSName[0] > '9')
573 return;
574
575 Revision = EatNumber(OSName);
576}
577
Daniel Dunbara14d2252009-07-26 03:31:47 +0000578void Triple::setTriple(const Twine &Str) {
579 Data = Str.str();
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000580 Arch = InvalidArch;
581}
582
583void Triple::setArch(ArchType Kind) {
584 setArchName(getArchTypeName(Kind));
585}
586
587void Triple::setVendor(VendorType Kind) {
588 setVendorName(getVendorTypeName(Kind));
589}
590
591void Triple::setOS(OSType Kind) {
592 setOSName(getOSTypeName(Kind));
593}
594
Duncan Sands5754a452010-09-16 08:25:48 +0000595void Triple::setEnvironment(EnvironmentType Kind) {
596 setEnvironmentName(getEnvironmentTypeName(Kind));
597}
598
Daniel Dunbar2928c832009-11-06 10:58:06 +0000599void Triple::setArchName(StringRef Str) {
Jeffrey Yasskin0b228732009-10-06 21:45:26 +0000600 // Work around a miscompilation bug for Twines in gcc 4.0.3.
601 SmallString<64> Triple;
602 Triple += Str;
603 Triple += "-";
604 Triple += getVendorName();
605 Triple += "-";
606 Triple += getOSAndEnvironmentName();
607 setTriple(Triple.str());
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000608}
609
Daniel Dunbar2928c832009-11-06 10:58:06 +0000610void Triple::setVendorName(StringRef Str) {
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000611 setTriple(getArchName() + "-" + Str + "-" + getOSAndEnvironmentName());
612}
613
Daniel Dunbar2928c832009-11-06 10:58:06 +0000614void Triple::setOSName(StringRef Str) {
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000615 if (hasEnvironment())
616 setTriple(getArchName() + "-" + getVendorName() + "-" + Str +
617 "-" + getEnvironmentName());
618 else
619 setTriple(getArchName() + "-" + getVendorName() + "-" + Str);
620}
621
Daniel Dunbar2928c832009-11-06 10:58:06 +0000622void Triple::setEnvironmentName(StringRef Str) {
623 setTriple(getArchName() + "-" + getVendorName() + "-" + getOSName() +
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000624 "-" + Str);
625}
626
Daniel Dunbar2928c832009-11-06 10:58:06 +0000627void Triple::setOSAndEnvironmentName(StringRef Str) {
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000628 setTriple(getArchName() + "-" + getVendorName() + "-" + Str);
629}