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