aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Support
Commit message (Expand)AuthorAgeFilesLines
* Add better support for environment portion of triple. Original patch byDuncan Sands2010-09-161-6/+32
* Some versions of gcc still warn about "ignoring return value ... declaredDuncan Sands2010-09-161-1/+2
* Create PTX backend. Patch by Che-Liang Chiou!Nick Lewycky2010-09-071-0/+13
* Add completely hokey binary-and and binary-or operations to ConstantRange andNick Lewycky2010-09-071-0/+26
* Add a new isSignWrappedSet() method to ConstantRange.Nick Lewycky2010-09-061-3/+15
* Use the FindProgramByName fallback only with known absolute paths.Dan Gohman2010-09-021-4/+10
* After some discussion with djg, teach SmallVector to grow from a zeroJohn McCall2010-09-021-1/+1
* llvm::FindExecutable(): Retrieve the name with suffix.exe, if available.NAKAMURA Takumi2010-09-021-0/+4
* Make tool_output_file's raw_ostream instance a member variable insteadDan Gohman2010-09-012-17/+18
* Remove a hack that tries to understand incorrect triples from theDuncan Sands2010-08-301-16/+0
* StringRef::compare_numeric also differed from StringRef::compare for characte...Benjamin Kramer2010-08-261-1/+1
* Do unsigned char comparisons in StringRef::compare_lower to be more consisten...Benjamin Kramer2010-08-261-4/+4
* Use Bits.data() instead of &Bits[0].Dan Gohman2010-08-241-3/+3
* Avoid O(n*m) complexity in StringRef::find_first(_not)_of(StringRef).Benjamin Kramer2010-08-231-4/+13
* Update CMake build.Benjamin Kramer2010-08-201-1/+0
* Delete SlowOperationInformer, which is no longer used.Dan Gohman2010-08-201-67/+0
* Make outs() close its file when its stream is destructed, so thatDan Gohman2010-08-201-2/+4
* Delete raw_stdout_ostream and raw_stderr_ostream, which are unusedDan Gohman2010-08-201-12/+4
* Move raw_ostream's Error flag into raw_fd_ostream, as that's the onlyDan Gohman2010-08-201-16/+17
* Introduce a new tool_output_file class, which extends raw_ostream withDan Gohman2010-08-202-0/+31
* Do not assert when reading an exponent out of range.Dale Johannesen2010-08-191-0/+1
* Make raw_fd_ostream consider itself the owner of STDOUT_FILENO whenDan Gohman2010-08-181-2/+5
* Tidy.Dan Gohman2010-08-181-5/+4
* Revert r111321. This doesn't fix a problem.Dan Gohman2010-08-181-23/+19
* stomp some more undefined behavior, PR7775.Chris Lattner2010-08-181-6/+7
* include config.h to get config params, hopefully unbreaking mingw builder.Chris Lattner2010-08-171-0/+1
* Fix the rest of rdar://8318441 which happens when a raw_fd_ostreamChris Lattner2010-08-171-19/+23
* report_fatal_error can't use errs(), because errs() can call Chris Lattner2010-08-171-8/+26
* CrashRecovery: Clear the current context on the first crash, to avoid re-ente...Daniel Dunbar2010-08-171-0/+4
* CrashRecovery: Add CrashRecoveryContext::GetCurrent(), so clients can find th...Daniel Dunbar2010-08-171-2/+12
* CrashRecovery: Make CrashRecoveryContext static methods thread safe.Daniel Dunbar2010-08-171-0/+10
* remove trailing whitespaceJim Grosbach2010-08-171-7/+7
* Add hooks to FoldingSetTrait to allow specializations to provideDan Gohman2010-08-161-35/+52
* Reverse the order of GetNodeProfile's arguments, for consistencyDan Gohman2010-08-161-4/+4
* Add a 'normalize' method to the Triple class, which takes a mucked upDuncan Sands2010-08-121-63/+196
* Clean up ConstantRange a bit:Nick Lewycky2010-08-111-78/+46
* Fix a couple of warnings.Eric Christopher2010-08-081-2/+3
* Roll back my last two commits, valgrind complains.Benjamin Kramer2010-08-071-3/+2
* Kill rarely used std::sort.Benjamin Kramer2010-08-071-2/+3
* Remove layering violation.Owen Anderson2010-08-071-2/+0
* Add an inverse() method to ConstantRange.Owen Anderson2010-08-071-0/+11
* Add a convenience constructor.Owen Anderson2010-08-071-0/+3
* avoid undef behavior on minint, fixing PR7783.Chris Lattner2010-08-031-2/+3
* Fix -Wmissing-field-initializers warnings.Daniel Dunbar2010-07-301-15/+5
* CrashRecovery: Use ThreadLocal::erase() instead of set(0).Daniel Dunbar2010-07-291-1/+1
* Make sure to include config.h, to pickup LLVM_ON_WIN32.Daniel Dunbar2010-07-291-0/+1
* CrashRecoveryContext: Add a simple POSIX implementation.Daniel Dunbar2010-07-291-1/+102
* Unbreak my CMake build, say you'll compile for me again...Douglas Gregor2010-07-281-0/+1
* Support: Add CrashRecoveryContext helper object.Daniel Dunbar2010-07-281-0/+88
* Don't pass StringRef by reference.Benjamin Kramer2010-07-144-11/+10