2009-04-01 21:53:23 +00:00
|
|
|
//===--- Triple.cpp - Target triple helper class --------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/ADT/Triple.h"
|
2009-07-26 03:31:47 +00:00
|
|
|
|
2009-10-06 21:45:26 +00:00
|
|
|
#include "llvm/ADT/SmallString.h"
|
2010-09-16 08:25:48 +00:00
|
|
|
#include "llvm/ADT/STLExtras.h"
|
2009-07-26 03:31:47 +00:00
|
|
|
#include "llvm/ADT/Twine.h"
|
2009-04-01 21:53:23 +00:00
|
|
|
#include <cassert>
|
2009-04-02 01:11:37 +00:00
|
|
|
#include <cstring>
|
2009-04-01 21:53:23 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
//
|
|
|
|
|
|
|
|
const char *Triple::getArchTypeName(ArchType Kind) {
|
|
|
|
switch (Kind) {
|
|
|
|
case InvalidArch: return "<invalid>";
|
|
|
|
case UnknownArch: return "unknown";
|
2010-12-17 02:10:59 +00:00
|
|
|
|
2009-07-26 04:23:03 +00:00
|
|
|
case alpha: return "alpha";
|
|
|
|
case arm: return "arm";
|
2009-08-02 17:32:10 +00:00
|
|
|
case bfin: return "bfin";
|
2009-07-26 04:23:03 +00:00
|
|
|
case cellspu: return "cellspu";
|
|
|
|
case mips: return "mips";
|
|
|
|
case mipsel: return "mipsel";
|
|
|
|
case msp430: return "msp430";
|
2009-07-26 04:52:45 +00:00
|
|
|
case ppc64: return "powerpc64";
|
|
|
|
case ppc: return "powerpc";
|
2009-07-26 04:23:03 +00:00
|
|
|
case sparc: return "sparc";
|
2010-02-04 06:34:01 +00:00
|
|
|
case sparcv9: return "sparcv9";
|
2009-07-26 04:23:03 +00:00
|
|
|
case systemz: return "s390x";
|
2009-08-19 20:46:03 +00:00
|
|
|
case tce: return "tce";
|
2009-07-26 04:23:03 +00:00
|
|
|
case thumb: return "thumb";
|
|
|
|
case x86: return "i386";
|
|
|
|
case x86_64: return "x86_64";
|
2009-07-26 04:52:45 +00:00
|
|
|
case xcore: return "xcore";
|
2010-02-23 19:15:24 +00:00
|
|
|
case mblaze: return "mblaze";
|
2011-04-20 15:37:17 +00:00
|
|
|
case ptx32: return "ptx32";
|
|
|
|
case ptx64: return "ptx64";
|
2009-04-01 21:53:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return "<invalid>";
|
|
|
|
}
|
|
|
|
|
2009-08-24 09:53:06 +00:00
|
|
|
const char *Triple::getArchTypePrefix(ArchType Kind) {
|
|
|
|
switch (Kind) {
|
|
|
|
default:
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
case alpha: return "alpha";
|
|
|
|
|
|
|
|
case arm:
|
|
|
|
case thumb: return "arm";
|
|
|
|
|
|
|
|
case bfin: return "bfin";
|
|
|
|
|
|
|
|
case cellspu: return "spu";
|
|
|
|
|
|
|
|
case ppc64:
|
|
|
|
case ppc: return "ppc";
|
|
|
|
|
2010-02-23 19:15:24 +00:00
|
|
|
case mblaze: return "mblaze";
|
|
|
|
|
2010-02-04 06:34:01 +00:00
|
|
|
case sparcv9:
|
2009-08-24 09:53:06 +00:00
|
|
|
case sparc: return "sparc";
|
|
|
|
|
|
|
|
case x86:
|
|
|
|
case x86_64: return "x86";
|
2010-09-07 18:14:24 +00:00
|
|
|
|
2009-08-24 09:53:06 +00:00
|
|
|
case xcore: return "xcore";
|
2010-09-07 18:14:24 +00:00
|
|
|
|
2011-04-20 15:37:17 +00:00
|
|
|
case ptx32: return "ptx";
|
|
|
|
case ptx64: return "ptx";
|
2009-08-24 09:53:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-04-01 21:53:23 +00:00
|
|
|
const char *Triple::getVendorTypeName(VendorType Kind) {
|
|
|
|
switch (Kind) {
|
|
|
|
case UnknownVendor: return "unknown";
|
|
|
|
|
|
|
|
case Apple: return "apple";
|
2009-08-14 18:48:13 +00:00
|
|
|
case PC: return "pc";
|
2011-03-15 21:51:56 +00:00
|
|
|
case SCEI: return "scei";
|
2009-04-01 21:53:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return "<invalid>";
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *Triple::getOSTypeName(OSType Kind) {
|
|
|
|
switch (Kind) {
|
|
|
|
case UnknownOS: return "unknown";
|
|
|
|
|
2009-06-19 14:40:01 +00:00
|
|
|
case AuroraUX: return "auroraux";
|
2009-07-26 04:23:03 +00:00
|
|
|
case Cygwin: return "cygwin";
|
2009-04-01 21:53:23 +00:00
|
|
|
case Darwin: return "darwin";
|
2009-05-22 02:24:11 +00:00
|
|
|
case DragonFly: return "dragonfly";
|
2009-04-01 21:53:23 +00:00
|
|
|
case FreeBSD: return "freebsd";
|
2011-04-19 20:19:27 +00:00
|
|
|
case IOS: return "ios";
|
2009-04-01 21:53:23 +00:00
|
|
|
case Linux: return "linux";
|
2009-11-19 11:59:00 +00:00
|
|
|
case Lv2: return "lv2";
|
2011-04-19 23:34:12 +00:00
|
|
|
case MacOSX: return "macosx";
|
2009-07-26 04:23:03 +00:00
|
|
|
case MinGW32: return "mingw32";
|
2009-07-13 20:22:23 +00:00
|
|
|
case NetBSD: return "netbsd";
|
2009-06-29 13:36:13 +00:00
|
|
|
case OpenBSD: return "openbsd";
|
2009-11-15 10:18:17 +00:00
|
|
|
case Psp: return "psp";
|
2009-08-18 04:43:27 +00:00
|
|
|
case Solaris: return "solaris";
|
2009-07-26 04:23:03 +00:00
|
|
|
case Win32: return "win32";
|
2009-10-16 02:06:30 +00:00
|
|
|
case Haiku: return "haiku";
|
2010-07-07 15:52:27 +00:00
|
|
|
case Minix: return "minix";
|
2011-07-01 22:41:06 +00:00
|
|
|
case RTEMS: return "rtems";
|
2009-04-01 21:53:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return "<invalid>";
|
|
|
|
}
|
|
|
|
|
2010-09-16 08:25:48 +00:00
|
|
|
const char *Triple::getEnvironmentTypeName(EnvironmentType Kind) {
|
|
|
|
switch (Kind) {
|
|
|
|
case UnknownEnvironment: return "unknown";
|
2011-01-21 18:25:47 +00:00
|
|
|
case GNU: return "gnu";
|
|
|
|
case GNUEABI: return "gnueabi";
|
|
|
|
case EABI: return "eabi";
|
2011-02-01 01:14:13 +00:00
|
|
|
case MachO: return "macho";
|
2010-09-16 08:25:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return "<invalid>";
|
|
|
|
}
|
|
|
|
|
2009-11-06 10:58:06 +00:00
|
|
|
Triple::ArchType Triple::getArchTypeForLLVMName(StringRef Name) {
|
2009-08-03 04:03:51 +00:00
|
|
|
if (Name == "alpha")
|
|
|
|
return alpha;
|
|
|
|
if (Name == "arm")
|
|
|
|
return arm;
|
|
|
|
if (Name == "bfin")
|
|
|
|
return bfin;
|
|
|
|
if (Name == "cellspu")
|
|
|
|
return cellspu;
|
|
|
|
if (Name == "mips")
|
|
|
|
return mips;
|
|
|
|
if (Name == "mipsel")
|
|
|
|
return mipsel;
|
|
|
|
if (Name == "msp430")
|
|
|
|
return msp430;
|
|
|
|
if (Name == "ppc64")
|
|
|
|
return ppc64;
|
|
|
|
if (Name == "ppc")
|
|
|
|
return ppc;
|
2010-02-23 19:15:24 +00:00
|
|
|
if (Name == "mblaze")
|
|
|
|
return mblaze;
|
2009-08-03 04:03:51 +00:00
|
|
|
if (Name == "sparc")
|
|
|
|
return sparc;
|
2010-02-04 06:34:01 +00:00
|
|
|
if (Name == "sparcv9")
|
|
|
|
return sparcv9;
|
2009-08-03 04:03:51 +00:00
|
|
|
if (Name == "systemz")
|
|
|
|
return systemz;
|
2009-08-19 20:46:03 +00:00
|
|
|
if (Name == "tce")
|
|
|
|
return tce;
|
2009-08-03 04:03:51 +00:00
|
|
|
if (Name == "thumb")
|
|
|
|
return thumb;
|
|
|
|
if (Name == "x86")
|
|
|
|
return x86;
|
2009-08-12 06:45:02 +00:00
|
|
|
if (Name == "x86-64")
|
2009-08-03 04:03:51 +00:00
|
|
|
return x86_64;
|
|
|
|
if (Name == "xcore")
|
|
|
|
return xcore;
|
2011-04-20 15:37:17 +00:00
|
|
|
if (Name == "ptx32")
|
|
|
|
return ptx32;
|
|
|
|
if (Name == "ptx64")
|
|
|
|
return ptx64;
|
2009-08-03 04:03:51 +00:00
|
|
|
|
|
|
|
return UnknownArch;
|
|
|
|
}
|
|
|
|
|
2009-11-06 10:58:06 +00:00
|
|
|
Triple::ArchType Triple::getArchTypeForDarwinArchName(StringRef Str) {
|
2009-09-08 23:32:51 +00:00
|
|
|
// See arch(3) and llvm-gcc's driver-driver.c. We don't implement support for
|
|
|
|
// archs which Darwin doesn't use.
|
|
|
|
|
|
|
|
// The matching this routine does is fairly pointless, since it is neither the
|
|
|
|
// complete architecture list, nor a reasonable subset. The problem is that
|
|
|
|
// historically the driver driver accepts this and also ties its -march=
|
|
|
|
// handling to the architecture name, so we need to be careful before removing
|
|
|
|
// support for it.
|
|
|
|
|
2009-09-09 23:01:25 +00:00
|
|
|
// This code must be kept in sync with Clang's Darwin specific argument
|
|
|
|
// translation.
|
|
|
|
|
2009-09-08 23:32:51 +00:00
|
|
|
if (Str == "ppc" || Str == "ppc601" || Str == "ppc603" || Str == "ppc604" ||
|
|
|
|
Str == "ppc604e" || Str == "ppc750" || Str == "ppc7400" ||
|
|
|
|
Str == "ppc7450" || Str == "ppc970")
|
|
|
|
return Triple::ppc;
|
|
|
|
|
|
|
|
if (Str == "ppc64")
|
|
|
|
return Triple::ppc64;
|
|
|
|
|
|
|
|
if (Str == "i386" || Str == "i486" || Str == "i486SX" || Str == "pentium" ||
|
|
|
|
Str == "i586" || Str == "pentpro" || Str == "i686" || Str == "pentIIm3" ||
|
|
|
|
Str == "pentIIm5" || Str == "pentium4")
|
|
|
|
return Triple::x86;
|
|
|
|
|
|
|
|
if (Str == "x86_64")
|
|
|
|
return Triple::x86_64;
|
|
|
|
|
|
|
|
// This is derived from the driver driver.
|
|
|
|
if (Str == "arm" || Str == "armv4t" || Str == "armv5" || Str == "xscale" ||
|
|
|
|
Str == "armv6" || Str == "armv7")
|
|
|
|
return Triple::arm;
|
|
|
|
|
2011-04-20 15:37:17 +00:00
|
|
|
if (Str == "ptx32")
|
|
|
|
return Triple::ptx32;
|
|
|
|
if (Str == "ptx64")
|
|
|
|
return Triple::ptx64;
|
2010-09-07 18:14:24 +00:00
|
|
|
|
2009-09-08 23:32:51 +00:00
|
|
|
return Triple::UnknownArch;
|
|
|
|
}
|
|
|
|
|
2010-03-24 09:05:14 +00:00
|
|
|
// Returns architecture name that is understood by the target assembler.
|
2009-11-17 18:48:27 +00:00
|
|
|
const char *Triple::getArchNameForAssembler() {
|
2011-04-19 21:12:05 +00:00
|
|
|
if (!isOSDarwin() && getVendor() != Triple::Apple)
|
2009-11-17 18:48:27 +00:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
StringRef Str = getArchName();
|
|
|
|
if (Str == "i386")
|
|
|
|
return "i386";
|
|
|
|
if (Str == "x86_64")
|
|
|
|
return "x86_64";
|
|
|
|
if (Str == "powerpc")
|
|
|
|
return "ppc";
|
|
|
|
if (Str == "powerpc64")
|
|
|
|
return "ppc64";
|
2010-02-23 19:15:24 +00:00
|
|
|
if (Str == "mblaze" || Str == "microblaze")
|
|
|
|
return "mblaze";
|
2009-11-17 18:48:27 +00:00
|
|
|
if (Str == "arm")
|
|
|
|
return "arm";
|
|
|
|
if (Str == "armv4t" || Str == "thumbv4t")
|
|
|
|
return "armv4t";
|
2010-12-17 02:10:59 +00:00
|
|
|
if (Str == "armv5" || Str == "armv5e" || Str == "thumbv5"
|
|
|
|
|| Str == "thumbv5e")
|
2009-11-17 18:48:27 +00:00
|
|
|
return "armv5";
|
|
|
|
if (Str == "armv6" || Str == "thumbv6")
|
|
|
|
return "armv6";
|
|
|
|
if (Str == "armv7" || Str == "thumbv7")
|
|
|
|
return "armv7";
|
2011-04-20 15:37:17 +00:00
|
|
|
if (Str == "ptx32")
|
|
|
|
return "ptx32";
|
|
|
|
if (Str == "ptx64")
|
|
|
|
return "ptx64";
|
2009-11-17 18:48:27 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2009-04-01 21:53:23 +00:00
|
|
|
//
|
|
|
|
|
2010-08-12 11:31:39 +00:00
|
|
|
Triple::ArchType Triple::ParseArch(StringRef ArchName) {
|
2010-12-17 02:10:59 +00:00
|
|
|
if (ArchName.size() == 4 && ArchName[0] == 'i' &&
|
|
|
|
ArchName[2] == '8' && ArchName[3] == '6' &&
|
2009-07-26 04:23:03 +00:00
|
|
|
ArchName[1] - '3' < 6) // i[3-9]86
|
2010-08-12 11:31:39 +00:00
|
|
|
return x86;
|
2009-04-01 21:53:23 +00:00
|
|
|
else if (ArchName == "amd64" || ArchName == "x86_64")
|
2010-08-12 11:31:39 +00:00
|
|
|
return x86_64;
|
2009-08-18 07:06:26 +00:00
|
|
|
else if (ArchName == "bfin")
|
2010-08-12 11:31:39 +00:00
|
|
|
return bfin;
|
2009-04-01 21:53:23 +00:00
|
|
|
else if (ArchName == "powerpc")
|
2010-08-12 11:31:39 +00:00
|
|
|
return ppc;
|
2009-11-19 11:59:00 +00:00
|
|
|
else if ((ArchName == "powerpc64") || (ArchName == "ppu"))
|
2010-08-12 11:31:39 +00:00
|
|
|
return ppc64;
|
2010-02-23 19:15:24 +00:00
|
|
|
else if (ArchName == "mblaze")
|
2010-08-12 11:31:39 +00:00
|
|
|
return mblaze;
|
2009-07-26 04:23:03 +00:00
|
|
|
else if (ArchName == "arm" ||
|
2009-08-18 04:51:26 +00:00
|
|
|
ArchName.startswith("armv") ||
|
|
|
|
ArchName == "xscale")
|
2010-08-12 11:31:39 +00:00
|
|
|
return arm;
|
2009-07-26 04:23:03 +00:00
|
|
|
else if (ArchName == "thumb" ||
|
|
|
|
ArchName.startswith("thumbv"))
|
2010-08-12 11:31:39 +00:00
|
|
|
return thumb;
|
2009-07-26 04:23:03 +00:00
|
|
|
else if (ArchName.startswith("alpha"))
|
2010-08-12 11:31:39 +00:00
|
|
|
return alpha;
|
2009-07-26 04:23:03 +00:00
|
|
|
else if (ArchName == "spu" || ArchName == "cellspu")
|
2010-08-12 11:31:39 +00:00
|
|
|
return cellspu;
|
2009-07-26 04:23:03 +00:00
|
|
|
else if (ArchName == "msp430")
|
2010-08-12 11:31:39 +00:00
|
|
|
return msp430;
|
2011-07-07 16:53:52 +00:00
|
|
|
else if (ArchName == "mips" || ArchName == "mipseb" ||
|
|
|
|
ArchName == "mipsallegrex")
|
2010-08-12 11:31:39 +00:00
|
|
|
return mips;
|
2009-07-26 04:23:03 +00:00
|
|
|
else if (ArchName == "mipsel" || ArchName == "mipsallegrexel" ||
|
|
|
|
ArchName == "psp")
|
2010-08-12 11:31:39 +00:00
|
|
|
return mipsel;
|
2009-07-26 04:23:03 +00:00
|
|
|
else if (ArchName == "sparc")
|
2010-08-12 11:31:39 +00:00
|
|
|
return sparc;
|
2010-02-04 06:34:01 +00:00
|
|
|
else if (ArchName == "sparcv9")
|
2010-08-12 11:31:39 +00:00
|
|
|
return sparcv9;
|
2009-07-26 04:23:03 +00:00
|
|
|
else if (ArchName == "s390x")
|
2010-08-12 11:31:39 +00:00
|
|
|
return systemz;
|
2009-08-19 20:46:03 +00:00
|
|
|
else if (ArchName == "tce")
|
2010-08-12 11:31:39 +00:00
|
|
|
return tce;
|
2009-08-31 21:51:36 +00:00
|
|
|
else if (ArchName == "xcore")
|
2010-08-12 11:31:39 +00:00
|
|
|
return xcore;
|
2011-04-20 15:37:17 +00:00
|
|
|
else if (ArchName == "ptx32")
|
|
|
|
return ptx32;
|
|
|
|
else if (ArchName == "ptx64")
|
|
|
|
return ptx64;
|
2009-04-01 21:53:23 +00:00
|
|
|
else
|
2010-08-12 11:31:39 +00:00
|
|
|
return UnknownArch;
|
|
|
|
}
|
2009-08-18 19:26:55 +00:00
|
|
|
|
2010-08-12 11:31:39 +00:00
|
|
|
Triple::VendorType Triple::ParseVendor(StringRef VendorName) {
|
2009-04-01 21:53:23 +00:00
|
|
|
if (VendorName == "apple")
|
2010-08-12 11:31:39 +00:00
|
|
|
return Apple;
|
2009-04-01 21:53:23 +00:00
|
|
|
else if (VendorName == "pc")
|
2010-08-12 11:31:39 +00:00
|
|
|
return PC;
|
2011-03-15 21:51:56 +00:00
|
|
|
else if (VendorName == "scei")
|
|
|
|
return SCEI;
|
2009-04-01 21:53:23 +00:00
|
|
|
else
|
2010-08-12 11:31:39 +00:00
|
|
|
return UnknownVendor;
|
|
|
|
}
|
2009-04-01 21:53:23 +00:00
|
|
|
|
2010-08-12 11:31:39 +00:00
|
|
|
Triple::OSType Triple::ParseOS(StringRef OSName) {
|
2009-07-26 03:31:47 +00:00
|
|
|
if (OSName.startswith("auroraux"))
|
2010-08-12 11:31:39 +00:00
|
|
|
return AuroraUX;
|
2009-07-26 04:23:03 +00:00
|
|
|
else if (OSName.startswith("cygwin"))
|
2010-08-12 11:31:39 +00:00
|
|
|
return Cygwin;
|
2009-07-26 03:31:47 +00:00
|
|
|
else if (OSName.startswith("darwin"))
|
2010-08-12 11:31:39 +00:00
|
|
|
return Darwin;
|
2009-07-26 03:31:47 +00:00
|
|
|
else if (OSName.startswith("dragonfly"))
|
2010-08-12 11:31:39 +00:00
|
|
|
return DragonFly;
|
2009-07-26 03:31:47 +00:00
|
|
|
else if (OSName.startswith("freebsd"))
|
2010-08-12 11:31:39 +00:00
|
|
|
return FreeBSD;
|
2011-04-19 20:19:27 +00:00
|
|
|
else if (OSName.startswith("ios"))
|
|
|
|
return IOS;
|
2009-07-26 03:31:47 +00:00
|
|
|
else if (OSName.startswith("linux"))
|
2010-08-12 11:31:39 +00:00
|
|
|
return Linux;
|
2009-11-19 11:59:00 +00:00
|
|
|
else if (OSName.startswith("lv2"))
|
2010-08-12 11:31:39 +00:00
|
|
|
return Lv2;
|
2011-04-19 23:34:12 +00:00
|
|
|
else if (OSName.startswith("macosx"))
|
|
|
|
return MacOSX;
|
2009-07-26 04:23:03 +00:00
|
|
|
else if (OSName.startswith("mingw32"))
|
2010-08-12 11:31:39 +00:00
|
|
|
return MinGW32;
|
2009-07-26 03:31:47 +00:00
|
|
|
else if (OSName.startswith("netbsd"))
|
2010-08-12 11:31:39 +00:00
|
|
|
return NetBSD;
|
2009-07-26 03:31:47 +00:00
|
|
|
else if (OSName.startswith("openbsd"))
|
2010-08-12 11:31:39 +00:00
|
|
|
return OpenBSD;
|
2009-11-15 10:18:17 +00:00
|
|
|
else if (OSName.startswith("psp"))
|
2010-08-12 11:31:39 +00:00
|
|
|
return Psp;
|
2009-08-18 04:43:27 +00:00
|
|
|
else if (OSName.startswith("solaris"))
|
2010-08-12 11:31:39 +00:00
|
|
|
return Solaris;
|
2009-07-26 04:23:03 +00:00
|
|
|
else if (OSName.startswith("win32"))
|
2010-08-12 11:31:39 +00:00
|
|
|
return Win32;
|
2009-10-16 02:06:30 +00:00
|
|
|
else if (OSName.startswith("haiku"))
|
2010-08-12 11:31:39 +00:00
|
|
|
return Haiku;
|
2010-07-07 15:52:27 +00:00
|
|
|
else if (OSName.startswith("minix"))
|
2010-08-12 11:31:39 +00:00
|
|
|
return Minix;
|
2011-07-06 20:56:26 +00:00
|
|
|
else if (OSName.startswith("rtems"))
|
|
|
|
return RTEMS;
|
2009-04-01 21:53:23 +00:00
|
|
|
else
|
2010-08-12 11:31:39 +00:00
|
|
|
return UnknownOS;
|
|
|
|
}
|
|
|
|
|
2010-09-16 08:25:48 +00:00
|
|
|
Triple::EnvironmentType Triple::ParseEnvironment(StringRef EnvironmentName) {
|
2011-01-21 18:25:47 +00:00
|
|
|
if (EnvironmentName.startswith("eabi"))
|
|
|
|
return EABI;
|
|
|
|
else if (EnvironmentName.startswith("gnueabi"))
|
|
|
|
return GNUEABI;
|
|
|
|
else if (EnvironmentName.startswith("gnu"))
|
|
|
|
return GNU;
|
2011-02-01 01:14:13 +00:00
|
|
|
else if (EnvironmentName.startswith("macho"))
|
|
|
|
return MachO;
|
2011-01-21 18:25:47 +00:00
|
|
|
else
|
|
|
|
return UnknownEnvironment;
|
2010-09-16 08:25:48 +00:00
|
|
|
}
|
|
|
|
|
2010-08-12 11:31:39 +00:00
|
|
|
void Triple::Parse() const {
|
|
|
|
assert(!isInitialized() && "Invalid parse call.");
|
|
|
|
|
|
|
|
Arch = ParseArch(getArchName());
|
|
|
|
Vendor = ParseVendor(getVendorName());
|
|
|
|
OS = ParseOS(getOSName());
|
2011-02-02 10:08:38 +00:00
|
|
|
Environment = ParseEnvironment(getEnvironmentName());
|
2010-08-12 11:31:39 +00:00
|
|
|
|
2009-04-01 21:53:23 +00:00
|
|
|
assert(isInitialized() && "Failed to initialize!");
|
|
|
|
}
|
|
|
|
|
2010-08-12 11:31:39 +00:00
|
|
|
std::string Triple::normalize(StringRef Str) {
|
|
|
|
// Parse into components.
|
|
|
|
SmallVector<StringRef, 4> Components;
|
|
|
|
for (size_t First = 0, Last = 0; Last != StringRef::npos; First = Last + 1) {
|
|
|
|
Last = Str.find('-', First);
|
|
|
|
Components.push_back(Str.slice(First, Last));
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the first component corresponds to a known architecture, preferentially
|
|
|
|
// use it for the architecture. If the second component corresponds to a
|
|
|
|
// known vendor, preferentially use it for the vendor, etc. This avoids silly
|
|
|
|
// component movement when a component parses as (eg) both a valid arch and a
|
|
|
|
// valid os.
|
|
|
|
ArchType Arch = UnknownArch;
|
|
|
|
if (Components.size() > 0)
|
|
|
|
Arch = ParseArch(Components[0]);
|
|
|
|
VendorType Vendor = UnknownVendor;
|
|
|
|
if (Components.size() > 1)
|
|
|
|
Vendor = ParseVendor(Components[1]);
|
|
|
|
OSType OS = UnknownOS;
|
|
|
|
if (Components.size() > 2)
|
|
|
|
OS = ParseOS(Components[2]);
|
2010-09-16 08:25:48 +00:00
|
|
|
EnvironmentType Environment = UnknownEnvironment;
|
|
|
|
if (Components.size() > 3)
|
|
|
|
Environment = ParseEnvironment(Components[3]);
|
2010-08-12 11:31:39 +00:00
|
|
|
|
|
|
|
// Note which components are already in their final position. These will not
|
|
|
|
// be moved.
|
2010-09-16 08:25:48 +00:00
|
|
|
bool Found[4];
|
2010-08-12 11:31:39 +00:00
|
|
|
Found[0] = Arch != UnknownArch;
|
|
|
|
Found[1] = Vendor != UnknownVendor;
|
|
|
|
Found[2] = OS != UnknownOS;
|
2010-09-16 08:25:48 +00:00
|
|
|
Found[3] = Environment != UnknownEnvironment;
|
2010-08-12 11:31:39 +00:00
|
|
|
|
|
|
|
// If they are not there already, permute the components into their canonical
|
|
|
|
// positions by seeing if they parse as a valid architecture, and if so moving
|
|
|
|
// the component to the architecture position etc.
|
2010-09-16 08:25:48 +00:00
|
|
|
for (unsigned Pos = 0; Pos != array_lengthof(Found); ++Pos) {
|
2010-08-12 11:31:39 +00:00
|
|
|
if (Found[Pos])
|
|
|
|
continue; // Already in the canonical position.
|
|
|
|
|
|
|
|
for (unsigned Idx = 0; Idx != Components.size(); ++Idx) {
|
|
|
|
// Do not reparse any components that already matched.
|
2010-09-16 08:25:48 +00:00
|
|
|
if (Idx < array_lengthof(Found) && Found[Idx])
|
2010-08-12 11:31:39 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
// Does this component parse as valid for the target position?
|
|
|
|
bool Valid = false;
|
|
|
|
StringRef Comp = Components[Idx];
|
|
|
|
switch (Pos) {
|
|
|
|
default:
|
|
|
|
assert(false && "unexpected component type!");
|
|
|
|
case 0:
|
|
|
|
Arch = ParseArch(Comp);
|
|
|
|
Valid = Arch != UnknownArch;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
Vendor = ParseVendor(Comp);
|
|
|
|
Valid = Vendor != UnknownVendor;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
OS = ParseOS(Comp);
|
2011-02-02 10:08:38 +00:00
|
|
|
Valid = OS != UnknownOS;
|
2010-08-12 11:31:39 +00:00
|
|
|
break;
|
2010-09-16 08:25:48 +00:00
|
|
|
case 3:
|
|
|
|
Environment = ParseEnvironment(Comp);
|
|
|
|
Valid = Environment != UnknownEnvironment;
|
|
|
|
break;
|
2010-08-12 11:31:39 +00:00
|
|
|
}
|
|
|
|
if (!Valid)
|
|
|
|
continue; // Nope, try the next component.
|
|
|
|
|
|
|
|
// Move the component to the target position, pushing any non-fixed
|
|
|
|
// components that are in the way to the right. This tends to give
|
|
|
|
// good results in the common cases of a forgotten vendor component
|
|
|
|
// or a wrongly positioned environment.
|
|
|
|
if (Pos < Idx) {
|
|
|
|
// Insert left, pushing the existing components to the right. For
|
|
|
|
// example, a-b-i386 -> i386-a-b when moving i386 to the front.
|
|
|
|
StringRef CurrentComponent(""); // The empty component.
|
|
|
|
// Replace the component we are moving with an empty component.
|
|
|
|
std::swap(CurrentComponent, Components[Idx]);
|
|
|
|
// Insert the component being moved at Pos, displacing any existing
|
|
|
|
// components to the right.
|
|
|
|
for (unsigned i = Pos; !CurrentComponent.empty(); ++i) {
|
|
|
|
// Skip over any fixed components.
|
2010-09-16 08:25:48 +00:00
|
|
|
while (i < array_lengthof(Found) && Found[i]) ++i;
|
2010-08-12 11:31:39 +00:00
|
|
|
// Place the component at the new position, getting the component
|
|
|
|
// that was at this position - it will be moved right.
|
|
|
|
std::swap(CurrentComponent, Components[i]);
|
|
|
|
}
|
|
|
|
} else if (Pos > Idx) {
|
|
|
|
// Push right by inserting empty components until the component at Idx
|
|
|
|
// reaches the target position Pos. For example, pc-a -> -pc-a when
|
|
|
|
// moving pc to the second position.
|
|
|
|
do {
|
|
|
|
// Insert one empty component at Idx.
|
|
|
|
StringRef CurrentComponent(""); // The empty component.
|
2011-02-02 10:08:38 +00:00
|
|
|
for (unsigned i = Idx; i < Components.size();) {
|
2010-08-12 11:31:39 +00:00
|
|
|
// Place the component at the new position, getting the component
|
|
|
|
// that was at this position - it will be moved right.
|
|
|
|
std::swap(CurrentComponent, Components[i]);
|
|
|
|
// If it was placed on top of an empty component then we are done.
|
|
|
|
if (CurrentComponent.empty())
|
|
|
|
break;
|
2011-02-02 10:08:38 +00:00
|
|
|
// Advance to the next component, skipping any fixed components.
|
2011-02-05 18:19:35 +00:00
|
|
|
while (++i < array_lengthof(Found) && Found[i])
|
|
|
|
;
|
2010-08-12 11:31:39 +00:00
|
|
|
}
|
|
|
|
// The last component was pushed off the end - append it.
|
|
|
|
if (!CurrentComponent.empty())
|
|
|
|
Components.push_back(CurrentComponent);
|
|
|
|
|
|
|
|
// Advance Idx to the component's new position.
|
2010-09-16 08:25:48 +00:00
|
|
|
while (++Idx < array_lengthof(Found) && Found[Idx]) {}
|
2010-08-12 11:31:39 +00:00
|
|
|
} while (Idx < Pos); // Add more until the final position is reached.
|
|
|
|
}
|
|
|
|
assert(Pos < Components.size() && Components[Pos] == Comp &&
|
|
|
|
"Component moved wrong!");
|
|
|
|
Found[Pos] = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Special case logic goes here. At this point Arch, Vendor and OS have the
|
|
|
|
// correct values for the computed components.
|
|
|
|
|
|
|
|
// Stick the corrected components back together to form the normalized string.
|
|
|
|
std::string Normalized;
|
|
|
|
for (unsigned i = 0, e = Components.size(); i != e; ++i) {
|
|
|
|
if (i) Normalized += '-';
|
|
|
|
Normalized += Components[i];
|
|
|
|
}
|
|
|
|
return Normalized;
|
|
|
|
}
|
|
|
|
|
2009-07-26 03:31:47 +00:00
|
|
|
StringRef Triple::getArchName() const {
|
|
|
|
return StringRef(Data).split('-').first; // Isolate first component
|
2009-04-01 21:53:23 +00:00
|
|
|
}
|
|
|
|
|
2009-07-26 03:31:47 +00:00
|
|
|
StringRef Triple::getVendorName() const {
|
|
|
|
StringRef Tmp = StringRef(Data).split('-').second; // Strip first component
|
|
|
|
return Tmp.split('-').first; // Isolate second component
|
2009-04-01 21:53:23 +00:00
|
|
|
}
|
|
|
|
|
2009-07-26 03:31:47 +00:00
|
|
|
StringRef Triple::getOSName() const {
|
|
|
|
StringRef Tmp = StringRef(Data).split('-').second; // Strip first component
|
|
|
|
Tmp = Tmp.split('-').second; // Strip second component
|
|
|
|
return Tmp.split('-').first; // Isolate third component
|
2009-04-01 21:53:23 +00:00
|
|
|
}
|
|
|
|
|
2009-07-26 03:31:47 +00:00
|
|
|
StringRef Triple::getEnvironmentName() const {
|
|
|
|
StringRef Tmp = StringRef(Data).split('-').second; // Strip first component
|
|
|
|
Tmp = Tmp.split('-').second; // Strip second component
|
|
|
|
return Tmp.split('-').second; // Strip third component
|
2009-04-01 21:53:23 +00:00
|
|
|
}
|
|
|
|
|
2009-07-26 03:31:47 +00:00
|
|
|
StringRef Triple::getOSAndEnvironmentName() const {
|
|
|
|
StringRef Tmp = StringRef(Data).split('-').second; // Strip first component
|
|
|
|
return Tmp.split('-').second; // Strip second component
|
2009-04-01 21:53:23 +00:00
|
|
|
}
|
|
|
|
|
2009-08-12 06:19:40 +00:00
|
|
|
static unsigned EatNumber(StringRef &Str) {
|
|
|
|
assert(!Str.empty() && Str[0] >= '0' && Str[0] <= '9' && "Not a number");
|
2011-04-19 20:24:34 +00:00
|
|
|
unsigned Result = 0;
|
2010-12-17 02:10:59 +00:00
|
|
|
|
2011-04-19 20:24:34 +00:00
|
|
|
do {
|
|
|
|
// Consume the leading digit.
|
2009-08-12 06:19:40 +00:00
|
|
|
Result = Result*10 + (Str[0] - '0');
|
2011-04-19 20:24:34 +00:00
|
|
|
|
2009-08-12 06:19:40 +00:00
|
|
|
// Eat the digit.
|
|
|
|
Str = Str.substr(1);
|
2011-04-19 20:24:34 +00:00
|
|
|
} while (!Str.empty() && Str[0] >= '0' && Str[0] <= '9');
|
2010-12-17 02:10:59 +00:00
|
|
|
|
2009-08-12 06:19:40 +00:00
|
|
|
return Result;
|
|
|
|
}
|
|
|
|
|
2011-04-19 20:24:34 +00:00
|
|
|
void Triple::getOSVersion(unsigned &Major, unsigned &Minor,
|
|
|
|
unsigned &Micro) const {
|
2009-08-12 06:19:40 +00:00
|
|
|
StringRef OSName = getOSName();
|
|
|
|
|
2011-04-19 20:24:34 +00:00
|
|
|
// Assume that the OS portion of the triple starts with the canonical name.
|
|
|
|
StringRef OSTypeName = getOSTypeName(getOS());
|
|
|
|
if (OSName.startswith(OSTypeName))
|
|
|
|
OSName = OSName.substr(OSTypeName.size());
|
2010-12-17 02:10:59 +00:00
|
|
|
|
2011-04-19 20:24:34 +00:00
|
|
|
// Any unset version defaults to 0.
|
|
|
|
Major = Minor = Micro = 0;
|
2010-12-17 02:10:59 +00:00
|
|
|
|
2011-04-19 20:24:34 +00:00
|
|
|
// Parse up to three components.
|
|
|
|
unsigned *Components[3] = { &Major, &Minor, &Micro };
|
|
|
|
for (unsigned i = 0; i != 3; ++i) {
|
|
|
|
if (OSName.empty() || OSName[0] < '0' || OSName[0] > '9')
|
|
|
|
break;
|
2010-12-17 02:10:59 +00:00
|
|
|
|
2011-04-19 20:24:34 +00:00
|
|
|
// Consume the leading number.
|
|
|
|
*Components[i] = EatNumber(OSName);
|
2009-08-12 06:19:40 +00:00
|
|
|
|
2011-04-19 20:24:34 +00:00
|
|
|
// Consume the separator, if present.
|
|
|
|
if (OSName.startswith("."))
|
|
|
|
OSName = OSName.substr(1);
|
|
|
|
}
|
2009-08-12 06:19:40 +00:00
|
|
|
}
|
|
|
|
|
2009-07-26 03:31:47 +00:00
|
|
|
void Triple::setTriple(const Twine &Str) {
|
|
|
|
Data = Str.str();
|
2009-04-01 21:53:23 +00:00
|
|
|
Arch = InvalidArch;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Triple::setArch(ArchType Kind) {
|
|
|
|
setArchName(getArchTypeName(Kind));
|
|
|
|
}
|
|
|
|
|
|
|
|
void Triple::setVendor(VendorType Kind) {
|
|
|
|
setVendorName(getVendorTypeName(Kind));
|
|
|
|
}
|
|
|
|
|
|
|
|
void Triple::setOS(OSType Kind) {
|
|
|
|
setOSName(getOSTypeName(Kind));
|
|
|
|
}
|
|
|
|
|
2010-09-16 08:25:48 +00:00
|
|
|
void Triple::setEnvironment(EnvironmentType Kind) {
|
|
|
|
setEnvironmentName(getEnvironmentTypeName(Kind));
|
|
|
|
}
|
|
|
|
|
2009-11-06 10:58:06 +00:00
|
|
|
void Triple::setArchName(StringRef Str) {
|
2009-10-06 21:45:26 +00:00
|
|
|
// Work around a miscompilation bug for Twines in gcc 4.0.3.
|
|
|
|
SmallString<64> Triple;
|
|
|
|
Triple += Str;
|
|
|
|
Triple += "-";
|
|
|
|
Triple += getVendorName();
|
|
|
|
Triple += "-";
|
|
|
|
Triple += getOSAndEnvironmentName();
|
|
|
|
setTriple(Triple.str());
|
2009-04-01 21:53:23 +00:00
|
|
|
}
|
|
|
|
|
2009-11-06 10:58:06 +00:00
|
|
|
void Triple::setVendorName(StringRef Str) {
|
2009-04-01 21:53:23 +00:00
|
|
|
setTriple(getArchName() + "-" + Str + "-" + getOSAndEnvironmentName());
|
|
|
|
}
|
|
|
|
|
2009-11-06 10:58:06 +00:00
|
|
|
void Triple::setOSName(StringRef Str) {
|
2009-04-01 21:53:23 +00:00
|
|
|
if (hasEnvironment())
|
|
|
|
setTriple(getArchName() + "-" + getVendorName() + "-" + Str +
|
|
|
|
"-" + getEnvironmentName());
|
|
|
|
else
|
|
|
|
setTriple(getArchName() + "-" + getVendorName() + "-" + Str);
|
|
|
|
}
|
|
|
|
|
2009-11-06 10:58:06 +00:00
|
|
|
void Triple::setEnvironmentName(StringRef Str) {
|
|
|
|
setTriple(getArchName() + "-" + getVendorName() + "-" + getOSName() +
|
2009-04-01 21:53:23 +00:00
|
|
|
"-" + Str);
|
|
|
|
}
|
|
|
|
|
2009-11-06 10:58:06 +00:00
|
|
|
void Triple::setOSAndEnvironmentName(StringRef Str) {
|
2009-04-01 21:53:23 +00:00
|
|
|
setTriple(getArchName() + "-" + getVendorName() + "-" + Str);
|
|
|
|
}
|