20191900dbb3f42ec6f44a60a6e06447962bae98
[oota-llvm.git] / 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/StringRef.h"
14 #include <string>
15
16 // Some system headers or GCC predefined macros conflict with identifiers in
17 // this file.  Undefine them here.
18 #undef mips
19 #undef sparc
20
21 namespace llvm {
22 class StringRef;
23 class Twine;
24
25 /// Triple - Helper class for working with target triples.
26 ///
27 /// Target triples are strings in the canonical form:
28 ///   ARCHITECTURE-VENDOR-OPERATING_SYSTEM
29 /// or
30 ///   ARCHITECTURE-VENDOR-OPERATING_SYSTEM-ENVIRONMENT
31 ///
32 /// This class is used for clients which want to support arbitrary
33 /// target triples, but also want to implement certain special
34 /// behavior for particular targets. This class isolates the mapping
35 /// from the components of the target triple to well known IDs.
36 ///
37 /// At its core the Triple class is designed to be a wrapper for a triple
38 /// string; the constructor does not change or normalize the triple string.
39 /// Clients that need to handle the non-canonical triples that users often
40 /// specify should use the normalize method.
41 ///
42 /// See autoconf/config.guess for a glimpse into what triples look like in
43 /// practice.
44 class Triple {
45 public:
46   enum ArchType {
47     UnknownArch,
48
49     alpha,   // Alpha: alpha
50     arm,     // ARM; arm, armv.*, xscale
51     bfin,    // Blackfin: bfin
52     cellspu, // CellSPU: spu, cellspu
53     mips,    // MIPS: mips, mipsallegrex
54     mipsel,  // MIPSEL: mipsel, mipsallegrexel, psp
55     msp430,  // MSP430: msp430
56     ppc,     // PPC: powerpc
57     ppc64,   // PPC64: powerpc64, ppu
58     sparc,   // Sparc: sparc
59     sparcv9, // Sparcv9: Sparcv9
60     systemz, // SystemZ: s390x
61     tce,     // TCE (http://tce.cs.tut.fi/): tce
62     thumb,   // Thumb: thumb, thumbv.*
63     x86,     // X86: i[3-9]86
64     x86_64,  // X86-64: amd64, x86_64
65     xcore,   // XCore: xcore
66     mblaze,  // MBlaze: mblaze
67     ptx,     // PTX: ptx
68
69     InvalidArch
70   };
71   enum VendorType {
72     UnknownVendor,
73
74     Apple,
75     PC,
76     NoVendor
77   };
78   enum OSType {
79     UnknownOS,
80
81     AuroraUX,
82     Cygwin,
83     Darwin,
84     DragonFly,
85     FreeBSD,
86     Linux,
87     Lv2,        // PS3
88     MinGW32,
89     MinGW64,
90     NetBSD,
91     OpenBSD,
92     Psp,
93     Solaris,
94     Win32,
95     Haiku,
96     Minix,
97     NoOS
98   };
99   enum EnvironmentType {
100     UnknownEnvironment,
101
102     GNU,
103     GNUEABI,
104     EABI,
105     MachO
106   };
107
108 private:
109   std::string Data;
110
111   /// The parsed arch type (or InvalidArch if uninitialized).
112   mutable ArchType Arch;
113
114   /// The parsed vendor type.
115   mutable VendorType Vendor;
116
117   /// The parsed OS type.
118   mutable OSType OS;
119
120   /// The parsed Environment type.
121   mutable EnvironmentType Environment;
122
123   bool isInitialized() const { return Arch != InvalidArch; }
124   static ArchType ParseArch(StringRef ArchName);
125   static VendorType ParseVendor(StringRef VendorName);
126   static OSType ParseOS(StringRef OSName);
127   static EnvironmentType ParseEnvironment(StringRef EnvironmentName);
128   void Parse() const;
129
130 public:
131   /// @name Constructors
132   /// @{
133
134   Triple() : Data(), Arch(InvalidArch) {}
135   explicit Triple(StringRef Str) : Data(Str), Arch(InvalidArch) {}
136   explicit Triple(StringRef ArchStr, StringRef VendorStr, StringRef OSStr)
137     : Data(ArchStr), Arch(InvalidArch) {
138     Data += '-';
139     Data += VendorStr;
140     Data += '-';
141     Data += OSStr;
142   }
143
144   explicit Triple(StringRef ArchStr, StringRef VendorStr, StringRef OSStr,
145     StringRef EnvironmentStr)
146     : Data(ArchStr), Arch(InvalidArch) {
147     Data += '-';
148     Data += VendorStr;
149     Data += '-';
150     Data += OSStr;
151     Data += '-';
152     Data += EnvironmentStr;
153   }
154
155   /// @}
156   /// @name Normalization
157   /// @{
158
159   /// normalize - Turn an arbitrary machine specification into the canonical
160   /// triple form (or something sensible that the Triple class understands if
161   /// nothing better can reasonably be done).  In particular, it handles the
162   /// common case in which otherwise valid components are in the wrong order.
163   static std::string normalize(StringRef Str);
164
165   /// @}
166   /// @name Typed Component Access
167   /// @{
168
169   /// getArch - Get the parsed architecture type of this triple.
170   ArchType getArch() const {
171     if (!isInitialized()) Parse();
172     return Arch;
173   }
174
175   /// getVendor - Get the parsed vendor type of this triple.
176   VendorType getVendor() const {
177     if (!isInitialized()) Parse();
178     return Vendor;
179   }
180
181   /// getOS - Get the parsed operating system type of this triple.
182   OSType getOS() const {
183     if (!isInitialized()) Parse();
184     return OS;
185   }
186
187   /// hasEnvironment - Does this triple have the optional environment
188   /// (fourth) component?
189   bool hasEnvironment() const {
190     return getEnvironmentName() != "";
191   }
192
193   /// getEnvironment - Get the parsed environment type of this triple.
194   EnvironmentType getEnvironment() const {
195     if (!isInitialized()) Parse();
196     return Environment;
197   }
198
199   /// @}
200   /// @name Direct Component Access
201   /// @{
202
203   const std::string &str() const { return Data; }
204
205   const std::string &getTriple() const { return Data; }
206
207   /// getArchName - Get the architecture (first) component of the
208   /// triple.
209   StringRef getArchName() const;
210
211   /// getVendorName - Get the vendor (second) component of the triple.
212   StringRef getVendorName() const;
213
214   /// getOSName - Get the operating system (third) component of the
215   /// triple.
216   StringRef getOSName() const;
217
218   /// getEnvironmentName - Get the optional environment (fourth)
219   /// component of the triple, or "" if empty.
220   StringRef getEnvironmentName() const;
221
222   /// getOSAndEnvironmentName - Get the operating system and optional
223   /// environment components as a single string (separated by a '-'
224   /// if the environment component is present).
225   StringRef getOSAndEnvironmentName() const;
226
227
228   /// getDarwinNumber - Parse the 'darwin number' out of the specific target
229   /// triple.  For example, if we have darwin8.5 return 8,5,0.  If any entry is
230   /// not defined, return 0's.  This requires that the triple have an OSType of
231   /// darwin before it is called.
232   void getDarwinNumber(unsigned &Maj, unsigned &Min, unsigned &Revision) const;
233
234   /// getDarwinMajorNumber - Return just the major version number, this is
235   /// specialized because it is a common query.
236   unsigned getDarwinMajorNumber() const {
237     unsigned Maj, Min, Rev;
238     getDarwinNumber(Maj, Min, Rev);
239     return Maj;
240   }
241
242   /// @}
243   /// @name Mutators
244   /// @{
245
246   /// setArch - Set the architecture (first) component of the triple
247   /// to a known type.
248   void setArch(ArchType Kind);
249
250   /// setVendor - Set the vendor (second) component of the triple to a
251   /// known type.
252   void setVendor(VendorType Kind);
253
254   /// setOS - Set the operating system (third) component of the triple
255   /// to a known type.
256   void setOS(OSType Kind);
257
258   /// setEnvironment - Set the environment (fourth) component of the triple
259   /// to a known type.
260   void setEnvironment(EnvironmentType Kind);
261
262   /// setTriple - Set all components to the new triple \arg Str.
263   void setTriple(const Twine &Str);
264
265   /// setArchName - Set the architecture (first) component of the
266   /// triple by name.
267   void setArchName(StringRef Str);
268
269   /// setVendorName - Set the vendor (second) component of the triple
270   /// by name.
271   void setVendorName(StringRef Str);
272
273   /// setOSName - Set the operating system (third) component of the
274   /// triple by name.
275   void setOSName(StringRef Str);
276
277   /// setEnvironmentName - Set the optional environment (fourth)
278   /// component of the triple by name.
279   void setEnvironmentName(StringRef Str);
280
281   /// setOSAndEnvironmentName - Set the operating system and optional
282   /// environment components with a single string.
283   void setOSAndEnvironmentName(StringRef Str);
284
285   /// getArchNameForAssembler - Get an architecture name that is understood by
286   /// the target assembler.
287   const char *getArchNameForAssembler();
288
289   /// @}
290   /// @name Static helpers for IDs.
291   /// @{
292
293   /// getArchTypeName - Get the canonical name for the \arg Kind
294   /// architecture.
295   static const char *getArchTypeName(ArchType Kind);
296
297   /// getArchTypePrefix - Get the "prefix" canonical name for the \arg Kind
298   /// architecture. This is the prefix used by the architecture specific
299   /// builtins, and is suitable for passing to \see
300   /// Intrinsic::getIntrinsicForGCCBuiltin().
301   ///
302   /// \return - The architecture prefix, or 0 if none is defined.
303   static const char *getArchTypePrefix(ArchType Kind);
304
305   /// getVendorTypeName - Get the canonical name for the \arg Kind
306   /// vendor.
307   static const char *getVendorTypeName(VendorType Kind);
308
309   /// getOSTypeName - Get the canonical name for the \arg Kind operating
310   /// system.
311   static const char *getOSTypeName(OSType Kind);
312
313   /// getEnvironmentTypeName - Get the canonical name for the \arg Kind
314   /// environment.
315   static const char *getEnvironmentTypeName(EnvironmentType Kind);
316
317   /// @}
318   /// @name Static helpers for converting alternate architecture names.
319   /// @{
320
321   /// getArchTypeForLLVMName - The canonical type for the given LLVM
322   /// architecture name (e.g., "x86").
323   static ArchType getArchTypeForLLVMName(StringRef Str);
324
325   /// getArchTypeForDarwinArchName - Get the architecture type for a "Darwin"
326   /// architecture name, for example as accepted by "gcc -arch" (see also
327   /// arch(3)).
328   static ArchType getArchTypeForDarwinArchName(StringRef Str);
329
330   /// @}
331 };
332
333 } // End llvm namespace
334
335
336 #endif