blob: 53ca48f8464db406d90b14cc278613607b368279 [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";
John Thompson6046cff2011-03-15 21:51:56 +000087 case SCEI: return "scei";
Daniel Dunbar23e97b02009-04-01 21:53:23 +000088 }
89
90 return "<invalid>";
91}
92
93const char *Triple::getOSTypeName(OSType Kind) {
94 switch (Kind) {
95 case UnknownOS: return "unknown";
96
Duncan Sands852cd112009-06-19 14:40:01 +000097 case AuroraUX: return "auroraux";
Daniel Dunbar6337f152009-07-26 04:23:03 +000098 case Cygwin: return "cygwin";
Daniel Dunbar23e97b02009-04-01 21:53:23 +000099 case Darwin: return "darwin";
Daniel Dunbar7eaf0572009-05-22 02:24:11 +0000100 case DragonFly: return "dragonfly";
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000101 case FreeBSD: return "freebsd";
102 case Linux: return "linux";
Edward O'Callaghancc9fa812009-11-19 11:59:00 +0000103 case Lv2: return "lv2";
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";
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000112 }
113
114 return "<invalid>";
115}
116
Duncan Sands5754a452010-09-16 08:25:48 +0000117const char *Triple::getEnvironmentTypeName(EnvironmentType Kind) {
118 switch (Kind) {
119 case UnknownEnvironment: return "unknown";
Renato Golin859f8182011-01-21 18:25:47 +0000120 case GNU: return "gnu";
121 case GNUEABI: return "gnueabi";
122 case EABI: return "eabi";
Evan Cheng2bffee22011-02-01 01:14:13 +0000123 case MachO: return "macho";
Duncan Sands5754a452010-09-16 08:25:48 +0000124 }
125
126 return "<invalid>";
127}
128
Daniel Dunbar2928c832009-11-06 10:58:06 +0000129Triple::ArchType Triple::getArchTypeForLLVMName(StringRef Name) {
Daniel Dunbar3c2d4bf2009-08-03 04:03:51 +0000130 if (Name == "alpha")
131 return alpha;
132 if (Name == "arm")
133 return arm;
134 if (Name == "bfin")
135 return bfin;
136 if (Name == "cellspu")
137 return cellspu;
138 if (Name == "mips")
139 return mips;
140 if (Name == "mipsel")
141 return mipsel;
142 if (Name == "msp430")
143 return msp430;
144 if (Name == "ppc64")
145 return ppc64;
146 if (Name == "ppc")
147 return ppc;
Wesley Pecka70f28c2010-02-23 19:15:24 +0000148 if (Name == "mblaze")
149 return mblaze;
Daniel Dunbar3c2d4bf2009-08-03 04:03:51 +0000150 if (Name == "sparc")
151 return sparc;
Chris Lattner87c06d62010-02-04 06:34:01 +0000152 if (Name == "sparcv9")
153 return sparcv9;
Daniel Dunbar3c2d4bf2009-08-03 04:03:51 +0000154 if (Name == "systemz")
155 return systemz;
Eli Friedman74db89e2009-08-19 20:46:03 +0000156 if (Name == "tce")
157 return tce;
Daniel Dunbar3c2d4bf2009-08-03 04:03:51 +0000158 if (Name == "thumb")
159 return thumb;
160 if (Name == "x86")
161 return x86;
Chris Lattnerb796c4f2009-08-12 06:45:02 +0000162 if (Name == "x86-64")
Daniel Dunbar3c2d4bf2009-08-03 04:03:51 +0000163 return x86_64;
164 if (Name == "xcore")
165 return xcore;
Nick Lewyckyf7a3c502010-09-07 18:14:24 +0000166 if (Name == "ptx")
167 return ptx;
Daniel Dunbar3c2d4bf2009-08-03 04:03:51 +0000168
169 return UnknownArch;
170}
171
Daniel Dunbar2928c832009-11-06 10:58:06 +0000172Triple::ArchType Triple::getArchTypeForDarwinArchName(StringRef Str) {
Daniel Dunbarbaf9b562009-09-08 23:32:51 +0000173 // See arch(3) and llvm-gcc's driver-driver.c. We don't implement support for
174 // archs which Darwin doesn't use.
175
176 // The matching this routine does is fairly pointless, since it is neither the
177 // complete architecture list, nor a reasonable subset. The problem is that
178 // historically the driver driver accepts this and also ties its -march=
179 // handling to the architecture name, so we need to be careful before removing
180 // support for it.
181
Daniel Dunbared687882009-09-09 23:01:25 +0000182 // This code must be kept in sync with Clang's Darwin specific argument
183 // translation.
184
Daniel Dunbarbaf9b562009-09-08 23:32:51 +0000185 if (Str == "ppc" || Str == "ppc601" || Str == "ppc603" || Str == "ppc604" ||
186 Str == "ppc604e" || Str == "ppc750" || Str == "ppc7400" ||
187 Str == "ppc7450" || Str == "ppc970")
188 return Triple::ppc;
189
190 if (Str == "ppc64")
191 return Triple::ppc64;
192
193 if (Str == "i386" || Str == "i486" || Str == "i486SX" || Str == "pentium" ||
194 Str == "i586" || Str == "pentpro" || Str == "i686" || Str == "pentIIm3" ||
195 Str == "pentIIm5" || Str == "pentium4")
196 return Triple::x86;
197
198 if (Str == "x86_64")
199 return Triple::x86_64;
200
201 // This is derived from the driver driver.
202 if (Str == "arm" || Str == "armv4t" || Str == "armv5" || Str == "xscale" ||
203 Str == "armv6" || Str == "armv7")
204 return Triple::arm;
205
Nick Lewyckyf7a3c502010-09-07 18:14:24 +0000206 if (Str == "ptx")
207 return Triple::ptx;
208
Daniel Dunbarbaf9b562009-09-08 23:32:51 +0000209 return Triple::UnknownArch;
210}
211
Duncan Sandsbbdca3f2010-03-24 09:05:14 +0000212// Returns architecture name that is understood by the target assembler.
Viktor Kutuzov51cdac02009-11-17 18:48:27 +0000213const char *Triple::getArchNameForAssembler() {
214 if (getOS() != Triple::Darwin && getVendor() != Triple::Apple)
215 return NULL;
216
217 StringRef Str = getArchName();
218 if (Str == "i386")
219 return "i386";
220 if (Str == "x86_64")
221 return "x86_64";
222 if (Str == "powerpc")
223 return "ppc";
224 if (Str == "powerpc64")
225 return "ppc64";
Wesley Pecka70f28c2010-02-23 19:15:24 +0000226 if (Str == "mblaze" || Str == "microblaze")
227 return "mblaze";
Viktor Kutuzov51cdac02009-11-17 18:48:27 +0000228 if (Str == "arm")
229 return "arm";
230 if (Str == "armv4t" || Str == "thumbv4t")
231 return "armv4t";
Jim Grosbache509aa92010-12-17 02:10:59 +0000232 if (Str == "armv5" || Str == "armv5e" || Str == "thumbv5"
233 || Str == "thumbv5e")
Viktor Kutuzov51cdac02009-11-17 18:48:27 +0000234 return "armv5";
235 if (Str == "armv6" || Str == "thumbv6")
236 return "armv6";
237 if (Str == "armv7" || Str == "thumbv7")
238 return "armv7";
Nick Lewyckyf7a3c502010-09-07 18:14:24 +0000239 if (Str == "ptx")
240 return "ptx";
Viktor Kutuzov51cdac02009-11-17 18:48:27 +0000241 return NULL;
242}
243
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000244//
245
Duncan Sands335db222010-08-12 11:31:39 +0000246Triple::ArchType Triple::ParseArch(StringRef ArchName) {
Jim Grosbache509aa92010-12-17 02:10:59 +0000247 if (ArchName.size() == 4 && ArchName[0] == 'i' &&
248 ArchName[2] == '8' && ArchName[3] == '6' &&
Daniel Dunbar6337f152009-07-26 04:23:03 +0000249 ArchName[1] - '3' < 6) // i[3-9]86
Duncan Sands335db222010-08-12 11:31:39 +0000250 return x86;
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000251 else if (ArchName == "amd64" || ArchName == "x86_64")
Duncan Sands335db222010-08-12 11:31:39 +0000252 return x86_64;
Daniel Dunbarb26bc422009-08-18 07:06:26 +0000253 else if (ArchName == "bfin")
Duncan Sands335db222010-08-12 11:31:39 +0000254 return bfin;
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000255 else if (ArchName == "powerpc")
Duncan Sands335db222010-08-12 11:31:39 +0000256 return ppc;
Edward O'Callaghancc9fa812009-11-19 11:59:00 +0000257 else if ((ArchName == "powerpc64") || (ArchName == "ppu"))
Duncan Sands335db222010-08-12 11:31:39 +0000258 return ppc64;
Wesley Pecka70f28c2010-02-23 19:15:24 +0000259 else if (ArchName == "mblaze")
Duncan Sands335db222010-08-12 11:31:39 +0000260 return mblaze;
Daniel Dunbar6337f152009-07-26 04:23:03 +0000261 else if (ArchName == "arm" ||
Daniel Dunbar24473892009-08-18 04:51:26 +0000262 ArchName.startswith("armv") ||
263 ArchName == "xscale")
Duncan Sands335db222010-08-12 11:31:39 +0000264 return arm;
Daniel Dunbar6337f152009-07-26 04:23:03 +0000265 else if (ArchName == "thumb" ||
266 ArchName.startswith("thumbv"))
Duncan Sands335db222010-08-12 11:31:39 +0000267 return thumb;
Daniel Dunbar6337f152009-07-26 04:23:03 +0000268 else if (ArchName.startswith("alpha"))
Duncan Sands335db222010-08-12 11:31:39 +0000269 return alpha;
Daniel Dunbar6337f152009-07-26 04:23:03 +0000270 else if (ArchName == "spu" || ArchName == "cellspu")
Duncan Sands335db222010-08-12 11:31:39 +0000271 return cellspu;
Daniel Dunbar6337f152009-07-26 04:23:03 +0000272 else if (ArchName == "msp430")
Duncan Sands335db222010-08-12 11:31:39 +0000273 return msp430;
Daniel Dunbar6337f152009-07-26 04:23:03 +0000274 else if (ArchName == "mips" || ArchName == "mipsallegrex")
Duncan Sands335db222010-08-12 11:31:39 +0000275 return mips;
Daniel Dunbar6337f152009-07-26 04:23:03 +0000276 else if (ArchName == "mipsel" || ArchName == "mipsallegrexel" ||
277 ArchName == "psp")
Duncan Sands335db222010-08-12 11:31:39 +0000278 return mipsel;
Daniel Dunbar6337f152009-07-26 04:23:03 +0000279 else if (ArchName == "sparc")
Duncan Sands335db222010-08-12 11:31:39 +0000280 return sparc;
Chris Lattner87c06d62010-02-04 06:34:01 +0000281 else if (ArchName == "sparcv9")
Duncan Sands335db222010-08-12 11:31:39 +0000282 return sparcv9;
Daniel Dunbar6337f152009-07-26 04:23:03 +0000283 else if (ArchName == "s390x")
Duncan Sands335db222010-08-12 11:31:39 +0000284 return systemz;
Eli Friedman74db89e2009-08-19 20:46:03 +0000285 else if (ArchName == "tce")
Duncan Sands335db222010-08-12 11:31:39 +0000286 return tce;
Richard Osborne768f1dd2009-08-31 21:51:36 +0000287 else if (ArchName == "xcore")
Duncan Sands335db222010-08-12 11:31:39 +0000288 return xcore;
Nick Lewyckyf7a3c502010-09-07 18:14:24 +0000289 else if (ArchName == "ptx")
290 return ptx;
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000291 else
Duncan Sands335db222010-08-12 11:31:39 +0000292 return UnknownArch;
293}
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000294
Duncan Sands335db222010-08-12 11:31:39 +0000295Triple::VendorType Triple::ParseVendor(StringRef VendorName) {
296 if (VendorName == "apple")
297 return Apple;
298 else if (VendorName == "pc")
299 return PC;
John Thompson6046cff2011-03-15 21:51:56 +0000300 else if (VendorName == "scei")
301 return SCEI;
Duncan Sands335db222010-08-12 11:31:39 +0000302 else
303 return UnknownVendor;
304}
305
306Triple::OSType Triple::ParseOS(StringRef OSName) {
307 if (OSName.startswith("auroraux"))
308 return AuroraUX;
309 else if (OSName.startswith("cygwin"))
310 return Cygwin;
311 else if (OSName.startswith("darwin"))
312 return Darwin;
313 else if (OSName.startswith("dragonfly"))
314 return DragonFly;
315 else if (OSName.startswith("freebsd"))
316 return FreeBSD;
317 else if (OSName.startswith("linux"))
318 return Linux;
319 else if (OSName.startswith("lv2"))
320 return Lv2;
321 else if (OSName.startswith("mingw32"))
322 return MinGW32;
Duncan Sands335db222010-08-12 11:31:39 +0000323 else if (OSName.startswith("netbsd"))
324 return NetBSD;
325 else if (OSName.startswith("openbsd"))
326 return OpenBSD;
327 else if (OSName.startswith("psp"))
328 return Psp;
329 else if (OSName.startswith("solaris"))
330 return Solaris;
331 else if (OSName.startswith("win32"))
332 return Win32;
333 else if (OSName.startswith("haiku"))
334 return Haiku;
335 else if (OSName.startswith("minix"))
336 return Minix;
337 else
338 return UnknownOS;
339}
340
Duncan Sands5754a452010-09-16 08:25:48 +0000341Triple::EnvironmentType Triple::ParseEnvironment(StringRef EnvironmentName) {
Renato Golin859f8182011-01-21 18:25:47 +0000342 if (EnvironmentName.startswith("eabi"))
343 return EABI;
344 else if (EnvironmentName.startswith("gnueabi"))
345 return GNUEABI;
346 else if (EnvironmentName.startswith("gnu"))
347 return GNU;
Evan Cheng2bffee22011-02-01 01:14:13 +0000348 else if (EnvironmentName.startswith("macho"))
349 return MachO;
Renato Golin859f8182011-01-21 18:25:47 +0000350 else
351 return UnknownEnvironment;
Duncan Sands5754a452010-09-16 08:25:48 +0000352}
353
Duncan Sands335db222010-08-12 11:31:39 +0000354void Triple::Parse() const {
355 assert(!isInitialized() && "Invalid parse call.");
356
357 Arch = ParseArch(getArchName());
358 Vendor = ParseVendor(getVendorName());
359 OS = ParseOS(getOSName());
Duncan Sandsae200c62011-02-02 10:08:38 +0000360 Environment = ParseEnvironment(getEnvironmentName());
Daniel Dunbar651aa682009-08-18 19:26:55 +0000361
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000362 assert(isInitialized() && "Failed to initialize!");
363}
364
Duncan Sands335db222010-08-12 11:31:39 +0000365std::string Triple::normalize(StringRef Str) {
366 // Parse into components.
367 SmallVector<StringRef, 4> Components;
368 for (size_t First = 0, Last = 0; Last != StringRef::npos; First = Last + 1) {
369 Last = Str.find('-', First);
370 Components.push_back(Str.slice(First, Last));
371 }
372
373 // If the first component corresponds to a known architecture, preferentially
374 // use it for the architecture. If the second component corresponds to a
375 // known vendor, preferentially use it for the vendor, etc. This avoids silly
376 // component movement when a component parses as (eg) both a valid arch and a
377 // valid os.
378 ArchType Arch = UnknownArch;
379 if (Components.size() > 0)
380 Arch = ParseArch(Components[0]);
381 VendorType Vendor = UnknownVendor;
382 if (Components.size() > 1)
383 Vendor = ParseVendor(Components[1]);
384 OSType OS = UnknownOS;
385 if (Components.size() > 2)
386 OS = ParseOS(Components[2]);
Duncan Sands5754a452010-09-16 08:25:48 +0000387 EnvironmentType Environment = UnknownEnvironment;
388 if (Components.size() > 3)
389 Environment = ParseEnvironment(Components[3]);
Duncan Sands335db222010-08-12 11:31:39 +0000390
391 // Note which components are already in their final position. These will not
392 // be moved.
Duncan Sands5754a452010-09-16 08:25:48 +0000393 bool Found[4];
Duncan Sands335db222010-08-12 11:31:39 +0000394 Found[0] = Arch != UnknownArch;
395 Found[1] = Vendor != UnknownVendor;
396 Found[2] = OS != UnknownOS;
Duncan Sands5754a452010-09-16 08:25:48 +0000397 Found[3] = Environment != UnknownEnvironment;
Duncan Sands335db222010-08-12 11:31:39 +0000398
399 // If they are not there already, permute the components into their canonical
400 // positions by seeing if they parse as a valid architecture, and if so moving
401 // the component to the architecture position etc.
Duncan Sands5754a452010-09-16 08:25:48 +0000402 for (unsigned Pos = 0; Pos != array_lengthof(Found); ++Pos) {
Duncan Sands335db222010-08-12 11:31:39 +0000403 if (Found[Pos])
404 continue; // Already in the canonical position.
405
406 for (unsigned Idx = 0; Idx != Components.size(); ++Idx) {
407 // Do not reparse any components that already matched.
Duncan Sands5754a452010-09-16 08:25:48 +0000408 if (Idx < array_lengthof(Found) && Found[Idx])
Duncan Sands335db222010-08-12 11:31:39 +0000409 continue;
410
411 // Does this component parse as valid for the target position?
412 bool Valid = false;
413 StringRef Comp = Components[Idx];
414 switch (Pos) {
415 default:
416 assert(false && "unexpected component type!");
417 case 0:
418 Arch = ParseArch(Comp);
419 Valid = Arch != UnknownArch;
420 break;
421 case 1:
422 Vendor = ParseVendor(Comp);
423 Valid = Vendor != UnknownVendor;
424 break;
425 case 2:
426 OS = ParseOS(Comp);
Duncan Sandsae200c62011-02-02 10:08:38 +0000427 Valid = OS != UnknownOS;
Duncan Sands335db222010-08-12 11:31:39 +0000428 break;
Duncan Sands5754a452010-09-16 08:25:48 +0000429 case 3:
430 Environment = ParseEnvironment(Comp);
431 Valid = Environment != UnknownEnvironment;
432 break;
Duncan Sands335db222010-08-12 11:31:39 +0000433 }
434 if (!Valid)
435 continue; // Nope, try the next component.
436
437 // Move the component to the target position, pushing any non-fixed
438 // components that are in the way to the right. This tends to give
439 // good results in the common cases of a forgotten vendor component
440 // or a wrongly positioned environment.
441 if (Pos < Idx) {
442 // Insert left, pushing the existing components to the right. For
443 // example, a-b-i386 -> i386-a-b when moving i386 to the front.
444 StringRef CurrentComponent(""); // The empty component.
445 // Replace the component we are moving with an empty component.
446 std::swap(CurrentComponent, Components[Idx]);
447 // Insert the component being moved at Pos, displacing any existing
448 // components to the right.
449 for (unsigned i = Pos; !CurrentComponent.empty(); ++i) {
450 // Skip over any fixed components.
Duncan Sands5754a452010-09-16 08:25:48 +0000451 while (i < array_lengthof(Found) && Found[i]) ++i;
Duncan Sands335db222010-08-12 11:31:39 +0000452 // Place the component at the new position, getting the component
453 // that was at this position - it will be moved right.
454 std::swap(CurrentComponent, Components[i]);
455 }
456 } else if (Pos > Idx) {
457 // Push right by inserting empty components until the component at Idx
458 // reaches the target position Pos. For example, pc-a -> -pc-a when
459 // moving pc to the second position.
460 do {
461 // Insert one empty component at Idx.
462 StringRef CurrentComponent(""); // The empty component.
Duncan Sandsae200c62011-02-02 10:08:38 +0000463 for (unsigned i = Idx; i < Components.size();) {
Duncan Sands335db222010-08-12 11:31:39 +0000464 // Place the component at the new position, getting the component
465 // that was at this position - it will be moved right.
466 std::swap(CurrentComponent, Components[i]);
467 // If it was placed on top of an empty component then we are done.
468 if (CurrentComponent.empty())
469 break;
Duncan Sandsae200c62011-02-02 10:08:38 +0000470 // Advance to the next component, skipping any fixed components.
Anders Carlsson15ec6952011-02-05 18:19:35 +0000471 while (++i < array_lengthof(Found) && Found[i])
472 ;
Duncan Sands335db222010-08-12 11:31:39 +0000473 }
474 // The last component was pushed off the end - append it.
475 if (!CurrentComponent.empty())
476 Components.push_back(CurrentComponent);
477
478 // Advance Idx to the component's new position.
Duncan Sands5754a452010-09-16 08:25:48 +0000479 while (++Idx < array_lengthof(Found) && Found[Idx]) {}
Duncan Sands335db222010-08-12 11:31:39 +0000480 } while (Idx < Pos); // Add more until the final position is reached.
481 }
482 assert(Pos < Components.size() && Components[Pos] == Comp &&
483 "Component moved wrong!");
484 Found[Pos] = true;
485 break;
486 }
487 }
488
489 // Special case logic goes here. At this point Arch, Vendor and OS have the
490 // correct values for the computed components.
491
492 // Stick the corrected components back together to form the normalized string.
493 std::string Normalized;
494 for (unsigned i = 0, e = Components.size(); i != e; ++i) {
495 if (i) Normalized += '-';
496 Normalized += Components[i];
497 }
498 return Normalized;
499}
500
Daniel Dunbara14d2252009-07-26 03:31:47 +0000501StringRef Triple::getArchName() const {
502 return StringRef(Data).split('-').first; // Isolate first component
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000503}
504
Daniel Dunbara14d2252009-07-26 03:31:47 +0000505StringRef Triple::getVendorName() const {
506 StringRef Tmp = StringRef(Data).split('-').second; // Strip first component
507 return Tmp.split('-').first; // Isolate second component
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000508}
509
Daniel Dunbara14d2252009-07-26 03:31:47 +0000510StringRef Triple::getOSName() const {
511 StringRef Tmp = StringRef(Data).split('-').second; // Strip first component
512 Tmp = Tmp.split('-').second; // Strip second component
513 return Tmp.split('-').first; // Isolate third component
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000514}
515
Daniel Dunbara14d2252009-07-26 03:31:47 +0000516StringRef Triple::getEnvironmentName() const {
517 StringRef Tmp = StringRef(Data).split('-').second; // Strip first component
518 Tmp = Tmp.split('-').second; // Strip second component
519 return Tmp.split('-').second; // Strip third component
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000520}
521
Daniel Dunbara14d2252009-07-26 03:31:47 +0000522StringRef Triple::getOSAndEnvironmentName() const {
523 StringRef Tmp = StringRef(Data).split('-').second; // Strip first component
524 return Tmp.split('-').second; // Strip second component
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000525}
526
Chris Lattnerdfc17f72009-08-12 06:19:40 +0000527static unsigned EatNumber(StringRef &Str) {
528 assert(!Str.empty() && Str[0] >= '0' && Str[0] <= '9' && "Not a number");
529 unsigned Result = Str[0]-'0';
Jim Grosbache509aa92010-12-17 02:10:59 +0000530
Chris Lattnerdfc17f72009-08-12 06:19:40 +0000531 // Eat the digit.
532 Str = Str.substr(1);
Jim Grosbache509aa92010-12-17 02:10:59 +0000533
Chris Lattnerdfc17f72009-08-12 06:19:40 +0000534 // Handle "darwin11".
535 if (Result == 1 && !Str.empty() && Str[0] >= '0' && Str[0] <= '9') {
536 Result = Result*10 + (Str[0] - '0');
537 // Eat the digit.
538 Str = Str.substr(1);
539 }
Jim Grosbache509aa92010-12-17 02:10:59 +0000540
Chris Lattnerdfc17f72009-08-12 06:19:40 +0000541 return Result;
542}
543
544/// getDarwinNumber - Parse the 'darwin number' out of the specific target
545/// triple. For example, if we have darwin8.5 return 8,5,0. If any entry is
546/// not defined, return 0's. This requires that the triple have an OSType of
547/// darwin before it is called.
548void Triple::getDarwinNumber(unsigned &Maj, unsigned &Min,
549 unsigned &Revision) const {
550 assert(getOS() == Darwin && "Not a darwin target triple!");
551 StringRef OSName = getOSName();
552 assert(OSName.startswith("darwin") && "Unknown darwin target triple!");
Jim Grosbache509aa92010-12-17 02:10:59 +0000553
Chris Lattnerdfc17f72009-08-12 06:19:40 +0000554 // Strip off "darwin".
555 OSName = OSName.substr(6);
Jim Grosbache509aa92010-12-17 02:10:59 +0000556
Chris Lattnerdfc17f72009-08-12 06:19:40 +0000557 Maj = Min = Revision = 0;
558
559 if (OSName.empty() || OSName[0] < '0' || OSName[0] > '9')
560 return;
561
562 // The major version is the first digit.
563 Maj = EatNumber(OSName);
564 if (OSName.empty()) return;
Jim Grosbache509aa92010-12-17 02:10:59 +0000565
Chris Lattnerdfc17f72009-08-12 06:19:40 +0000566 // Handle minor version: 10.4.9 -> darwin8.9.
567 if (OSName[0] != '.')
568 return;
Jim Grosbache509aa92010-12-17 02:10:59 +0000569
Chris Lattnerdfc17f72009-08-12 06:19:40 +0000570 // Eat the '.'.
571 OSName = OSName.substr(1);
572
573 if (OSName.empty() || OSName[0] < '0' || OSName[0] > '9')
574 return;
Jim Grosbache509aa92010-12-17 02:10:59 +0000575
Chris Lattnerdfc17f72009-08-12 06:19:40 +0000576 Min = EatNumber(OSName);
577 if (OSName.empty()) return;
578
579 // Handle revision darwin8.9.1
580 if (OSName[0] != '.')
581 return;
Jim Grosbache509aa92010-12-17 02:10:59 +0000582
Chris Lattnerdfc17f72009-08-12 06:19:40 +0000583 // Eat the '.'.
584 OSName = OSName.substr(1);
Jim Grosbache509aa92010-12-17 02:10:59 +0000585
Chris Lattnerdfc17f72009-08-12 06:19:40 +0000586 if (OSName.empty() || OSName[0] < '0' || OSName[0] > '9')
587 return;
588
589 Revision = EatNumber(OSName);
590}
591
Daniel Dunbara14d2252009-07-26 03:31:47 +0000592void Triple::setTriple(const Twine &Str) {
593 Data = Str.str();
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000594 Arch = InvalidArch;
595}
596
597void Triple::setArch(ArchType Kind) {
598 setArchName(getArchTypeName(Kind));
599}
600
601void Triple::setVendor(VendorType Kind) {
602 setVendorName(getVendorTypeName(Kind));
603}
604
605void Triple::setOS(OSType Kind) {
606 setOSName(getOSTypeName(Kind));
607}
608
Duncan Sands5754a452010-09-16 08:25:48 +0000609void Triple::setEnvironment(EnvironmentType Kind) {
610 setEnvironmentName(getEnvironmentTypeName(Kind));
611}
612
Daniel Dunbar2928c832009-11-06 10:58:06 +0000613void Triple::setArchName(StringRef Str) {
Jeffrey Yasskin0b228732009-10-06 21:45:26 +0000614 // Work around a miscompilation bug for Twines in gcc 4.0.3.
615 SmallString<64> Triple;
616 Triple += Str;
617 Triple += "-";
618 Triple += getVendorName();
619 Triple += "-";
620 Triple += getOSAndEnvironmentName();
621 setTriple(Triple.str());
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000622}
623
Daniel Dunbar2928c832009-11-06 10:58:06 +0000624void Triple::setVendorName(StringRef Str) {
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000625 setTriple(getArchName() + "-" + Str + "-" + getOSAndEnvironmentName());
626}
627
Daniel Dunbar2928c832009-11-06 10:58:06 +0000628void Triple::setOSName(StringRef Str) {
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000629 if (hasEnvironment())
630 setTriple(getArchName() + "-" + getVendorName() + "-" + Str +
631 "-" + getEnvironmentName());
632 else
633 setTriple(getArchName() + "-" + getVendorName() + "-" + Str);
634}
635
Daniel Dunbar2928c832009-11-06 10:58:06 +0000636void Triple::setEnvironmentName(StringRef Str) {
637 setTriple(getArchName() + "-" + getVendorName() + "-" + getOSName() +
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000638 "-" + Str);
639}
640
Daniel Dunbar2928c832009-11-06 10:58:06 +0000641void Triple::setOSAndEnvironmentName(StringRef Str) {
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000642 setTriple(getArchName() + "-" + getVendorName() + "-" + Str);
643}