blob: abfaecc279099fe20f7421150fb7c0d05dcc7c82 [file] [log] [blame]
Daniel Dunbar23e97b02009-04-01 21:53:23 +00001//===--- 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"
Jeffrey Yasskin0b228732009-10-06 21:45:26 +000011#include "llvm/ADT/SmallString.h"
Chandler Carruth06accda2012-02-12 09:27:38 +000012#include "llvm/ADT/StringSwitch.h"
Duncan Sands5754a452010-09-16 08:25:48 +000013#include "llvm/ADT/STLExtras.h"
David Blaikie4d6ccb52012-01-20 21:51:11 +000014#include "llvm/Support/ErrorHandling.h"
Mikhail Glushenkov70748752009-04-02 01:11:37 +000015#include <cstring>
Daniel Dunbar23e97b02009-04-01 21:53:23 +000016using namespace llvm;
17
Daniel Dunbar23e97b02009-04-01 21:53:23 +000018const char *Triple::getArchTypeName(ArchType Kind) {
19 switch (Kind) {
Daniel Dunbar23e97b02009-04-01 21:53:23 +000020 case UnknownArch: return "unknown";
Jim Grosbache509aa92010-12-17 02:10:59 +000021
Daniel Dunbar6337f152009-07-26 04:23:03 +000022 case arm: return "arm";
23 case cellspu: return "cellspu";
Tony Linthicumb4b54152011-12-12 21:14:40 +000024 case hexagon: return "hexagon";
Daniel Dunbar6337f152009-07-26 04:23:03 +000025 case mips: return "mips";
26 case mipsel: return "mipsel";
Akira Hatanaka70303682011-09-20 18:09:37 +000027 case mips64: return "mips64";
28 case mips64el:return "mips64el";
Daniel Dunbar6337f152009-07-26 04:23:03 +000029 case msp430: return "msp430";
Daniel Dunbar8c2f1d72009-07-26 04:52:45 +000030 case ppc64: return "powerpc64";
31 case ppc: return "powerpc";
Anton Korobeynikov74156592012-03-09 10:09:36 +000032 case r600: return "r600";
Daniel Dunbar6337f152009-07-26 04:23:03 +000033 case sparc: return "sparc";
Chris Lattner87c06d62010-02-04 06:34:01 +000034 case sparcv9: return "sparcv9";
Eli Friedman74db89e2009-08-19 20:46:03 +000035 case tce: return "tce";
Daniel Dunbar6337f152009-07-26 04:23:03 +000036 case thumb: return "thumb";
37 case x86: return "i386";
38 case x86_64: return "x86_64";
Daniel Dunbar8c2f1d72009-07-26 04:52:45 +000039 case xcore: return "xcore";
Wesley Pecka70f28c2010-02-23 19:15:24 +000040 case mblaze: return "mblaze";
Justin Holewinski49683f32012-05-04 20:18:50 +000041 case nvptx: return "nvptx";
42 case nvptx64: return "nvptx64";
Ivan Krasin38fb2db2011-08-23 16:59:00 +000043 case le32: return "le32";
Tobias Grosser05d71382011-08-29 15:44:55 +000044 case amdil: return "amdil";
Micah Villmowe53d6052012-10-01 17:01:31 +000045 case spir: return "spir";
Daniel Dunbar23e97b02009-04-01 21:53:23 +000046 }
47
David Blaikie4d6ccb52012-01-20 21:51:11 +000048 llvm_unreachable("Invalid ArchType!");
Daniel Dunbar23e97b02009-04-01 21:53:23 +000049}
50
Daniel Dunbar688b55b2009-08-24 09:53:06 +000051const char *Triple::getArchTypePrefix(ArchType Kind) {
52 switch (Kind) {
53 default:
54 return 0;
55
Daniel Dunbar688b55b2009-08-24 09:53:06 +000056 case arm:
57 case thumb: return "arm";
58
Daniel Dunbar688b55b2009-08-24 09:53:06 +000059 case cellspu: return "spu";
60
61 case ppc64:
62 case ppc: return "ppc";
63
Wesley Pecka70f28c2010-02-23 19:15:24 +000064 case mblaze: return "mblaze";
65
Benjamin Kramerd5dbc8c2012-06-28 19:09:53 +000066 case mips:
67 case mipsel:
68 case mips64:
69 case mips64el:return "mips";
70
71 case hexagon: return "hexagon";
Tony Linthicumb4b54152011-12-12 21:14:40 +000072
Anton Korobeynikov74156592012-03-09 10:09:36 +000073 case r600: return "r600";
74
Chris Lattner87c06d62010-02-04 06:34:01 +000075 case sparcv9:
Daniel Dunbar688b55b2009-08-24 09:53:06 +000076 case sparc: return "sparc";
77
78 case x86:
79 case x86_64: return "x86";
Nick Lewyckyf7a3c502010-09-07 18:14:24 +000080
Daniel Dunbar688b55b2009-08-24 09:53:06 +000081 case xcore: return "xcore";
Nick Lewyckyf7a3c502010-09-07 18:14:24 +000082
Justin Holewinski49683f32012-05-04 20:18:50 +000083 case nvptx: return "nvptx";
84 case nvptx64: return "nvptx";
Ivan Krasin38fb2db2011-08-23 16:59:00 +000085 case le32: return "le32";
Tobias Grosser05d71382011-08-29 15:44:55 +000086 case amdil: return "amdil";
Micah Villmowe53d6052012-10-01 17:01:31 +000087 case spir: return "spir";
Daniel Dunbar688b55b2009-08-24 09:53:06 +000088 }
89}
90
Daniel Dunbar23e97b02009-04-01 21:53:23 +000091const char *Triple::getVendorTypeName(VendorType Kind) {
92 switch (Kind) {
93 case UnknownVendor: return "unknown";
94
95 case Apple: return "apple";
Chris Lattner56ce0f42009-08-14 18:48:13 +000096 case PC: return "pc";
John Thompson6046cff2011-03-15 21:51:56 +000097 case SCEI: return "scei";
Hal Finkela47406c2012-04-02 18:31:33 +000098 case BGP: return "bgp";
99 case BGQ: return "bgq";
Hal Finkeld939cd62012-08-28 02:10:30 +0000100 case Freescale: return "fsl";
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000101 }
102
David Blaikie4d6ccb52012-01-20 21:51:11 +0000103 llvm_unreachable("Invalid VendorType!");
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000104}
105
106const char *Triple::getOSTypeName(OSType Kind) {
107 switch (Kind) {
108 case UnknownOS: return "unknown";
109
Duncan Sands852cd112009-06-19 14:40:01 +0000110 case AuroraUX: return "auroraux";
Daniel Dunbar6337f152009-07-26 04:23:03 +0000111 case Cygwin: return "cygwin";
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000112 case Darwin: return "darwin";
Daniel Dunbar7eaf0572009-05-22 02:24:11 +0000113 case DragonFly: return "dragonfly";
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000114 case FreeBSD: return "freebsd";
Daniel Dunbar0dde4c02011-04-19 20:19:27 +0000115 case IOS: return "ios";
Duncan Sands652b48b2011-07-26 15:30:04 +0000116 case KFreeBSD: return "kfreebsd";
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000117 case Linux: return "linux";
Edward O'Callaghancc9fa812009-11-19 11:59:00 +0000118 case Lv2: return "lv2";
Daniel Dunbar1af39472011-04-19 23:34:12 +0000119 case MacOSX: return "macosx";
Daniel Dunbar6337f152009-07-26 04:23:03 +0000120 case MinGW32: return "mingw32";
Chris Lattnerb8ac8412009-07-13 20:22:23 +0000121 case NetBSD: return "netbsd";
Duncan Sandscd1267d2009-06-29 13:36:13 +0000122 case OpenBSD: return "openbsd";
Daniel Dunbarfdb0b7b2009-08-18 04:43:27 +0000123 case Solaris: return "solaris";
Daniel Dunbar6337f152009-07-26 04:23:03 +0000124 case Win32: return "win32";
Chris Lattnera43fc342009-10-16 02:06:30 +0000125 case Haiku: return "haiku";
Chris Lattner29269d02010-07-07 15:52:27 +0000126 case Minix: return "minix";
Douglas Gregor6ced1d12011-07-01 22:41:06 +0000127 case RTEMS: return "rtems";
Ivan Krasinfb234622011-08-18 22:54:21 +0000128 case NativeClient: return "nacl";
Hal Finkela47406c2012-04-02 18:31:33 +0000129 case CNK: return "cnk";
Eric Christopherb0f67592012-08-06 20:52:18 +0000130 case Bitrig: return "bitrig";
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000131 }
132
David Blaikie4d6ccb52012-01-20 21:51:11 +0000133 llvm_unreachable("Invalid OSType");
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000134}
135
Duncan Sands5754a452010-09-16 08:25:48 +0000136const char *Triple::getEnvironmentTypeName(EnvironmentType Kind) {
137 switch (Kind) {
138 case UnknownEnvironment: return "unknown";
Renato Golin859f8182011-01-21 18:25:47 +0000139 case GNU: return "gnu";
Rafael Espindola8887a0f2012-01-18 23:35:29 +0000140 case GNUEABIHF: return "gnueabihf";
Renato Golin859f8182011-01-21 18:25:47 +0000141 case GNUEABI: return "gnueabi";
142 case EABI: return "eabi";
Evan Cheng2bffee22011-02-01 01:14:13 +0000143 case MachO: return "macho";
Logan Chien43bf7092012-09-02 09:29:46 +0000144 case Android: return "android";
Andrew Kaylor7bbd6e32012-10-02 18:38:34 +0000145 case ELF: return "elf";
Duncan Sands5754a452010-09-16 08:25:48 +0000146 }
147
David Blaikie4d6ccb52012-01-20 21:51:11 +0000148 llvm_unreachable("Invalid EnvironmentType!");
Duncan Sands5754a452010-09-16 08:25:48 +0000149}
150
Daniel Dunbar2928c832009-11-06 10:58:06 +0000151Triple::ArchType Triple::getArchTypeForLLVMName(StringRef Name) {
Chandler Carruth06accda2012-02-12 09:27:38 +0000152 return StringSwitch<Triple::ArchType>(Name)
153 .Case("arm", arm)
154 .Case("cellspu", cellspu)
155 .Case("mips", mips)
156 .Case("mipsel", mipsel)
157 .Case("mips64", mips64)
158 .Case("mips64el", mips64el)
159 .Case("msp430", msp430)
160 .Case("ppc64", ppc64)
161 .Case("ppc32", ppc)
162 .Case("ppc", ppc)
163 .Case("mblaze", mblaze)
Anton Korobeynikov74156592012-03-09 10:09:36 +0000164 .Case("r600", r600)
Chandler Carruth06accda2012-02-12 09:27:38 +0000165 .Case("hexagon", hexagon)
166 .Case("sparc", sparc)
167 .Case("sparcv9", sparcv9)
168 .Case("tce", tce)
169 .Case("thumb", thumb)
170 .Case("x86", x86)
171 .Case("x86-64", x86_64)
172 .Case("xcore", xcore)
Justin Holewinski49683f32012-05-04 20:18:50 +0000173 .Case("nvptx", nvptx)
174 .Case("nvptx64", nvptx64)
Chandler Carruth06accda2012-02-12 09:27:38 +0000175 .Case("le32", le32)
176 .Case("amdil", amdil)
Micah Villmowe53d6052012-10-01 17:01:31 +0000177 .Case("spir", spir)
Chandler Carruth06accda2012-02-12 09:27:38 +0000178 .Default(UnknownArch);
Daniel Dunbar3c2d4bf2009-08-03 04:03:51 +0000179}
180
Daniel Dunbar2928c832009-11-06 10:58:06 +0000181Triple::ArchType Triple::getArchTypeForDarwinArchName(StringRef Str) {
Daniel Dunbarbaf9b562009-09-08 23:32:51 +0000182 // See arch(3) and llvm-gcc's driver-driver.c. We don't implement support for
183 // archs which Darwin doesn't use.
184
185 // The matching this routine does is fairly pointless, since it is neither the
186 // complete architecture list, nor a reasonable subset. The problem is that
187 // historically the driver driver accepts this and also ties its -march=
188 // handling to the architecture name, so we need to be careful before removing
189 // support for it.
190
Daniel Dunbared687882009-09-09 23:01:25 +0000191 // This code must be kept in sync with Clang's Darwin specific argument
192 // translation.
193
Chandler Carruth06accda2012-02-12 09:27:38 +0000194 return StringSwitch<ArchType>(Str)
195 .Cases("ppc", "ppc601", "ppc603", "ppc604", "ppc604e", Triple::ppc)
196 .Cases("ppc750", "ppc7400", "ppc7450", "ppc970", Triple::ppc)
197 .Case("ppc64", Triple::ppc64)
198 .Cases("i386", "i486", "i486SX", "i586", "i686", Triple::x86)
199 .Cases("pentium", "pentpro", "pentIIm3", "pentIIm5", "pentium4",
200 Triple::x86)
201 .Case("x86_64", Triple::x86_64)
202 // This is derived from the driver driver.
203 .Cases("arm", "armv4t", "armv5", "armv6", Triple::arm)
204 .Cases("armv7", "armv7f", "armv7k", "armv7s", "xscale", Triple::arm)
Anton Korobeynikov74156592012-03-09 10:09:36 +0000205 .Case("r600", Triple::r600)
Justin Holewinski49683f32012-05-04 20:18:50 +0000206 .Case("nvptx", Triple::nvptx)
207 .Case("nvptx64", Triple::nvptx64)
Chandler Carruth06accda2012-02-12 09:27:38 +0000208 .Case("amdil", Triple::amdil)
Micah Villmowe53d6052012-10-01 17:01:31 +0000209 .Case("spir", Triple::spir)
Chandler Carruth06accda2012-02-12 09:27:38 +0000210 .Default(Triple::UnknownArch);
Daniel Dunbarbaf9b562009-09-08 23:32:51 +0000211}
212
Duncan Sandsbbdca3f2010-03-24 09:05:14 +0000213// Returns architecture name that is understood by the target assembler.
Viktor Kutuzov51cdac02009-11-17 18:48:27 +0000214const char *Triple::getArchNameForAssembler() {
Daniel Dunbare1fe09f2011-04-19 21:12:05 +0000215 if (!isOSDarwin() && getVendor() != Triple::Apple)
Viktor Kutuzov51cdac02009-11-17 18:48:27 +0000216 return NULL;
217
Chandler Carruth06accda2012-02-12 09:27:38 +0000218 return StringSwitch<const char*>(getArchName())
219 .Case("i386", "i386")
220 .Case("x86_64", "x86_64")
221 .Case("powerpc", "ppc")
222 .Case("powerpc64", "ppc64")
223 .Cases("mblaze", "microblaze", "mblaze")
224 .Case("arm", "arm")
225 .Cases("armv4t", "thumbv4t", "armv4t")
226 .Cases("armv5", "armv5e", "thumbv5", "thumbv5e", "armv5")
227 .Cases("armv6", "thumbv6", "armv6")
228 .Cases("armv7", "thumbv7", "armv7")
Anton Korobeynikov74156592012-03-09 10:09:36 +0000229 .Case("r600", "r600")
Justin Holewinski49683f32012-05-04 20:18:50 +0000230 .Case("nvptx", "nvptx")
231 .Case("nvptx64", "nvptx64")
Chandler Carruth06accda2012-02-12 09:27:38 +0000232 .Case("le32", "le32")
233 .Case("amdil", "amdil")
Micah Villmowe53d6052012-10-01 17:01:31 +0000234 .Case("spir", "spir")
Chandler Carruth06accda2012-02-12 09:27:38 +0000235 .Default(NULL);
Viktor Kutuzov51cdac02009-11-17 18:48:27 +0000236}
237
Chandler Carruth4fbf6582012-02-21 08:53:32 +0000238static Triple::ArchType parseArch(StringRef ArchName) {
239 return StringSwitch<Triple::ArchType>(ArchName)
240 .Cases("i386", "i486", "i586", "i686", Triple::x86)
241 // FIXME: Do we need to support these?
242 .Cases("i786", "i886", "i986", Triple::x86)
243 .Cases("amd64", "x86_64", Triple::x86_64)
244 .Case("powerpc", Triple::ppc)
245 .Cases("powerpc64", "ppu", Triple::ppc64)
246 .Case("mblaze", Triple::mblaze)
247 .Cases("arm", "xscale", Triple::arm)
Chandler Carruth0a857712012-02-18 04:34:17 +0000248 // FIXME: It would be good to replace these with explicit names for all the
249 // various suffixes supported.
Chandler Carruth4fbf6582012-02-21 08:53:32 +0000250 .StartsWith("armv", Triple::arm)
251 .Case("thumb", Triple::thumb)
252 .StartsWith("thumbv", Triple::thumb)
253 .Cases("spu", "cellspu", Triple::cellspu)
254 .Case("msp430", Triple::msp430)
255 .Cases("mips", "mipseb", "mipsallegrex", Triple::mips)
Chandler Carruthfdf0dc92012-02-22 11:32:54 +0000256 .Cases("mipsel", "mipsallegrexel", Triple::mipsel)
Chandler Carruth4fbf6582012-02-21 08:53:32 +0000257 .Cases("mips64", "mips64eb", Triple::mips64)
258 .Case("mips64el", Triple::mips64el)
Anton Korobeynikov74156592012-03-09 10:09:36 +0000259 .Case("r600", Triple::r600)
Chandler Carruth4fbf6582012-02-21 08:53:32 +0000260 .Case("hexagon", Triple::hexagon)
261 .Case("sparc", Triple::sparc)
262 .Case("sparcv9", Triple::sparcv9)
263 .Case("tce", Triple::tce)
264 .Case("xcore", Triple::xcore)
Justin Holewinski49683f32012-05-04 20:18:50 +0000265 .Case("nvptx", Triple::nvptx)
266 .Case("nvptx64", Triple::nvptx64)
Chandler Carruth4fbf6582012-02-21 08:53:32 +0000267 .Case("le32", Triple::le32)
268 .Case("amdil", Triple::amdil)
Micah Villmowe53d6052012-10-01 17:01:31 +0000269 .Case("spir", Triple::spir)
Chandler Carruth4fbf6582012-02-21 08:53:32 +0000270 .Default(Triple::UnknownArch);
Duncan Sands335db222010-08-12 11:31:39 +0000271}
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000272
Chandler Carruth4fbf6582012-02-21 08:53:32 +0000273static Triple::VendorType parseVendor(StringRef VendorName) {
274 return StringSwitch<Triple::VendorType>(VendorName)
275 .Case("apple", Triple::Apple)
276 .Case("pc", Triple::PC)
277 .Case("scei", Triple::SCEI)
Hal Finkela47406c2012-04-02 18:31:33 +0000278 .Case("bgp", Triple::BGP)
279 .Case("bgq", Triple::BGQ)
Hal Finkeld939cd62012-08-28 02:10:30 +0000280 .Case("fsl", Triple::Freescale)
Chandler Carruth4fbf6582012-02-21 08:53:32 +0000281 .Default(Triple::UnknownVendor);
Duncan Sands335db222010-08-12 11:31:39 +0000282}
283
Chandler Carruth4fbf6582012-02-21 08:53:32 +0000284static Triple::OSType parseOS(StringRef OSName) {
285 return StringSwitch<Triple::OSType>(OSName)
286 .StartsWith("auroraux", Triple::AuroraUX)
287 .StartsWith("cygwin", Triple::Cygwin)
288 .StartsWith("darwin", Triple::Darwin)
289 .StartsWith("dragonfly", Triple::DragonFly)
290 .StartsWith("freebsd", Triple::FreeBSD)
291 .StartsWith("ios", Triple::IOS)
292 .StartsWith("kfreebsd", Triple::KFreeBSD)
293 .StartsWith("linux", Triple::Linux)
294 .StartsWith("lv2", Triple::Lv2)
295 .StartsWith("macosx", Triple::MacOSX)
296 .StartsWith("mingw32", Triple::MinGW32)
297 .StartsWith("netbsd", Triple::NetBSD)
298 .StartsWith("openbsd", Triple::OpenBSD)
Chandler Carruth4fbf6582012-02-21 08:53:32 +0000299 .StartsWith("solaris", Triple::Solaris)
300 .StartsWith("win32", Triple::Win32)
301 .StartsWith("haiku", Triple::Haiku)
302 .StartsWith("minix", Triple::Minix)
303 .StartsWith("rtems", Triple::RTEMS)
304 .StartsWith("nacl", Triple::NativeClient)
Hal Finkela47406c2012-04-02 18:31:33 +0000305 .StartsWith("cnk", Triple::CNK)
Eric Christopherb0f67592012-08-06 20:52:18 +0000306 .StartsWith("bitrig", Triple::Bitrig)
Chandler Carruth4fbf6582012-02-21 08:53:32 +0000307 .Default(Triple::UnknownOS);
Duncan Sands335db222010-08-12 11:31:39 +0000308}
309
Chandler Carruth4fbf6582012-02-21 08:53:32 +0000310static Triple::EnvironmentType parseEnvironment(StringRef EnvironmentName) {
311 return StringSwitch<Triple::EnvironmentType>(EnvironmentName)
312 .StartsWith("eabi", Triple::EABI)
313 .StartsWith("gnueabihf", Triple::GNUEABIHF)
314 .StartsWith("gnueabi", Triple::GNUEABI)
315 .StartsWith("gnu", Triple::GNU)
316 .StartsWith("macho", Triple::MachO)
Logan Chien43bf7092012-09-02 09:29:46 +0000317 .StartsWith("android", Triple::Android)
Andrew Kaylor7bbd6e32012-10-02 18:38:34 +0000318 .StartsWith("elf", Triple::ELF)
Chandler Carruth4fbf6582012-02-21 08:53:32 +0000319 .Default(Triple::UnknownEnvironment);
Duncan Sands5754a452010-09-16 08:25:48 +0000320}
321
Chandler Carruthcceb8f42012-02-20 00:02:47 +0000322/// \brief Construct a triple from the string representation provided.
323///
Chandler Carruth0523f412012-02-21 08:31:18 +0000324/// This stores the string representation and parses the various pieces into
325/// enum members.
Chandler Carruth124e51c2012-02-21 03:39:36 +0000326Triple::Triple(const Twine &Str)
327 : Data(Str.str()),
Chandler Carruth4fbf6582012-02-21 08:53:32 +0000328 Arch(parseArch(getArchName())),
329 Vendor(parseVendor(getVendorName())),
330 OS(parseOS(getOSName())),
331 Environment(parseEnvironment(getEnvironmentName())) {
Chandler Carruth124e51c2012-02-21 03:39:36 +0000332}
Chandler Carruthcceb8f42012-02-20 00:02:47 +0000333
334/// \brief Construct a triple from string representations of the architecture,
335/// vendor, and OS.
336///
Chandler Carruth0523f412012-02-21 08:31:18 +0000337/// This joins each argument into a canonical string representation and parses
338/// them into enum members. It leaves the environment unknown and omits it from
339/// the string representation.
Chandler Carruthcceb8f42012-02-20 00:02:47 +0000340Triple::Triple(const Twine &ArchStr, const Twine &VendorStr, const Twine &OSStr)
341 : Data((ArchStr + Twine('-') + VendorStr + Twine('-') + OSStr).str()),
Chandler Carruth4fbf6582012-02-21 08:53:32 +0000342 Arch(parseArch(ArchStr.str())),
343 Vendor(parseVendor(VendorStr.str())),
344 OS(parseOS(OSStr.str())),
Chandler Carruth124e51c2012-02-21 03:39:36 +0000345 Environment() {
Chandler Carruthcceb8f42012-02-20 00:02:47 +0000346}
347
348/// \brief Construct a triple from string representations of the architecture,
349/// vendor, OS, and environment.
350///
Chandler Carruth0523f412012-02-21 08:31:18 +0000351/// This joins each argument into a canonical string representation and parses
352/// them into enum members.
Chandler Carruthcceb8f42012-02-20 00:02:47 +0000353Triple::Triple(const Twine &ArchStr, const Twine &VendorStr, const Twine &OSStr,
354 const Twine &EnvironmentStr)
355 : Data((ArchStr + Twine('-') + VendorStr + Twine('-') + OSStr + Twine('-') +
356 EnvironmentStr).str()),
Chandler Carruth4fbf6582012-02-21 08:53:32 +0000357 Arch(parseArch(ArchStr.str())),
358 Vendor(parseVendor(VendorStr.str())),
359 OS(parseOS(OSStr.str())),
360 Environment(parseEnvironment(EnvironmentStr.str())) {
Chandler Carruthcceb8f42012-02-20 00:02:47 +0000361}
362
Duncan Sands335db222010-08-12 11:31:39 +0000363std::string Triple::normalize(StringRef Str) {
364 // Parse into components.
365 SmallVector<StringRef, 4> Components;
Chandler Carruthdac3d362012-02-21 09:12:48 +0000366 Str.split(Components, "-");
Duncan Sands335db222010-08-12 11:31:39 +0000367
368 // If the first component corresponds to a known architecture, preferentially
369 // use it for the architecture. If the second component corresponds to a
370 // known vendor, preferentially use it for the vendor, etc. This avoids silly
371 // component movement when a component parses as (eg) both a valid arch and a
372 // valid os.
373 ArchType Arch = UnknownArch;
374 if (Components.size() > 0)
Chandler Carruth4fbf6582012-02-21 08:53:32 +0000375 Arch = parseArch(Components[0]);
Duncan Sands335db222010-08-12 11:31:39 +0000376 VendorType Vendor = UnknownVendor;
377 if (Components.size() > 1)
Chandler Carruth4fbf6582012-02-21 08:53:32 +0000378 Vendor = parseVendor(Components[1]);
Duncan Sands335db222010-08-12 11:31:39 +0000379 OSType OS = UnknownOS;
380 if (Components.size() > 2)
Chandler Carruth4fbf6582012-02-21 08:53:32 +0000381 OS = parseOS(Components[2]);
Duncan Sands5754a452010-09-16 08:25:48 +0000382 EnvironmentType Environment = UnknownEnvironment;
383 if (Components.size() > 3)
Chandler Carruth4fbf6582012-02-21 08:53:32 +0000384 Environment = parseEnvironment(Components[3]);
Duncan Sands335db222010-08-12 11:31:39 +0000385
386 // Note which components are already in their final position. These will not
387 // be moved.
Duncan Sands5754a452010-09-16 08:25:48 +0000388 bool Found[4];
Duncan Sands335db222010-08-12 11:31:39 +0000389 Found[0] = Arch != UnknownArch;
390 Found[1] = Vendor != UnknownVendor;
391 Found[2] = OS != UnknownOS;
Duncan Sands5754a452010-09-16 08:25:48 +0000392 Found[3] = Environment != UnknownEnvironment;
Duncan Sands335db222010-08-12 11:31:39 +0000393
394 // If they are not there already, permute the components into their canonical
395 // positions by seeing if they parse as a valid architecture, and if so moving
396 // the component to the architecture position etc.
Duncan Sands5754a452010-09-16 08:25:48 +0000397 for (unsigned Pos = 0; Pos != array_lengthof(Found); ++Pos) {
Duncan Sands335db222010-08-12 11:31:39 +0000398 if (Found[Pos])
399 continue; // Already in the canonical position.
400
401 for (unsigned Idx = 0; Idx != Components.size(); ++Idx) {
402 // Do not reparse any components that already matched.
Duncan Sands5754a452010-09-16 08:25:48 +0000403 if (Idx < array_lengthof(Found) && Found[Idx])
Duncan Sands335db222010-08-12 11:31:39 +0000404 continue;
405
406 // Does this component parse as valid for the target position?
407 bool Valid = false;
408 StringRef Comp = Components[Idx];
409 switch (Pos) {
Craig Topper85814382012-02-07 05:05:23 +0000410 default: llvm_unreachable("unexpected component type!");
Duncan Sands335db222010-08-12 11:31:39 +0000411 case 0:
Chandler Carruth4fbf6582012-02-21 08:53:32 +0000412 Arch = parseArch(Comp);
Duncan Sands335db222010-08-12 11:31:39 +0000413 Valid = Arch != UnknownArch;
414 break;
415 case 1:
Chandler Carruth4fbf6582012-02-21 08:53:32 +0000416 Vendor = parseVendor(Comp);
Duncan Sands335db222010-08-12 11:31:39 +0000417 Valid = Vendor != UnknownVendor;
418 break;
419 case 2:
Chandler Carruth4fbf6582012-02-21 08:53:32 +0000420 OS = parseOS(Comp);
Duncan Sandsae200c62011-02-02 10:08:38 +0000421 Valid = OS != UnknownOS;
Duncan Sands335db222010-08-12 11:31:39 +0000422 break;
Duncan Sands5754a452010-09-16 08:25:48 +0000423 case 3:
Chandler Carruth4fbf6582012-02-21 08:53:32 +0000424 Environment = parseEnvironment(Comp);
Duncan Sands5754a452010-09-16 08:25:48 +0000425 Valid = Environment != UnknownEnvironment;
426 break;
Duncan Sands335db222010-08-12 11:31:39 +0000427 }
428 if (!Valid)
429 continue; // Nope, try the next component.
430
431 // Move the component to the target position, pushing any non-fixed
432 // components that are in the way to the right. This tends to give
433 // good results in the common cases of a forgotten vendor component
434 // or a wrongly positioned environment.
435 if (Pos < Idx) {
436 // Insert left, pushing the existing components to the right. For
437 // example, a-b-i386 -> i386-a-b when moving i386 to the front.
438 StringRef CurrentComponent(""); // The empty component.
439 // Replace the component we are moving with an empty component.
440 std::swap(CurrentComponent, Components[Idx]);
441 // Insert the component being moved at Pos, displacing any existing
442 // components to the right.
443 for (unsigned i = Pos; !CurrentComponent.empty(); ++i) {
444 // Skip over any fixed components.
Chandler Carruthc5f18d32012-02-21 09:29:14 +0000445 while (i < array_lengthof(Found) && Found[i])
446 ++i;
Duncan Sands335db222010-08-12 11:31:39 +0000447 // Place the component at the new position, getting the component
448 // that was at this position - it will be moved right.
449 std::swap(CurrentComponent, Components[i]);
450 }
451 } else if (Pos > Idx) {
452 // Push right by inserting empty components until the component at Idx
453 // reaches the target position Pos. For example, pc-a -> -pc-a when
454 // moving pc to the second position.
455 do {
456 // Insert one empty component at Idx.
457 StringRef CurrentComponent(""); // The empty component.
Duncan Sandsae200c62011-02-02 10:08:38 +0000458 for (unsigned i = Idx; i < Components.size();) {
Duncan Sands335db222010-08-12 11:31:39 +0000459 // Place the component at the new position, getting the component
460 // that was at this position - it will be moved right.
461 std::swap(CurrentComponent, Components[i]);
462 // If it was placed on top of an empty component then we are done.
463 if (CurrentComponent.empty())
464 break;
Duncan Sandsae200c62011-02-02 10:08:38 +0000465 // Advance to the next component, skipping any fixed components.
Anders Carlsson15ec6952011-02-05 18:19:35 +0000466 while (++i < array_lengthof(Found) && Found[i])
467 ;
Duncan Sands335db222010-08-12 11:31:39 +0000468 }
469 // The last component was pushed off the end - append it.
470 if (!CurrentComponent.empty())
471 Components.push_back(CurrentComponent);
472
473 // Advance Idx to the component's new position.
Chandler Carruthc5f18d32012-02-21 09:29:14 +0000474 while (++Idx < array_lengthof(Found) && Found[Idx])
475 ;
Duncan Sands335db222010-08-12 11:31:39 +0000476 } while (Idx < Pos); // Add more until the final position is reached.
477 }
478 assert(Pos < Components.size() && Components[Pos] == Comp &&
479 "Component moved wrong!");
480 Found[Pos] = true;
481 break;
482 }
483 }
484
485 // Special case logic goes here. At this point Arch, Vendor and OS have the
486 // correct values for the computed components.
487
488 // Stick the corrected components back together to form the normalized string.
489 std::string Normalized;
490 for (unsigned i = 0, e = Components.size(); i != e; ++i) {
491 if (i) Normalized += '-';
492 Normalized += Components[i];
493 }
494 return Normalized;
495}
496
Daniel Dunbara14d2252009-07-26 03:31:47 +0000497StringRef Triple::getArchName() const {
498 return StringRef(Data).split('-').first; // Isolate first component
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000499}
500
Daniel Dunbara14d2252009-07-26 03:31:47 +0000501StringRef Triple::getVendorName() const {
502 StringRef Tmp = StringRef(Data).split('-').second; // Strip first component
503 return Tmp.split('-').first; // Isolate second component
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000504}
505
Daniel Dunbara14d2252009-07-26 03:31:47 +0000506StringRef Triple::getOSName() const {
507 StringRef Tmp = StringRef(Data).split('-').second; // Strip first component
508 Tmp = Tmp.split('-').second; // Strip second component
509 return Tmp.split('-').first; // Isolate third component
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000510}
511
Daniel Dunbara14d2252009-07-26 03:31:47 +0000512StringRef Triple::getEnvironmentName() const {
513 StringRef Tmp = StringRef(Data).split('-').second; // Strip first component
514 Tmp = Tmp.split('-').second; // Strip second component
515 return Tmp.split('-').second; // Strip third component
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000516}
517
Daniel Dunbara14d2252009-07-26 03:31:47 +0000518StringRef Triple::getOSAndEnvironmentName() const {
519 StringRef Tmp = StringRef(Data).split('-').second; // Strip first component
520 return Tmp.split('-').second; // Strip second component
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000521}
522
Chris Lattnerdfc17f72009-08-12 06:19:40 +0000523static unsigned EatNumber(StringRef &Str) {
524 assert(!Str.empty() && Str[0] >= '0' && Str[0] <= '9' && "Not a number");
Daniel Dunbar087d6a52011-04-19 20:24:34 +0000525 unsigned Result = 0;
Jim Grosbache509aa92010-12-17 02:10:59 +0000526
Daniel Dunbar087d6a52011-04-19 20:24:34 +0000527 do {
528 // Consume the leading digit.
Chris Lattnerdfc17f72009-08-12 06:19:40 +0000529 Result = Result*10 + (Str[0] - '0');
Daniel Dunbar087d6a52011-04-19 20:24:34 +0000530
Chris Lattnerdfc17f72009-08-12 06:19:40 +0000531 // Eat the digit.
532 Str = Str.substr(1);
Daniel Dunbar087d6a52011-04-19 20:24:34 +0000533 } while (!Str.empty() && Str[0] >= '0' && Str[0] <= '9');
Jim Grosbache509aa92010-12-17 02:10:59 +0000534
Chris Lattnerdfc17f72009-08-12 06:19:40 +0000535 return Result;
536}
537
Daniel Dunbar087d6a52011-04-19 20:24:34 +0000538void Triple::getOSVersion(unsigned &Major, unsigned &Minor,
539 unsigned &Micro) const {
Chris Lattnerdfc17f72009-08-12 06:19:40 +0000540 StringRef OSName = getOSName();
Jim Grosbache509aa92010-12-17 02:10:59 +0000541
Daniel Dunbar087d6a52011-04-19 20:24:34 +0000542 // Assume that the OS portion of the triple starts with the canonical name.
543 StringRef OSTypeName = getOSTypeName(getOS());
544 if (OSName.startswith(OSTypeName))
545 OSName = OSName.substr(OSTypeName.size());
Jim Grosbache509aa92010-12-17 02:10:59 +0000546
Daniel Dunbar087d6a52011-04-19 20:24:34 +0000547 // Any unset version defaults to 0.
548 Major = Minor = Micro = 0;
Chris Lattnerdfc17f72009-08-12 06:19:40 +0000549
Daniel Dunbar087d6a52011-04-19 20:24:34 +0000550 // Parse up to three components.
551 unsigned *Components[3] = { &Major, &Minor, &Micro };
552 for (unsigned i = 0; i != 3; ++i) {
553 if (OSName.empty() || OSName[0] < '0' || OSName[0] > '9')
554 break;
Chris Lattnerdfc17f72009-08-12 06:19:40 +0000555
Daniel Dunbar087d6a52011-04-19 20:24:34 +0000556 // Consume the leading number.
557 *Components[i] = EatNumber(OSName);
Jim Grosbache509aa92010-12-17 02:10:59 +0000558
Daniel Dunbar087d6a52011-04-19 20:24:34 +0000559 // Consume the separator, if present.
560 if (OSName.startswith("."))
561 OSName = OSName.substr(1);
562 }
Chris Lattnerdfc17f72009-08-12 06:19:40 +0000563}
564
Bob Wilsonbda59fd2012-01-31 22:32:29 +0000565bool Triple::getMacOSXVersion(unsigned &Major, unsigned &Minor,
566 unsigned &Micro) const {
567 getOSVersion(Major, Minor, Micro);
568
569 switch (getOS()) {
Craig Topper85814382012-02-07 05:05:23 +0000570 default: llvm_unreachable("unexpected OS for Darwin triple");
Bob Wilsonbda59fd2012-01-31 22:32:29 +0000571 case Darwin:
572 // Default to darwin8, i.e., MacOSX 10.4.
573 if (Major == 0)
574 Major = 8;
575 // Darwin version numbers are skewed from OS X versions.
576 if (Major < 4)
577 return false;
578 Micro = 0;
579 Minor = Major - 4;
580 Major = 10;
581 break;
582 case MacOSX:
583 // Default to 10.4.
584 if (Major == 0) {
585 Major = 10;
586 Minor = 4;
587 }
588 if (Major != 10)
589 return false;
590 break;
591 case IOS:
592 // Ignore the version from the triple. This is only handled because the
593 // the clang driver combines OS X and IOS support into a common Darwin
594 // toolchain that wants to know the OS X version number even when targeting
595 // IOS.
596 Major = 10;
597 Minor = 4;
598 Micro = 0;
599 break;
600 }
601 return true;
602}
603
Chad Rosierecee47e2012-05-09 17:23:48 +0000604void Triple::getiOSVersion(unsigned &Major, unsigned &Minor,
605 unsigned &Micro) const {
606 switch (getOS()) {
607 default: llvm_unreachable("unexpected OS for Darwin triple");
608 case Darwin:
609 case MacOSX:
610 // Ignore the version from the triple. This is only handled because the
611 // the clang driver combines OS X and IOS support into a common Darwin
612 // toolchain that wants to know the iOS version number even when targeting
613 // OS X.
Chad Rosier537c2f52012-05-09 18:23:00 +0000614 Major = 3;
Chad Rosierecee47e2012-05-09 17:23:48 +0000615 Minor = 0;
616 Micro = 0;
Chad Rosier26bbdee2012-05-09 17:38:47 +0000617 break;
Chad Rosierecee47e2012-05-09 17:23:48 +0000618 case IOS:
619 getOSVersion(Major, Minor, Micro);
Chad Rosier537c2f52012-05-09 18:23:00 +0000620 // Default to 3.0.
621 if (Major == 0)
622 Major = 3;
Chad Rosierecee47e2012-05-09 17:23:48 +0000623 break;
624 }
625}
626
Daniel Dunbara14d2252009-07-26 03:31:47 +0000627void Triple::setTriple(const Twine &Str) {
Chandler Carruth124e51c2012-02-21 03:39:36 +0000628 *this = Triple(Str);
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000629}
630
631void Triple::setArch(ArchType Kind) {
632 setArchName(getArchTypeName(Kind));
633}
634
635void Triple::setVendor(VendorType Kind) {
636 setVendorName(getVendorTypeName(Kind));
637}
638
639void Triple::setOS(OSType Kind) {
640 setOSName(getOSTypeName(Kind));
641}
642
Duncan Sands5754a452010-09-16 08:25:48 +0000643void Triple::setEnvironment(EnvironmentType Kind) {
644 setEnvironmentName(getEnvironmentTypeName(Kind));
645}
646
Daniel Dunbar2928c832009-11-06 10:58:06 +0000647void Triple::setArchName(StringRef Str) {
Jeffrey Yasskin0b228732009-10-06 21:45:26 +0000648 // Work around a miscompilation bug for Twines in gcc 4.0.3.
649 SmallString<64> Triple;
650 Triple += Str;
651 Triple += "-";
652 Triple += getVendorName();
653 Triple += "-";
654 Triple += getOSAndEnvironmentName();
655 setTriple(Triple.str());
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000656}
657
Daniel Dunbar2928c832009-11-06 10:58:06 +0000658void Triple::setVendorName(StringRef Str) {
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000659 setTriple(getArchName() + "-" + Str + "-" + getOSAndEnvironmentName());
660}
661
Daniel Dunbar2928c832009-11-06 10:58:06 +0000662void Triple::setOSName(StringRef Str) {
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000663 if (hasEnvironment())
664 setTriple(getArchName() + "-" + getVendorName() + "-" + Str +
665 "-" + getEnvironmentName());
666 else
667 setTriple(getArchName() + "-" + getVendorName() + "-" + Str);
668}
669
Daniel Dunbar2928c832009-11-06 10:58:06 +0000670void Triple::setEnvironmentName(StringRef Str) {
671 setTriple(getArchName() + "-" + getVendorName() + "-" + getOSName() +
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000672 "-" + Str);
673}
674
Daniel Dunbar2928c832009-11-06 10:58:06 +0000675void Triple::setOSAndEnvironmentName(StringRef Str) {
Daniel Dunbar23e97b02009-04-01 21:53:23 +0000676 setTriple(getArchName() + "-" + getVendorName() + "-" + Str);
677}
Chandler Carruth6f72ac42012-01-31 04:52:32 +0000678
679static unsigned getArchPointerBitWidth(llvm::Triple::ArchType Arch) {
680 switch (Arch) {
Micah Villmowe53d6052012-10-01 17:01:31 +0000681 case llvm::Triple::spir:
Chandler Carruth6f72ac42012-01-31 04:52:32 +0000682 case llvm::Triple::UnknownArch:
Chandler Carruth6f72ac42012-01-31 04:52:32 +0000683 return 0;
684
685 case llvm::Triple::msp430:
686 return 16;
687
688 case llvm::Triple::amdil:
689 case llvm::Triple::arm:
690 case llvm::Triple::cellspu:
691 case llvm::Triple::hexagon:
692 case llvm::Triple::le32:
693 case llvm::Triple::mblaze:
694 case llvm::Triple::mips:
695 case llvm::Triple::mipsel:
Justin Holewinski49683f32012-05-04 20:18:50 +0000696 case llvm::Triple::nvptx:
Chandler Carruth6f72ac42012-01-31 04:52:32 +0000697 case llvm::Triple::ppc:
Anton Korobeynikov74156592012-03-09 10:09:36 +0000698 case llvm::Triple::r600:
Chandler Carruth6f72ac42012-01-31 04:52:32 +0000699 case llvm::Triple::sparc:
700 case llvm::Triple::tce:
701 case llvm::Triple::thumb:
702 case llvm::Triple::x86:
703 case llvm::Triple::xcore:
704 return 32;
705
706 case llvm::Triple::mips64:
707 case llvm::Triple::mips64el:
Justin Holewinski49683f32012-05-04 20:18:50 +0000708 case llvm::Triple::nvptx64:
Chandler Carruth6f72ac42012-01-31 04:52:32 +0000709 case llvm::Triple::ppc64:
Chandler Carruth6f72ac42012-01-31 04:52:32 +0000710 case llvm::Triple::sparcv9:
711 case llvm::Triple::x86_64:
712 return 64;
713 }
714 llvm_unreachable("Invalid architecture value");
715}
716
717bool Triple::isArch64Bit() const {
718 return getArchPointerBitWidth(getArch()) == 64;
719}
720
721bool Triple::isArch32Bit() const {
722 return getArchPointerBitWidth(getArch()) == 32;
723}
724
725bool Triple::isArch16Bit() const {
726 return getArchPointerBitWidth(getArch()) == 16;
727}
Chandler Carruth7d5a2892012-02-06 20:46:33 +0000728
729Triple Triple::get32BitArchVariant() const {
730 Triple T(*this);
731 switch (getArch()) {
732 case Triple::UnknownArch:
Chandler Carruth7d5a2892012-02-06 20:46:33 +0000733 case Triple::msp430:
734 T.setArch(UnknownArch);
735 break;
736
737 case Triple::amdil:
Micah Villmowe53d6052012-10-01 17:01:31 +0000738 case Triple::spir:
Chandler Carruth7d5a2892012-02-06 20:46:33 +0000739 case Triple::arm:
740 case Triple::cellspu:
741 case Triple::hexagon:
742 case Triple::le32:
743 case Triple::mblaze:
744 case Triple::mips:
745 case Triple::mipsel:
Justin Holewinski49683f32012-05-04 20:18:50 +0000746 case Triple::nvptx:
Chandler Carruth7d5a2892012-02-06 20:46:33 +0000747 case Triple::ppc:
Anton Korobeynikov74156592012-03-09 10:09:36 +0000748 case Triple::r600:
Chandler Carruth7d5a2892012-02-06 20:46:33 +0000749 case Triple::sparc:
750 case Triple::tce:
751 case Triple::thumb:
752 case Triple::x86:
753 case Triple::xcore:
754 // Already 32-bit.
755 break;
756
757 case Triple::mips64: T.setArch(Triple::mips); break;
758 case Triple::mips64el: T.setArch(Triple::mipsel); break;
Justin Holewinski49683f32012-05-04 20:18:50 +0000759 case Triple::nvptx64: T.setArch(Triple::nvptx); break;
Chandler Carruth7d5a2892012-02-06 20:46:33 +0000760 case Triple::ppc64: T.setArch(Triple::ppc); break;
Chandler Carruth7d5a2892012-02-06 20:46:33 +0000761 case Triple::sparcv9: T.setArch(Triple::sparc); break;
762 case Triple::x86_64: T.setArch(Triple::x86); break;
763 }
764 return T;
765}
766
767Triple Triple::get64BitArchVariant() const {
768 Triple T(*this);
769 switch (getArch()) {
Chandler Carruth7d5a2892012-02-06 20:46:33 +0000770 case Triple::UnknownArch:
771 case Triple::amdil:
772 case Triple::arm:
773 case Triple::cellspu:
774 case Triple::hexagon:
775 case Triple::le32:
776 case Triple::mblaze:
777 case Triple::msp430:
Anton Korobeynikov74156592012-03-09 10:09:36 +0000778 case Triple::r600:
Chandler Carruth7d5a2892012-02-06 20:46:33 +0000779 case Triple::tce:
780 case Triple::thumb:
781 case Triple::xcore:
782 T.setArch(UnknownArch);
783 break;
784
Micah Villmowe53d6052012-10-01 17:01:31 +0000785 case Triple::spir:
Chandler Carruth7d5a2892012-02-06 20:46:33 +0000786 case Triple::mips64:
787 case Triple::mips64el:
Justin Holewinski49683f32012-05-04 20:18:50 +0000788 case Triple::nvptx64:
Chandler Carruth7d5a2892012-02-06 20:46:33 +0000789 case Triple::ppc64:
Chandler Carruth7d5a2892012-02-06 20:46:33 +0000790 case Triple::sparcv9:
791 case Triple::x86_64:
792 // Already 64-bit.
793 break;
794
795 case Triple::mips: T.setArch(Triple::mips64); break;
796 case Triple::mipsel: T.setArch(Triple::mips64el); break;
Justin Holewinski49683f32012-05-04 20:18:50 +0000797 case Triple::nvptx: T.setArch(Triple::nvptx64); break;
Chandler Carruth7d5a2892012-02-06 20:46:33 +0000798 case Triple::ppc: T.setArch(Triple::ppc64); break;
Chandler Carruth7d5a2892012-02-06 20:46:33 +0000799 case Triple::sparc: T.setArch(Triple::sparcv9); break;
800 case Triple::x86: T.setArch(Triple::x86_64); break;
801 }
802 return T;
803}