blob: 365c083695339ffe069ed2e3b41e6fb6cb0174d5 [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"
Daniel Dunbara14d2252009-07-26 03:31:47 +000013#include "llvm/ADT/Twine.h"
Daniel Dunbar23e97b02009-04-01 21:53:23 +000014#include <cassert>
Mikhail Glushenkov70748752009-04-02 01:11:37 +000015#include <cstring>
Daniel Dunbar23e97b02009-04-01 21:53:23 +000016using namespace llvm;
17
18//
19
20const char *Triple::getArchTypeName(ArchType Kind) {
21 switch (Kind) {
22 case InvalidArch: return "<invalid>";
23 case UnknownArch: return "unknown";
Daniel Dunbar6337f152009-07-26 04:23:03 +000024
25 case alpha: return "alpha";
26 case arm: return "arm";
Jakob Stoklund Olesend9509412009-08-02 17:32:10 +000027 case bfin: return "bfin";
Daniel Dunbar6337f152009-07-26 04:23:03 +000028 case cellspu: return "cellspu";
29 case mips: return "mips";
30 case mipsel: return "mipsel";
31 case msp430: return "msp430";
Daniel Dunbarfdb0b7b2009-08-18 04:43:27 +000032 case pic16: return "pic16";
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
Daniel Dunbar2928c832009-11-06 10:58:06 +0000117Triple::ArchType Triple::getArchTypeForLLVMName(StringRef Name) {
Daniel Dunbar3c2d4bf2009-08-03 04:03:51 +0000118 if (Name == "alpha")
119 return alpha;
120 if (Name == "arm")
121 return arm;
122 if (Name == "bfin")
123 return bfin;
124 if (Name == "cellspu")
125 return cellspu;
126 if (Name == "mips")
127 return mips;
128 if (Name == "mipsel")
129 return mipsel;
130 if (Name == "msp430")
131 return msp430;
Daniel Dunbarfdb0b7b2009-08-18 04:43:27 +0000132 if (Name == "pic16")
133 return pic16;
Daniel Dunbar3c2d4bf2009-08-03 04:03:51 +0000134 if (Name == "ppc64")
135 return ppc64;
136 if (Name == "ppc")
137 return ppc;
Wesley Pecka70f28c2010-02-23 19:15:24 +0000138 if (Name == "mblaze")
139 return mblaze;
Daniel Dunbar3c2d4bf2009-08-03 04:03:51 +0000140 if (Name == "sparc")
141 return sparc;
Chris Lattner87c06d62010-02-04 06:34:01 +0000142 if (Name == "sparcv9")
143 return sparcv9;
Daniel Dunbar3c2d4bf2009-08-03 04:03:51 +0000144 if (Name == "systemz")
145 return systemz;
Eli Friedman74db89e2009-08-19 20:46:03 +0000146 if (Name == "tce")
147 return tce;
Daniel Dunbar3c2d4bf2009-08-03 04:03:51 +0000148 if (Name == "thumb")
149 return thumb;
150 if (Name == "x86")
151 return x86;
Chris Lattnerb796c4f2009-08-12 06:45:02 +0000152 if (Name == "x86-64")
Daniel Dunbar3c2d4bf2009-08-03 04:03:51 +0000153 return x86_64;
154 if (Name == "xcore")
155 return xcore;
Nick Lewyckyf7a3c502010-09-07 18:14:24 +0000156 if (Name == "ptx")
157 return ptx;
Daniel Dunbar3c2d4bf2009-08-03 04:03:51 +0000158
159 return UnknownArch;
160}
161
Daniel Dunbar2928c832009-11-06 10:58:06 +0000162Triple::ArchType Triple::getArchTypeForDarwinArchName(StringRef Str) {
Daniel Dunbarbaf9b562009-09-08 23:32:51 +0000163 // See arch(3) and llvm-gcc's driver-driver.c. We don't implement support for
164 // archs which Darwin doesn't use.
165
166 // The matching this routine does is fairly pointless, since it is neither the
167 // complete architecture list, nor a reasonable subset. The problem is that
168 // historically the driver driver accepts this and also ties its -march=
169 // handling to the architecture name, so we need to be careful before removing
170 // support for it.
171
Daniel Dunbared687882009-09-09 23:01:25 +0000172 // This code must be kept in sync with Clang's Darwin specific argument
173 // translation.
174
Daniel Dunbarbaf9b562009-09-08 23:32:51 +0000175 if (Str == "ppc" || Str == "ppc601" || Str == "ppc603" || Str == "ppc604" ||
176 Str == "ppc604e" || Str == "ppc750" || Str == "ppc7400" ||
177 Str == "ppc7450" || Str == "ppc970")
178 return Triple::ppc;
179
180 if (Str == "ppc64")
181 return Triple::ppc64;
182
183 if (Str == "i386" || Str == "i486" || Str == "i486SX" || Str == "pentium" ||
184 Str == "i586" || Str == "pentpro" || Str == "i686" || Str == "pentIIm3" ||
185 Str == "pentIIm5" || Str == "pentium4")
186 return Triple::x86;
187
188 if (Str == "x86_64")
189 return Triple::x86_64;
190
191 // This is derived from the driver driver.
192 if (Str == "arm" || Str == "armv4t" || Str == "armv5" || Str == "xscale" ||
193 Str == "armv6" || Str == "armv7")
194 return Triple::arm;
195
Nick Lewyckyf7a3c502010-09-07 18:14:24 +0000196 if (Str == "ptx")
197 return Triple::ptx;
198
Daniel Dunbarbaf9b562009-09-08 23:32:51 +0000199 return Triple::UnknownArch;
200}
201
Duncan Sandsbbdca3f2010-03-24 09:05:14 +0000202// Returns architecture name that is understood by the target assembler.
Viktor Kutuzov51cdac02009-11-17 18:48:27 +0000203const char *Triple::getArchNameForAssembler() {
204 if (getOS() != Triple::Darwin && getVendor() != Triple::Apple)
205 return NULL;
206
207 StringRef Str = getArchName();
208 if (Str == "i386")
209 return "i386";
210 if (Str == "x86_64")
211 return "x86_64";
212 if (Str == "powerpc")
213 return "ppc";
214 if (Str == "powerpc64")
215 return "ppc64";
Wesley Pecka70f28c2010-02-23 19:15:24 +0000216 if (Str == "mblaze" || Str == "microblaze")
217 return "mblaze";
Viktor Kutuzov51cdac02009-11-17 18:48:27 +0000218 if (Str == "arm")
219 return "arm";
220 if (Str == "armv4t" || Str == "thumbv4t")
221 return "armv4t";
222 if (Str == "armv5" || Str == "armv5e" || Str == "thumbv5" || Str == "thumbv5e")
223 return "armv5";
224 if (Str == "armv6" || Str == "thumbv6")
225 return "armv6";
226 if (Str == "armv7" || Str == "thumbv7")
227 return "armv7";
Nick Lewyckyf7a3c502010-09-07 18:14:24 +0000228 if (Str == "ptx")
229 return "ptx";
Viktor Kutuzov51cdac02009-11-17 18:48:27 +0000230 return NULL;
231}
232
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000233//
234
Duncan Sands335db222010-08-12 11:31:39 +0000235Triple::ArchType Triple::ParseArch(StringRef ArchName) {
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000236 if (ArchName.size() == 4 && ArchName[0] == 'i' &&
Daniel Dunbar6337f152009-07-26 04:23:03 +0000237 ArchName[2] == '8' && ArchName[3] == '6' &&
238 ArchName[1] - '3' < 6) // i[3-9]86
Duncan Sands335db222010-08-12 11:31:39 +0000239 return x86;
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000240 else if (ArchName == "amd64" || ArchName == "x86_64")
Duncan Sands335db222010-08-12 11:31:39 +0000241 return x86_64;
Daniel Dunbarb26bc422009-08-18 07:06:26 +0000242 else if (ArchName == "bfin")
Duncan Sands335db222010-08-12 11:31:39 +0000243 return bfin;
Daniel Dunbarfdb0b7b2009-08-18 04:43:27 +0000244 else if (ArchName == "pic16")
Duncan Sands335db222010-08-12 11:31:39 +0000245 return pic16;
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000246 else if (ArchName == "powerpc")
Duncan Sands335db222010-08-12 11:31:39 +0000247 return ppc;
Edward O'Callaghancc9fa812009-11-19 11:59:00 +0000248 else if ((ArchName == "powerpc64") || (ArchName == "ppu"))
Duncan Sands335db222010-08-12 11:31:39 +0000249 return ppc64;
Wesley Pecka70f28c2010-02-23 19:15:24 +0000250 else if (ArchName == "mblaze")
Duncan Sands335db222010-08-12 11:31:39 +0000251 return mblaze;
Daniel Dunbar6337f152009-07-26 04:23:03 +0000252 else if (ArchName == "arm" ||
Daniel Dunbar24473892009-08-18 04:51:26 +0000253 ArchName.startswith("armv") ||
254 ArchName == "xscale")
Duncan Sands335db222010-08-12 11:31:39 +0000255 return arm;
Daniel Dunbar6337f152009-07-26 04:23:03 +0000256 else if (ArchName == "thumb" ||
257 ArchName.startswith("thumbv"))
Duncan Sands335db222010-08-12 11:31:39 +0000258 return thumb;
Daniel Dunbar6337f152009-07-26 04:23:03 +0000259 else if (ArchName.startswith("alpha"))
Duncan Sands335db222010-08-12 11:31:39 +0000260 return alpha;
Daniel Dunbar6337f152009-07-26 04:23:03 +0000261 else if (ArchName == "spu" || ArchName == "cellspu")
Duncan Sands335db222010-08-12 11:31:39 +0000262 return cellspu;
Daniel Dunbar6337f152009-07-26 04:23:03 +0000263 else if (ArchName == "msp430")
Duncan Sands335db222010-08-12 11:31:39 +0000264 return msp430;
Daniel Dunbar6337f152009-07-26 04:23:03 +0000265 else if (ArchName == "mips" || ArchName == "mipsallegrex")
Duncan Sands335db222010-08-12 11:31:39 +0000266 return mips;
Daniel Dunbar6337f152009-07-26 04:23:03 +0000267 else if (ArchName == "mipsel" || ArchName == "mipsallegrexel" ||
268 ArchName == "psp")
Duncan Sands335db222010-08-12 11:31:39 +0000269 return mipsel;
Daniel Dunbar6337f152009-07-26 04:23:03 +0000270 else if (ArchName == "sparc")
Duncan Sands335db222010-08-12 11:31:39 +0000271 return sparc;
Chris Lattner87c06d62010-02-04 06:34:01 +0000272 else if (ArchName == "sparcv9")
Duncan Sands335db222010-08-12 11:31:39 +0000273 return sparcv9;
Daniel Dunbar6337f152009-07-26 04:23:03 +0000274 else if (ArchName == "s390x")
Duncan Sands335db222010-08-12 11:31:39 +0000275 return systemz;
Eli Friedman74db89e2009-08-19 20:46:03 +0000276 else if (ArchName == "tce")
Duncan Sands335db222010-08-12 11:31:39 +0000277 return tce;
Richard Osborne768f1dd2009-08-31 21:51:36 +0000278 else if (ArchName == "xcore")
Duncan Sands335db222010-08-12 11:31:39 +0000279 return xcore;
Nick Lewyckyf7a3c502010-09-07 18:14:24 +0000280 else if (ArchName == "ptx")
281 return ptx;
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000282 else
Duncan Sands335db222010-08-12 11:31:39 +0000283 return UnknownArch;
284}
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000285
Duncan Sands335db222010-08-12 11:31:39 +0000286Triple::VendorType Triple::ParseVendor(StringRef VendorName) {
287 if (VendorName == "apple")
288 return Apple;
289 else if (VendorName == "pc")
290 return PC;
291 else
292 return UnknownVendor;
293}
294
295Triple::OSType Triple::ParseOS(StringRef OSName) {
296 if (OSName.startswith("auroraux"))
297 return AuroraUX;
298 else if (OSName.startswith("cygwin"))
299 return Cygwin;
300 else if (OSName.startswith("darwin"))
301 return Darwin;
302 else if (OSName.startswith("dragonfly"))
303 return DragonFly;
304 else if (OSName.startswith("freebsd"))
305 return FreeBSD;
306 else if (OSName.startswith("linux"))
307 return Linux;
308 else if (OSName.startswith("lv2"))
309 return Lv2;
310 else if (OSName.startswith("mingw32"))
311 return MinGW32;
312 else if (OSName.startswith("mingw64"))
313 return MinGW64;
314 else if (OSName.startswith("netbsd"))
315 return NetBSD;
316 else if (OSName.startswith("openbsd"))
317 return OpenBSD;
318 else if (OSName.startswith("psp"))
319 return Psp;
320 else if (OSName.startswith("solaris"))
321 return Solaris;
322 else if (OSName.startswith("win32"))
323 return Win32;
324 else if (OSName.startswith("haiku"))
325 return Haiku;
326 else if (OSName.startswith("minix"))
327 return Minix;
328 else
329 return UnknownOS;
330}
331
332void Triple::Parse() const {
333 assert(!isInitialized() && "Invalid parse call.");
334
335 Arch = ParseArch(getArchName());
336 Vendor = ParseVendor(getVendorName());
337 OS = ParseOS(getOSName());
Daniel Dunbar651aa682009-08-18 19:26:55 +0000338
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000339 assert(isInitialized() && "Failed to initialize!");
340}
341
Duncan Sands335db222010-08-12 11:31:39 +0000342std::string Triple::normalize(StringRef Str) {
343 // Parse into components.
344 SmallVector<StringRef, 4> Components;
345 for (size_t First = 0, Last = 0; Last != StringRef::npos; First = Last + 1) {
346 Last = Str.find('-', First);
347 Components.push_back(Str.slice(First, Last));
348 }
349
350 // If the first component corresponds to a known architecture, preferentially
351 // use it for the architecture. If the second component corresponds to a
352 // known vendor, preferentially use it for the vendor, etc. This avoids silly
353 // component movement when a component parses as (eg) both a valid arch and a
354 // valid os.
355 ArchType Arch = UnknownArch;
356 if (Components.size() > 0)
357 Arch = ParseArch(Components[0]);
358 VendorType Vendor = UnknownVendor;
359 if (Components.size() > 1)
360 Vendor = ParseVendor(Components[1]);
361 OSType OS = UnknownOS;
362 if (Components.size() > 2)
363 OS = ParseOS(Components[2]);
364
365 // Note which components are already in their final position. These will not
366 // be moved.
367 bool Found[3];
368 Found[0] = Arch != UnknownArch;
369 Found[1] = Vendor != UnknownVendor;
370 Found[2] = OS != UnknownOS;
371
372 // If they are not there already, permute the components into their canonical
373 // positions by seeing if they parse as a valid architecture, and if so moving
374 // the component to the architecture position etc.
375 for (unsigned Pos = 0; Pos != 3; ++Pos) {
376 if (Found[Pos])
377 continue; // Already in the canonical position.
378
379 for (unsigned Idx = 0; Idx != Components.size(); ++Idx) {
380 // Do not reparse any components that already matched.
381 if (Idx < 3 && Found[Idx])
382 continue;
383
384 // Does this component parse as valid for the target position?
385 bool Valid = false;
386 StringRef Comp = Components[Idx];
387 switch (Pos) {
388 default:
389 assert(false && "unexpected component type!");
390 case 0:
391 Arch = ParseArch(Comp);
392 Valid = Arch != UnknownArch;
393 break;
394 case 1:
395 Vendor = ParseVendor(Comp);
396 Valid = Vendor != UnknownVendor;
397 break;
398 case 2:
399 OS = ParseOS(Comp);
400 Valid = OS != UnknownOS;
401 break;
402 }
403 if (!Valid)
404 continue; // Nope, try the next component.
405
406 // Move the component to the target position, pushing any non-fixed
407 // components that are in the way to the right. This tends to give
408 // good results in the common cases of a forgotten vendor component
409 // or a wrongly positioned environment.
410 if (Pos < Idx) {
411 // Insert left, pushing the existing components to the right. For
412 // example, a-b-i386 -> i386-a-b when moving i386 to the front.
413 StringRef CurrentComponent(""); // The empty component.
414 // Replace the component we are moving with an empty component.
415 std::swap(CurrentComponent, Components[Idx]);
416 // Insert the component being moved at Pos, displacing any existing
417 // components to the right.
418 for (unsigned i = Pos; !CurrentComponent.empty(); ++i) {
419 // Skip over any fixed components.
420 while (i < 3 && Found[i]) ++i;
421 // Place the component at the new position, getting the component
422 // that was at this position - it will be moved right.
423 std::swap(CurrentComponent, Components[i]);
424 }
425 } else if (Pos > Idx) {
426 // Push right by inserting empty components until the component at Idx
427 // reaches the target position Pos. For example, pc-a -> -pc-a when
428 // moving pc to the second position.
429 do {
430 // Insert one empty component at Idx.
431 StringRef CurrentComponent(""); // The empty component.
432 for (unsigned i = Idx; i < Components.size(); ++i) {
433 // Skip over any fixed components.
434 while (i < 3 && Found[i]) ++i;
435 // Place the component at the new position, getting the component
436 // that was at this position - it will be moved right.
437 std::swap(CurrentComponent, Components[i]);
438 // If it was placed on top of an empty component then we are done.
439 if (CurrentComponent.empty())
440 break;
441 }
442 // The last component was pushed off the end - append it.
443 if (!CurrentComponent.empty())
444 Components.push_back(CurrentComponent);
445
446 // Advance Idx to the component's new position.
447 while (++Idx < 3 && Found[Idx]) {}
448 } while (Idx < Pos); // Add more until the final position is reached.
449 }
450 assert(Pos < Components.size() && Components[Pos] == Comp &&
451 "Component moved wrong!");
452 Found[Pos] = true;
453 break;
454 }
455 }
456
457 // Special case logic goes here. At this point Arch, Vendor and OS have the
458 // correct values for the computed components.
459
460 // Stick the corrected components back together to form the normalized string.
461 std::string Normalized;
462 for (unsigned i = 0, e = Components.size(); i != e; ++i) {
463 if (i) Normalized += '-';
464 Normalized += Components[i];
465 }
466 return Normalized;
467}
468
Daniel Dunbara14d2252009-07-26 03:31:47 +0000469StringRef Triple::getArchName() const {
470 return StringRef(Data).split('-').first; // Isolate first component
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000471}
472
Daniel Dunbara14d2252009-07-26 03:31:47 +0000473StringRef Triple::getVendorName() const {
474 StringRef Tmp = StringRef(Data).split('-').second; // Strip first component
475 return Tmp.split('-').first; // Isolate second component
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000476}
477
Daniel Dunbara14d2252009-07-26 03:31:47 +0000478StringRef Triple::getOSName() const {
479 StringRef Tmp = StringRef(Data).split('-').second; // Strip first component
480 Tmp = Tmp.split('-').second; // Strip second component
481 return Tmp.split('-').first; // Isolate third component
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000482}
483
Daniel Dunbara14d2252009-07-26 03:31:47 +0000484StringRef Triple::getEnvironmentName() const {
485 StringRef Tmp = StringRef(Data).split('-').second; // Strip first component
486 Tmp = Tmp.split('-').second; // Strip second component
487 return Tmp.split('-').second; // Strip third component
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000488}
489
Daniel Dunbara14d2252009-07-26 03:31:47 +0000490StringRef Triple::getOSAndEnvironmentName() const {
491 StringRef Tmp = StringRef(Data).split('-').second; // Strip first component
492 return Tmp.split('-').second; // Strip second component
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000493}
494
Chris Lattnerdfc17f72009-08-12 06:19:40 +0000495static unsigned EatNumber(StringRef &Str) {
496 assert(!Str.empty() && Str[0] >= '0' && Str[0] <= '9' && "Not a number");
497 unsigned Result = Str[0]-'0';
498
499 // Eat the digit.
500 Str = Str.substr(1);
501
502 // Handle "darwin11".
503 if (Result == 1 && !Str.empty() && Str[0] >= '0' && Str[0] <= '9') {
504 Result = Result*10 + (Str[0] - '0');
505 // Eat the digit.
506 Str = Str.substr(1);
507 }
508
509 return Result;
510}
511
512/// getDarwinNumber - Parse the 'darwin number' out of the specific target
513/// triple. For example, if we have darwin8.5 return 8,5,0. If any entry is
514/// not defined, return 0's. This requires that the triple have an OSType of
515/// darwin before it is called.
516void Triple::getDarwinNumber(unsigned &Maj, unsigned &Min,
517 unsigned &Revision) const {
518 assert(getOS() == Darwin && "Not a darwin target triple!");
519 StringRef OSName = getOSName();
520 assert(OSName.startswith("darwin") && "Unknown darwin target triple!");
521
522 // Strip off "darwin".
523 OSName = OSName.substr(6);
524
525 Maj = Min = Revision = 0;
526
527 if (OSName.empty() || OSName[0] < '0' || OSName[0] > '9')
528 return;
529
530 // The major version is the first digit.
531 Maj = EatNumber(OSName);
532 if (OSName.empty()) return;
533
534 // Handle minor version: 10.4.9 -> darwin8.9.
535 if (OSName[0] != '.')
536 return;
537
538 // Eat the '.'.
539 OSName = OSName.substr(1);
540
541 if (OSName.empty() || OSName[0] < '0' || OSName[0] > '9')
542 return;
543
544 Min = EatNumber(OSName);
545 if (OSName.empty()) return;
546
547 // Handle revision darwin8.9.1
548 if (OSName[0] != '.')
549 return;
550
551 // Eat the '.'.
552 OSName = OSName.substr(1);
553
554 if (OSName.empty() || OSName[0] < '0' || OSName[0] > '9')
555 return;
556
557 Revision = EatNumber(OSName);
558}
559
Daniel Dunbara14d2252009-07-26 03:31:47 +0000560void Triple::setTriple(const Twine &Str) {
561 Data = Str.str();
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000562 Arch = InvalidArch;
563}
564
565void Triple::setArch(ArchType Kind) {
566 setArchName(getArchTypeName(Kind));
567}
568
569void Triple::setVendor(VendorType Kind) {
570 setVendorName(getVendorTypeName(Kind));
571}
572
573void Triple::setOS(OSType Kind) {
574 setOSName(getOSTypeName(Kind));
575}
576
Daniel Dunbar2928c832009-11-06 10:58:06 +0000577void Triple::setArchName(StringRef Str) {
Jeffrey Yasskin0b228732009-10-06 21:45:26 +0000578 // Work around a miscompilation bug for Twines in gcc 4.0.3.
579 SmallString<64> Triple;
580 Triple += Str;
581 Triple += "-";
582 Triple += getVendorName();
583 Triple += "-";
584 Triple += getOSAndEnvironmentName();
585 setTriple(Triple.str());
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000586}
587
Daniel Dunbar2928c832009-11-06 10:58:06 +0000588void Triple::setVendorName(StringRef Str) {
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000589 setTriple(getArchName() + "-" + Str + "-" + getOSAndEnvironmentName());
590}
591
Daniel Dunbar2928c832009-11-06 10:58:06 +0000592void Triple::setOSName(StringRef Str) {
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000593 if (hasEnvironment())
594 setTriple(getArchName() + "-" + getVendorName() + "-" + Str +
595 "-" + getEnvironmentName());
596 else
597 setTriple(getArchName() + "-" + getVendorName() + "-" + Str);
598}
599
Daniel Dunbar2928c832009-11-06 10:58:06 +0000600void Triple::setEnvironmentName(StringRef Str) {
601 setTriple(getArchName() + "-" + getVendorName() + "-" + getOSName() +
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000602 "-" + Str);
603}
604
Daniel Dunbar2928c832009-11-06 10:58:06 +0000605void Triple::setOSAndEnvironmentName(StringRef Str) {
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000606 setTriple(getArchName() + "-" + getVendorName() + "-" + Str);
607}