aboutsummaryrefslogtreecommitdiff
path: root/lib/Support
AgeCommit message (Expand)Author
2010-08-12Add a 'normalize' method to the Triple class, which takes a mucked upDuncan Sands
2010-08-11Clean up ConstantRange a bit:Nick Lewycky
2010-08-08Fix a couple of warnings.Eric Christopher
2010-08-07Roll back my last two commits, valgrind complains.Benjamin Kramer
2010-08-07Kill rarely used std::sort.Benjamin Kramer
2010-08-07Remove layering violation.Owen Anderson
2010-08-07Add an inverse() method to ConstantRange.Owen Anderson
2010-08-07Add a convenience constructor.Owen Anderson
2010-08-03avoid undef behavior on minint, fixing PR7783.Chris Lattner
2010-07-30Fix -Wmissing-field-initializers warnings.Daniel Dunbar
2010-07-29CrashRecovery: Use ThreadLocal::erase() instead of set(0).Daniel Dunbar
2010-07-29Make sure to include config.h, to pickup LLVM_ON_WIN32.Daniel Dunbar
2010-07-29CrashRecoveryContext: Add a simple POSIX implementation.Daniel Dunbar
2010-07-28Unbreak my CMake build, say you'll compile for me again...Douglas Gregor
2010-07-28Support: Add CrashRecoveryContext helper object.Daniel Dunbar
2010-07-14Don't pass StringRef by reference.Benjamin Kramer
2010-07-07add some triple for minix, patch by Kees van Reeuwijk from PR7582Chris Lattner
2010-06-30Rather than giving SmallPtrSetImpl a member field SmallArray which is magicallyDuncan Sands
2010-06-28Fix thinko.Eric Christopher
2010-06-28Pull in the libCrashReporterClient.a information with a warning comment.Eric Christopher
2010-06-25Rewrite MemoryBuffer::getSTDIN to use read(2) and a SmallVector buffer.Benjamin Kramer
2010-06-25Bring back the empty vector workaround I removed in r106839. Looks like MSVC ...Benjamin Kramer
2010-06-25Tweak MemoryBuffer to allocate the class itself, the name and possibly theBenjamin Kramer
2010-06-24Add overloads for getFile and getFileOrSTDIN which take a const char *Dan Gohman
2010-06-22Look for and use a different darwin crash reporter library.Eric Christopher
2010-06-22Add an explicit keyword.Dan Gohman
2010-06-19Use calloc instead of new/memset, it is more efficient when the set is very l...Benjamin Kramer
2010-06-18Give NamedRegionTimer an Enabled flag, allowing all its clients toDan Gohman
2010-06-17Add the entire range of DW_OP_lit[0..31], DW_OP_reg[0..31], and Jason Molenda
2010-06-15fpcmp: Fix bug where fpcmp wouldn't early exit when files obviously differ andDaniel Dunbar
2010-06-15fpcmp: Fix a possible infinite loop when comparing something like:Daniel Dunbar
2010-06-08Use const_iterator where appropriate.Daniel Dunbar
2010-06-08DeltaAlgorithm: Tweak split to split by first/second half instead of even/odd...Daniel Dunbar
2010-06-08ADT: Add DAGDeltaAlgorithm, which is a DAG minimization algorithm built on to...Daniel Dunbar
2010-06-08Use realloc instead of malloc+memcpy when growing a POD SmallVector. A smartBenjamin Kramer
2010-05-28Minor code simplification.Dan Gohman
2010-05-28Fix a redundant-return warning.Dan Gohman
2010-05-27Add basic error checking to MemoryBuffer::getSTDIN.Dan Gohman
2010-05-26Add StringRef::compare_numeric and use it to sort TableGen register records.Jakob Stoklund Olesen
2010-05-20Fix __crashreport_info__ declaration.Daniel Dunbar
2010-05-19Add a comment explaining why this code uses Append mode.Dan Gohman
2010-05-18Usage of O_NONBLOCK in bjam is now confirmed as a bug and fixed upstream.Dan Gohman
2010-05-15improve portability to systems that don't have round, patch byChris Lattner
2010-05-10Add new configure option, --disable-timestamps, intended to turn off anything...Daniel Dunbar
2010-05-08Run interrupt routines as part of report_fatal_error, since we are failingDaniel Dunbar
2010-05-06Handle the case where open(2) or close(2) is interrupted by a signal whenDan Gohman
2010-05-06Handle EWOULDBLOCK as EAGAIN. And add a comment explaining whyDan Gohman
2010-05-05Implement rdar://7415680 - Twine integer support lacks greatnessChris Lattner
2010-05-05Try again if write(2) reports an recoverable error.Benjamin Kramer
2010-04-19Fix typo. add a test case.Devang Patel