aboutsummaryrefslogtreecommitdiff
path: root/lib/Support/Triple.cpp
AgeCommit message (Expand)Author
2013-01-31Add AArch64 as an experimental target.Tim Northover
2013-01-22Initial patch for x32 ABI support.Eli Bendersky
2012-12-04Make NaCl naming consistent. The triple OSType is called NaCl and is representedEli Bendersky
2012-12-03Use the new script to sort the includes of every file under lib.Chandler Carruth
2012-11-15Add support for SPIR64 target - the 64bit counterpart of SPIR.Guy Benyei
2012-11-14Remove the CellSPU port.Eric Christopher
2012-10-31Remove Triple::getArchTypeForDarwinArchName. I lives on the clang driver now.Rafael Espindola
2012-10-12Add powerpc-ibm-aix to Triple. Patch by Kai.Duncan Sands
2012-10-02Support for generating ELF objects on Windows.Andrew Kaylor
2012-10-01Add in support for SPIR to LLVM core. This adds a new target and two new call...Micah Villmow
2012-09-02Rename ANDROIDEABI to Android.Logan Chien
2012-08-28Add the Freescale vendor to Triple.Hal Finkel
2012-08-06Add support for the OpenBSD for Bitrig.Eric Christopher
2012-06-28Enable automatic GCC<->LLVM intrinsic translation for mips.Benjamin Kramer
2012-05-24Remove the PTX back-end and all of its artifacts (triple, etc.)Justin Holewinski
2012-05-09Set the default iOS version to 3.0.Chad Rosier
2012-05-09Don't return true on a function with a void return type.Chad Rosier
2012-05-09Add Triple::getiOSVersion.Chad Rosier
2012-05-04This patch adds a new NVPTX back-end to LLVM which supports code generation f...Justin Holewinski
2012-04-02Add triple support for the IBM BG/P and BG/Q supercomputers.Hal Finkel
2012-03-09Add support for r600 (AMD GPUs HD2XXX - HD6XXX) target triplet.Anton Korobeynikov
2012-02-22Support was removed from LLVM's MIPS backend for the PSP variant of thatChandler Carruth
2012-02-21Tiny cosmetic change to use the same style for all of the while loops inChandler Carruth
2012-02-21Replace a hand rolled loop with a lovely StringRef helper we have theseChandler Carruth
2012-02-21Pull the parsing helper functions out of the Triple interface entirely.Chandler Carruth
2012-02-21Clean up comments that I missed when changing the triple representation.Chandler Carruth
2012-02-21Switch the llvm::Triple class to immediately parse the triple string onChandler Carruth
2012-02-20Move constructors out-of-line and flesh out their documentation. NoChandler Carruth
2012-02-18Trivial cleanup to group the generic 'armvN' cases with the 'arm' case,Chandler Carruth
2012-02-12StringSwitchify the rest of Triple.cpp.Benjamin Kramer
2012-02-12Switch a bunch of manual if-chains to use StringSwitch. Clean them up inChandler Carruth
2012-02-07Convert assert(0) to llvm_unreachableCraig Topper
2012-02-06Introduce helpers to compute the 32-bit varaints and 64-bit variants ofChandler Carruth
2012-01-31Add Triple::getMacOSXVersion to replace crufty code in the clang driver.Bob Wilson
2012-01-31Add various coarse bit-width architecture predicates to llvm::Triple.Chandler Carruth
2012-01-20More dead code removal (using -Wunreachable-code)David Blaikie
2012-01-18Add support for the gnueabihf environment. Patch by Sylvestre Ledru.Rafael Espindola
2012-01-10Teach the triple library about the androideabi environment.Chandler Carruth
2011-12-12Hexagon backend supportTony Linthicum
2011-10-27Remove the Alpha backend.Dan Gohman
2011-10-25Remove the Blackfin backend.Dan Gohman
2011-10-24Remove the SystemZ backend.Dan Gohman
2011-09-20Add mips64 & mips64el to Triple. Patch by Liu with modifications.Akira Hatanaka
2011-08-29Add AMDIL as valid target triple to LLVM.Tobias Grosser
2011-08-23This patch adds support of le32 pseudo-cpu that stands for genericIvan Krasin
2011-08-22Add NativeClient support to Triple::ParseOS.Ivan Krasin
2011-08-18Add NativeClient operating system support.Ivan Krasin
2011-07-30Added several architecture names.Sean Callanan
2011-07-26Teach the Triple class about kfreebsd (FreeBSD kernel withDuncan Sands
2011-07-24switch Triple to take twines instead of stringrefs.Chris Lattner