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