blob: 8bb7f382329c88d170cf06d08cf02d79cca21a23 [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"
Jeffrey Yasskin0b228732009-10-06 21:45:26 +000011#include "llvm/ADT/SmallString.h"
Duncan Sands5754a452010-09-16 08:25:48 +000012#include "llvm/ADT/STLExtras.h"
Mikhail Glushenkov70748752009-04-02 01:11:37 +000013#include <cstring>
Daniel Dunbar23e97b02009-04-01 21:53:23 +000014using namespace llvm;
15
Daniel Dunbar23e97b02009-04-01 21:53:23 +000016const char *Triple::getArchTypeName(ArchType Kind) {
17 switch (Kind) {
18 case InvalidArch: return "<invalid>";
19 case UnknownArch: return "unknown";
Jim Grosbache509aa92010-12-17 02:10:59 +000020
Daniel Dunbar6337f152009-07-26 04:23:03 +000021 case alpha: return "alpha";
22 case arm: return "arm";
Jakob Stoklund Olesend9509412009-08-02 17:32:10 +000023 case bfin: return "bfin";
Daniel Dunbar6337f152009-07-26 04:23:03 +000024 case cellspu: return "cellspu";
25 case mips: return "mips";
26 case mipsel: return "mipsel";
27 case msp430: return "msp430";
Daniel Dunbar8c2f1d72009-07-26 04:52:45 +000028 case ppc64: return "powerpc64";
29 case ppc: return "powerpc";
Daniel Dunbar6337f152009-07-26 04:23:03 +000030 case sparc: return "sparc";
Chris Lattner87c06d62010-02-04 06:34:01 +000031 case sparcv9: return "sparcv9";
Daniel Dunbar6337f152009-07-26 04:23:03 +000032 case systemz: return "s390x";
Eli Friedman74db89e2009-08-19 20:46:03 +000033 case tce: return "tce";
Daniel Dunbar6337f152009-07-26 04:23:03 +000034 case thumb: return "thumb";
35 case x86: return "i386";
36 case x86_64: return "x86_64";
Daniel Dunbar8c2f1d72009-07-26 04:52:45 +000037 case xcore: return "xcore";
Wesley Pecka70f28c2010-02-23 19:15:24 +000038 case mblaze: return "mblaze";
Justin Holewinskie1fee482011-04-20 15:37:17 +000039 case ptx32: return "ptx32";
40 case ptx64: return "ptx64";
Daniel Dunbar23e97b02009-04-01 21:53:23 +000041 }
42
43 return "<invalid>";
44}
45
Daniel Dunbar688b55b2009-08-24 09:53:06 +000046const char *Triple::getArchTypePrefix(ArchType Kind) {
47 switch (Kind) {
48 default:
49 return 0;
50
51 case alpha: return "alpha";
52
53 case arm:
54 case thumb: return "arm";
55
56 case bfin: return "bfin";
57
58 case cellspu: return "spu";
59
60 case ppc64:
61 case ppc: return "ppc";
62
Wesley Pecka70f28c2010-02-23 19:15:24 +000063 case mblaze: return "mblaze";
64
Chris Lattner87c06d62010-02-04 06:34:01 +000065 case sparcv9:
Daniel Dunbar688b55b2009-08-24 09:53:06 +000066 case sparc: return "sparc";
67
68 case x86:
69 case x86_64: return "x86";
Nick Lewyckyf7a3c502010-09-07 18:14:24 +000070
Daniel Dunbar688b55b2009-08-24 09:53:06 +000071 case xcore: return "xcore";
Nick Lewyckyf7a3c502010-09-07 18:14:24 +000072
Justin Holewinskie1fee482011-04-20 15:37:17 +000073 case ptx32: return "ptx";
74 case ptx64: return "ptx";
Daniel Dunbar688b55b2009-08-24 09:53:06 +000075 }
76}
77
Daniel Dunbar23e97b02009-04-01 21:53:23 +000078const char *Triple::getVendorTypeName(VendorType Kind) {
79 switch (Kind) {
80 case UnknownVendor: return "unknown";
81
82 case Apple: return "apple";
Chris Lattner56ce0f42009-08-14 18:48:13 +000083 case PC: return "pc";
John Thompson6046cff2011-03-15 21:51:56 +000084 case SCEI: return "scei";
Daniel Dunbar23e97b02009-04-01 21:53:23 +000085 }
86
87 return "<invalid>";
88}
89
90const char *Triple::getOSTypeName(OSType Kind) {
91 switch (Kind) {
92 case UnknownOS: return "unknown";
93
Duncan Sands852cd112009-06-19 14:40:01 +000094 case AuroraUX: return "auroraux";
Daniel Dunbar6337f152009-07-26 04:23:03 +000095 case Cygwin: return "cygwin";
Daniel Dunbar23e97b02009-04-01 21:53:23 +000096 case Darwin: return "darwin";
Daniel Dunbar7eaf0572009-05-22 02:24:11 +000097 case DragonFly: return "dragonfly";
Daniel Dunbar23e97b02009-04-01 21:53:23 +000098 case FreeBSD: return "freebsd";
Daniel Dunbar0dde4c02011-04-19 20:19:27 +000099 case IOS: return "ios";
Duncan Sands652b48b2011-07-26 15:30:04 +0000100 case KFreeBSD: return "kfreebsd";
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000101 case Linux: return "linux";
Edward O'Callaghancc9fa812009-11-19 11:59:00 +0000102 case Lv2: return "lv2";
Daniel Dunbar1af39472011-04-19 23:34:12 +0000103 case MacOSX: return "macosx";
Daniel Dunbar6337f152009-07-26 04:23:03 +0000104 case MinGW32: return "mingw32";
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";
Douglas Gregor6ced1d12011-07-01 22:41:06 +0000112 case RTEMS: return "rtems";
Ivan Krasinfb234622011-08-18 22:54:21 +0000113 case NativeClient: return "nacl";
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000114 }
115
116 return "<invalid>";
117}
118
Duncan Sands5754a452010-09-16 08:25:48 +0000119const char *Triple::getEnvironmentTypeName(EnvironmentType Kind) {
120 switch (Kind) {
121 case UnknownEnvironment: return "unknown";
Renato Golin859f8182011-01-21 18:25:47 +0000122 case GNU: return "gnu";
123 case GNUEABI: return "gnueabi";
124 case EABI: return "eabi";
Evan Cheng2bffee22011-02-01 01:14:13 +0000125 case MachO: return "macho";
Duncan Sands5754a452010-09-16 08:25:48 +0000126 }
127
128 return "<invalid>";
129}
130
Daniel Dunbar2928c832009-11-06 10:58:06 +0000131Triple::ArchType Triple::getArchTypeForLLVMName(StringRef Name) {
Daniel Dunbar3c2d4bf2009-08-03 04:03:51 +0000132 if (Name == "alpha")
133 return alpha;
134 if (Name == "arm")
135 return arm;
136 if (Name == "bfin")
137 return bfin;
138 if (Name == "cellspu")
139 return cellspu;
140 if (Name == "mips")
141 return mips;
142 if (Name == "mipsel")
143 return mipsel;
144 if (Name == "msp430")
145 return msp430;
146 if (Name == "ppc64")
147 return ppc64;
NAKAMURA Takumi12b27722011-07-22 04:02:22 +0000148 if (Name == "ppc32")
149 return ppc;
Daniel Dunbar3c2d4bf2009-08-03 04:03:51 +0000150 if (Name == "ppc")
151 return ppc;
Wesley Pecka70f28c2010-02-23 19:15:24 +0000152 if (Name == "mblaze")
153 return mblaze;
Daniel Dunbar3c2d4bf2009-08-03 04:03:51 +0000154 if (Name == "sparc")
155 return sparc;
Chris Lattner87c06d62010-02-04 06:34:01 +0000156 if (Name == "sparcv9")
157 return sparcv9;
Daniel Dunbar3c2d4bf2009-08-03 04:03:51 +0000158 if (Name == "systemz")
159 return systemz;
Eli Friedman74db89e2009-08-19 20:46:03 +0000160 if (Name == "tce")
161 return tce;
Daniel Dunbar3c2d4bf2009-08-03 04:03:51 +0000162 if (Name == "thumb")
163 return thumb;
164 if (Name == "x86")
165 return x86;
Chris Lattnerb796c4f2009-08-12 06:45:02 +0000166 if (Name == "x86-64")
Daniel Dunbar3c2d4bf2009-08-03 04:03:51 +0000167 return x86_64;
168 if (Name == "xcore")
169 return xcore;
Justin Holewinskie1fee482011-04-20 15:37:17 +0000170 if (Name == "ptx32")
171 return ptx32;
172 if (Name == "ptx64")
173 return ptx64;
Daniel Dunbar3c2d4bf2009-08-03 04:03:51 +0000174
175 return UnknownArch;
176}
177
Daniel Dunbar2928c832009-11-06 10:58:06 +0000178Triple::ArchType Triple::getArchTypeForDarwinArchName(StringRef Str) {
Daniel Dunbarbaf9b562009-09-08 23:32:51 +0000179 // See arch(3) and llvm-gcc's driver-driver.c. We don't implement support for
180 // archs which Darwin doesn't use.
181
182 // The matching this routine does is fairly pointless, since it is neither the
183 // complete architecture list, nor a reasonable subset. The problem is that
184 // historically the driver driver accepts this and also ties its -march=
185 // handling to the architecture name, so we need to be careful before removing
186 // support for it.
187
Daniel Dunbared687882009-09-09 23:01:25 +0000188 // This code must be kept in sync with Clang's Darwin specific argument
189 // translation.
190
Daniel Dunbarbaf9b562009-09-08 23:32:51 +0000191 if (Str == "ppc" || Str == "ppc601" || Str == "ppc603" || Str == "ppc604" ||
192 Str == "ppc604e" || Str == "ppc750" || Str == "ppc7400" ||
193 Str == "ppc7450" || Str == "ppc970")
194 return Triple::ppc;
195
196 if (Str == "ppc64")
197 return Triple::ppc64;
198
199 if (Str == "i386" || Str == "i486" || Str == "i486SX" || Str == "pentium" ||
200 Str == "i586" || Str == "pentpro" || Str == "i686" || Str == "pentIIm3" ||
201 Str == "pentIIm5" || Str == "pentium4")
202 return Triple::x86;
203
204 if (Str == "x86_64")
205 return Triple::x86_64;
206
207 // This is derived from the driver driver.
208 if (Str == "arm" || Str == "armv4t" || Str == "armv5" || Str == "xscale" ||
Sean Callananefd79192011-07-30 01:29:54 +0000209 Str == "armv6" || Str == "armv7" || Str == "armv7f" || Str == "armv7k" ||
210 Str == "armv7s")
Daniel Dunbarbaf9b562009-09-08 23:32:51 +0000211 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;
Joerg Sonnenbergerf86b76e2011-07-07 16:53:52 +0000285 else if (ArchName == "mips" || ArchName == "mipseb" ||
286 ArchName == "mipsallegrex")
Duncan Sands335db222010-08-12 11:31:39 +0000287 return mips;
Daniel Dunbar6337f152009-07-26 04:23:03 +0000288 else if (ArchName == "mipsel" || ArchName == "mipsallegrexel" ||
289 ArchName == "psp")
Duncan Sands335db222010-08-12 11:31:39 +0000290 return mipsel;
Daniel Dunbar6337f152009-07-26 04:23:03 +0000291 else if (ArchName == "sparc")
Duncan Sands335db222010-08-12 11:31:39 +0000292 return sparc;
Chris Lattner87c06d62010-02-04 06:34:01 +0000293 else if (ArchName == "sparcv9")
Duncan Sands335db222010-08-12 11:31:39 +0000294 return sparcv9;
Daniel Dunbar6337f152009-07-26 04:23:03 +0000295 else if (ArchName == "s390x")
Duncan Sands335db222010-08-12 11:31:39 +0000296 return systemz;
Eli Friedman74db89e2009-08-19 20:46:03 +0000297 else if (ArchName == "tce")
Duncan Sands335db222010-08-12 11:31:39 +0000298 return tce;
Richard Osborne768f1dd2009-08-31 21:51:36 +0000299 else if (ArchName == "xcore")
Duncan Sands335db222010-08-12 11:31:39 +0000300 return xcore;
Justin Holewinskie1fee482011-04-20 15:37:17 +0000301 else if (ArchName == "ptx32")
302 return ptx32;
303 else if (ArchName == "ptx64")
304 return ptx64;
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000305 else
Duncan Sands335db222010-08-12 11:31:39 +0000306 return UnknownArch;
307}
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000308
Duncan Sands335db222010-08-12 11:31:39 +0000309Triple::VendorType Triple::ParseVendor(StringRef VendorName) {
310 if (VendorName == "apple")
311 return Apple;
312 else if (VendorName == "pc")
313 return PC;
John Thompson6046cff2011-03-15 21:51:56 +0000314 else if (VendorName == "scei")
315 return SCEI;
Duncan Sands335db222010-08-12 11:31:39 +0000316 else
317 return UnknownVendor;
318}
319
320Triple::OSType Triple::ParseOS(StringRef OSName) {
321 if (OSName.startswith("auroraux"))
322 return AuroraUX;
323 else if (OSName.startswith("cygwin"))
324 return Cygwin;
325 else if (OSName.startswith("darwin"))
326 return Darwin;
327 else if (OSName.startswith("dragonfly"))
328 return DragonFly;
329 else if (OSName.startswith("freebsd"))
330 return FreeBSD;
Daniel Dunbar0dde4c02011-04-19 20:19:27 +0000331 else if (OSName.startswith("ios"))
332 return IOS;
Duncan Sands652b48b2011-07-26 15:30:04 +0000333 else if (OSName.startswith("kfreebsd"))
334 return KFreeBSD;
Duncan Sands335db222010-08-12 11:31:39 +0000335 else if (OSName.startswith("linux"))
336 return Linux;
337 else if (OSName.startswith("lv2"))
338 return Lv2;
Daniel Dunbar1af39472011-04-19 23:34:12 +0000339 else if (OSName.startswith("macosx"))
340 return MacOSX;
Duncan Sands335db222010-08-12 11:31:39 +0000341 else if (OSName.startswith("mingw32"))
342 return MinGW32;
Duncan Sands335db222010-08-12 11:31:39 +0000343 else if (OSName.startswith("netbsd"))
344 return NetBSD;
345 else if (OSName.startswith("openbsd"))
346 return OpenBSD;
347 else if (OSName.startswith("psp"))
348 return Psp;
349 else if (OSName.startswith("solaris"))
350 return Solaris;
351 else if (OSName.startswith("win32"))
352 return Win32;
353 else if (OSName.startswith("haiku"))
354 return Haiku;
355 else if (OSName.startswith("minix"))
356 return Minix;
Eli Friedmanb0e77a22011-07-06 20:56:26 +0000357 else if (OSName.startswith("rtems"))
358 return RTEMS;
Duncan Sands335db222010-08-12 11:31:39 +0000359 else
360 return UnknownOS;
361}
362
Duncan Sands5754a452010-09-16 08:25:48 +0000363Triple::EnvironmentType Triple::ParseEnvironment(StringRef EnvironmentName) {
Renato Golin859f8182011-01-21 18:25:47 +0000364 if (EnvironmentName.startswith("eabi"))
365 return EABI;
366 else if (EnvironmentName.startswith("gnueabi"))
367 return GNUEABI;
368 else if (EnvironmentName.startswith("gnu"))
369 return GNU;
Evan Cheng2bffee22011-02-01 01:14:13 +0000370 else if (EnvironmentName.startswith("macho"))
371 return MachO;
Renato Golin859f8182011-01-21 18:25:47 +0000372 else
373 return UnknownEnvironment;
Duncan Sands5754a452010-09-16 08:25:48 +0000374}
375
Duncan Sands335db222010-08-12 11:31:39 +0000376void Triple::Parse() const {
377 assert(!isInitialized() && "Invalid parse call.");
378
379 Arch = ParseArch(getArchName());
380 Vendor = ParseVendor(getVendorName());
381 OS = ParseOS(getOSName());
Duncan Sandsae200c62011-02-02 10:08:38 +0000382 Environment = ParseEnvironment(getEnvironmentName());
Daniel Dunbar651aa682009-08-18 19:26:55 +0000383
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000384 assert(isInitialized() && "Failed to initialize!");
385}
386
Duncan Sands335db222010-08-12 11:31:39 +0000387std::string Triple::normalize(StringRef Str) {
388 // Parse into components.
389 SmallVector<StringRef, 4> Components;
390 for (size_t First = 0, Last = 0; Last != StringRef::npos; First = Last + 1) {
391 Last = Str.find('-', First);
392 Components.push_back(Str.slice(First, Last));
393 }
394
395 // If the first component corresponds to a known architecture, preferentially
396 // use it for the architecture. If the second component corresponds to a
397 // known vendor, preferentially use it for the vendor, etc. This avoids silly
398 // component movement when a component parses as (eg) both a valid arch and a
399 // valid os.
400 ArchType Arch = UnknownArch;
401 if (Components.size() > 0)
402 Arch = ParseArch(Components[0]);
403 VendorType Vendor = UnknownVendor;
404 if (Components.size() > 1)
405 Vendor = ParseVendor(Components[1]);
406 OSType OS = UnknownOS;
407 if (Components.size() > 2)
408 OS = ParseOS(Components[2]);
Duncan Sands5754a452010-09-16 08:25:48 +0000409 EnvironmentType Environment = UnknownEnvironment;
410 if (Components.size() > 3)
411 Environment = ParseEnvironment(Components[3]);
Duncan Sands335db222010-08-12 11:31:39 +0000412
413 // Note which components are already in their final position. These will not
414 // be moved.
Duncan Sands5754a452010-09-16 08:25:48 +0000415 bool Found[4];
Duncan Sands335db222010-08-12 11:31:39 +0000416 Found[0] = Arch != UnknownArch;
417 Found[1] = Vendor != UnknownVendor;
418 Found[2] = OS != UnknownOS;
Duncan Sands5754a452010-09-16 08:25:48 +0000419 Found[3] = Environment != UnknownEnvironment;
Duncan Sands335db222010-08-12 11:31:39 +0000420
421 // If they are not there already, permute the components into their canonical
422 // positions by seeing if they parse as a valid architecture, and if so moving
423 // the component to the architecture position etc.
Duncan Sands5754a452010-09-16 08:25:48 +0000424 for (unsigned Pos = 0; Pos != array_lengthof(Found); ++Pos) {
Duncan Sands335db222010-08-12 11:31:39 +0000425 if (Found[Pos])
426 continue; // Already in the canonical position.
427
428 for (unsigned Idx = 0; Idx != Components.size(); ++Idx) {
429 // Do not reparse any components that already matched.
Duncan Sands5754a452010-09-16 08:25:48 +0000430 if (Idx < array_lengthof(Found) && Found[Idx])
Duncan Sands335db222010-08-12 11:31:39 +0000431 continue;
432
433 // Does this component parse as valid for the target position?
434 bool Valid = false;
435 StringRef Comp = Components[Idx];
436 switch (Pos) {
437 default:
438 assert(false && "unexpected component type!");
439 case 0:
440 Arch = ParseArch(Comp);
441 Valid = Arch != UnknownArch;
442 break;
443 case 1:
444 Vendor = ParseVendor(Comp);
445 Valid = Vendor != UnknownVendor;
446 break;
447 case 2:
448 OS = ParseOS(Comp);
Duncan Sandsae200c62011-02-02 10:08:38 +0000449 Valid = OS != UnknownOS;
Duncan Sands335db222010-08-12 11:31:39 +0000450 break;
Duncan Sands5754a452010-09-16 08:25:48 +0000451 case 3:
452 Environment = ParseEnvironment(Comp);
453 Valid = Environment != UnknownEnvironment;
454 break;
Duncan Sands335db222010-08-12 11:31:39 +0000455 }
456 if (!Valid)
457 continue; // Nope, try the next component.
458
459 // Move the component to the target position, pushing any non-fixed
460 // components that are in the way to the right. This tends to give
461 // good results in the common cases of a forgotten vendor component
462 // or a wrongly positioned environment.
463 if (Pos < Idx) {
464 // Insert left, pushing the existing components to the right. For
465 // example, a-b-i386 -> i386-a-b when moving i386 to the front.
466 StringRef CurrentComponent(""); // The empty component.
467 // Replace the component we are moving with an empty component.
468 std::swap(CurrentComponent, Components[Idx]);
469 // Insert the component being moved at Pos, displacing any existing
470 // components to the right.
471 for (unsigned i = Pos; !CurrentComponent.empty(); ++i) {
472 // Skip over any fixed components.
Duncan Sands5754a452010-09-16 08:25:48 +0000473 while (i < array_lengthof(Found) && Found[i]) ++i;
Duncan Sands335db222010-08-12 11:31:39 +0000474 // Place the component at the new position, getting the component
475 // that was at this position - it will be moved right.
476 std::swap(CurrentComponent, Components[i]);
477 }
478 } else if (Pos > Idx) {
479 // Push right by inserting empty components until the component at Idx
480 // reaches the target position Pos. For example, pc-a -> -pc-a when
481 // moving pc to the second position.
482 do {
483 // Insert one empty component at Idx.
484 StringRef CurrentComponent(""); // The empty component.
Duncan Sandsae200c62011-02-02 10:08:38 +0000485 for (unsigned i = Idx; i < Components.size();) {
Duncan Sands335db222010-08-12 11:31:39 +0000486 // Place the component at the new position, getting the component
487 // that was at this position - it will be moved right.
488 std::swap(CurrentComponent, Components[i]);
489 // If it was placed on top of an empty component then we are done.
490 if (CurrentComponent.empty())
491 break;
Duncan Sandsae200c62011-02-02 10:08:38 +0000492 // Advance to the next component, skipping any fixed components.
Anders Carlsson15ec6952011-02-05 18:19:35 +0000493 while (++i < array_lengthof(Found) && Found[i])
494 ;
Duncan Sands335db222010-08-12 11:31:39 +0000495 }
496 // The last component was pushed off the end - append it.
497 if (!CurrentComponent.empty())
498 Components.push_back(CurrentComponent);
499
500 // Advance Idx to the component's new position.
Duncan Sands5754a452010-09-16 08:25:48 +0000501 while (++Idx < array_lengthof(Found) && Found[Idx]) {}
Duncan Sands335db222010-08-12 11:31:39 +0000502 } while (Idx < Pos); // Add more until the final position is reached.
503 }
504 assert(Pos < Components.size() && Components[Pos] == Comp &&
505 "Component moved wrong!");
506 Found[Pos] = true;
507 break;
508 }
509 }
510
511 // Special case logic goes here. At this point Arch, Vendor and OS have the
512 // correct values for the computed components.
513
514 // Stick the corrected components back together to form the normalized string.
515 std::string Normalized;
516 for (unsigned i = 0, e = Components.size(); i != e; ++i) {
517 if (i) Normalized += '-';
518 Normalized += Components[i];
519 }
520 return Normalized;
521}
522
Daniel Dunbara14d2252009-07-26 03:31:47 +0000523StringRef Triple::getArchName() const {
524 return StringRef(Data).split('-').first; // Isolate first component
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000525}
526
Daniel Dunbara14d2252009-07-26 03:31:47 +0000527StringRef Triple::getVendorName() const {
528 StringRef Tmp = StringRef(Data).split('-').second; // Strip first component
529 return Tmp.split('-').first; // Isolate second component
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000530}
531
Daniel Dunbara14d2252009-07-26 03:31:47 +0000532StringRef Triple::getOSName() const {
533 StringRef Tmp = StringRef(Data).split('-').second; // Strip first component
534 Tmp = Tmp.split('-').second; // Strip second component
535 return Tmp.split('-').first; // Isolate third component
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000536}
537
Daniel Dunbara14d2252009-07-26 03:31:47 +0000538StringRef Triple::getEnvironmentName() const {
539 StringRef Tmp = StringRef(Data).split('-').second; // Strip first component
540 Tmp = Tmp.split('-').second; // Strip second component
541 return Tmp.split('-').second; // Strip third component
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000542}
543
Daniel Dunbara14d2252009-07-26 03:31:47 +0000544StringRef Triple::getOSAndEnvironmentName() const {
545 StringRef Tmp = StringRef(Data).split('-').second; // Strip first component
546 return Tmp.split('-').second; // Strip second component
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000547}
548
Chris Lattnerdfc17f72009-08-12 06:19:40 +0000549static unsigned EatNumber(StringRef &Str) {
550 assert(!Str.empty() && Str[0] >= '0' && Str[0] <= '9' && "Not a number");
Daniel Dunbar087d6a52011-04-19 20:24:34 +0000551 unsigned Result = 0;
Jim Grosbache509aa92010-12-17 02:10:59 +0000552
Daniel Dunbar087d6a52011-04-19 20:24:34 +0000553 do {
554 // Consume the leading digit.
Chris Lattnerdfc17f72009-08-12 06:19:40 +0000555 Result = Result*10 + (Str[0] - '0');
Daniel Dunbar087d6a52011-04-19 20:24:34 +0000556
Chris Lattnerdfc17f72009-08-12 06:19:40 +0000557 // Eat the digit.
558 Str = Str.substr(1);
Daniel Dunbar087d6a52011-04-19 20:24:34 +0000559 } while (!Str.empty() && Str[0] >= '0' && Str[0] <= '9');
Jim Grosbache509aa92010-12-17 02:10:59 +0000560
Chris Lattnerdfc17f72009-08-12 06:19:40 +0000561 return Result;
562}
563
Daniel Dunbar087d6a52011-04-19 20:24:34 +0000564void Triple::getOSVersion(unsigned &Major, unsigned &Minor,
565 unsigned &Micro) const {
Chris Lattnerdfc17f72009-08-12 06:19:40 +0000566 StringRef OSName = getOSName();
Jim Grosbache509aa92010-12-17 02:10:59 +0000567
Daniel Dunbar087d6a52011-04-19 20:24:34 +0000568 // Assume that the OS portion of the triple starts with the canonical name.
569 StringRef OSTypeName = getOSTypeName(getOS());
570 if (OSName.startswith(OSTypeName))
571 OSName = OSName.substr(OSTypeName.size());
Jim Grosbache509aa92010-12-17 02:10:59 +0000572
Daniel Dunbar087d6a52011-04-19 20:24:34 +0000573 // Any unset version defaults to 0.
574 Major = Minor = Micro = 0;
Chris Lattnerdfc17f72009-08-12 06:19:40 +0000575
Daniel Dunbar087d6a52011-04-19 20:24:34 +0000576 // Parse up to three components.
577 unsigned *Components[3] = { &Major, &Minor, &Micro };
578 for (unsigned i = 0; i != 3; ++i) {
579 if (OSName.empty() || OSName[0] < '0' || OSName[0] > '9')
580 break;
Chris Lattnerdfc17f72009-08-12 06:19:40 +0000581
Daniel Dunbar087d6a52011-04-19 20:24:34 +0000582 // Consume the leading number.
583 *Components[i] = EatNumber(OSName);
Jim Grosbache509aa92010-12-17 02:10:59 +0000584
Daniel Dunbar087d6a52011-04-19 20:24:34 +0000585 // Consume the separator, if present.
586 if (OSName.startswith("."))
587 OSName = OSName.substr(1);
588 }
Chris Lattnerdfc17f72009-08-12 06:19:40 +0000589}
590
Daniel Dunbara14d2252009-07-26 03:31:47 +0000591void Triple::setTriple(const Twine &Str) {
592 Data = Str.str();
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000593 Arch = InvalidArch;
594}
595
596void Triple::setArch(ArchType Kind) {
597 setArchName(getArchTypeName(Kind));
598}
599
600void Triple::setVendor(VendorType Kind) {
601 setVendorName(getVendorTypeName(Kind));
602}
603
604void Triple::setOS(OSType Kind) {
605 setOSName(getOSTypeName(Kind));
606}
607
Duncan Sands5754a452010-09-16 08:25:48 +0000608void Triple::setEnvironment(EnvironmentType Kind) {
609 setEnvironmentName(getEnvironmentTypeName(Kind));
610}
611
Daniel Dunbar2928c832009-11-06 10:58:06 +0000612void Triple::setArchName(StringRef Str) {
Jeffrey Yasskin0b228732009-10-06 21:45:26 +0000613 // Work around a miscompilation bug for Twines in gcc 4.0.3.
614 SmallString<64> Triple;
615 Triple += Str;
616 Triple += "-";
617 Triple += getVendorName();
618 Triple += "-";
619 Triple += getOSAndEnvironmentName();
620 setTriple(Triple.str());
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000621}
622
Daniel Dunbar2928c832009-11-06 10:58:06 +0000623void Triple::setVendorName(StringRef Str) {
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000624 setTriple(getArchName() + "-" + Str + "-" + getOSAndEnvironmentName());
625}
626
Daniel Dunbar2928c832009-11-06 10:58:06 +0000627void Triple::setOSName(StringRef Str) {
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000628 if (hasEnvironment())
629 setTriple(getArchName() + "-" + getVendorName() + "-" + Str +
630 "-" + getEnvironmentName());
631 else
632 setTriple(getArchName() + "-" + getVendorName() + "-" + Str);
633}
634
Daniel Dunbar2928c832009-11-06 10:58:06 +0000635void Triple::setEnvironmentName(StringRef Str) {
636 setTriple(getArchName() + "-" + getVendorName() + "-" + getOSName() +
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000637 "-" + Str);
638}
639
Daniel Dunbar2928c832009-11-06 10:58:06 +0000640void Triple::setOSAndEnvironmentName(StringRef Str) {
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000641 setTriple(getArchName() + "-" + getVendorName() + "-" + Str);
642}