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