aboutsummaryrefslogtreecommitdiff
path: root/lib/Support
AgeCommit message (Expand)Author
2009-07-20Hide the DOUT static variable behind a function interface.David Greene
2009-07-19Fix ConstantRange::unionWith. Also make it work a little hard in some cases toNick Lewycky
2009-07-18Replace intersectWith with maximalIntersectWith. The latter guarantees thatNick Lewycky
2009-07-17Provide slightly more refined error message when trying to lookup a target, andDaniel Dunbar
2009-07-16Add raw_null_ostream and llvm::nulls(), a raw_ostream that discards output.Daniel Dunbar
2009-07-16Use size_t.Dan Gohman
2009-07-16add a knob to turn off PrettyStackTrace globally. Patch by ZoltanChris Lattner
2009-07-16Add registered target list to --version output.Daniel Dunbar
2009-07-15Change raw_ostream so that it doesn't call llvm_report_errorDan Gohman
2009-07-15Reapply TargetRegistry refactoring commits.Daniel Dunbar
2009-07-15Add a Force option to raw_fd_ostream to specify whether openingDan Gohman
2009-07-15Revert 75762, 75763, 75766..75769, 75772..75775, 75778, 75780, 75782 to repai...Stuart Hastings
2009-07-15Add a raw_ostream version of CheckBitcodeOutputToConsole.Dan Gohman
2009-07-15Check for errors on close(2) too. And lseek(2).Dan Gohman
2009-07-15Use 0664 instead of 0644 for the default open mode. This isDan Gohman
2009-07-15Allow multiple registrations of the same target.Daniel Dunbar
2009-07-15Detect write failures on raw_fd_ostream.Daniel Dunbar
2009-07-15Fix stupid thinkoDaniel Dunbar
2009-07-15Address some review comments on TargetRegistry.Daniel Dunbar
2009-07-15Update CMake file.Ted Kremenek
2009-07-15Add new TargetRegistry.Daniel Dunbar
2009-07-14minor syntax cleanupChris Lattner
2009-07-14Update CMake file.Ted Kremenek
2009-07-14Have asm printers use formatted_raw_ostream directly to avoid aDavid Greene
2009-07-14llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable.Torok Edwin
2009-07-14After converting assert(0) to LLVM_UNREACHABLE we lost file/line location.Torok Edwin
2009-07-13Add NetBSD to the Triple class, patch by Krister Walfridsson!Chris Lattner
2009-07-13Make some more changes suggested by Chris. Manipulators go away.David Greene
2009-07-13Switch to raw_ostream.Daniel Dunbar
2009-07-13Fix an error in ConstantRange::getSignedMax on wrapped ranges. Thanks onceNick Lewycky
2009-07-13'i8 full-range' sign extended to i16 should equal [-128, 128) not [-128, 127).Nick Lewycky
2009-07-13Multiply was very wrong for wrapped ranges. This supplies a half-fix that willNick Lewycky
2009-07-13Fix a bug summing two full sets. The overflow checking doesn't handle sets asNick Lewycky
2009-07-12Improve sys::Path::makeAbsolute on Win32.Daniel Dunbar
2009-07-12Implement udiv for ConstantRanges.Nick Lewycky
2009-07-12Implement ConstantRange::multiply based on the code in LoopVR.Nick Lewycky
2009-07-11assert(0) -> LLVM_UNREACHABLE.Torok Edwin
2009-07-11Fix handling of max and full set.Nick Lewycky
2009-07-11Clarify and simplify.Nick Lewycky
2009-07-11Convert more assert(0)+abort() -> LLVM_UNREACHABLE,Torok Edwin
2009-07-11Move a method that creates constant ranges relative to another constant rangeNick Lewycky
2009-07-10Make changes suggested by Chris and eliminate newly-added raw_ostreamDavid Greene
2009-07-09Add some hooks that a redesigned AsmStream needs to do its job. TheseDavid Greene
2009-07-09Revert the part of 75177 that split ConstantRange into two classes, andDan Gohman
2009-07-09Add a ConstantSignedRange class, which does for signed integersDan Gohman
2009-07-09Add support for other GraphViz display tools. This can helpDavid Greene
2009-07-08Allow users of GraphWriter to display graphs asynchronously. ThisDavid Greene
2009-07-07Fix build.Mike Stump
2009-07-07Have scoped mutexes take referenes instead of pointers.Owen Anderson
2009-07-07Fix braces.Torok Edwin