1 //===--- Triple.cpp - Target triple helper class --------------------------===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 10 #include "llvm/ADT/Triple.h" 11 #include "llvm/ADT/SmallString.h" 12 #include "llvm/ADT/StringSwitch.h" 13 #include "llvm/ADT/STLExtras.h" 14 #include "llvm/Support/ErrorHandling.h" 15 #include <cstring> 16 using namespace llvm; 17 18 const char *Triple::getArchTypeName(ArchType Kind) { 19 switch (Kind) { 20 case UnknownArch: return "unknown"; 21 22 case arm: return "arm"; 23 case cellspu: return "cellspu"; 24 case hexagon: return "hexagon"; 25 case mips: return "mips"; 26 case mipsel: return "mipsel"; 27 case mips64: return "mips64"; 28 case mips64el:return "mips64el"; 29 case msp430: return "msp430"; 30 case ppc64: return "powerpc64"; 31 case ppc: return "powerpc"; 32 case r600: return "r600"; 33 case sparc: return "sparc"; 34 case sparcv9: return "sparcv9"; 35 case tce: return "tce"; 36 case thumb: return "thumb"; 37 case x86: return "i386"; 38 case x86_64: return "x86_64"; 39 case xcore: return "xcore"; 40 case mblaze: return "mblaze"; 41 case nvptx: return "nvptx"; 42 case nvptx64: return "nvptx64"; 43 case le32: return "le32"; 44 case amdil: return "amdil"; 45 } 46 47 llvm_unreachable("Invalid ArchType!"); 48 } 49 50 const char *Triple::getArchTypePrefix(ArchType Kind) { 51 switch (Kind) { 52 default: 53 return 0; 54 55 case arm: 56 case thumb: return "arm"; 57 58 case cellspu: return "spu"; 59 60 case ppc64: 61 case ppc: return "ppc"; 62 63 case mblaze: return "mblaze"; 64 65 case mips: 66 case mipsel: 67 case mips64: 68 case mips64el:return "mips"; 69 70 case hexagon: return "hexagon"; 71 72 case r600: return "r600"; 73 74 case sparcv9: 75 case sparc: return "sparc"; 76 77 case x86: 78 case x86_64: return "x86"; 79 80 case xcore: return "xcore"; 81 82 case nvptx: return "nvptx"; 83 case nvptx64: return "nvptx"; 84 case le32: return "le32"; 85 case amdil: return "amdil"; 86 } 87 } 88 89 const char *Triple::getVendorTypeName(VendorType Kind) { 90 switch (Kind) { 91 case UnknownVendor: return "unknown"; 92 93 case Apple: return "apple"; 94 case PC: return "pc"; 95 case SCEI: return "scei"; 96 case BGP: return "bgp"; 97 case BGQ: return "bgq"; 98 } 99 100 llvm_unreachable("Invalid VendorType!"); 101 } 102 103 const char *Triple::getOSTypeName(OSType Kind) { 104 switch (Kind) { 105 case UnknownOS: return "unknown"; 106 107 case AuroraUX: return "auroraux"; 108 case Cygwin: return "cygwin"; 109 case Darwin: return "darwin"; 110 case DragonFly: return "dragonfly"; 111 case FreeBSD: return "freebsd"; 112 case IOS: return "ios"; 113 case KFreeBSD: return "kfreebsd"; 114 case Linux: return "linux"; 115 case Lv2: return "lv2"; 116 case MacOSX: return "macosx"; 117 case MinGW32: return "mingw32"; 118 case NetBSD: return "netbsd"; 119 case OpenBSD: return "openbsd"; 120 case Solaris: return "solaris"; 121 case Win32: return "win32"; 122 case Haiku: return "haiku"; 123 case Minix: return "minix"; 124 case RTEMS: return "rtems"; 125 case NativeClient: return "nacl"; 126 case CNK: return "cnk"; 127 case Bitrig: return "bitrig"; 128 } 129 130 llvm_unreachable("Invalid OSType"); 131 } 132 133 const char *Triple::getEnvironmentTypeName(EnvironmentType Kind) { 134 switch (Kind) { 135 case UnknownEnvironment: return "unknown"; 136 case GNU: return "gnu"; 137 case GNUEABIHF: return "gnueabihf"; 138 case GNUEABI: return "gnueabi"; 139 case EABI: return "eabi"; 140 case MachO: return "macho"; 141 case ANDROIDEABI: return "androideabi"; 142 } 143 144 llvm_unreachable("Invalid EnvironmentType!"); 145 } 146 147 Triple::ArchType Triple::getArchTypeForLLVMName(StringRef Name) { 148 return StringSwitch<Triple::ArchType>(Name) 149 .Case("arm", arm) 150 .Case("cellspu", cellspu) 151 .Case("mips", mips) 152 .Case("mipsel", mipsel) 153 .Case("mips64", mips64) 154 .Case("mips64el", mips64el) 155 .Case("msp430", msp430) 156 .Case("ppc64", ppc64) 157 .Case("ppc32", ppc) 158 .Case("ppc", ppc) 159 .Case("mblaze", mblaze) 160 .Case("r600", r600) 161 .Case("hexagon", hexagon) 162 .Case("sparc", sparc) 163 .Case("sparcv9", sparcv9) 164 .Case("tce", tce) 165 .Case("thumb", thumb) 166 .Case("x86", x86) 167 .Case("x86-64", x86_64) 168 .Case("xcore", xcore) 169 .Case("nvptx", nvptx) 170 .Case("nvptx64", nvptx64) 171 .Case("le32", le32) 172 .Case("amdil", amdil) 173 .Default(UnknownArch); 174 } 175 176 Triple::ArchType Triple::getArchTypeForDarwinArchName(StringRef Str) { 177 // See arch(3) and llvm-gcc's driver-driver.c. We don't implement support for 178 // archs which Darwin doesn't use. 179 180 // The matching this routine does is fairly pointless, since it is neither the 181 // complete architecture list, nor a reasonable subset. The problem is that 182 // historically the driver driver accepts this and also ties its -march= 183 // handling to the architecture name, so we need to be careful before removing 184 // support for it. 185 186 // This code must be kept in sync with Clang's Darwin specific argument 187 // translation. 188 189 return StringSwitch<ArchType>(Str) 190 .Cases("ppc", "ppc601", "ppc603", "ppc604", "ppc604e", Triple::ppc) 191 .Cases("ppc750", "ppc7400", "ppc7450", "ppc970", Triple::ppc) 192 .Case("ppc64", Triple::ppc64) 193 .Cases("i386", "i486", "i486SX", "i586", "i686", Triple::x86) 194 .Cases("pentium", "pentpro", "pentIIm3", "pentIIm5", "pentium4", 195 Triple::x86) 196 .Case("x86_64", Triple::x86_64) 197 // This is derived from the driver driver. 198 .Cases("arm", "armv4t", "armv5", "armv6", Triple::arm) 199 .Cases("armv7", "armv7f", "armv7k", "armv7s", "xscale", Triple::arm) 200 .Case("r600", Triple::r600) 201 .Case("nvptx", Triple::nvptx) 202 .Case("nvptx64", Triple::nvptx64) 203 .Case("amdil", Triple::amdil) 204 .Default(Triple::UnknownArch); 205 } 206 207 // Returns architecture name that is understood by the target assembler. 208 const char *Triple::getArchNameForAssembler() { 209 if (!isOSDarwin() && getVendor() != Triple::Apple) 210 return NULL; 211 212 return StringSwitch<const char*>(getArchName()) 213 .Case("i386", "i386") 214 .Case("x86_64", "x86_64") 215 .Case("powerpc", "ppc") 216 .Case("powerpc64", "ppc64") 217 .Cases("mblaze", "microblaze", "mblaze") 218 .Case("arm", "arm") 219 .Cases("armv4t", "thumbv4t", "armv4t") 220 .Cases("armv5", "armv5e", "thumbv5", "thumbv5e", "armv5") 221 .Cases("armv6", "thumbv6", "armv6") 222 .Cases("armv7", "thumbv7", "armv7") 223 .Case("r600", "r600") 224 .Case("nvptx", "nvptx") 225 .Case("nvptx64", "nvptx64") 226 .Case("le32", "le32") 227 .Case("amdil", "amdil") 228 .Default(NULL); 229 } 230 231 static Triple::ArchType parseArch(StringRef ArchName) { 232 return StringSwitch<Triple::ArchType>(ArchName) 233 .Cases("i386", "i486", "i586", "i686", Triple::x86) 234 // FIXME: Do we need to support these? 235 .Cases("i786", "i886", "i986", Triple::x86) 236 .Cases("amd64", "x86_64", Triple::x86_64) 237 .Case("powerpc", Triple::ppc) 238 .Cases("powerpc64", "ppu", Triple::ppc64) 239 .Case("mblaze", Triple::mblaze) 240 .Cases("arm", "xscale", Triple::arm) 241 // FIXME: It would be good to replace these with explicit names for all the 242 // various suffixes supported. 243 .StartsWith("armv", Triple::arm) 244 .Case("thumb", Triple::thumb) 245 .StartsWith("thumbv", Triple::thumb) 246 .Cases("spu", "cellspu", Triple::cellspu) 247 .Case("msp430", Triple::msp430) 248 .Cases("mips", "mipseb", "mipsallegrex", Triple::mips) 249 .Cases("mipsel", "mipsallegrexel", Triple::mipsel) 250 .Cases("mips64", "mips64eb", Triple::mips64) 251 .Case("mips64el", Triple::mips64el) 252 .Case("r600", Triple::r600) 253 .Case("hexagon", Triple::hexagon) 254 .Case("sparc", Triple::sparc) 255 .Case("sparcv9", Triple::sparcv9) 256 .Case("tce", Triple::tce) 257 .Case("xcore", Triple::xcore) 258 .Case("nvptx", Triple::nvptx) 259 .Case("nvptx64", Triple::nvptx64) 260 .Case("le32", Triple::le32) 261 .Case("amdil", Triple::amdil) 262 .Default(Triple::UnknownArch); 263 } 264 265 static Triple::VendorType parseVendor(StringRef VendorName) { 266 return StringSwitch<Triple::VendorType>(VendorName) 267 .Case("apple", Triple::Apple) 268 .Case("pc", Triple::PC) 269 .Case("scei", Triple::SCEI) 270 .Case("bgp", Triple::BGP) 271 .Case("bgq", Triple::BGQ) 272 .Default(Triple::UnknownVendor); 273 } 274 275 static Triple::OSType parseOS(StringRef OSName) { 276 return StringSwitch<Triple::OSType>(OSName) 277 .StartsWith("auroraux", Triple::AuroraUX) 278 .StartsWith("cygwin", Triple::Cygwin) 279 .StartsWith("darwin", Triple::Darwin) 280 .StartsWith("dragonfly", Triple::DragonFly) 281 .StartsWith("freebsd", Triple::FreeBSD) 282 .StartsWith("ios", Triple::IOS) 283 .StartsWith("kfreebsd", Triple::KFreeBSD) 284 .StartsWith("linux", Triple::Linux) 285 .StartsWith("lv2", Triple::Lv2) 286 .StartsWith("macosx", Triple::MacOSX) 287 .StartsWith("mingw32", Triple::MinGW32) 288 .StartsWith("netbsd", Triple::NetBSD) 289 .StartsWith("openbsd", Triple::OpenBSD) 290 .StartsWith("solaris", Triple::Solaris) 291 .StartsWith("win32", Triple::Win32) 292 .StartsWith("haiku", Triple::Haiku) 293 .StartsWith("minix", Triple::Minix) 294 .StartsWith("rtems", Triple::RTEMS) 295 .StartsWith("nacl", Triple::NativeClient) 296 .StartsWith("cnk", Triple::CNK) 297 .StartsWith("bitrig", Triple::Bitrig) 298 .Default(Triple::UnknownOS); 299 } 300 301 static Triple::EnvironmentType parseEnvironment(StringRef EnvironmentName) { 302 return StringSwitch<Triple::EnvironmentType>(EnvironmentName) 303 .StartsWith("eabi", Triple::EABI) 304 .StartsWith("gnueabihf", Triple::GNUEABIHF) 305 .StartsWith("gnueabi", Triple::GNUEABI) 306 .StartsWith("gnu", Triple::GNU) 307 .StartsWith("macho", Triple::MachO) 308 .StartsWith("androideabi", Triple::ANDROIDEABI) 309 .Default(Triple::UnknownEnvironment); 310 } 311 312 /// \brief Construct a triple from the string representation provided. 313 /// 314 /// This stores the string representation and parses the various pieces into 315 /// enum members. 316 Triple::Triple(const Twine &Str) 317 : Data(Str.str()), 318 Arch(parseArch(getArchName())), 319 Vendor(parseVendor(getVendorName())), 320 OS(parseOS(getOSName())), 321 Environment(parseEnvironment(getEnvironmentName())) { 322 } 323 324 /// \brief Construct a triple from string representations of the architecture, 325 /// vendor, and OS. 326 /// 327 /// This joins each argument into a canonical string representation and parses 328 /// them into enum members. It leaves the environment unknown and omits it from 329 /// the string representation. 330 Triple::Triple(const Twine &ArchStr, const Twine &VendorStr, const Twine &OSStr) 331 : Data((ArchStr + Twine('-') + VendorStr + Twine('-') + OSStr).str()), 332 Arch(parseArch(ArchStr.str())), 333 Vendor(parseVendor(VendorStr.str())), 334 OS(parseOS(OSStr.str())), 335 Environment() { 336 } 337 338 /// \brief Construct a triple from string representations of the architecture, 339 /// vendor, OS, and environment. 340 /// 341 /// This joins each argument into a canonical string representation and parses 342 /// them into enum members. 343 Triple::Triple(const Twine &ArchStr, const Twine &VendorStr, const Twine &OSStr, 344 const Twine &EnvironmentStr) 345 : Data((ArchStr + Twine('-') + VendorStr + Twine('-') + OSStr + Twine('-') + 346 EnvironmentStr).str()), 347 Arch(parseArch(ArchStr.str())), 348 Vendor(parseVendor(VendorStr.str())), 349 OS(parseOS(OSStr.str())), 350 Environment(parseEnvironment(EnvironmentStr.str())) { 351 } 352 353 std::string Triple::normalize(StringRef Str) { 354 // Parse into components. 355 SmallVector<StringRef, 4> Components; 356 Str.split(Components, "-"); 357 358 // If the first component corresponds to a known architecture, preferentially 359 // use it for the architecture. If the second component corresponds to a 360 // known vendor, preferentially use it for the vendor, etc. This avoids silly 361 // component movement when a component parses as (eg) both a valid arch and a 362 // valid os. 363 ArchType Arch = UnknownArch; 364 if (Components.size() > 0) 365 Arch = parseArch(Components[0]); 366 VendorType Vendor = UnknownVendor; 367 if (Components.size() > 1) 368 Vendor = parseVendor(Components[1]); 369 OSType OS = UnknownOS; 370 if (Components.size() > 2) 371 OS = parseOS(Components[2]); 372 EnvironmentType Environment = UnknownEnvironment; 373 if (Components.size() > 3) 374 Environment = parseEnvironment(Components[3]); 375 376 // Note which components are already in their final position. These will not 377 // be moved. 378 bool Found[4]; 379 Found[0] = Arch != UnknownArch; 380 Found[1] = Vendor != UnknownVendor; 381 Found[2] = OS != UnknownOS; 382 Found[3] = Environment != UnknownEnvironment; 383 384 // If they are not there already, permute the components into their canonical 385 // positions by seeing if they parse as a valid architecture, and if so moving 386 // the component to the architecture position etc. 387 for (unsigned Pos = 0; Pos != array_lengthof(Found); ++Pos) { 388 if (Found[Pos]) 389 continue; // Already in the canonical position. 390 391 for (unsigned Idx = 0; Idx != Components.size(); ++Idx) { 392 // Do not reparse any components that already matched. 393 if (Idx < array_lengthof(Found) && Found[Idx]) 394 continue; 395 396 // Does this component parse as valid for the target position? 397 bool Valid = false; 398 StringRef Comp = Components[Idx]; 399 switch (Pos) { 400 default: llvm_unreachable("unexpected component type!"); 401 case 0: 402 Arch = parseArch(Comp); 403 Valid = Arch != UnknownArch; 404 break; 405 case 1: 406 Vendor = parseVendor(Comp); 407 Valid = Vendor != UnknownVendor; 408 break; 409 case 2: 410 OS = parseOS(Comp); 411 Valid = OS != UnknownOS; 412 break; 413 case 3: 414 Environment = parseEnvironment(Comp); 415 Valid = Environment != UnknownEnvironment; 416 break; 417 } 418 if (!Valid) 419 continue; // Nope, try the next component. 420 421 // Move the component to the target position, pushing any non-fixed 422 // components that are in the way to the right. This tends to give 423 // good results in the common cases of a forgotten vendor component 424 // or a wrongly positioned environment. 425 if (Pos < Idx) { 426 // Insert left, pushing the existing components to the right. For 427 // example, a-b-i386 -> i386-a-b when moving i386 to the front. 428 StringRef CurrentComponent(""); // The empty component. 429 // Replace the component we are moving with an empty component. 430 std::swap(CurrentComponent, Components[Idx]); 431 // Insert the component being moved at Pos, displacing any existing 432 // components to the right. 433 for (unsigned i = Pos; !CurrentComponent.empty(); ++i) { 434 // Skip over any fixed components. 435 while (i < array_lengthof(Found) && Found[i]) 436 ++i; 437 // Place the component at the new position, getting the component 438 // that was at this position - it will be moved right. 439 std::swap(CurrentComponent, Components[i]); 440 } 441 } else if (Pos > Idx) { 442 // Push right by inserting empty components until the component at Idx 443 // reaches the target position Pos. For example, pc-a -> -pc-a when 444 // moving pc to the second position. 445 do { 446 // Insert one empty component at Idx. 447 StringRef CurrentComponent(""); // The empty component. 448 for (unsigned i = Idx; i < Components.size();) { 449 // Place the component at the new position, getting the component 450 // that was at this position - it will be moved right. 451 std::swap(CurrentComponent, Components[i]); 452 // If it was placed on top of an empty component then we are done. 453 if (CurrentComponent.empty()) 454 break; 455 // Advance to the next component, skipping any fixed components. 456 while (++i < array_lengthof(Found) && Found[i]) 457 ; 458 } 459 // The last component was pushed off the end - append it. 460 if (!CurrentComponent.empty()) 461 Components.push_back(CurrentComponent); 462 463 // Advance Idx to the component's new position. 464 while (++Idx < array_lengthof(Found) && Found[Idx]) 465 ; 466 } while (Idx < Pos); // Add more until the final position is reached. 467 } 468 assert(Pos < Components.size() && Components[Pos] == Comp && 469 "Component moved wrong!"); 470 Found[Pos] = true; 471 break; 472 } 473 } 474 475 // Special case logic goes here. At this point Arch, Vendor and OS have the 476 // correct values for the computed components. 477 478 // Stick the corrected components back together to form the normalized string. 479 std::string Normalized; 480 for (unsigned i = 0, e = Components.size(); i != e; ++i) { 481 if (i) Normalized += '-'; 482 Normalized += Components[i]; 483 } 484 return Normalized; 485 } 486 487 StringRef Triple::getArchName() const { 488 return StringRef(Data).split('-').first; // Isolate first component 489 } 490 491 StringRef Triple::getVendorName() const { 492 StringRef Tmp = StringRef(Data).split('-').second; // Strip first component 493 return Tmp.split('-').first; // Isolate second component 494 } 495 496 StringRef Triple::getOSName() const { 497 StringRef Tmp = StringRef(Data).split('-').second; // Strip first component 498 Tmp = Tmp.split('-').second; // Strip second component 499 return Tmp.split('-').first; // Isolate third component 500 } 501 502 StringRef Triple::getEnvironmentName() const { 503 StringRef Tmp = StringRef(Data).split('-').second; // Strip first component 504 Tmp = Tmp.split('-').second; // Strip second component 505 return Tmp.split('-').second; // Strip third component 506 } 507 508 StringRef Triple::getOSAndEnvironmentName() const { 509 StringRef Tmp = StringRef(Data).split('-').second; // Strip first component 510 return Tmp.split('-').second; // Strip second component 511 } 512 513 static unsigned EatNumber(StringRef &Str) { 514 assert(!Str.empty() && Str[0] >= '0' && Str[0] <= '9' && "Not a number"); 515 unsigned Result = 0; 516 517 do { 518 // Consume the leading digit. 519 Result = Result*10 + (Str[0] - '0'); 520 521 // Eat the digit. 522 Str = Str.substr(1); 523 } while (!Str.empty() && Str[0] >= '0' && Str[0] <= '9'); 524 525 return Result; 526 } 527 528 void Triple::getOSVersion(unsigned &Major, unsigned &Minor, 529 unsigned &Micro) const { 530 StringRef OSName = getOSName(); 531 532 // Assume that the OS portion of the triple starts with the canonical name. 533 StringRef OSTypeName = getOSTypeName(getOS()); 534 if (OSName.startswith(OSTypeName)) 535 OSName = OSName.substr(OSTypeName.size()); 536 537 // Any unset version defaults to 0. 538 Major = Minor = Micro = 0; 539 540 // Parse up to three components. 541 unsigned *Components[3] = { &Major, &Minor, &Micro }; 542 for (unsigned i = 0; i != 3; ++i) { 543 if (OSName.empty() || OSName[0] < '0' || OSName[0] > '9') 544 break; 545 546 // Consume the leading number. 547 *Components[i] = EatNumber(OSName); 548 549 // Consume the separator, if present. 550 if (OSName.startswith(".")) 551 OSName = OSName.substr(1); 552 } 553 } 554 555 bool Triple::getMacOSXVersion(unsigned &Major, unsigned &Minor, 556 unsigned &Micro) const { 557 getOSVersion(Major, Minor, Micro); 558 559 switch (getOS()) { 560 default: llvm_unreachable("unexpected OS for Darwin triple"); 561 case Darwin: 562 // Default to darwin8, i.e., MacOSX 10.4. 563 if (Major == 0) 564 Major = 8; 565 // Darwin version numbers are skewed from OS X versions. 566 if (Major < 4) 567 return false; 568 Micro = 0; 569 Minor = Major - 4; 570 Major = 10; 571 break; 572 case MacOSX: 573 // Default to 10.4. 574 if (Major == 0) { 575 Major = 10; 576 Minor = 4; 577 } 578 if (Major != 10) 579 return false; 580 break; 581 case IOS: 582 // Ignore the version from the triple. This is only handled because the 583 // the clang driver combines OS X and IOS support into a common Darwin 584 // toolchain that wants to know the OS X version number even when targeting 585 // IOS. 586 Major = 10; 587 Minor = 4; 588 Micro = 0; 589 break; 590 } 591 return true; 592 } 593 594 void Triple::getiOSVersion(unsigned &Major, unsigned &Minor, 595 unsigned &Micro) const { 596 switch (getOS()) { 597 default: llvm_unreachable("unexpected OS for Darwin triple"); 598 case Darwin: 599 case MacOSX: 600 // Ignore the version from the triple. This is only handled because the 601 // the clang driver combines OS X and IOS support into a common Darwin 602 // toolchain that wants to know the iOS version number even when targeting 603 // OS X. 604 Major = 3; 605 Minor = 0; 606 Micro = 0; 607 break; 608 case IOS: 609 getOSVersion(Major, Minor, Micro); 610 // Default to 3.0. 611 if (Major == 0) 612 Major = 3; 613 break; 614 } 615 } 616 617 void Triple::setTriple(const Twine &Str) { 618 *this = Triple(Str); 619 } 620 621 void Triple::setArch(ArchType Kind) { 622 setArchName(getArchTypeName(Kind)); 623 } 624 625 void Triple::setVendor(VendorType Kind) { 626 setVendorName(getVendorTypeName(Kind)); 627 } 628 629 void Triple::setOS(OSType Kind) { 630 setOSName(getOSTypeName(Kind)); 631 } 632 633 void Triple::setEnvironment(EnvironmentType Kind) { 634 setEnvironmentName(getEnvironmentTypeName(Kind)); 635 } 636 637 void Triple::setArchName(StringRef Str) { 638 // Work around a miscompilation bug for Twines in gcc 4.0.3. 639 SmallString<64> Triple; 640 Triple += Str; 641 Triple += "-"; 642 Triple += getVendorName(); 643 Triple += "-"; 644 Triple += getOSAndEnvironmentName(); 645 setTriple(Triple.str()); 646 } 647 648 void Triple::setVendorName(StringRef Str) { 649 setTriple(getArchName() + "-" + Str + "-" + getOSAndEnvironmentName()); 650 } 651 652 void Triple::setOSName(StringRef Str) { 653 if (hasEnvironment()) 654 setTriple(getArchName() + "-" + getVendorName() + "-" + Str + 655 "-" + getEnvironmentName()); 656 else 657 setTriple(getArchName() + "-" + getVendorName() + "-" + Str); 658 } 659 660 void Triple::setEnvironmentName(StringRef Str) { 661 setTriple(getArchName() + "-" + getVendorName() + "-" + getOSName() + 662 "-" + Str); 663 } 664 665 void Triple::setOSAndEnvironmentName(StringRef Str) { 666 setTriple(getArchName() + "-" + getVendorName() + "-" + Str); 667 } 668 669 static unsigned getArchPointerBitWidth(llvm::Triple::ArchType Arch) { 670 switch (Arch) { 671 case llvm::Triple::UnknownArch: 672 return 0; 673 674 case llvm::Triple::msp430: 675 return 16; 676 677 case llvm::Triple::amdil: 678 case llvm::Triple::arm: 679 case llvm::Triple::cellspu: 680 case llvm::Triple::hexagon: 681 case llvm::Triple::le32: 682 case llvm::Triple::mblaze: 683 case llvm::Triple::mips: 684 case llvm::Triple::mipsel: 685 case llvm::Triple::nvptx: 686 case llvm::Triple::ppc: 687 case llvm::Triple::r600: 688 case llvm::Triple::sparc: 689 case llvm::Triple::tce: 690 case llvm::Triple::thumb: 691 case llvm::Triple::x86: 692 case llvm::Triple::xcore: 693 return 32; 694 695 case llvm::Triple::mips64: 696 case llvm::Triple::mips64el: 697 case llvm::Triple::nvptx64: 698 case llvm::Triple::ppc64: 699 case llvm::Triple::sparcv9: 700 case llvm::Triple::x86_64: 701 return 64; 702 } 703 llvm_unreachable("Invalid architecture value"); 704 } 705 706 bool Triple::isArch64Bit() const { 707 return getArchPointerBitWidth(getArch()) == 64; 708 } 709 710 bool Triple::isArch32Bit() const { 711 return getArchPointerBitWidth(getArch()) == 32; 712 } 713 714 bool Triple::isArch16Bit() const { 715 return getArchPointerBitWidth(getArch()) == 16; 716 } 717 718 Triple Triple::get32BitArchVariant() const { 719 Triple T(*this); 720 switch (getArch()) { 721 case Triple::UnknownArch: 722 case Triple::msp430: 723 T.setArch(UnknownArch); 724 break; 725 726 case Triple::amdil: 727 case Triple::arm: 728 case Triple::cellspu: 729 case Triple::hexagon: 730 case Triple::le32: 731 case Triple::mblaze: 732 case Triple::mips: 733 case Triple::mipsel: 734 case Triple::nvptx: 735 case Triple::ppc: 736 case Triple::r600: 737 case Triple::sparc: 738 case Triple::tce: 739 case Triple::thumb: 740 case Triple::x86: 741 case Triple::xcore: 742 // Already 32-bit. 743 break; 744 745 case Triple::mips64: T.setArch(Triple::mips); break; 746 case Triple::mips64el: T.setArch(Triple::mipsel); break; 747 case Triple::nvptx64: T.setArch(Triple::nvptx); break; 748 case Triple::ppc64: T.setArch(Triple::ppc); break; 749 case Triple::sparcv9: T.setArch(Triple::sparc); break; 750 case Triple::x86_64: T.setArch(Triple::x86); break; 751 } 752 return T; 753 } 754 755 Triple Triple::get64BitArchVariant() const { 756 Triple T(*this); 757 switch (getArch()) { 758 case Triple::UnknownArch: 759 case Triple::amdil: 760 case Triple::arm: 761 case Triple::cellspu: 762 case Triple::hexagon: 763 case Triple::le32: 764 case Triple::mblaze: 765 case Triple::msp430: 766 case Triple::r600: 767 case Triple::tce: 768 case Triple::thumb: 769 case Triple::xcore: 770 T.setArch(UnknownArch); 771 break; 772 773 case Triple::mips64: 774 case Triple::mips64el: 775 case Triple::nvptx64: 776 case Triple::ppc64: 777 case Triple::sparcv9: 778 case Triple::x86_64: 779 // Already 64-bit. 780 break; 781 782 case Triple::mips: T.setArch(Triple::mips64); break; 783 case Triple::mipsel: T.setArch(Triple::mips64el); break; 784 case Triple::nvptx: T.setArch(Triple::nvptx64); break; 785 case Triple::ppc: T.setArch(Triple::ppc64); break; 786 case Triple::sparc: T.setArch(Triple::sparcv9); break; 787 case Triple::x86: T.setArch(Triple::x86_64); break; 788 } 789 return T; 790 } 791