]> CyberLeo.Net >> Repos - FreeBSD/stable/9.git/blob - contrib/llvm/include/llvm/ADT/Triple.h
MFC r244628:
[FreeBSD/stable/9.git] / contrib / llvm / include / llvm / ADT / Triple.h
1 //===-- llvm/ADT/Triple.h - Target triple helper class ----------*- C++ -*-===//
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 #ifndef LLVM_ADT_TRIPLE_H
11 #define LLVM_ADT_TRIPLE_H
12
13 #include "llvm/ADT/Twine.h"
14
15 // Some system headers or GCC predefined macros conflict with identifiers in
16 // this file.  Undefine them here.
17 #undef mips
18 #undef sparc
19
20 namespace llvm {
21
22 /// Triple - Helper class for working with target triples.
23 ///
24 /// Target triples are strings in the canonical form:
25 ///   ARCHITECTURE-VENDOR-OPERATING_SYSTEM
26 /// or
27 ///   ARCHITECTURE-VENDOR-OPERATING_SYSTEM-ENVIRONMENT
28 ///
29 /// This class is used for clients which want to support arbitrary
30 /// target triples, but also want to implement certain special
31 /// behavior for particular targets. This class isolates the mapping
32 /// from the components of the target triple to well known IDs.
33 ///
34 /// At its core the Triple class is designed to be a wrapper for a triple
35 /// string; the constructor does not change or normalize the triple string.
36 /// Clients that need to handle the non-canonical triples that users often
37 /// specify should use the normalize method.
38 ///
39 /// See autoconf/config.guess for a glimpse into what triples look like in
40 /// practice.
41 class Triple {
42 public:
43   enum ArchType {
44     UnknownArch,
45
46     arm,     // ARM; arm, armv.*, xscale
47     cellspu, // CellSPU: spu, cellspu
48     hexagon, // Hexagon: hexagon
49     mips,    // MIPS: mips, mipsallegrex
50     mipsel,  // MIPSEL: mipsel, mipsallegrexel
51     mips64,  // MIPS64: mips64
52     mips64el,// MIPS64EL: mips64el
53     msp430,  // MSP430: msp430
54     ppc,     // PPC: powerpc
55     ppc64,   // PPC64: powerpc64, ppu
56     r600,    // R600: AMD GPUs HD2XXX - HD6XXX
57     sparc,   // Sparc: sparc
58     sparcv9, // Sparcv9: Sparcv9
59     tce,     // TCE (http://tce.cs.tut.fi/): tce
60     thumb,   // Thumb: thumb, thumbv.*
61     x86,     // X86: i[3-9]86
62     x86_64,  // X86-64: amd64, x86_64
63     xcore,   // XCore: xcore
64     mblaze,  // MBlaze: mblaze
65     nvptx,   // NVPTX: 32-bit
66     nvptx64, // NVPTX: 64-bit
67     le32,    // le32: generic little-endian 32-bit CPU (PNaCl / Emscripten)
68     amdil,   // amdil: amd IL
69     spir,    // SPIR: standard portable IR for OpenCL 32-bit version
70     spir64   // SPIR: standard portable IR for OpenCL 64-bit version
71   };
72   enum VendorType {
73     UnknownVendor,
74
75     Apple,
76     PC,
77     SCEI,
78     BGP,
79     BGQ,
80     Freescale,
81     IBM
82   };
83   enum OSType {
84     UnknownOS,
85
86     AuroraUX,
87     Cygwin,
88     Darwin,
89     DragonFly,
90     FreeBSD,
91     IOS,
92     KFreeBSD,
93     Linux,
94     Lv2,        // PS3
95     MacOSX,
96     MinGW32,    // i*86-pc-mingw32, *-w64-mingw32
97     NetBSD,
98     OpenBSD,
99     Solaris,
100     Win32,
101     Haiku,
102     Minix,
103     RTEMS,
104     NativeClient,
105     CNK,         // BG/P Compute-Node Kernel
106     Bitrig,
107     AIX
108   };
109   enum EnvironmentType {
110     UnknownEnvironment,
111
112     GNU,
113     GNUEABI,
114     GNUEABIHF,
115     EABI,
116     MachO,
117     Android,
118     ELF
119   };
120
121 private:
122   std::string Data;
123
124   /// The parsed arch type.
125   ArchType Arch;
126
127   /// The parsed vendor type.
128   VendorType Vendor;
129
130   /// The parsed OS type.
131   OSType OS;
132
133   /// The parsed Environment type.
134   EnvironmentType Environment;
135
136 public:
137   /// @name Constructors
138   /// @{
139
140   /// \brief Default constructor is the same as an empty string and leaves all
141   /// triple fields unknown.
142   Triple() : Data(), Arch(), Vendor(), OS(), Environment() {}
143
144   explicit Triple(const Twine &Str);
145   Triple(const Twine &ArchStr, const Twine &VendorStr, const Twine &OSStr);
146   Triple(const Twine &ArchStr, const Twine &VendorStr, const Twine &OSStr,
147          const Twine &EnvironmentStr);
148
149   /// @}
150   /// @name Normalization
151   /// @{
152
153   /// normalize - Turn an arbitrary machine specification into the canonical
154   /// triple form (or something sensible that the Triple class understands if
155   /// nothing better can reasonably be done).  In particular, it handles the
156   /// common case in which otherwise valid components are in the wrong order.
157   static std::string normalize(StringRef Str);
158
159   /// @}
160   /// @name Typed Component Access
161   /// @{
162
163   /// getArch - Get the parsed architecture type of this triple.
164   ArchType getArch() const { return Arch; }
165
166   /// getVendor - Get the parsed vendor type of this triple.
167   VendorType getVendor() const { return Vendor; }
168
169   /// getOS - Get the parsed operating system type of this triple.
170   OSType getOS() const { return OS; }
171
172   /// hasEnvironment - Does this triple have the optional environment
173   /// (fourth) component?
174   bool hasEnvironment() const {
175     return getEnvironmentName() != "";
176   }
177
178   /// getEnvironment - Get the parsed environment type of this triple.
179   EnvironmentType getEnvironment() const { return Environment; }
180
181   /// getOSVersion - Parse the version number from the OS name component of the
182   /// triple, if present.
183   ///
184   /// For example, "fooos1.2.3" would return (1, 2, 3).
185   ///
186   /// If an entry is not defined, it will be returned as 0.
187   void getOSVersion(unsigned &Major, unsigned &Minor, unsigned &Micro) const;
188
189   /// getOSMajorVersion - Return just the major version number, this is
190   /// specialized because it is a common query.
191   unsigned getOSMajorVersion() const {
192     unsigned Maj, Min, Micro;
193     getOSVersion(Maj, Min, Micro);
194     return Maj;
195   }
196
197   /// getMacOSXVersion - Parse the version number as with getOSVersion and then
198   /// translate generic "darwin" versions to the corresponding OS X versions.
199   /// This may also be called with IOS triples but the OS X version number is
200   /// just set to a constant 10.4.0 in that case.  Returns true if successful.
201   bool getMacOSXVersion(unsigned &Major, unsigned &Minor,
202                         unsigned &Micro) const;
203
204   /// getiOSVersion - Parse the version number as with getOSVersion.  This should
205   /// only be called with IOS triples.
206   void getiOSVersion(unsigned &Major, unsigned &Minor,
207                      unsigned &Micro) const;
208
209   /// @}
210   /// @name Direct Component Access
211   /// @{
212
213   const std::string &str() const { return Data; }
214
215   const std::string &getTriple() const { return Data; }
216
217   /// getArchName - Get the architecture (first) component of the
218   /// triple.
219   StringRef getArchName() const;
220
221   /// getVendorName - Get the vendor (second) component of the triple.
222   StringRef getVendorName() const;
223
224   /// getOSName - Get the operating system (third) component of the
225   /// triple.
226   StringRef getOSName() const;
227
228   /// getEnvironmentName - Get the optional environment (fourth)
229   /// component of the triple, or "" if empty.
230   StringRef getEnvironmentName() const;
231
232   /// getOSAndEnvironmentName - Get the operating system and optional
233   /// environment components as a single string (separated by a '-'
234   /// if the environment component is present).
235   StringRef getOSAndEnvironmentName() const;
236
237   /// @}
238   /// @name Convenience Predicates
239   /// @{
240
241   /// \brief Test whether the architecture is 64-bit
242   ///
243   /// Note that this tests for 64-bit pointer width, and nothing else. Note
244   /// that we intentionally expose only three predicates, 64-bit, 32-bit, and
245   /// 16-bit. The inner details of pointer width for particular architectures
246   /// is not summed up in the triple, and so only a coarse grained predicate
247   /// system is provided.
248   bool isArch64Bit() const;
249
250   /// \brief Test whether the architecture is 32-bit
251   ///
252   /// Note that this tests for 32-bit pointer width, and nothing else.
253   bool isArch32Bit() const;
254
255   /// \brief Test whether the architecture is 16-bit
256   ///
257   /// Note that this tests for 16-bit pointer width, and nothing else.
258   bool isArch16Bit() const;
259
260   /// isOSVersionLT - Helper function for doing comparisons against version
261   /// numbers included in the target triple.
262   bool isOSVersionLT(unsigned Major, unsigned Minor = 0,
263                      unsigned Micro = 0) const {
264     unsigned LHS[3];
265     getOSVersion(LHS[0], LHS[1], LHS[2]);
266
267     if (LHS[0] != Major)
268       return LHS[0] < Major;
269     if (LHS[1] != Minor)
270       return LHS[1] < Minor;
271     if (LHS[2] != Micro)
272       return LHS[1] < Micro;
273
274     return false;
275   }
276
277   /// isMacOSXVersionLT - Comparison function for checking OS X version
278   /// compatibility, which handles supporting skewed version numbering schemes
279   /// used by the "darwin" triples.
280   unsigned isMacOSXVersionLT(unsigned Major, unsigned Minor = 0,
281                              unsigned Micro = 0) const {
282     assert(isMacOSX() && "Not an OS X triple!");
283
284     // If this is OS X, expect a sane version number.
285     if (getOS() == Triple::MacOSX)
286       return isOSVersionLT(Major, Minor, Micro);
287
288     // Otherwise, compare to the "Darwin" number.
289     assert(Major == 10 && "Unexpected major version");
290     return isOSVersionLT(Minor + 4, Micro, 0);
291   }
292
293   /// isMacOSX - Is this a Mac OS X triple. For legacy reasons, we support both
294   /// "darwin" and "osx" as OS X triples.
295   bool isMacOSX() const {
296     return getOS() == Triple::Darwin || getOS() == Triple::MacOSX;
297   }
298
299   /// isOSDarwin - Is this a "Darwin" OS (OS X or iOS).
300   bool isOSDarwin() const {
301     return isMacOSX() || getOS() == Triple::IOS;
302   }
303
304   /// \brief Tests for either Cygwin or MinGW OS
305   bool isOSCygMing() const {
306     return getOS() == Triple::Cygwin || getOS() == Triple::MinGW32;
307   }
308
309   /// isOSWindows - Is this a "Windows" OS.
310   bool isOSWindows() const {
311     return getOS() == Triple::Win32 || isOSCygMing();
312   }
313
314   /// \brief Tests whether the OS uses the ELF binary format.
315   bool isOSBinFormatELF() const {
316     return !isOSDarwin() && !isOSWindows();
317   }
318
319   /// \brief Tests whether the OS uses the COFF binary format.
320   bool isOSBinFormatCOFF() const {
321     return isOSWindows();
322   }
323
324   /// \brief Tests whether the environment is MachO.
325   // FIXME: Should this be an OSBinFormat predicate?
326   bool isEnvironmentMachO() const {
327     return getEnvironment() == Triple::MachO || isOSDarwin();
328   }
329
330   /// @}
331   /// @name Mutators
332   /// @{
333
334   /// setArch - Set the architecture (first) component of the triple
335   /// to a known type.
336   void setArch(ArchType Kind);
337
338   /// setVendor - Set the vendor (second) component of the triple to a
339   /// known type.
340   void setVendor(VendorType Kind);
341
342   /// setOS - Set the operating system (third) component of the triple
343   /// to a known type.
344   void setOS(OSType Kind);
345
346   /// setEnvironment - Set the environment (fourth) component of the triple
347   /// to a known type.
348   void setEnvironment(EnvironmentType Kind);
349
350   /// setTriple - Set all components to the new triple \p Str.
351   void setTriple(const Twine &Str);
352
353   /// setArchName - Set the architecture (first) component of the
354   /// triple by name.
355   void setArchName(StringRef Str);
356
357   /// setVendorName - Set the vendor (second) component of the triple
358   /// by name.
359   void setVendorName(StringRef Str);
360
361   /// setOSName - Set the operating system (third) component of the
362   /// triple by name.
363   void setOSName(StringRef Str);
364
365   /// setEnvironmentName - Set the optional environment (fourth)
366   /// component of the triple by name.
367   void setEnvironmentName(StringRef Str);
368
369   /// setOSAndEnvironmentName - Set the operating system and optional
370   /// environment components with a single string.
371   void setOSAndEnvironmentName(StringRef Str);
372
373   /// getArchNameForAssembler - Get an architecture name that is understood by
374   /// the target assembler.
375   const char *getArchNameForAssembler();
376
377   /// @}
378   /// @name Helpers to build variants of a particular triple.
379   /// @{
380
381   /// \brief Form a triple with a 32-bit variant of the current architecture.
382   ///
383   /// This can be used to move across "families" of architectures where useful.
384   ///
385   /// \returns A new triple with a 32-bit architecture or an unknown
386   ///          architecture if no such variant can be found.
387   llvm::Triple get32BitArchVariant() const;
388
389   /// \brief Form a triple with a 64-bit variant of the current architecture.
390   ///
391   /// This can be used to move across "families" of architectures where useful.
392   ///
393   /// \returns A new triple with a 64-bit architecture or an unknown
394   ///          architecture if no such variant can be found.
395   llvm::Triple get64BitArchVariant() const;
396
397   /// @}
398   /// @name Static helpers for IDs.
399   /// @{
400
401   /// getArchTypeName - Get the canonical name for the \p Kind architecture.
402   static const char *getArchTypeName(ArchType Kind);
403
404   /// getArchTypePrefix - Get the "prefix" canonical name for the \p Kind
405   /// architecture. This is the prefix used by the architecture specific
406   /// builtins, and is suitable for passing to \see
407   /// Intrinsic::getIntrinsicForGCCBuiltin().
408   ///
409   /// \return - The architecture prefix, or 0 if none is defined.
410   static const char *getArchTypePrefix(ArchType Kind);
411
412   /// getVendorTypeName - Get the canonical name for the \p Kind vendor.
413   static const char *getVendorTypeName(VendorType Kind);
414
415   /// getOSTypeName - Get the canonical name for the \p Kind operating system.
416   static const char *getOSTypeName(OSType Kind);
417
418   /// getEnvironmentTypeName - Get the canonical name for the \p Kind
419   /// environment.
420   static const char *getEnvironmentTypeName(EnvironmentType Kind);
421
422   /// @}
423   /// @name Static helpers for converting alternate architecture names.
424   /// @{
425
426   /// getArchTypeForLLVMName - The canonical type for the given LLVM
427   /// architecture name (e.g., "x86").
428   static ArchType getArchTypeForLLVMName(StringRef Str);
429
430   /// @}
431 };
432
433 } // End llvm namespace
434
435
436 #endif