aboutsummaryrefslogtreecommitdiff
path: root/lib/Support
AgeCommit message (Expand)Author
2011-09-14Update the comment for system_temp_directory() to indicate when itDouglas Gregor
2011-09-14Include limits.h to make sure PATH_MAX is known on Solaris 10.Bill Wendling
2011-09-14Add a simple routine to determine the typical system directory forDouglas Gregor
2011-09-14Add APInt support for converting to/from hexatridecimal stringsDouglas Gregor
2011-09-14One more patch towards JIT support for Mips.Bruno Cardoso Lopes
2011-09-14Remove unimplemented function prototypes from PathV2. They can be readded whe...Benjamin Kramer
2011-09-14ObjectFile: Add support for mach-o-style dSYM companion files.Benjamin Kramer
2011-09-13Add the DataExtractor utility class.Benjamin Kramer
2011-09-12Add DW_ATE_UTF, which clang started using in my previous commit!Devang Patel
2011-08-29Add AMDIL as valid target triple to LLVM.Tobias Grosser
2011-08-28Fix integer overflow bug in raw_ostream::write. This showed up as aNick Lewycky
2011-08-27Report failure if there are less bytes than requested in a MemoryObject.Benjamin Kramer
2011-08-25Intel family 6 model 44 is Gulftown/Westmere-EP and doesn't have AVX.Benjamin Kramer
2011-08-24Move TargetRegistry and TargetSelect from Target to Support where they belong.Evan Cheng
2011-08-23This patch adds support of le32 pseudo-cpu that stands for genericIvan Krasin
2011-08-23lib/Support/Windows/Windows.h: Update required IE ver. 0x0600 should be enoug...NAKAMURA Takumi
2011-08-22Add NativeClient support to Triple::ParseOS.Ivan Krasin
2011-08-22Make DynamicLibrary thread-safe w/r/t call to dlerror() after dlopen(). PR10718Jordy Rose
2011-08-20PathV2: Handle more reserved filenames on windows.Benjamin Kramer
2011-08-20lib/Support/CrashRecoveryContext.cpp: Add Win32 support to CrashRecoveryConte...NAKAMURA Takumi
2011-08-20lib/Support/Windows/Windows.h: Require at least Windows XP(5.1) API. We will ...NAKAMURA Takumi
2011-08-18Add NativeClient operating system support.Ivan Krasin
2011-08-17Static fields require an out-of-line definition. Fix DynamicLibrary for real.Jordy Rose
2011-08-17Unbork Windows build. Thanks, Francois.Jordy Rose
2011-08-17Use DynamicLibrary instances as a way to get symbols from a specific library....Jordy Rose
2011-08-12Silence a bunch (but not all) "variable written but not read" warningsDuncan Sands
2011-08-10Clarify a comment.Bob Wilson
2011-08-09Put Darwin-specific code inside an __APPLE__ ifdef.Bob Wilson
2011-08-09Recognize the UNAME_RELEASE environment variable to match Darwin's uname.Bob Wilson
2011-07-30Added several architecture names.Sean Callanan
2011-07-29Don't look at $PWD in GetCurrentDirectory.Nick Lewycky
2011-07-29Teach Path::GetCurrentDirectory to use $PWD, to support users who like to doNick Lewycky
2011-07-28Add an optional 'bool makeAbsolute' in llvm::sys::fs::unique_file function.Argyrios Kyrtzidis
2011-07-27Optimize 96-bit division a little bit.Jakub Staszak
2011-07-27Move static methods to the anonymous namespace.Jakub Staszak
2011-07-27Trim includes.Frits van Bommel
2011-07-26Teach the Triple class about kfreebsd (FreeBSD kernel withDuncan Sands
2011-07-25BranchProbability::print returns void now.Jakub Staszak
2011-07-25Add BlockFrequency class.Jakub Staszak
2011-07-24switch Triple to take twines instead of stringrefs.Chris Lattner
2011-07-24Add Twine support for characters, and switch twine to use a union internallyChris Lattner
2011-07-22Move TargetRegistry.cpp from lib/Support to lib/Target where it belongs.Chandler Carruth
2011-07-22Move the registered target printing in version strings completely out ofChandler Carruth
2011-07-22Move the logic for printing the registered targets into a staticChandler Carruth
2011-07-22Add an extension point to the CommandLine library where clients canChandler Carruth
2011-07-22lib/Support/Triple.cpp: Recognize "-march=ppc32" to llc properly, as quick hack.NAKAMURA Takumi
2011-07-21move tier out of an anonymous namespace, it doesn't make senseChris Lattner
2011-07-18Add APInt(numBits, ArrayRef<uint64_t> bigVal) constructor to prevent future a...Jeffrey Yasskin
2011-07-18Simplify & microoptimize code. No intended functionality change.Benjamin Kramer
2011-07-15In Twine::str(), if the Twine stores only a std::string, just return a direct...Frits van Bommel