blob: 36edf6eefa70e8f10435e61545d3500989ff0c5b [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 Lattnerb8ac8412009-07-13 20:22:23 +0000104 case NetBSD: return "netbsd";
Duncan Sandscd1267d2009-06-29 13:36:13 +0000105 case OpenBSD: return "openbsd";
Edward O'Callaghane0fb75d2009-11-15 10:18:17 +0000106 case Psp: return "psp";
Daniel Dunbarfdb0b7b2009-08-18 04:43:27 +0000107 case Solaris: return "solaris";
Daniel Dunbar6337f152009-07-26 04:23:03 +0000108 case Win32: return "win32";
Chris Lattnera43fc342009-10-16 02:06:30 +0000109 case Haiku: return "haiku";
Chris Lattner29269d02010-07-07 15:52:27 +0000110 case Minix: return "minix";
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000111 }
112
113 return "<invalid>";
114}
115
Duncan Sands5754a452010-09-16 08:25:48 +0000116const char *Triple::getEnvironmentTypeName(EnvironmentType Kind) {
117 switch (Kind) {
118 case UnknownEnvironment: return "unknown";
Renato Golin859f8182011-01-21 18:25:47 +0000119 case GNU: return "gnu";
120 case GNUEABI: return "gnueabi";
121 case EABI: return "eabi";
Evan Cheng2bffee22011-02-01 01:14:13 +0000122 case MachO: return "macho";
Duncan Sands5754a452010-09-16 08:25:48 +0000123 }
124
125 return "<invalid>";
126}
127
Daniel Dunbar2928c832009-11-06 10:58:06 +0000128Triple::ArchType Triple::getArchTypeForLLVMName(StringRef Name) {
Daniel Dunbar3c2d4bf2009-08-03 04:03:51 +0000129 if (Name == "alpha")
130 return alpha;
131 if (Name == "arm")
132 return arm;
133 if (Name == "bfin")
134 return bfin;
135 if (Name == "cellspu")
136 return cellspu;
137 if (Name == "mips")
138 return mips;
139 if (Name == "mipsel")
140 return mipsel;
141 if (Name == "msp430")
142 return msp430;
143 if (Name == "ppc64")
144 return ppc64;
145 if (Name == "ppc")
146 return ppc;
Wesley Pecka70f28c2010-02-23 19:15:24 +0000147 if (Name == "mblaze")
148 return mblaze;
Daniel Dunbar3c2d4bf2009-08-03 04:03:51 +0000149 if (Name == "sparc")
150 return sparc;
Chris Lattner87c06d62010-02-04 06:34:01 +0000151 if (Name == "sparcv9")
152 return sparcv9;
Daniel Dunbar3c2d4bf2009-08-03 04:03:51 +0000153 if (Name == "systemz")
154 return systemz;
Eli Friedman74db89e2009-08-19 20:46:03 +0000155 if (Name == "tce")
156 return tce;
Daniel Dunbar3c2d4bf2009-08-03 04:03:51 +0000157 if (Name == "thumb")
158 return thumb;
159 if (Name == "x86")
160 return x86;
Chris Lattnerb796c4f2009-08-12 06:45:02 +0000161 if (Name == "x86-64")
Daniel Dunbar3c2d4bf2009-08-03 04:03:51 +0000162 return x86_64;
163 if (Name == "xcore")
164 return xcore;
Nick Lewyckyf7a3c502010-09-07 18:14:24 +0000165 if (Name == "ptx")
166 return ptx;
Daniel Dunbar3c2d4bf2009-08-03 04:03:51 +0000167
168 return UnknownArch;
169}
170
Daniel Dunbar2928c832009-11-06 10:58:06 +0000171Triple::ArchType Triple::getArchTypeForDarwinArchName(StringRef Str) {
Daniel Dunbarbaf9b562009-09-08 23:32:51 +0000172 // See arch(3) and llvm-gcc's driver-driver.c. We don't implement support for
173 // archs which Darwin doesn't use.
174
175 // The matching this routine does is fairly pointless, since it is neither the
176 // complete architecture list, nor a reasonable subset. The problem is that
177 // historically the driver driver accepts this and also ties its -march=
178 // handling to the architecture name, so we need to be careful before removing
179 // support for it.
180
Daniel Dunbared687882009-09-09 23:01:25 +0000181 // This code must be kept in sync with Clang's Darwin specific argument
182 // translation.
183
Daniel Dunbarbaf9b562009-09-08 23:32:51 +0000184 if (Str == "ppc" || Str == "ppc601" || Str == "ppc603" || Str == "ppc604" ||
185 Str == "ppc604e" || Str == "ppc750" || Str == "ppc7400" ||
186 Str == "ppc7450" || Str == "ppc970")
187 return Triple::ppc;
188
189 if (Str == "ppc64")
190 return Triple::ppc64;
191
192 if (Str == "i386" || Str == "i486" || Str == "i486SX" || Str == "pentium" ||
193 Str == "i586" || Str == "pentpro" || Str == "i686" || Str == "pentIIm3" ||
194 Str == "pentIIm5" || Str == "pentium4")
195 return Triple::x86;
196
197 if (Str == "x86_64")
198 return Triple::x86_64;
199
200 // This is derived from the driver driver.
201 if (Str == "arm" || Str == "armv4t" || Str == "armv5" || Str == "xscale" ||
202 Str == "armv6" || Str == "armv7")
203 return Triple::arm;
204
Nick Lewyckyf7a3c502010-09-07 18:14:24 +0000205 if (Str == "ptx")
206 return Triple::ptx;
207
Daniel Dunbarbaf9b562009-09-08 23:32:51 +0000208 return Triple::UnknownArch;
209}
210
Duncan Sandsbbdca3f2010-03-24 09:05:14 +0000211// Returns architecture name that is understood by the target assembler.
Viktor Kutuzov51cdac02009-11-17 18:48:27 +0000212const char *Triple::getArchNameForAssembler() {
213 if (getOS() != Triple::Darwin && getVendor() != Triple::Apple)
214 return NULL;
215
216 StringRef Str = getArchName();
217 if (Str == "i386")
218 return "i386";
219 if (Str == "x86_64")
220 return "x86_64";
221 if (Str == "powerpc")
222 return "ppc";
223 if (Str == "powerpc64")
224 return "ppc64";
Wesley Pecka70f28c2010-02-23 19:15:24 +0000225 if (Str == "mblaze" || Str == "microblaze")
226 return "mblaze";
Viktor Kutuzov51cdac02009-11-17 18:48:27 +0000227 if (Str == "arm")
228 return "arm";
229 if (Str == "armv4t" || Str == "thumbv4t")
230 return "armv4t";
Jim Grosbache509aa92010-12-17 02:10:59 +0000231 if (Str == "armv5" || Str == "armv5e" || Str == "thumbv5"
232 || Str == "thumbv5e")
Viktor Kutuzov51cdac02009-11-17 18:48:27 +0000233 return "armv5";
234 if (Str == "armv6" || Str == "thumbv6")
235 return "armv6";
236 if (Str == "armv7" || Str == "thumbv7")
237 return "armv7";
Nick Lewyckyf7a3c502010-09-07 18:14:24 +0000238 if (Str == "ptx")
239 return "ptx";
Viktor Kutuzov51cdac02009-11-17 18:48:27 +0000240 return NULL;
241}
242
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000243//
244
Duncan Sands335db222010-08-12 11:31:39 +0000245Triple::ArchType Triple::ParseArch(StringRef ArchName) {
Jim Grosbache509aa92010-12-17 02:10:59 +0000246 if (ArchName.size() == 4 && ArchName[0] == 'i' &&
247 ArchName[2] == '8' && ArchName[3] == '6' &&
Daniel Dunbar6337f152009-07-26 04:23:03 +0000248 ArchName[1] - '3' < 6) // i[3-9]86
Duncan Sands335db222010-08-12 11:31:39 +0000249 return x86;
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000250 else if (ArchName == "amd64" || ArchName == "x86_64")
Duncan Sands335db222010-08-12 11:31:39 +0000251 return x86_64;
Daniel Dunbarb26bc422009-08-18 07:06:26 +0000252 else if (ArchName == "bfin")
Duncan Sands335db222010-08-12 11:31:39 +0000253 return bfin;
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000254 else if (ArchName == "powerpc")
Duncan Sands335db222010-08-12 11:31:39 +0000255 return ppc;
Edward O'Callaghancc9fa812009-11-19 11:59:00 +0000256 else if ((ArchName == "powerpc64") || (ArchName == "ppu"))
Duncan Sands335db222010-08-12 11:31:39 +0000257 return ppc64;
Wesley Pecka70f28c2010-02-23 19:15:24 +0000258 else if (ArchName == "mblaze")
Duncan Sands335db222010-08-12 11:31:39 +0000259 return mblaze;
Daniel Dunbar6337f152009-07-26 04:23:03 +0000260 else if (ArchName == "arm" ||
Daniel Dunbar24473892009-08-18 04:51:26 +0000261 ArchName.startswith("armv") ||
262 ArchName == "xscale")
Duncan Sands335db222010-08-12 11:31:39 +0000263 return arm;
Daniel Dunbar6337f152009-07-26 04:23:03 +0000264 else if (ArchName == "thumb" ||
265 ArchName.startswith("thumbv"))
Duncan Sands335db222010-08-12 11:31:39 +0000266 return thumb;
Daniel Dunbar6337f152009-07-26 04:23:03 +0000267 else if (ArchName.startswith("alpha"))
Duncan Sands335db222010-08-12 11:31:39 +0000268 return alpha;
Daniel Dunbar6337f152009-07-26 04:23:03 +0000269 else if (ArchName == "spu" || ArchName == "cellspu")
Duncan Sands335db222010-08-12 11:31:39 +0000270 return cellspu;
Daniel Dunbar6337f152009-07-26 04:23:03 +0000271 else if (ArchName == "msp430")
Duncan Sands335db222010-08-12 11:31:39 +0000272 return msp430;
Daniel Dunbar6337f152009-07-26 04:23:03 +0000273 else if (ArchName == "mips" || ArchName == "mipsallegrex")
Duncan Sands335db222010-08-12 11:31:39 +0000274 return mips;
Daniel Dunbar6337f152009-07-26 04:23:03 +0000275 else if (ArchName == "mipsel" || ArchName == "mipsallegrexel" ||
276 ArchName == "psp")
Duncan Sands335db222010-08-12 11:31:39 +0000277 return mipsel;
Daniel Dunbar6337f152009-07-26 04:23:03 +0000278 else if (ArchName == "sparc")
Duncan Sands335db222010-08-12 11:31:39 +0000279 return sparc;
Chris Lattner87c06d62010-02-04 06:34:01 +0000280 else if (ArchName == "sparcv9")
Duncan Sands335db222010-08-12 11:31:39 +0000281 return sparcv9;
Daniel Dunbar6337f152009-07-26 04:23:03 +0000282 else if (ArchName == "s390x")
Duncan Sands335db222010-08-12 11:31:39 +0000283 return systemz;
Eli Friedman74db89e2009-08-19 20:46:03 +0000284 else if (ArchName == "tce")
Duncan Sands335db222010-08-12 11:31:39 +0000285 return tce;
Richard Osborne768f1dd2009-08-31 21:51:36 +0000286 else if (ArchName == "xcore")
Duncan Sands335db222010-08-12 11:31:39 +0000287 return xcore;
Nick Lewyckyf7a3c502010-09-07 18:14:24 +0000288 else if (ArchName == "ptx")
289 return ptx;
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000290 else
Duncan Sands335db222010-08-12 11:31:39 +0000291 return UnknownArch;
292}
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000293
Duncan Sands335db222010-08-12 11:31:39 +0000294Triple::VendorType Triple::ParseVendor(StringRef VendorName) {
295 if (VendorName == "apple")
296 return Apple;
297 else if (VendorName == "pc")
298 return PC;
299 else
300 return UnknownVendor;
301}
302
303Triple::OSType Triple::ParseOS(StringRef OSName) {
304 if (OSName.startswith("auroraux"))
305 return AuroraUX;
306 else if (OSName.startswith("cygwin"))
307 return Cygwin;
308 else if (OSName.startswith("darwin"))
309 return Darwin;
310 else if (OSName.startswith("dragonfly"))
311 return DragonFly;
312 else if (OSName.startswith("freebsd"))
313 return FreeBSD;
314 else if (OSName.startswith("linux"))
315 return Linux;
316 else if (OSName.startswith("lv2"))
317 return Lv2;
318 else if (OSName.startswith("mingw32"))
319 return MinGW32;
Duncan Sands335db222010-08-12 11:31:39 +0000320 else if (OSName.startswith("netbsd"))
321 return NetBSD;
322 else if (OSName.startswith("openbsd"))
323 return OpenBSD;
324 else if (OSName.startswith("psp"))
325 return Psp;
326 else if (OSName.startswith("solaris"))
327 return Solaris;
328 else if (OSName.startswith("win32"))
329 return Win32;
330 else if (OSName.startswith("haiku"))
331 return Haiku;
332 else if (OSName.startswith("minix"))
333 return Minix;
334 else
335 return UnknownOS;
336}
337
Duncan Sands5754a452010-09-16 08:25:48 +0000338Triple::EnvironmentType Triple::ParseEnvironment(StringRef EnvironmentName) {
Renato Golin859f8182011-01-21 18:25:47 +0000339 if (EnvironmentName.startswith("eabi"))
340 return EABI;
341 else if (EnvironmentName.startswith("gnueabi"))
342 return GNUEABI;
343 else if (EnvironmentName.startswith("gnu"))
344 return GNU;
Evan Cheng2bffee22011-02-01 01:14:13 +0000345 else if (EnvironmentName.startswith("macho"))
346 return MachO;
Renato Golin859f8182011-01-21 18:25:47 +0000347 else
348 return UnknownEnvironment;
Duncan Sands5754a452010-09-16 08:25:48 +0000349}
350
Duncan Sands335db222010-08-12 11:31:39 +0000351void Triple::Parse() const {
352 assert(!isInitialized() && "Invalid parse call.");
353
354 Arch = ParseArch(getArchName());
355 Vendor = ParseVendor(getVendorName());
356 OS = ParseOS(getOSName());
Duncan Sandsae200c62011-02-02 10:08:38 +0000357 Environment = ParseEnvironment(getEnvironmentName());
Daniel Dunbar651aa682009-08-18 19:26:55 +0000358
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000359 assert(isInitialized() && "Failed to initialize!");
360}
361
Duncan Sands335db222010-08-12 11:31:39 +0000362std::string Triple::normalize(StringRef Str) {
363 // Parse into components.
364 SmallVector<StringRef, 4> Components;
365 for (size_t First = 0, Last = 0; Last != StringRef::npos; First = Last + 1) {
366 Last = Str.find('-', First);
367 Components.push_back(Str.slice(First, Last));
368 }
369
370 // If the first component corresponds to a known architecture, preferentially
371 // use it for the architecture. If the second component corresponds to a
372 // known vendor, preferentially use it for the vendor, etc. This avoids silly
373 // component movement when a component parses as (eg) both a valid arch and a
374 // valid os.
375 ArchType Arch = UnknownArch;
376 if (Components.size() > 0)
377 Arch = ParseArch(Components[0]);
378 VendorType Vendor = UnknownVendor;
379 if (Components.size() > 1)
380 Vendor = ParseVendor(Components[1]);
381 OSType OS = UnknownOS;
382 if (Components.size() > 2)
383 OS = ParseOS(Components[2]);
Duncan Sands5754a452010-09-16 08:25:48 +0000384 EnvironmentType Environment = UnknownEnvironment;
385 if (Components.size() > 3)
386 Environment = ParseEnvironment(Components[3]);
Duncan Sands335db222010-08-12 11:31:39 +0000387
388 // Note which components are already in their final position. These will not
389 // be moved.
Duncan Sands5754a452010-09-16 08:25:48 +0000390 bool Found[4];
Duncan Sands335db222010-08-12 11:31:39 +0000391 Found[0] = Arch != UnknownArch;
392 Found[1] = Vendor != UnknownVendor;
393 Found[2] = OS != UnknownOS;
Duncan Sands5754a452010-09-16 08:25:48 +0000394 Found[3] = Environment != UnknownEnvironment;
Duncan Sands335db222010-08-12 11:31:39 +0000395
396 // If they are not there already, permute the components into their canonical
397 // positions by seeing if they parse as a valid architecture, and if so moving
398 // the component to the architecture position etc.
Duncan Sands5754a452010-09-16 08:25:48 +0000399 for (unsigned Pos = 0; Pos != array_lengthof(Found); ++Pos) {
Duncan Sands335db222010-08-12 11:31:39 +0000400 if (Found[Pos])
401 continue; // Already in the canonical position.
402
403 for (unsigned Idx = 0; Idx != Components.size(); ++Idx) {
404 // Do not reparse any components that already matched.
Duncan Sands5754a452010-09-16 08:25:48 +0000405 if (Idx < array_lengthof(Found) && Found[Idx])
Duncan Sands335db222010-08-12 11:31:39 +0000406 continue;
407
408 // Does this component parse as valid for the target position?
409 bool Valid = false;
410 StringRef Comp = Components[Idx];
411 switch (Pos) {
412 default:
413 assert(false && "unexpected component type!");
414 case 0:
415 Arch = ParseArch(Comp);
416 Valid = Arch != UnknownArch;
417 break;
418 case 1:
419 Vendor = ParseVendor(Comp);
420 Valid = Vendor != UnknownVendor;
421 break;
422 case 2:
423 OS = ParseOS(Comp);
Duncan Sandsae200c62011-02-02 10:08:38 +0000424 Valid = OS != UnknownOS;
Duncan Sands335db222010-08-12 11:31:39 +0000425 break;
Duncan Sands5754a452010-09-16 08:25:48 +0000426 case 3:
427 Environment = ParseEnvironment(Comp);
428 Valid = Environment != UnknownEnvironment;
429 break;
Duncan Sands335db222010-08-12 11:31:39 +0000430 }
431 if (!Valid)
432 continue; // Nope, try the next component.
433
434 // Move the component to the target position, pushing any non-fixed
435 // components that are in the way to the right. This tends to give
436 // good results in the common cases of a forgotten vendor component
437 // or a wrongly positioned environment.
438 if (Pos < Idx) {
439 // Insert left, pushing the existing components to the right. For
440 // example, a-b-i386 -> i386-a-b when moving i386 to the front.
441 StringRef CurrentComponent(""); // The empty component.
442 // Replace the component we are moving with an empty component.
443 std::swap(CurrentComponent, Components[Idx]);
444 // Insert the component being moved at Pos, displacing any existing
445 // components to the right.
446 for (unsigned i = Pos; !CurrentComponent.empty(); ++i) {
447 // Skip over any fixed components.
Duncan Sands5754a452010-09-16 08:25:48 +0000448 while (i < array_lengthof(Found) && Found[i]) ++i;
Duncan Sands335db222010-08-12 11:31:39 +0000449 // Place the component at the new position, getting the component
450 // that was at this position - it will be moved right.
451 std::swap(CurrentComponent, Components[i]);
452 }
453 } else if (Pos > Idx) {
454 // Push right by inserting empty components until the component at Idx
455 // reaches the target position Pos. For example, pc-a -> -pc-a when
456 // moving pc to the second position.
457 do {
458 // Insert one empty component at Idx.
459 StringRef CurrentComponent(""); // The empty component.
Duncan Sandsae200c62011-02-02 10:08:38 +0000460 for (unsigned i = Idx; i < Components.size();) {
Duncan Sands335db222010-08-12 11:31:39 +0000461 // Place the component at the new position, getting the component
462 // that was at this position - it will be moved right.
463 std::swap(CurrentComponent, Components[i]);
464 // If it was placed on top of an empty component then we are done.
465 if (CurrentComponent.empty())
466 break;
Duncan Sandsae200c62011-02-02 10:08:38 +0000467 // Advance to the next component, skipping any fixed components.
Anders Carlsson15ec6952011-02-05 18:19:35 +0000468 while (++i < array_lengthof(Found) && Found[i])
469 ;
Duncan Sands335db222010-08-12 11:31:39 +0000470 }
471 // The last component was pushed off the end - append it.
472 if (!CurrentComponent.empty())
473 Components.push_back(CurrentComponent);
474
475 // Advance Idx to the component's new position.
Duncan Sands5754a452010-09-16 08:25:48 +0000476 while (++Idx < array_lengthof(Found) && Found[Idx]) {}
Duncan Sands335db222010-08-12 11:31:39 +0000477 } while (Idx < Pos); // Add more until the final position is reached.
478 }
479 assert(Pos < Components.size() && Components[Pos] == Comp &&
480 "Component moved wrong!");
481 Found[Pos] = true;
482 break;
483 }
484 }
485
486 // Special case logic goes here. At this point Arch, Vendor and OS have the
487 // correct values for the computed components.
488
489 // Stick the corrected components back together to form the normalized string.
490 std::string Normalized;
491 for (unsigned i = 0, e = Components.size(); i != e; ++i) {
492 if (i) Normalized += '-';
493 Normalized += Components[i];
494 }
495 return Normalized;
496}
497
Daniel Dunbara14d2252009-07-26 03:31:47 +0000498StringRef Triple::getArchName() const {
499 return StringRef(Data).split('-').first; // Isolate first component
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000500}
501
Daniel Dunbara14d2252009-07-26 03:31:47 +0000502StringRef Triple::getVendorName() const {
503 StringRef Tmp = StringRef(Data).split('-').second; // Strip first component
504 return Tmp.split('-').first; // Isolate second component
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000505}
506
Daniel Dunbara14d2252009-07-26 03:31:47 +0000507StringRef Triple::getOSName() const {
508 StringRef Tmp = StringRef(Data).split('-').second; // Strip first component
509 Tmp = Tmp.split('-').second; // Strip second component
510 return Tmp.split('-').first; // Isolate third component
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000511}
512
Daniel Dunbara14d2252009-07-26 03:31:47 +0000513StringRef Triple::getEnvironmentName() const {
514 StringRef Tmp = StringRef(Data).split('-').second; // Strip first component
515 Tmp = Tmp.split('-').second; // Strip second component
516 return Tmp.split('-').second; // Strip third component
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000517}
518
Daniel Dunbara14d2252009-07-26 03:31:47 +0000519StringRef Triple::getOSAndEnvironmentName() const {
520 StringRef Tmp = StringRef(Data).split('-').second; // Strip first component
521 return Tmp.split('-').second; // Strip second component
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000522}
523
Chris Lattnerdfc17f72009-08-12 06:19:40 +0000524static unsigned EatNumber(StringRef &Str) {
525 assert(!Str.empty() && Str[0] >= '0' && Str[0] <= '9' && "Not a number");
526 unsigned Result = Str[0]-'0';
Jim Grosbache509aa92010-12-17 02:10:59 +0000527
Chris Lattnerdfc17f72009-08-12 06:19:40 +0000528 // Eat the digit.
529 Str = Str.substr(1);
Jim Grosbache509aa92010-12-17 02:10:59 +0000530
Chris Lattnerdfc17f72009-08-12 06:19:40 +0000531 // Handle "darwin11".
532 if (Result == 1 && !Str.empty() && Str[0] >= '0' && Str[0] <= '9') {
533 Result = Result*10 + (Str[0] - '0');
534 // Eat the digit.
535 Str = Str.substr(1);
536 }
Jim Grosbache509aa92010-12-17 02:10:59 +0000537
Chris Lattnerdfc17f72009-08-12 06:19:40 +0000538 return Result;
539}
540
541/// getDarwinNumber - Parse the 'darwin number' out of the specific target
542/// triple. For example, if we have darwin8.5 return 8,5,0. If any entry is
543/// not defined, return 0's. This requires that the triple have an OSType of
544/// darwin before it is called.
545void Triple::getDarwinNumber(unsigned &Maj, unsigned &Min,
546 unsigned &Revision) const {
547 assert(getOS() == Darwin && "Not a darwin target triple!");
548 StringRef OSName = getOSName();
549 assert(OSName.startswith("darwin") && "Unknown darwin target triple!");
Jim Grosbache509aa92010-12-17 02:10:59 +0000550
Chris Lattnerdfc17f72009-08-12 06:19:40 +0000551 // Strip off "darwin".
552 OSName = OSName.substr(6);
Jim Grosbache509aa92010-12-17 02:10:59 +0000553
Chris Lattnerdfc17f72009-08-12 06:19:40 +0000554 Maj = Min = Revision = 0;
555
556 if (OSName.empty() || OSName[0] < '0' || OSName[0] > '9')
557 return;
558
559 // The major version is the first digit.
560 Maj = EatNumber(OSName);
561 if (OSName.empty()) return;
Jim Grosbache509aa92010-12-17 02:10:59 +0000562
Chris Lattnerdfc17f72009-08-12 06:19:40 +0000563 // Handle minor version: 10.4.9 -> darwin8.9.
564 if (OSName[0] != '.')
565 return;
Jim Grosbache509aa92010-12-17 02:10:59 +0000566
Chris Lattnerdfc17f72009-08-12 06:19:40 +0000567 // Eat the '.'.
568 OSName = OSName.substr(1);
569
570 if (OSName.empty() || OSName[0] < '0' || OSName[0] > '9')
571 return;
Jim Grosbache509aa92010-12-17 02:10:59 +0000572
Chris Lattnerdfc17f72009-08-12 06:19:40 +0000573 Min = EatNumber(OSName);
574 if (OSName.empty()) return;
575
576 // Handle revision darwin8.9.1
577 if (OSName[0] != '.')
578 return;
Jim Grosbache509aa92010-12-17 02:10:59 +0000579
Chris Lattnerdfc17f72009-08-12 06:19:40 +0000580 // Eat the '.'.
581 OSName = OSName.substr(1);
Jim Grosbache509aa92010-12-17 02:10:59 +0000582
Chris Lattnerdfc17f72009-08-12 06:19:40 +0000583 if (OSName.empty() || OSName[0] < '0' || OSName[0] > '9')
584 return;
585
586 Revision = EatNumber(OSName);
587}
588
Daniel Dunbara14d2252009-07-26 03:31:47 +0000589void Triple::setTriple(const Twine &Str) {
590 Data = Str.str();
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000591 Arch = InvalidArch;
592}
593
594void Triple::setArch(ArchType Kind) {
595 setArchName(getArchTypeName(Kind));
596}
597
598void Triple::setVendor(VendorType Kind) {
599 setVendorName(getVendorTypeName(Kind));
600}
601
602void Triple::setOS(OSType Kind) {
603 setOSName(getOSTypeName(Kind));
604}
605
Duncan Sands5754a452010-09-16 08:25:48 +0000606void Triple::setEnvironment(EnvironmentType Kind) {
607 setEnvironmentName(getEnvironmentTypeName(Kind));
608}
609
Daniel Dunbar2928c832009-11-06 10:58:06 +0000610void Triple::setArchName(StringRef Str) {
Jeffrey Yasskin0b228732009-10-06 21:45:26 +0000611 // Work around a miscompilation bug for Twines in gcc 4.0.3.
612 SmallString<64> Triple;
613 Triple += Str;
614 Triple += "-";
615 Triple += getVendorName();
616 Triple += "-";
617 Triple += getOSAndEnvironmentName();
618 setTriple(Triple.str());
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000619}
620
Daniel Dunbar2928c832009-11-06 10:58:06 +0000621void Triple::setVendorName(StringRef Str) {
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000622 setTriple(getArchName() + "-" + Str + "-" + getOSAndEnvironmentName());
623}
624
Daniel Dunbar2928c832009-11-06 10:58:06 +0000625void Triple::setOSName(StringRef Str) {
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000626 if (hasEnvironment())
627 setTriple(getArchName() + "-" + getVendorName() + "-" + Str +
628 "-" + getEnvironmentName());
629 else
630 setTriple(getArchName() + "-" + getVendorName() + "-" + Str);
631}
632
Daniel Dunbar2928c832009-11-06 10:58:06 +0000633void Triple::setEnvironmentName(StringRef Str) {
634 setTriple(getArchName() + "-" + getVendorName() + "-" + getOSName() +
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000635 "-" + Str);
636}
637
Daniel Dunbar2928c832009-11-06 10:58:06 +0000638void Triple::setOSAndEnvironmentName(StringRef Str) {
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000639 setTriple(getArchName() + "-" + getVendorName() + "-" + Str);
640}