blob: eadfa56ff316437ee0496bf6e86c3c2bd2328b21 [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";
Renato Golin859f8182011-01-21 18:25:47 +000087 case NoVendor: return "none";
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 Lattner8e620832009-08-12 06:32:10 +0000105 case MinGW64: return "mingw64";
Chris Lattnerb8ac8412009-07-13 20:22:23 +0000106 case NetBSD: return "netbsd";
Duncan Sandscd1267d2009-06-29 13:36:13 +0000107 case OpenBSD: return "openbsd";
Edward O'Callaghane0fb75d2009-11-15 10:18:17 +0000108 case Psp: return "psp";
Daniel Dunbarfdb0b7b2009-08-18 04:43:27 +0000109 case Solaris: return "solaris";
Daniel Dunbar6337f152009-07-26 04:23:03 +0000110 case Win32: return "win32";
Chris Lattnera43fc342009-10-16 02:06:30 +0000111 case Haiku: return "haiku";
Chris Lattner29269d02010-07-07 15:52:27 +0000112 case Minix: return "minix";
Renato Golin859f8182011-01-21 18:25:47 +0000113 case NoOS: return "none";
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;
148 if (Name == "ppc")
149 return ppc;
Wesley Pecka70f28c2010-02-23 19:15:24 +0000150 if (Name == "mblaze")
151 return mblaze;
Daniel Dunbar3c2d4bf2009-08-03 04:03:51 +0000152 if (Name == "sparc")
153 return sparc;
Chris Lattner87c06d62010-02-04 06:34:01 +0000154 if (Name == "sparcv9")
155 return sparcv9;
Daniel Dunbar3c2d4bf2009-08-03 04:03:51 +0000156 if (Name == "systemz")
157 return systemz;
Eli Friedman74db89e2009-08-19 20:46:03 +0000158 if (Name == "tce")
159 return tce;
Daniel Dunbar3c2d4bf2009-08-03 04:03:51 +0000160 if (Name == "thumb")
161 return thumb;
162 if (Name == "x86")
163 return x86;
Chris Lattnerb796c4f2009-08-12 06:45:02 +0000164 if (Name == "x86-64")
Daniel Dunbar3c2d4bf2009-08-03 04:03:51 +0000165 return x86_64;
166 if (Name == "xcore")
167 return xcore;
Nick Lewyckyf7a3c502010-09-07 18:14:24 +0000168 if (Name == "ptx")
169 return ptx;
Daniel Dunbar3c2d4bf2009-08-03 04:03:51 +0000170
171 return UnknownArch;
172}
173
Daniel Dunbar2928c832009-11-06 10:58:06 +0000174Triple::ArchType Triple::getArchTypeForDarwinArchName(StringRef Str) {
Daniel Dunbarbaf9b562009-09-08 23:32:51 +0000175 // See arch(3) and llvm-gcc's driver-driver.c. We don't implement support for
176 // archs which Darwin doesn't use.
177
178 // The matching this routine does is fairly pointless, since it is neither the
179 // complete architecture list, nor a reasonable subset. The problem is that
180 // historically the driver driver accepts this and also ties its -march=
181 // handling to the architecture name, so we need to be careful before removing
182 // support for it.
183
Daniel Dunbared687882009-09-09 23:01:25 +0000184 // This code must be kept in sync with Clang's Darwin specific argument
185 // translation.
186
Daniel Dunbarbaf9b562009-09-08 23:32:51 +0000187 if (Str == "ppc" || Str == "ppc601" || Str == "ppc603" || Str == "ppc604" ||
188 Str == "ppc604e" || Str == "ppc750" || Str == "ppc7400" ||
189 Str == "ppc7450" || Str == "ppc970")
190 return Triple::ppc;
191
192 if (Str == "ppc64")
193 return Triple::ppc64;
194
195 if (Str == "i386" || Str == "i486" || Str == "i486SX" || Str == "pentium" ||
196 Str == "i586" || Str == "pentpro" || Str == "i686" || Str == "pentIIm3" ||
197 Str == "pentIIm5" || Str == "pentium4")
198 return Triple::x86;
199
200 if (Str == "x86_64")
201 return Triple::x86_64;
202
203 // This is derived from the driver driver.
204 if (Str == "arm" || Str == "armv4t" || Str == "armv5" || Str == "xscale" ||
205 Str == "armv6" || Str == "armv7")
206 return Triple::arm;
207
Nick Lewyckyf7a3c502010-09-07 18:14:24 +0000208 if (Str == "ptx")
209 return Triple::ptx;
210
Daniel Dunbarbaf9b562009-09-08 23:32:51 +0000211 return Triple::UnknownArch;
212}
213
Duncan Sandsbbdca3f2010-03-24 09:05:14 +0000214// Returns architecture name that is understood by the target assembler.
Viktor Kutuzov51cdac02009-11-17 18:48:27 +0000215const char *Triple::getArchNameForAssembler() {
216 if (getOS() != Triple::Darwin && getVendor() != Triple::Apple)
217 return NULL;
218
219 StringRef Str = getArchName();
220 if (Str == "i386")
221 return "i386";
222 if (Str == "x86_64")
223 return "x86_64";
224 if (Str == "powerpc")
225 return "ppc";
226 if (Str == "powerpc64")
227 return "ppc64";
Wesley Pecka70f28c2010-02-23 19:15:24 +0000228 if (Str == "mblaze" || Str == "microblaze")
229 return "mblaze";
Viktor Kutuzov51cdac02009-11-17 18:48:27 +0000230 if (Str == "arm")
231 return "arm";
232 if (Str == "armv4t" || Str == "thumbv4t")
233 return "armv4t";
Jim Grosbache509aa92010-12-17 02:10:59 +0000234 if (Str == "armv5" || Str == "armv5e" || Str == "thumbv5"
235 || Str == "thumbv5e")
Viktor Kutuzov51cdac02009-11-17 18:48:27 +0000236 return "armv5";
237 if (Str == "armv6" || Str == "thumbv6")
238 return "armv6";
239 if (Str == "armv7" || Str == "thumbv7")
240 return "armv7";
Nick Lewyckyf7a3c502010-09-07 18:14:24 +0000241 if (Str == "ptx")
242 return "ptx";
Viktor Kutuzov51cdac02009-11-17 18:48:27 +0000243 return NULL;
244}
245
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000246//
247
Duncan Sands335db222010-08-12 11:31:39 +0000248Triple::ArchType Triple::ParseArch(StringRef ArchName) {
Jim Grosbache509aa92010-12-17 02:10:59 +0000249 if (ArchName.size() == 4 && ArchName[0] == 'i' &&
250 ArchName[2] == '8' && ArchName[3] == '6' &&
Daniel Dunbar6337f152009-07-26 04:23:03 +0000251 ArchName[1] - '3' < 6) // i[3-9]86
Duncan Sands335db222010-08-12 11:31:39 +0000252 return x86;
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000253 else if (ArchName == "amd64" || ArchName == "x86_64")
Duncan Sands335db222010-08-12 11:31:39 +0000254 return x86_64;
Daniel Dunbarb26bc422009-08-18 07:06:26 +0000255 else if (ArchName == "bfin")
Duncan Sands335db222010-08-12 11:31:39 +0000256 return bfin;
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000257 else if (ArchName == "powerpc")
Duncan Sands335db222010-08-12 11:31:39 +0000258 return ppc;
Edward O'Callaghancc9fa812009-11-19 11:59:00 +0000259 else if ((ArchName == "powerpc64") || (ArchName == "ppu"))
Duncan Sands335db222010-08-12 11:31:39 +0000260 return ppc64;
Wesley Pecka70f28c2010-02-23 19:15:24 +0000261 else if (ArchName == "mblaze")
Duncan Sands335db222010-08-12 11:31:39 +0000262 return mblaze;
Daniel Dunbar6337f152009-07-26 04:23:03 +0000263 else if (ArchName == "arm" ||
Daniel Dunbar24473892009-08-18 04:51:26 +0000264 ArchName.startswith("armv") ||
265 ArchName == "xscale")
Duncan Sands335db222010-08-12 11:31:39 +0000266 return arm;
Daniel Dunbar6337f152009-07-26 04:23:03 +0000267 else if (ArchName == "thumb" ||
268 ArchName.startswith("thumbv"))
Duncan Sands335db222010-08-12 11:31:39 +0000269 return thumb;
Daniel Dunbar6337f152009-07-26 04:23:03 +0000270 else if (ArchName.startswith("alpha"))
Duncan Sands335db222010-08-12 11:31:39 +0000271 return alpha;
Daniel Dunbar6337f152009-07-26 04:23:03 +0000272 else if (ArchName == "spu" || ArchName == "cellspu")
Duncan Sands335db222010-08-12 11:31:39 +0000273 return cellspu;
Daniel Dunbar6337f152009-07-26 04:23:03 +0000274 else if (ArchName == "msp430")
Duncan Sands335db222010-08-12 11:31:39 +0000275 return msp430;
Daniel Dunbar6337f152009-07-26 04:23:03 +0000276 else if (ArchName == "mips" || ArchName == "mipsallegrex")
Duncan Sands335db222010-08-12 11:31:39 +0000277 return mips;
Daniel Dunbar6337f152009-07-26 04:23:03 +0000278 else if (ArchName == "mipsel" || ArchName == "mipsallegrexel" ||
279 ArchName == "psp")
Duncan Sands335db222010-08-12 11:31:39 +0000280 return mipsel;
Daniel Dunbar6337f152009-07-26 04:23:03 +0000281 else if (ArchName == "sparc")
Duncan Sands335db222010-08-12 11:31:39 +0000282 return sparc;
Chris Lattner87c06d62010-02-04 06:34:01 +0000283 else if (ArchName == "sparcv9")
Duncan Sands335db222010-08-12 11:31:39 +0000284 return sparcv9;
Daniel Dunbar6337f152009-07-26 04:23:03 +0000285 else if (ArchName == "s390x")
Duncan Sands335db222010-08-12 11:31:39 +0000286 return systemz;
Eli Friedman74db89e2009-08-19 20:46:03 +0000287 else if (ArchName == "tce")
Duncan Sands335db222010-08-12 11:31:39 +0000288 return tce;
Richard Osborne768f1dd2009-08-31 21:51:36 +0000289 else if (ArchName == "xcore")
Duncan Sands335db222010-08-12 11:31:39 +0000290 return xcore;
Nick Lewyckyf7a3c502010-09-07 18:14:24 +0000291 else if (ArchName == "ptx")
292 return ptx;
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000293 else
Duncan Sands335db222010-08-12 11:31:39 +0000294 return UnknownArch;
295}
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000296
Duncan Sands335db222010-08-12 11:31:39 +0000297Triple::VendorType Triple::ParseVendor(StringRef VendorName) {
298 if (VendorName == "apple")
299 return Apple;
300 else if (VendorName == "pc")
301 return PC;
Renato Golin859f8182011-01-21 18:25:47 +0000302 else if (VendorName == "none")
303 return NoVendor;
Duncan Sands335db222010-08-12 11:31:39 +0000304 else
305 return UnknownVendor;
306}
307
308Triple::OSType Triple::ParseOS(StringRef OSName) {
309 if (OSName.startswith("auroraux"))
310 return AuroraUX;
311 else if (OSName.startswith("cygwin"))
312 return Cygwin;
313 else if (OSName.startswith("darwin"))
314 return Darwin;
315 else if (OSName.startswith("dragonfly"))
316 return DragonFly;
317 else if (OSName.startswith("freebsd"))
318 return FreeBSD;
319 else if (OSName.startswith("linux"))
320 return Linux;
321 else if (OSName.startswith("lv2"))
322 return Lv2;
323 else if (OSName.startswith("mingw32"))
324 return MinGW32;
325 else if (OSName.startswith("mingw64"))
326 return MinGW64;
327 else if (OSName.startswith("netbsd"))
328 return NetBSD;
329 else if (OSName.startswith("openbsd"))
330 return OpenBSD;
331 else if (OSName.startswith("psp"))
332 return Psp;
333 else if (OSName.startswith("solaris"))
334 return Solaris;
335 else if (OSName.startswith("win32"))
336 return Win32;
337 else if (OSName.startswith("haiku"))
338 return Haiku;
339 else if (OSName.startswith("minix"))
340 return Minix;
Renato Golin859f8182011-01-21 18:25:47 +0000341 else if (OSName.startswith("eabi"))
342 return NoOS;
Duncan Sands335db222010-08-12 11:31:39 +0000343 else
344 return UnknownOS;
345}
346
Duncan Sands5754a452010-09-16 08:25:48 +0000347Triple::EnvironmentType Triple::ParseEnvironment(StringRef EnvironmentName) {
Renato Golin859f8182011-01-21 18:25:47 +0000348 if (EnvironmentName.startswith("eabi"))
349 return EABI;
350 else if (EnvironmentName.startswith("gnueabi"))
351 return GNUEABI;
352 else if (EnvironmentName.startswith("gnu"))
353 return GNU;
Evan Cheng2bffee22011-02-01 01:14:13 +0000354 else if (EnvironmentName.startswith("macho"))
355 return MachO;
Renato Golin859f8182011-01-21 18:25:47 +0000356 else
357 return UnknownEnvironment;
Duncan Sands5754a452010-09-16 08:25:48 +0000358}
359
Duncan Sands335db222010-08-12 11:31:39 +0000360void Triple::Parse() const {
361 assert(!isInitialized() && "Invalid parse call.");
362
363 Arch = ParseArch(getArchName());
364 Vendor = ParseVendor(getVendorName());
365 OS = ParseOS(getOSName());
Renato Golin859f8182011-01-21 18:25:47 +0000366 if (OS == NoOS) {
367 // Some targets don't have an OS (embedded systems)
368 Environment = ParseEnvironment(getOSName());
369 } else {
370 Environment = ParseEnvironment(getEnvironmentName());
371 }
Daniel Dunbar651aa682009-08-18 19:26:55 +0000372
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000373 assert(isInitialized() && "Failed to initialize!");
374}
375
Duncan Sands335db222010-08-12 11:31:39 +0000376std::string Triple::normalize(StringRef Str) {
377 // Parse into components.
378 SmallVector<StringRef, 4> Components;
379 for (size_t First = 0, Last = 0; Last != StringRef::npos; First = Last + 1) {
380 Last = Str.find('-', First);
381 Components.push_back(Str.slice(First, Last));
382 }
383
384 // If the first component corresponds to a known architecture, preferentially
385 // use it for the architecture. If the second component corresponds to a
386 // known vendor, preferentially use it for the vendor, etc. This avoids silly
387 // component movement when a component parses as (eg) both a valid arch and a
388 // valid os.
389 ArchType Arch = UnknownArch;
390 if (Components.size() > 0)
391 Arch = ParseArch(Components[0]);
392 VendorType Vendor = UnknownVendor;
393 if (Components.size() > 1)
394 Vendor = ParseVendor(Components[1]);
395 OSType OS = UnknownOS;
396 if (Components.size() > 2)
397 OS = ParseOS(Components[2]);
Duncan Sands5754a452010-09-16 08:25:48 +0000398 EnvironmentType Environment = UnknownEnvironment;
399 if (Components.size() > 3)
400 Environment = ParseEnvironment(Components[3]);
Duncan Sands335db222010-08-12 11:31:39 +0000401
402 // Note which components are already in their final position. These will not
403 // be moved.
Duncan Sands5754a452010-09-16 08:25:48 +0000404 bool Found[4];
Duncan Sands335db222010-08-12 11:31:39 +0000405 Found[0] = Arch != UnknownArch;
406 Found[1] = Vendor != UnknownVendor;
407 Found[2] = OS != UnknownOS;
Duncan Sands5754a452010-09-16 08:25:48 +0000408 Found[3] = Environment != UnknownEnvironment;
Duncan Sands335db222010-08-12 11:31:39 +0000409
410 // If they are not there already, permute the components into their canonical
411 // positions by seeing if they parse as a valid architecture, and if so moving
412 // the component to the architecture position etc.
Duncan Sands5754a452010-09-16 08:25:48 +0000413 for (unsigned Pos = 0; Pos != array_lengthof(Found); ++Pos) {
Duncan Sands335db222010-08-12 11:31:39 +0000414 if (Found[Pos])
415 continue; // Already in the canonical position.
416
417 for (unsigned Idx = 0; Idx != Components.size(); ++Idx) {
418 // Do not reparse any components that already matched.
Duncan Sands5754a452010-09-16 08:25:48 +0000419 if (Idx < array_lengthof(Found) && Found[Idx])
Duncan Sands335db222010-08-12 11:31:39 +0000420 continue;
421
422 // Does this component parse as valid for the target position?
423 bool Valid = false;
424 StringRef Comp = Components[Idx];
425 switch (Pos) {
426 default:
427 assert(false && "unexpected component type!");
428 case 0:
429 Arch = ParseArch(Comp);
430 Valid = Arch != UnknownArch;
431 break;
432 case 1:
433 Vendor = ParseVendor(Comp);
434 Valid = Vendor != UnknownVendor;
435 break;
436 case 2:
437 OS = ParseOS(Comp);
Renato Golin859f8182011-01-21 18:25:47 +0000438 // Some targets don't have an OS (embedded systems)
439 if (OS == NoOS) {
440 Environment = ParseEnvironment(Comp);
441 Valid = Environment != UnknownEnvironment;
442 } else {
443 Valid = OS != UnknownOS;
444 }
Duncan Sands335db222010-08-12 11:31:39 +0000445 break;
Duncan Sands5754a452010-09-16 08:25:48 +0000446 case 3:
447 Environment = ParseEnvironment(Comp);
448 Valid = Environment != UnknownEnvironment;
449 break;
Duncan Sands335db222010-08-12 11:31:39 +0000450 }
451 if (!Valid)
452 continue; // Nope, try the next component.
453
454 // Move the component to the target position, pushing any non-fixed
455 // components that are in the way to the right. This tends to give
456 // good results in the common cases of a forgotten vendor component
457 // or a wrongly positioned environment.
458 if (Pos < Idx) {
459 // Insert left, pushing the existing components to the right. For
460 // example, a-b-i386 -> i386-a-b when moving i386 to the front.
461 StringRef CurrentComponent(""); // The empty component.
462 // Replace the component we are moving with an empty component.
463 std::swap(CurrentComponent, Components[Idx]);
464 // Insert the component being moved at Pos, displacing any existing
465 // components to the right.
466 for (unsigned i = Pos; !CurrentComponent.empty(); ++i) {
467 // Skip over any fixed components.
Duncan Sands5754a452010-09-16 08:25:48 +0000468 while (i < array_lengthof(Found) && Found[i]) ++i;
Duncan Sands335db222010-08-12 11:31:39 +0000469 // Place the component at the new position, getting the component
470 // that was at this position - it will be moved right.
471 std::swap(CurrentComponent, Components[i]);
472 }
473 } else if (Pos > Idx) {
474 // Push right by inserting empty components until the component at Idx
475 // reaches the target position Pos. For example, pc-a -> -pc-a when
476 // moving pc to the second position.
477 do {
478 // Insert one empty component at Idx.
479 StringRef CurrentComponent(""); // The empty component.
480 for (unsigned i = Idx; i < Components.size(); ++i) {
481 // Skip over any fixed components.
Duncan Sands5754a452010-09-16 08:25:48 +0000482 while (i < array_lengthof(Found) && Found[i]) ++i;
Renato Golin859f8182011-01-21 18:25:47 +0000483 // Fix problem when Components vector is not big enough
484 if (i >= Components.size())
485 Components.push_back(StringRef(""));
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;
492 }
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");
548 unsigned Result = Str[0]-'0';
Jim Grosbache509aa92010-12-17 02:10:59 +0000549
Chris Lattnerdfc17f72009-08-12 06:19:40 +0000550 // Eat the digit.
551 Str = Str.substr(1);
Jim Grosbache509aa92010-12-17 02:10:59 +0000552
Chris Lattnerdfc17f72009-08-12 06:19:40 +0000553 // Handle "darwin11".
554 if (Result == 1 && !Str.empty() && Str[0] >= '0' && Str[0] <= '9') {
555 Result = Result*10 + (Str[0] - '0');
556 // Eat the digit.
557 Str = Str.substr(1);
558 }
Jim Grosbache509aa92010-12-17 02:10:59 +0000559
Chris Lattnerdfc17f72009-08-12 06:19:40 +0000560 return Result;
561}
562
563/// getDarwinNumber - Parse the 'darwin number' out of the specific target
564/// triple. For example, if we have darwin8.5 return 8,5,0. If any entry is
565/// not defined, return 0's. This requires that the triple have an OSType of
566/// darwin before it is called.
567void Triple::getDarwinNumber(unsigned &Maj, unsigned &Min,
568 unsigned &Revision) const {
569 assert(getOS() == Darwin && "Not a darwin target triple!");
570 StringRef OSName = getOSName();
571 assert(OSName.startswith("darwin") && "Unknown darwin target triple!");
Jim Grosbache509aa92010-12-17 02:10:59 +0000572
Chris Lattnerdfc17f72009-08-12 06:19:40 +0000573 // Strip off "darwin".
574 OSName = OSName.substr(6);
Jim Grosbache509aa92010-12-17 02:10:59 +0000575
Chris Lattnerdfc17f72009-08-12 06:19:40 +0000576 Maj = Min = Revision = 0;
577
578 if (OSName.empty() || OSName[0] < '0' || OSName[0] > '9')
579 return;
580
581 // The major version is the first digit.
582 Maj = EatNumber(OSName);
583 if (OSName.empty()) return;
Jim Grosbache509aa92010-12-17 02:10:59 +0000584
Chris Lattnerdfc17f72009-08-12 06:19:40 +0000585 // Handle minor version: 10.4.9 -> darwin8.9.
586 if (OSName[0] != '.')
587 return;
Jim Grosbache509aa92010-12-17 02:10:59 +0000588
Chris Lattnerdfc17f72009-08-12 06:19:40 +0000589 // Eat the '.'.
590 OSName = OSName.substr(1);
591
592 if (OSName.empty() || OSName[0] < '0' || OSName[0] > '9')
593 return;
Jim Grosbache509aa92010-12-17 02:10:59 +0000594
Chris Lattnerdfc17f72009-08-12 06:19:40 +0000595 Min = EatNumber(OSName);
596 if (OSName.empty()) return;
597
598 // Handle revision darwin8.9.1
599 if (OSName[0] != '.')
600 return;
Jim Grosbache509aa92010-12-17 02:10:59 +0000601
Chris Lattnerdfc17f72009-08-12 06:19:40 +0000602 // Eat the '.'.
603 OSName = OSName.substr(1);
Jim Grosbache509aa92010-12-17 02:10:59 +0000604
Chris Lattnerdfc17f72009-08-12 06:19:40 +0000605 if (OSName.empty() || OSName[0] < '0' || OSName[0] > '9')
606 return;
607
608 Revision = EatNumber(OSName);
609}
610
Daniel Dunbara14d2252009-07-26 03:31:47 +0000611void Triple::setTriple(const Twine &Str) {
612 Data = Str.str();
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000613 Arch = InvalidArch;
614}
615
616void Triple::setArch(ArchType Kind) {
617 setArchName(getArchTypeName(Kind));
618}
619
620void Triple::setVendor(VendorType Kind) {
621 setVendorName(getVendorTypeName(Kind));
622}
623
624void Triple::setOS(OSType Kind) {
625 setOSName(getOSTypeName(Kind));
626}
627
Duncan Sands5754a452010-09-16 08:25:48 +0000628void Triple::setEnvironment(EnvironmentType Kind) {
629 setEnvironmentName(getEnvironmentTypeName(Kind));
630}
631
Daniel Dunbar2928c832009-11-06 10:58:06 +0000632void Triple::setArchName(StringRef Str) {
Jeffrey Yasskin0b228732009-10-06 21:45:26 +0000633 // Work around a miscompilation bug for Twines in gcc 4.0.3.
634 SmallString<64> Triple;
635 Triple += Str;
636 Triple += "-";
637 Triple += getVendorName();
638 Triple += "-";
639 Triple += getOSAndEnvironmentName();
640 setTriple(Triple.str());
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000641}
642
Daniel Dunbar2928c832009-11-06 10:58:06 +0000643void Triple::setVendorName(StringRef Str) {
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000644 setTriple(getArchName() + "-" + Str + "-" + getOSAndEnvironmentName());
645}
646
Daniel Dunbar2928c832009-11-06 10:58:06 +0000647void Triple::setOSName(StringRef Str) {
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000648 if (hasEnvironment())
649 setTriple(getArchName() + "-" + getVendorName() + "-" + Str +
650 "-" + getEnvironmentName());
651 else
652 setTriple(getArchName() + "-" + getVendorName() + "-" + Str);
653}
654
Daniel Dunbar2928c832009-11-06 10:58:06 +0000655void Triple::setEnvironmentName(StringRef Str) {
656 setTriple(getArchName() + "-" + getVendorName() + "-" + getOSName() +
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000657 "-" + Str);
658}
659
Daniel Dunbar2928c832009-11-06 10:58:06 +0000660void Triple::setOSAndEnvironmentName(StringRef Str) {
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000661 setTriple(getArchName() + "-" + getVendorName() + "-" + Str);
662}