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