blob: 6247a8f1da6ac92e12042fe66ab709e5c3667994 [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";
Justin Holewinskie1fee482011-04-20 15:37:17 +000044 case ptx32: return "ptx32";
45 case ptx64: return "ptx64";
Daniel Dunbar23e97b02009-04-01 21:53:23 +000046 }
47
48 return "<invalid>";
49}
50
Daniel Dunbar688b55b2009-08-24 09:53:06 +000051const char *Triple::getArchTypePrefix(ArchType Kind) {
52 switch (Kind) {
53 default:
54 return 0;
55
56 case alpha: return "alpha";
57
58 case arm:
59 case thumb: return "arm";
60
61 case bfin: return "bfin";
62
63 case cellspu: return "spu";
64
65 case ppc64:
66 case ppc: return "ppc";
67
Wesley Pecka70f28c2010-02-23 19:15:24 +000068 case mblaze: return "mblaze";
69
Chris Lattner87c06d62010-02-04 06:34:01 +000070 case sparcv9:
Daniel Dunbar688b55b2009-08-24 09:53:06 +000071 case sparc: return "sparc";
72
73 case x86:
74 case x86_64: return "x86";
Nick Lewyckyf7a3c502010-09-07 18:14:24 +000075
Daniel Dunbar688b55b2009-08-24 09:53:06 +000076 case xcore: return "xcore";
Nick Lewyckyf7a3c502010-09-07 18:14:24 +000077
Justin Holewinskie1fee482011-04-20 15:37:17 +000078 case ptx32: return "ptx";
79 case ptx64: return "ptx";
Daniel Dunbar688b55b2009-08-24 09:53:06 +000080 }
81}
82
Daniel Dunbar23e97b02009-04-01 21:53:23 +000083const char *Triple::getVendorTypeName(VendorType Kind) {
84 switch (Kind) {
85 case UnknownVendor: return "unknown";
86
87 case Apple: return "apple";
Chris Lattner56ce0f42009-08-14 18:48:13 +000088 case PC: return "pc";
John Thompson6046cff2011-03-15 21:51:56 +000089 case SCEI: return "scei";
Daniel Dunbar23e97b02009-04-01 21:53:23 +000090 }
91
92 return "<invalid>";
93}
94
95const char *Triple::getOSTypeName(OSType Kind) {
96 switch (Kind) {
97 case UnknownOS: return "unknown";
98
Duncan Sands852cd112009-06-19 14:40:01 +000099 case AuroraUX: return "auroraux";
Daniel Dunbar6337f152009-07-26 04:23:03 +0000100 case Cygwin: return "cygwin";
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000101 case Darwin: return "darwin";
Daniel Dunbar7eaf0572009-05-22 02:24:11 +0000102 case DragonFly: return "dragonfly";
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000103 case FreeBSD: return "freebsd";
Daniel Dunbar0dde4c02011-04-19 20:19:27 +0000104 case IOS: return "ios";
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000105 case Linux: return "linux";
Edward O'Callaghancc9fa812009-11-19 11:59:00 +0000106 case Lv2: return "lv2";
Daniel Dunbar1af39472011-04-19 23:34:12 +0000107 case MacOSX: return "macosx";
Daniel Dunbar6337f152009-07-26 04:23:03 +0000108 case MinGW32: return "mingw32";
Chris Lattnerb8ac8412009-07-13 20:22:23 +0000109 case NetBSD: return "netbsd";
Duncan Sandscd1267d2009-06-29 13:36:13 +0000110 case OpenBSD: return "openbsd";
Edward O'Callaghane0fb75d2009-11-15 10:18:17 +0000111 case Psp: return "psp";
Daniel Dunbarfdb0b7b2009-08-18 04:43:27 +0000112 case Solaris: return "solaris";
Daniel Dunbar6337f152009-07-26 04:23:03 +0000113 case Win32: return "win32";
Chris Lattnera43fc342009-10-16 02:06:30 +0000114 case Haiku: return "haiku";
Chris Lattner29269d02010-07-07 15:52:27 +0000115 case Minix: return "minix";
Douglas Gregor6ced1d12011-07-01 22:41:06 +0000116 case RTEMS: return "rtems";
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000117 }
118
119 return "<invalid>";
120}
121
Duncan Sands5754a452010-09-16 08:25:48 +0000122const char *Triple::getEnvironmentTypeName(EnvironmentType Kind) {
123 switch (Kind) {
124 case UnknownEnvironment: return "unknown";
Renato Golin859f8182011-01-21 18:25:47 +0000125 case GNU: return "gnu";
126 case GNUEABI: return "gnueabi";
127 case EABI: return "eabi";
Evan Cheng2bffee22011-02-01 01:14:13 +0000128 case MachO: return "macho";
Duncan Sands5754a452010-09-16 08:25:48 +0000129 }
130
131 return "<invalid>";
132}
133
Daniel Dunbar2928c832009-11-06 10:58:06 +0000134Triple::ArchType Triple::getArchTypeForLLVMName(StringRef Name) {
Daniel Dunbar3c2d4bf2009-08-03 04:03:51 +0000135 if (Name == "alpha")
136 return alpha;
137 if (Name == "arm")
138 return arm;
139 if (Name == "bfin")
140 return bfin;
141 if (Name == "cellspu")
142 return cellspu;
143 if (Name == "mips")
144 return mips;
145 if (Name == "mipsel")
146 return mipsel;
147 if (Name == "msp430")
148 return msp430;
149 if (Name == "ppc64")
150 return ppc64;
151 if (Name == "ppc")
152 return ppc;
Wesley Pecka70f28c2010-02-23 19:15:24 +0000153 if (Name == "mblaze")
154 return mblaze;
Daniel Dunbar3c2d4bf2009-08-03 04:03:51 +0000155 if (Name == "sparc")
156 return sparc;
Chris Lattner87c06d62010-02-04 06:34:01 +0000157 if (Name == "sparcv9")
158 return sparcv9;
Daniel Dunbar3c2d4bf2009-08-03 04:03:51 +0000159 if (Name == "systemz")
160 return systemz;
Eli Friedman74db89e2009-08-19 20:46:03 +0000161 if (Name == "tce")
162 return tce;
Daniel Dunbar3c2d4bf2009-08-03 04:03:51 +0000163 if (Name == "thumb")
164 return thumb;
165 if (Name == "x86")
166 return x86;
Chris Lattnerb796c4f2009-08-12 06:45:02 +0000167 if (Name == "x86-64")
Daniel Dunbar3c2d4bf2009-08-03 04:03:51 +0000168 return x86_64;
169 if (Name == "xcore")
170 return xcore;
Justin Holewinskie1fee482011-04-20 15:37:17 +0000171 if (Name == "ptx32")
172 return ptx32;
173 if (Name == "ptx64")
174 return ptx64;
Daniel Dunbar3c2d4bf2009-08-03 04:03:51 +0000175
176 return UnknownArch;
177}
178
Daniel Dunbar2928c832009-11-06 10:58:06 +0000179Triple::ArchType Triple::getArchTypeForDarwinArchName(StringRef Str) {
Daniel Dunbarbaf9b562009-09-08 23:32:51 +0000180 // See arch(3) and llvm-gcc's driver-driver.c. We don't implement support for
181 // archs which Darwin doesn't use.
182
183 // The matching this routine does is fairly pointless, since it is neither the
184 // complete architecture list, nor a reasonable subset. The problem is that
185 // historically the driver driver accepts this and also ties its -march=
186 // handling to the architecture name, so we need to be careful before removing
187 // support for it.
188
Daniel Dunbared687882009-09-09 23:01:25 +0000189 // This code must be kept in sync with Clang's Darwin specific argument
190 // translation.
191
Daniel Dunbarbaf9b562009-09-08 23:32:51 +0000192 if (Str == "ppc" || Str == "ppc601" || Str == "ppc603" || Str == "ppc604" ||
193 Str == "ppc604e" || Str == "ppc750" || Str == "ppc7400" ||
194 Str == "ppc7450" || Str == "ppc970")
195 return Triple::ppc;
196
197 if (Str == "ppc64")
198 return Triple::ppc64;
199
200 if (Str == "i386" || Str == "i486" || Str == "i486SX" || Str == "pentium" ||
201 Str == "i586" || Str == "pentpro" || Str == "i686" || Str == "pentIIm3" ||
202 Str == "pentIIm5" || Str == "pentium4")
203 return Triple::x86;
204
205 if (Str == "x86_64")
206 return Triple::x86_64;
207
208 // This is derived from the driver driver.
209 if (Str == "arm" || Str == "armv4t" || Str == "armv5" || Str == "xscale" ||
210 Str == "armv6" || Str == "armv7")
211 return Triple::arm;
212
Justin Holewinskie1fee482011-04-20 15:37:17 +0000213 if (Str == "ptx32")
214 return Triple::ptx32;
215 if (Str == "ptx64")
216 return Triple::ptx64;
Nick Lewyckyf7a3c502010-09-07 18:14:24 +0000217
Daniel Dunbarbaf9b562009-09-08 23:32:51 +0000218 return Triple::UnknownArch;
219}
220
Duncan Sandsbbdca3f2010-03-24 09:05:14 +0000221// Returns architecture name that is understood by the target assembler.
Viktor Kutuzov51cdac02009-11-17 18:48:27 +0000222const char *Triple::getArchNameForAssembler() {
Daniel Dunbare1fe09f2011-04-19 21:12:05 +0000223 if (!isOSDarwin() && getVendor() != Triple::Apple)
Viktor Kutuzov51cdac02009-11-17 18:48:27 +0000224 return NULL;
225
226 StringRef Str = getArchName();
227 if (Str == "i386")
228 return "i386";
229 if (Str == "x86_64")
230 return "x86_64";
231 if (Str == "powerpc")
232 return "ppc";
233 if (Str == "powerpc64")
234 return "ppc64";
Wesley Pecka70f28c2010-02-23 19:15:24 +0000235 if (Str == "mblaze" || Str == "microblaze")
236 return "mblaze";
Viktor Kutuzov51cdac02009-11-17 18:48:27 +0000237 if (Str == "arm")
238 return "arm";
239 if (Str == "armv4t" || Str == "thumbv4t")
240 return "armv4t";
Jim Grosbache509aa92010-12-17 02:10:59 +0000241 if (Str == "armv5" || Str == "armv5e" || Str == "thumbv5"
242 || Str == "thumbv5e")
Viktor Kutuzov51cdac02009-11-17 18:48:27 +0000243 return "armv5";
244 if (Str == "armv6" || Str == "thumbv6")
245 return "armv6";
246 if (Str == "armv7" || Str == "thumbv7")
247 return "armv7";
Justin Holewinskie1fee482011-04-20 15:37:17 +0000248 if (Str == "ptx32")
249 return "ptx32";
250 if (Str == "ptx64")
251 return "ptx64";
Viktor Kutuzov51cdac02009-11-17 18:48:27 +0000252 return NULL;
253}
254
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000255//
256
Duncan Sands335db222010-08-12 11:31:39 +0000257Triple::ArchType Triple::ParseArch(StringRef ArchName) {
Jim Grosbache509aa92010-12-17 02:10:59 +0000258 if (ArchName.size() == 4 && ArchName[0] == 'i' &&
259 ArchName[2] == '8' && ArchName[3] == '6' &&
Daniel Dunbar6337f152009-07-26 04:23:03 +0000260 ArchName[1] - '3' < 6) // i[3-9]86
Duncan Sands335db222010-08-12 11:31:39 +0000261 return x86;
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000262 else if (ArchName == "amd64" || ArchName == "x86_64")
Duncan Sands335db222010-08-12 11:31:39 +0000263 return x86_64;
Daniel Dunbarb26bc422009-08-18 07:06:26 +0000264 else if (ArchName == "bfin")
Duncan Sands335db222010-08-12 11:31:39 +0000265 return bfin;
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000266 else if (ArchName == "powerpc")
Duncan Sands335db222010-08-12 11:31:39 +0000267 return ppc;
Edward O'Callaghancc9fa812009-11-19 11:59:00 +0000268 else if ((ArchName == "powerpc64") || (ArchName == "ppu"))
Duncan Sands335db222010-08-12 11:31:39 +0000269 return ppc64;
Wesley Pecka70f28c2010-02-23 19:15:24 +0000270 else if (ArchName == "mblaze")
Duncan Sands335db222010-08-12 11:31:39 +0000271 return mblaze;
Daniel Dunbar6337f152009-07-26 04:23:03 +0000272 else if (ArchName == "arm" ||
Daniel Dunbar24473892009-08-18 04:51:26 +0000273 ArchName.startswith("armv") ||
274 ArchName == "xscale")
Duncan Sands335db222010-08-12 11:31:39 +0000275 return arm;
Daniel Dunbar6337f152009-07-26 04:23:03 +0000276 else if (ArchName == "thumb" ||
277 ArchName.startswith("thumbv"))
Duncan Sands335db222010-08-12 11:31:39 +0000278 return thumb;
Daniel Dunbar6337f152009-07-26 04:23:03 +0000279 else if (ArchName.startswith("alpha"))
Duncan Sands335db222010-08-12 11:31:39 +0000280 return alpha;
Daniel Dunbar6337f152009-07-26 04:23:03 +0000281 else if (ArchName == "spu" || ArchName == "cellspu")
Duncan Sands335db222010-08-12 11:31:39 +0000282 return cellspu;
Daniel Dunbar6337f152009-07-26 04:23:03 +0000283 else if (ArchName == "msp430")
Duncan Sands335db222010-08-12 11:31:39 +0000284 return msp430;
Daniel Dunbar6337f152009-07-26 04:23:03 +0000285 else if (ArchName == "mips" || ArchName == "mipsallegrex")
Duncan Sands335db222010-08-12 11:31:39 +0000286 return mips;
Daniel Dunbar6337f152009-07-26 04:23:03 +0000287 else if (ArchName == "mipsel" || ArchName == "mipsallegrexel" ||
288 ArchName == "psp")
Duncan Sands335db222010-08-12 11:31:39 +0000289 return mipsel;
Daniel Dunbar6337f152009-07-26 04:23:03 +0000290 else if (ArchName == "sparc")
Duncan Sands335db222010-08-12 11:31:39 +0000291 return sparc;
Chris Lattner87c06d62010-02-04 06:34:01 +0000292 else if (ArchName == "sparcv9")
Duncan Sands335db222010-08-12 11:31:39 +0000293 return sparcv9;
Daniel Dunbar6337f152009-07-26 04:23:03 +0000294 else if (ArchName == "s390x")
Duncan Sands335db222010-08-12 11:31:39 +0000295 return systemz;
Eli Friedman74db89e2009-08-19 20:46:03 +0000296 else if (ArchName == "tce")
Duncan Sands335db222010-08-12 11:31:39 +0000297 return tce;
Richard Osborne768f1dd2009-08-31 21:51:36 +0000298 else if (ArchName == "xcore")
Duncan Sands335db222010-08-12 11:31:39 +0000299 return xcore;
Justin Holewinskie1fee482011-04-20 15:37:17 +0000300 else if (ArchName == "ptx32")
301 return ptx32;
302 else if (ArchName == "ptx64")
303 return ptx64;
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000304 else
Duncan Sands335db222010-08-12 11:31:39 +0000305 return UnknownArch;
306}
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000307
Duncan Sands335db222010-08-12 11:31:39 +0000308Triple::VendorType Triple::ParseVendor(StringRef VendorName) {
309 if (VendorName == "apple")
310 return Apple;
311 else if (VendorName == "pc")
312 return PC;
John Thompson6046cff2011-03-15 21:51:56 +0000313 else if (VendorName == "scei")
314 return SCEI;
Duncan Sands335db222010-08-12 11:31:39 +0000315 else
316 return UnknownVendor;
317}
318
319Triple::OSType Triple::ParseOS(StringRef OSName) {
320 if (OSName.startswith("auroraux"))
321 return AuroraUX;
322 else if (OSName.startswith("cygwin"))
323 return Cygwin;
324 else if (OSName.startswith("darwin"))
325 return Darwin;
326 else if (OSName.startswith("dragonfly"))
327 return DragonFly;
328 else if (OSName.startswith("freebsd"))
329 return FreeBSD;
Daniel Dunbar0dde4c02011-04-19 20:19:27 +0000330 else if (OSName.startswith("ios"))
331 return IOS;
Duncan Sands335db222010-08-12 11:31:39 +0000332 else if (OSName.startswith("linux"))
333 return Linux;
334 else if (OSName.startswith("lv2"))
335 return Lv2;
Daniel Dunbar1af39472011-04-19 23:34:12 +0000336 else if (OSName.startswith("macosx"))
337 return MacOSX;
Duncan Sands335db222010-08-12 11:31:39 +0000338 else if (OSName.startswith("mingw32"))
339 return MinGW32;
Duncan Sands335db222010-08-12 11:31:39 +0000340 else if (OSName.startswith("netbsd"))
341 return NetBSD;
342 else if (OSName.startswith("openbsd"))
343 return OpenBSD;
344 else if (OSName.startswith("psp"))
345 return Psp;
346 else if (OSName.startswith("solaris"))
347 return Solaris;
348 else if (OSName.startswith("win32"))
349 return Win32;
350 else if (OSName.startswith("haiku"))
351 return Haiku;
352 else if (OSName.startswith("minix"))
353 return Minix;
Eli Friedmanb0e77a22011-07-06 20:56:26 +0000354 else if (OSName.startswith("rtems"))
355 return RTEMS;
Duncan Sands335db222010-08-12 11:31:39 +0000356 else
357 return UnknownOS;
358}
359
Duncan Sands5754a452010-09-16 08:25:48 +0000360Triple::EnvironmentType Triple::ParseEnvironment(StringRef EnvironmentName) {
Renato Golin859f8182011-01-21 18:25:47 +0000361 if (EnvironmentName.startswith("eabi"))
362 return EABI;
363 else if (EnvironmentName.startswith("gnueabi"))
364 return GNUEABI;
365 else if (EnvironmentName.startswith("gnu"))
366 return GNU;
Evan Cheng2bffee22011-02-01 01:14:13 +0000367 else if (EnvironmentName.startswith("macho"))
368 return MachO;
Renato Golin859f8182011-01-21 18:25:47 +0000369 else
370 return UnknownEnvironment;
Duncan Sands5754a452010-09-16 08:25:48 +0000371}
372
Duncan Sands335db222010-08-12 11:31:39 +0000373void Triple::Parse() const {
374 assert(!isInitialized() && "Invalid parse call.");
375
376 Arch = ParseArch(getArchName());
377 Vendor = ParseVendor(getVendorName());
378 OS = ParseOS(getOSName());
Duncan Sandsae200c62011-02-02 10:08:38 +0000379 Environment = ParseEnvironment(getEnvironmentName());
Daniel Dunbar651aa682009-08-18 19:26:55 +0000380
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000381 assert(isInitialized() && "Failed to initialize!");
382}
383
Duncan Sands335db222010-08-12 11:31:39 +0000384std::string Triple::normalize(StringRef Str) {
385 // Parse into components.
386 SmallVector<StringRef, 4> Components;
387 for (size_t First = 0, Last = 0; Last != StringRef::npos; First = Last + 1) {
388 Last = Str.find('-', First);
389 Components.push_back(Str.slice(First, Last));
390 }
391
392 // If the first component corresponds to a known architecture, preferentially
393 // use it for the architecture. If the second component corresponds to a
394 // known vendor, preferentially use it for the vendor, etc. This avoids silly
395 // component movement when a component parses as (eg) both a valid arch and a
396 // valid os.
397 ArchType Arch = UnknownArch;
398 if (Components.size() > 0)
399 Arch = ParseArch(Components[0]);
400 VendorType Vendor = UnknownVendor;
401 if (Components.size() > 1)
402 Vendor = ParseVendor(Components[1]);
403 OSType OS = UnknownOS;
404 if (Components.size() > 2)
405 OS = ParseOS(Components[2]);
Duncan Sands5754a452010-09-16 08:25:48 +0000406 EnvironmentType Environment = UnknownEnvironment;
407 if (Components.size() > 3)
408 Environment = ParseEnvironment(Components[3]);
Duncan Sands335db222010-08-12 11:31:39 +0000409
410 // Note which components are already in their final position. These will not
411 // be moved.
Duncan Sands5754a452010-09-16 08:25:48 +0000412 bool Found[4];
Duncan Sands335db222010-08-12 11:31:39 +0000413 Found[0] = Arch != UnknownArch;
414 Found[1] = Vendor != UnknownVendor;
415 Found[2] = OS != UnknownOS;
Duncan Sands5754a452010-09-16 08:25:48 +0000416 Found[3] = Environment != UnknownEnvironment;
Duncan Sands335db222010-08-12 11:31:39 +0000417
418 // If they are not there already, permute the components into their canonical
419 // positions by seeing if they parse as a valid architecture, and if so moving
420 // the component to the architecture position etc.
Duncan Sands5754a452010-09-16 08:25:48 +0000421 for (unsigned Pos = 0; Pos != array_lengthof(Found); ++Pos) {
Duncan Sands335db222010-08-12 11:31:39 +0000422 if (Found[Pos])
423 continue; // Already in the canonical position.
424
425 for (unsigned Idx = 0; Idx != Components.size(); ++Idx) {
426 // Do not reparse any components that already matched.
Duncan Sands5754a452010-09-16 08:25:48 +0000427 if (Idx < array_lengthof(Found) && Found[Idx])
Duncan Sands335db222010-08-12 11:31:39 +0000428 continue;
429
430 // Does this component parse as valid for the target position?
431 bool Valid = false;
432 StringRef Comp = Components[Idx];
433 switch (Pos) {
434 default:
435 assert(false && "unexpected component type!");
436 case 0:
437 Arch = ParseArch(Comp);
438 Valid = Arch != UnknownArch;
439 break;
440 case 1:
441 Vendor = ParseVendor(Comp);
442 Valid = Vendor != UnknownVendor;
443 break;
444 case 2:
445 OS = ParseOS(Comp);
Duncan Sandsae200c62011-02-02 10:08:38 +0000446 Valid = OS != UnknownOS;
Duncan Sands335db222010-08-12 11:31:39 +0000447 break;
Duncan Sands5754a452010-09-16 08:25:48 +0000448 case 3:
449 Environment = ParseEnvironment(Comp);
450 Valid = Environment != UnknownEnvironment;
451 break;
Duncan Sands335db222010-08-12 11:31:39 +0000452 }
453 if (!Valid)
454 continue; // Nope, try the next component.
455
456 // Move the component to the target position, pushing any non-fixed
457 // components that are in the way to the right. This tends to give
458 // good results in the common cases of a forgotten vendor component
459 // or a wrongly positioned environment.
460 if (Pos < Idx) {
461 // Insert left, pushing the existing components to the right. For
462 // example, a-b-i386 -> i386-a-b when moving i386 to the front.
463 StringRef CurrentComponent(""); // The empty component.
464 // Replace the component we are moving with an empty component.
465 std::swap(CurrentComponent, Components[Idx]);
466 // Insert the component being moved at Pos, displacing any existing
467 // components to the right.
468 for (unsigned i = Pos; !CurrentComponent.empty(); ++i) {
469 // Skip over any fixed components.
Duncan Sands5754a452010-09-16 08:25:48 +0000470 while (i < array_lengthof(Found) && Found[i]) ++i;
Duncan Sands335db222010-08-12 11:31:39 +0000471 // Place the component at the new position, getting the component
472 // that was at this position - it will be moved right.
473 std::swap(CurrentComponent, Components[i]);
474 }
475 } else if (Pos > Idx) {
476 // Push right by inserting empty components until the component at Idx
477 // reaches the target position Pos. For example, pc-a -> -pc-a when
478 // moving pc to the second position.
479 do {
480 // Insert one empty component at Idx.
481 StringRef CurrentComponent(""); // The empty component.
Duncan Sandsae200c62011-02-02 10:08:38 +0000482 for (unsigned i = Idx; i < Components.size();) {
Duncan Sands335db222010-08-12 11:31:39 +0000483 // Place the component at the new position, getting the component
484 // that was at this position - it will be moved right.
485 std::swap(CurrentComponent, Components[i]);
486 // If it was placed on top of an empty component then we are done.
487 if (CurrentComponent.empty())
488 break;
Duncan Sandsae200c62011-02-02 10:08:38 +0000489 // Advance to the next component, skipping any fixed components.
Anders Carlsson15ec6952011-02-05 18:19:35 +0000490 while (++i < array_lengthof(Found) && Found[i])
491 ;
Duncan Sands335db222010-08-12 11:31:39 +0000492 }
493 // The last component was pushed off the end - append it.
494 if (!CurrentComponent.empty())
495 Components.push_back(CurrentComponent);
496
497 // Advance Idx to the component's new position.
Duncan Sands5754a452010-09-16 08:25:48 +0000498 while (++Idx < array_lengthof(Found) && Found[Idx]) {}
Duncan Sands335db222010-08-12 11:31:39 +0000499 } while (Idx < Pos); // Add more until the final position is reached.
500 }
501 assert(Pos < Components.size() && Components[Pos] == Comp &&
502 "Component moved wrong!");
503 Found[Pos] = true;
504 break;
505 }
506 }
507
508 // Special case logic goes here. At this point Arch, Vendor and OS have the
509 // correct values for the computed components.
510
511 // Stick the corrected components back together to form the normalized string.
512 std::string Normalized;
513 for (unsigned i = 0, e = Components.size(); i != e; ++i) {
514 if (i) Normalized += '-';
515 Normalized += Components[i];
516 }
517 return Normalized;
518}
519
Daniel Dunbara14d2252009-07-26 03:31:47 +0000520StringRef Triple::getArchName() const {
521 return StringRef(Data).split('-').first; // Isolate first component
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000522}
523
Daniel Dunbara14d2252009-07-26 03:31:47 +0000524StringRef Triple::getVendorName() const {
525 StringRef Tmp = StringRef(Data).split('-').second; // Strip first component
526 return Tmp.split('-').first; // Isolate second component
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000527}
528
Daniel Dunbara14d2252009-07-26 03:31:47 +0000529StringRef Triple::getOSName() const {
530 StringRef Tmp = StringRef(Data).split('-').second; // Strip first component
531 Tmp = Tmp.split('-').second; // Strip second component
532 return Tmp.split('-').first; // Isolate third component
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000533}
534
Daniel Dunbara14d2252009-07-26 03:31:47 +0000535StringRef Triple::getEnvironmentName() const {
536 StringRef Tmp = StringRef(Data).split('-').second; // Strip first component
537 Tmp = Tmp.split('-').second; // Strip second component
538 return Tmp.split('-').second; // Strip third component
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000539}
540
Daniel Dunbara14d2252009-07-26 03:31:47 +0000541StringRef Triple::getOSAndEnvironmentName() const {
542 StringRef Tmp = StringRef(Data).split('-').second; // Strip first component
543 return Tmp.split('-').second; // Strip second component
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000544}
545
Chris Lattnerdfc17f72009-08-12 06:19:40 +0000546static unsigned EatNumber(StringRef &Str) {
547 assert(!Str.empty() && Str[0] >= '0' && Str[0] <= '9' && "Not a number");
Daniel Dunbar087d6a52011-04-19 20:24:34 +0000548 unsigned Result = 0;
Jim Grosbache509aa92010-12-17 02:10:59 +0000549
Daniel Dunbar087d6a52011-04-19 20:24:34 +0000550 do {
551 // Consume the leading digit.
Chris Lattnerdfc17f72009-08-12 06:19:40 +0000552 Result = Result*10 + (Str[0] - '0');
Daniel Dunbar087d6a52011-04-19 20:24:34 +0000553
Chris Lattnerdfc17f72009-08-12 06:19:40 +0000554 // Eat the digit.
555 Str = Str.substr(1);
Daniel Dunbar087d6a52011-04-19 20:24:34 +0000556 } while (!Str.empty() && Str[0] >= '0' && Str[0] <= '9');
Jim Grosbache509aa92010-12-17 02:10:59 +0000557
Chris Lattnerdfc17f72009-08-12 06:19:40 +0000558 return Result;
559}
560
Daniel Dunbar087d6a52011-04-19 20:24:34 +0000561void Triple::getOSVersion(unsigned &Major, unsigned &Minor,
562 unsigned &Micro) const {
Chris Lattnerdfc17f72009-08-12 06:19:40 +0000563 StringRef OSName = getOSName();
Jim Grosbache509aa92010-12-17 02:10:59 +0000564
Daniel Dunbar087d6a52011-04-19 20:24:34 +0000565 // Assume that the OS portion of the triple starts with the canonical name.
566 StringRef OSTypeName = getOSTypeName(getOS());
567 if (OSName.startswith(OSTypeName))
568 OSName = OSName.substr(OSTypeName.size());
Jim Grosbache509aa92010-12-17 02:10:59 +0000569
Daniel Dunbar087d6a52011-04-19 20:24:34 +0000570 // Any unset version defaults to 0.
571 Major = Minor = Micro = 0;
Chris Lattnerdfc17f72009-08-12 06:19:40 +0000572
Daniel Dunbar087d6a52011-04-19 20:24:34 +0000573 // Parse up to three components.
574 unsigned *Components[3] = { &Major, &Minor, &Micro };
575 for (unsigned i = 0; i != 3; ++i) {
576 if (OSName.empty() || OSName[0] < '0' || OSName[0] > '9')
577 break;
Chris Lattnerdfc17f72009-08-12 06:19:40 +0000578
Daniel Dunbar087d6a52011-04-19 20:24:34 +0000579 // Consume the leading number.
580 *Components[i] = EatNumber(OSName);
Jim Grosbache509aa92010-12-17 02:10:59 +0000581
Daniel Dunbar087d6a52011-04-19 20:24:34 +0000582 // Consume the separator, if present.
583 if (OSName.startswith("."))
584 OSName = OSName.substr(1);
585 }
Chris Lattnerdfc17f72009-08-12 06:19:40 +0000586}
587
Daniel Dunbara14d2252009-07-26 03:31:47 +0000588void Triple::setTriple(const Twine &Str) {
589 Data = Str.str();
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000590 Arch = InvalidArch;
591}
592
593void Triple::setArch(ArchType Kind) {
594 setArchName(getArchTypeName(Kind));
595}
596
597void Triple::setVendor(VendorType Kind) {
598 setVendorName(getVendorTypeName(Kind));
599}
600
601void Triple::setOS(OSType Kind) {
602 setOSName(getOSTypeName(Kind));
603}
604
Duncan Sands5754a452010-09-16 08:25:48 +0000605void Triple::setEnvironment(EnvironmentType Kind) {
606 setEnvironmentName(getEnvironmentTypeName(Kind));
607}
608
Daniel Dunbar2928c832009-11-06 10:58:06 +0000609void Triple::setArchName(StringRef Str) {
Jeffrey Yasskin0b228732009-10-06 21:45:26 +0000610 // Work around a miscompilation bug for Twines in gcc 4.0.3.
611 SmallString<64> Triple;
612 Triple += Str;
613 Triple += "-";
614 Triple += getVendorName();
615 Triple += "-";
616 Triple += getOSAndEnvironmentName();
617 setTriple(Triple.str());
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000618}
619
Daniel Dunbar2928c832009-11-06 10:58:06 +0000620void Triple::setVendorName(StringRef Str) {
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000621 setTriple(getArchName() + "-" + Str + "-" + getOSAndEnvironmentName());
622}
623
Daniel Dunbar2928c832009-11-06 10:58:06 +0000624void Triple::setOSName(StringRef Str) {
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000625 if (hasEnvironment())
626 setTriple(getArchName() + "-" + getVendorName() + "-" + Str +
627 "-" + getEnvironmentName());
628 else
629 setTriple(getArchName() + "-" + getVendorName() + "-" + Str);
630}
631
Daniel Dunbar2928c832009-11-06 10:58:06 +0000632void Triple::setEnvironmentName(StringRef Str) {
633 setTriple(getArchName() + "-" + getVendorName() + "-" + getOSName() +
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000634 "-" + Str);
635}
636
Daniel Dunbar2928c832009-11-06 10:58:06 +0000637void Triple::setOSAndEnvironmentName(StringRef Str) {
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000638 setTriple(getArchName() + "-" + getVendorName() + "-" + Str);
639}