ADT/Triple: Fix Triple::getArchNameForAssembler to support OSX and iOS
[oota-llvm.git] / lib / Support / Triple.cpp
1 //===--- 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"
11
12 #include "llvm/ADT/SmallString.h"
13 #include "llvm/ADT/STLExtras.h"
14 #include "llvm/ADT/Twine.h"
15 #include <cassert>
16 #include <cstring>
17 using namespace llvm;
18
19 //
20
21 const char *Triple::getArchTypeName(ArchType Kind) {
22   switch (Kind) {
23   case InvalidArch: return "<invalid>";
24   case UnknownArch: return "unknown";
25
26   case alpha:   return "alpha";
27   case arm:     return "arm";
28   case bfin:    return "bfin";
29   case cellspu: return "cellspu";
30   case mips:    return "mips";
31   case mipsel:  return "mipsel";
32   case msp430:  return "msp430";
33   case ppc64:   return "powerpc64";
34   case ppc:     return "powerpc";
35   case sparc:   return "sparc";
36   case sparcv9: return "sparcv9";
37   case systemz: return "s390x";
38   case tce:     return "tce";
39   case thumb:   return "thumb";
40   case x86:     return "i386";
41   case x86_64:  return "x86_64";
42   case xcore:   return "xcore";
43   case mblaze:  return "mblaze";
44   case ptx:     return "ptx";
45   }
46
47   return "<invalid>";
48 }
49
50 const 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
67   case mblaze:  return "mblaze";
68
69   case sparcv9:
70   case sparc:   return "sparc";
71
72   case x86:
73   case x86_64:  return "x86";
74
75   case xcore:   return "xcore";
76
77   case ptx:     return "ptx";
78   }
79 }
80
81 const char *Triple::getVendorTypeName(VendorType Kind) {
82   switch (Kind) {
83   case UnknownVendor: return "unknown";
84
85   case Apple: return "apple";
86   case PC: return "pc";
87   case SCEI: return "scei";
88   }
89
90   return "<invalid>";
91 }
92
93 const char *Triple::getOSTypeName(OSType Kind) {
94   switch (Kind) {
95   case UnknownOS: return "unknown";
96
97   case AuroraUX: return "auroraux";
98   case Cygwin: return "cygwin";
99   case Darwin: return "darwin";
100   case DragonFly: return "dragonfly";
101   case FreeBSD: return "freebsd";
102   case IOS: return "ios";
103   case Linux: return "linux";
104   case Lv2: return "lv2";
105   case MinGW32: return "mingw32";
106   case NetBSD: return "netbsd";
107   case OSX: return "osx";
108   case OpenBSD: return "openbsd";
109   case Psp: return "psp";
110   case Solaris: return "solaris";
111   case Win32: return "win32";
112   case Haiku: return "haiku";
113   case Minix: return "minix";
114   }
115
116   return "<invalid>";
117 }
118
119 const char *Triple::getEnvironmentTypeName(EnvironmentType Kind) {
120   switch (Kind) {
121   case UnknownEnvironment: return "unknown";
122   case GNU: return "gnu";
123   case GNUEABI: return "gnueabi";
124   case EABI: return "eabi";
125   case MachO: return "macho";
126   }
127
128   return "<invalid>";
129 }
130
131 Triple::ArchType Triple::getArchTypeForLLVMName(StringRef Name) {
132   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;
150   if (Name == "mblaze")
151     return mblaze;
152   if (Name == "sparc")
153     return sparc;
154   if (Name == "sparcv9")
155     return sparcv9;
156   if (Name == "systemz")
157     return systemz;
158   if (Name == "tce")
159     return tce;
160   if (Name == "thumb")
161     return thumb;
162   if (Name == "x86")
163     return x86;
164   if (Name == "x86-64")
165     return x86_64;
166   if (Name == "xcore")
167     return xcore;
168   if (Name == "ptx")
169     return ptx;
170
171   return UnknownArch;
172 }
173
174 Triple::ArchType Triple::getArchTypeForDarwinArchName(StringRef Str) {
175   // 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
184   // This code must be kept in sync with Clang's Darwin specific argument
185   // translation.
186
187   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
208   if (Str == "ptx")
209     return Triple::ptx;
210
211   return Triple::UnknownArch;
212 }
213
214 // Returns architecture name that is understood by the target assembler.
215 const char *Triple::getArchNameForAssembler() {
216   if (getOS() != Triple::Darwin && getOS() != Triple::OSX &&
217       getOS() != Triple::IOS && getVendor() != Triple::Apple)
218     return NULL;
219
220   StringRef Str = getArchName();
221   if (Str == "i386")
222     return "i386";
223   if (Str == "x86_64")
224     return "x86_64";
225   if (Str == "powerpc")
226     return "ppc";
227   if (Str == "powerpc64")
228     return "ppc64";
229   if (Str == "mblaze" || Str == "microblaze")
230     return "mblaze";
231   if (Str == "arm")
232     return "arm";
233   if (Str == "armv4t" || Str == "thumbv4t")
234     return "armv4t";
235   if (Str == "armv5" || Str == "armv5e" || Str == "thumbv5"
236       || Str == "thumbv5e")
237     return "armv5";
238   if (Str == "armv6" || Str == "thumbv6")
239     return "armv6";
240   if (Str == "armv7" || Str == "thumbv7")
241     return "armv7";
242   if (Str == "ptx")
243     return "ptx";
244   return NULL;
245 }
246
247 //
248
249 Triple::ArchType Triple::ParseArch(StringRef ArchName) {
250   if (ArchName.size() == 4 && ArchName[0] == 'i' &&
251       ArchName[2] == '8' && ArchName[3] == '6' &&
252       ArchName[1] - '3' < 6) // i[3-9]86
253     return x86;
254   else if (ArchName == "amd64" || ArchName == "x86_64")
255     return x86_64;
256   else if (ArchName == "bfin")
257     return bfin;
258   else if (ArchName == "powerpc")
259     return ppc;
260   else if ((ArchName == "powerpc64") || (ArchName == "ppu"))
261     return ppc64;
262   else if (ArchName == "mblaze")
263     return mblaze;
264   else if (ArchName == "arm" ||
265            ArchName.startswith("armv") ||
266            ArchName == "xscale")
267     return arm;
268   else if (ArchName == "thumb" ||
269            ArchName.startswith("thumbv"))
270     return thumb;
271   else if (ArchName.startswith("alpha"))
272     return alpha;
273   else if (ArchName == "spu" || ArchName == "cellspu")
274     return cellspu;
275   else if (ArchName == "msp430")
276     return msp430;
277   else if (ArchName == "mips" || ArchName == "mipsallegrex")
278     return mips;
279   else if (ArchName == "mipsel" || ArchName == "mipsallegrexel" ||
280            ArchName == "psp")
281     return mipsel;
282   else if (ArchName == "sparc")
283     return sparc;
284   else if (ArchName == "sparcv9")
285     return sparcv9;
286   else if (ArchName == "s390x")
287     return systemz;
288   else if (ArchName == "tce")
289     return tce;
290   else if (ArchName == "xcore")
291     return xcore;
292   else if (ArchName == "ptx")
293     return ptx;
294   else
295     return UnknownArch;
296 }
297
298 Triple::VendorType Triple::ParseVendor(StringRef VendorName) {
299   if (VendorName == "apple")
300     return Apple;
301   else if (VendorName == "pc")
302     return PC;
303   else if (VendorName == "scei")
304     return SCEI;
305   else
306     return UnknownVendor;
307 }
308
309 Triple::OSType Triple::ParseOS(StringRef OSName) {
310   if (OSName.startswith("auroraux"))
311     return AuroraUX;
312   else if (OSName.startswith("cygwin"))
313     return Cygwin;
314   else if (OSName.startswith("darwin"))
315     return Darwin;
316   else if (OSName.startswith("dragonfly"))
317     return DragonFly;
318   else if (OSName.startswith("freebsd"))
319     return FreeBSD;
320   else if (OSName.startswith("ios"))
321     return IOS;
322   else if (OSName.startswith("linux"))
323     return Linux;
324   else if (OSName.startswith("lv2"))
325     return Lv2;
326   else if (OSName.startswith("mingw32"))
327     return MinGW32;
328   else if (OSName.startswith("netbsd"))
329     return NetBSD;
330   else if (OSName.startswith("osx"))
331     return OSX;
332   else if (OSName.startswith("openbsd"))
333     return OpenBSD;
334   else if (OSName.startswith("psp"))
335     return Psp;
336   else if (OSName.startswith("solaris"))
337     return Solaris;
338   else if (OSName.startswith("win32"))
339     return Win32;
340   else if (OSName.startswith("haiku"))
341     return Haiku;
342   else if (OSName.startswith("minix"))
343     return Minix;
344   else
345     return UnknownOS;
346 }
347
348 Triple::EnvironmentType Triple::ParseEnvironment(StringRef EnvironmentName) {
349   if (EnvironmentName.startswith("eabi"))
350     return EABI;
351   else if (EnvironmentName.startswith("gnueabi"))
352     return GNUEABI;
353   else if (EnvironmentName.startswith("gnu"))
354     return GNU;
355   else if (EnvironmentName.startswith("macho"))
356     return MachO;
357   else
358     return UnknownEnvironment;
359 }
360
361 void Triple::Parse() const {
362   assert(!isInitialized() && "Invalid parse call.");
363
364   Arch = ParseArch(getArchName());
365   Vendor = ParseVendor(getVendorName());
366   OS = ParseOS(getOSName());
367   Environment = ParseEnvironment(getEnvironmentName());
368
369   assert(isInitialized() && "Failed to initialize!");
370 }
371
372 std::string Triple::normalize(StringRef Str) {
373   // Parse into components.
374   SmallVector<StringRef, 4> Components;
375   for (size_t First = 0, Last = 0; Last != StringRef::npos; First = Last + 1) {
376     Last = Str.find('-', First);
377     Components.push_back(Str.slice(First, Last));
378   }
379
380   // If the first component corresponds to a known architecture, preferentially
381   // use it for the architecture.  If the second component corresponds to a
382   // known vendor, preferentially use it for the vendor, etc.  This avoids silly
383   // component movement when a component parses as (eg) both a valid arch and a
384   // valid os.
385   ArchType Arch = UnknownArch;
386   if (Components.size() > 0)
387     Arch = ParseArch(Components[0]);
388   VendorType Vendor = UnknownVendor;
389   if (Components.size() > 1)
390     Vendor = ParseVendor(Components[1]);
391   OSType OS = UnknownOS;
392   if (Components.size() > 2)
393     OS = ParseOS(Components[2]);
394   EnvironmentType Environment = UnknownEnvironment;
395   if (Components.size() > 3)
396     Environment = ParseEnvironment(Components[3]);
397
398   // Note which components are already in their final position.  These will not
399   // be moved.
400   bool Found[4];
401   Found[0] = Arch != UnknownArch;
402   Found[1] = Vendor != UnknownVendor;
403   Found[2] = OS != UnknownOS;
404   Found[3] = Environment != UnknownEnvironment;
405
406   // If they are not there already, permute the components into their canonical
407   // positions by seeing if they parse as a valid architecture, and if so moving
408   // the component to the architecture position etc.
409   for (unsigned Pos = 0; Pos != array_lengthof(Found); ++Pos) {
410     if (Found[Pos])
411       continue; // Already in the canonical position.
412
413     for (unsigned Idx = 0; Idx != Components.size(); ++Idx) {
414       // Do not reparse any components that already matched.
415       if (Idx < array_lengthof(Found) && Found[Idx])
416         continue;
417
418       // Does this component parse as valid for the target position?
419       bool Valid = false;
420       StringRef Comp = Components[Idx];
421       switch (Pos) {
422       default:
423         assert(false && "unexpected component type!");
424       case 0:
425         Arch = ParseArch(Comp);
426         Valid = Arch != UnknownArch;
427         break;
428       case 1:
429         Vendor = ParseVendor(Comp);
430         Valid = Vendor != UnknownVendor;
431         break;
432       case 2:
433         OS = ParseOS(Comp);
434         Valid = OS != UnknownOS;
435         break;
436       case 3:
437         Environment = ParseEnvironment(Comp);
438         Valid = Environment != UnknownEnvironment;
439         break;
440       }
441       if (!Valid)
442         continue; // Nope, try the next component.
443
444       // Move the component to the target position, pushing any non-fixed
445       // components that are in the way to the right.  This tends to give
446       // good results in the common cases of a forgotten vendor component
447       // or a wrongly positioned environment.
448       if (Pos < Idx) {
449         // Insert left, pushing the existing components to the right.  For
450         // example, a-b-i386 -> i386-a-b when moving i386 to the front.
451         StringRef CurrentComponent(""); // The empty component.
452         // Replace the component we are moving with an empty component.
453         std::swap(CurrentComponent, Components[Idx]);
454         // Insert the component being moved at Pos, displacing any existing
455         // components to the right.
456         for (unsigned i = Pos; !CurrentComponent.empty(); ++i) {
457           // Skip over any fixed components.
458           while (i < array_lengthof(Found) && Found[i]) ++i;
459           // Place the component at the new position, getting the component
460           // that was at this position - it will be moved right.
461           std::swap(CurrentComponent, Components[i]);
462         }
463       } else if (Pos > Idx) {
464         // Push right by inserting empty components until the component at Idx
465         // reaches the target position Pos.  For example, pc-a -> -pc-a when
466         // moving pc to the second position.
467         do {
468           // Insert one empty component at Idx.
469           StringRef CurrentComponent(""); // The empty component.
470           for (unsigned i = Idx; i < Components.size();) {
471             // Place the component at the new position, getting the component
472             // that was at this position - it will be moved right.
473             std::swap(CurrentComponent, Components[i]);
474             // If it was placed on top of an empty component then we are done.
475             if (CurrentComponent.empty())
476               break;
477             // Advance to the next component, skipping any fixed components.
478             while (++i < array_lengthof(Found) && Found[i])
479               ;
480           }
481           // The last component was pushed off the end - append it.
482           if (!CurrentComponent.empty())
483             Components.push_back(CurrentComponent);
484
485           // Advance Idx to the component's new position.
486           while (++Idx < array_lengthof(Found) && Found[Idx]) {}
487         } while (Idx < Pos); // Add more until the final position is reached.
488       }
489       assert(Pos < Components.size() && Components[Pos] == Comp &&
490              "Component moved wrong!");
491       Found[Pos] = true;
492       break;
493     }
494   }
495
496   // Special case logic goes here.  At this point Arch, Vendor and OS have the
497   // correct values for the computed components.
498
499   // Stick the corrected components back together to form the normalized string.
500   std::string Normalized;
501   for (unsigned i = 0, e = Components.size(); i != e; ++i) {
502     if (i) Normalized += '-';
503     Normalized += Components[i];
504   }
505   return Normalized;
506 }
507
508 StringRef Triple::getArchName() const {
509   return StringRef(Data).split('-').first;           // Isolate first component
510 }
511
512 StringRef Triple::getVendorName() const {
513   StringRef Tmp = StringRef(Data).split('-').second; // Strip first component
514   return Tmp.split('-').first;                       // Isolate second component
515 }
516
517 StringRef Triple::getOSName() const {
518   StringRef Tmp = StringRef(Data).split('-').second; // Strip first component
519   Tmp = Tmp.split('-').second;                       // Strip second component
520   return Tmp.split('-').first;                       // Isolate third component
521 }
522
523 StringRef Triple::getEnvironmentName() const {
524   StringRef Tmp = StringRef(Data).split('-').second; // Strip first component
525   Tmp = Tmp.split('-').second;                       // Strip second component
526   return Tmp.split('-').second;                      // Strip third component
527 }
528
529 StringRef Triple::getOSAndEnvironmentName() const {
530   StringRef Tmp = StringRef(Data).split('-').second; // Strip first component
531   return Tmp.split('-').second;                      // Strip second component
532 }
533
534 static unsigned EatNumber(StringRef &Str) {
535   assert(!Str.empty() && Str[0] >= '0' && Str[0] <= '9' && "Not a number");
536   unsigned Result = 0;
537
538   do {
539     // Consume the leading digit.
540     Result = Result*10 + (Str[0] - '0');
541
542     // Eat the digit.
543     Str = Str.substr(1);
544   } while (!Str.empty() && Str[0] >= '0' && Str[0] <= '9');
545
546   return Result;
547 }
548
549 void Triple::getOSVersion(unsigned &Major, unsigned &Minor,
550                           unsigned &Micro) const {
551   StringRef OSName = getOSName();
552
553   // Assume that the OS portion of the triple starts with the canonical name.
554   StringRef OSTypeName = getOSTypeName(getOS());
555   if (OSName.startswith(OSTypeName))
556     OSName = OSName.substr(OSTypeName.size());
557
558   // Any unset version defaults to 0.
559   Major = Minor = Micro = 0;
560
561   // Parse up to three components.
562   unsigned *Components[3] = { &Major, &Minor, &Micro };
563   for (unsigned i = 0; i != 3; ++i) {
564     if (OSName.empty() || OSName[0] < '0' || OSName[0] > '9')
565       break;
566
567     // Consume the leading number.
568     *Components[i] = EatNumber(OSName);
569
570     // Consume the separator, if present.
571     if (OSName.startswith("."))
572       OSName = OSName.substr(1);
573   }
574 }
575
576 void Triple::setTriple(const Twine &Str) {
577   Data = Str.str();
578   Arch = InvalidArch;
579 }
580
581 void Triple::setArch(ArchType Kind) {
582   setArchName(getArchTypeName(Kind));
583 }
584
585 void Triple::setVendor(VendorType Kind) {
586   setVendorName(getVendorTypeName(Kind));
587 }
588
589 void Triple::setOS(OSType Kind) {
590   setOSName(getOSTypeName(Kind));
591 }
592
593 void Triple::setEnvironment(EnvironmentType Kind) {
594   setEnvironmentName(getEnvironmentTypeName(Kind));
595 }
596
597 void Triple::setArchName(StringRef Str) {
598   // Work around a miscompilation bug for Twines in gcc 4.0.3.
599   SmallString<64> Triple;
600   Triple += Str;
601   Triple += "-";
602   Triple += getVendorName();
603   Triple += "-";
604   Triple += getOSAndEnvironmentName();
605   setTriple(Triple.str());
606 }
607
608 void Triple::setVendorName(StringRef Str) {
609   setTriple(getArchName() + "-" + Str + "-" + getOSAndEnvironmentName());
610 }
611
612 void Triple::setOSName(StringRef Str) {
613   if (hasEnvironment())
614     setTriple(getArchName() + "-" + getVendorName() + "-" + Str +
615               "-" + getEnvironmentName());
616   else
617     setTriple(getArchName() + "-" + getVendorName() + "-" + Str);
618 }
619
620 void Triple::setEnvironmentName(StringRef Str) {
621   setTriple(getArchName() + "-" + getVendorName() + "-" + getOSName() +
622             "-" + Str);
623 }
624
625 void Triple::setOSAndEnvironmentName(StringRef Str) {
626   setTriple(getArchName() + "-" + getVendorName() + "-" + Str);
627 }