prep work to support a future where getJumpTableInfo will return
[oota-llvm.git] / lib / Support /
2009-09-20 Chris Lattnerthe switch from std::map -> StringMap caused --help...
2009-09-20 Chris Lattnereliminate the duplicate detection loop, moving it into...
2009-09-20 Chris LattnerEliminate a masochistic "algorithm" loop, shrinking...
2009-09-20 Chris Lattnerdon't use count + insert, just do insert + failure...
2009-09-20 Chris Lattnerswitch to SmallPtrSet instead of std::set, saving 1K...
2009-09-20 Chris Lattnerchange an std::sort to an array_pod_sort call, shrinkin...
2009-09-20 Chris LattnerSeveral changes together in a murky mess:
2009-09-20 Daniel DunbarFix refacto, this code was expecting to stride past...
2009-09-20 Daniel DunbarTabs -> spaces, and remove trailing whitespace.
2009-09-20 Chris Lattnerconvert argname to StringRef, simplifying LookupOption.
2009-09-20 Chris Lattnerconvert 'Value' to StringRef which makes it easier to
2009-09-20 Chris LattnerChange CommaSeparated processing to do it with StringRe...
2009-09-20 Chris Lattnerrewrite ParseCStringVector in terms of stringref.
2009-09-20 Chris Lattnermove a couple non-trivial methods out of line, add new
2009-09-20 Chris Lattnercoding style cleanup
2009-09-20 Chris Lattnerconvert a bunch more stuff to use StringRef. The ArgNa...
2009-09-20 Chris Lattneravoid a bunch of malloc thrashing for PositinoalVals...
2009-09-19 Chris LattnerAvoid some temporary strings.
2009-09-19 Chris Lattneradd some more overloads of StringRef::getAsInteger for
2009-09-19 Chris Lattnerprovide a "strtoull" operation that works on StringRef's.
2009-09-19 Chris Lattnerconvert a bunch of std::strings to use StringRef. ...
2009-09-19 Benjamin KramerTry to speed up the slowest parts of the CommandLine...
2009-09-17 Chris Lattneradd a version of the APFloat constructor that initializ...
2009-09-16 Daniel DunbarAdd StringRef::{rfind, rsplit}
2009-09-15 Daniel DunbarDrop the raw_ostream required buffer size to 1.
2009-09-11 Ted KremenekUpdate CMake files.
2009-09-11 Dan GohmanFix llvm-extract's "writing bitcode to a terminal"...
2009-09-09 Chris Lattnercanonicalize namespace gymnastics
2009-09-09 Daniel DunbarAdd comment re: clang dependency.
2009-09-09 Sean CallananAdded an abstract superclass, MCDisassembler, for
2009-09-09 Evan ChengMake sure the memory range is writable before memset...
2009-09-08 Daniel DunbarAdd Triple::getArchTypeForDarwinArchName, which convert...
2009-09-08 Daniel DunbarImprove JIT error message for users crazy enough to...
2009-09-08 Daniel DunbarFix may-be-used-uninitialized warning.
2009-09-06 Duncan SandsAvoid warnings if assertions are off.
2009-09-06 Duncan SandsRemove some not-really-used variables, as warned
2009-09-06 Benjamin KramerMore MSVC warning fixes:
2009-09-06 Benjamin KramerRemove splint hints to silence warnings from ICC and...
2009-09-06 Duncan SandsRemove some unused variables and methods warned about by
2009-09-02 Daniel DunbarShow derived host triple in --version.
2009-09-01 Ted KremenekUpdate CMake files.
2009-08-31 Richard OsborneAdd triple parsing support for XCore.
2009-08-30 Daniel DunbarFix some possible-use-of-uninitialized warnings.
2009-08-30 Torok EdwinAdd regular expression matching support, based on OpenB...
2009-08-25 Dan GohmanMake LLVM command-line tools overwrite their output...
2009-08-25 Oscar FuentesCMake: updated list of source files.
2009-08-24 Daniel DunbarAdd llvm::Triple::getArchTypePrefix for getting the...
2009-08-24 Dan GohmanCorrectly account for the Spaces array nul terminator...
2009-08-24 Dan Gohmanraw_ostream::indent is used for PadToColumn which often...
2009-08-24 Chris Lattnersplit raw_os_ostream out to its own header and implemen...
2009-08-24 Chris Lattnerprune the #includes in raw_ostream.h by moving a
2009-08-24 Dan GohmanUnbreak the build for HAVE_GV platforms.
2009-08-23 Oscar FuentesCMake: Updated library dependencies and list of source...
2009-08-23 Chris Lattnerremove the dead std::ostream APInt inserter
2009-08-23 Chris Lattnerfix some problems with my last patch which happen when...
2009-08-23 Chris LattnerPrune #includes from llvm/Linker.h and llvm/System...
2009-08-23 Chris Lattnerllvm/Support/Streams.h is now dead, zap it.
2009-08-23 Chris Lattnereliminate the ostream version of CheckBitcodeOutputToCo...
2009-08-23 Daniel DunbarFix off-by-one in llvm::Format::print.
2009-08-23 Chris Lattnerclean up #includes.
2009-08-23 Benjamin KramerKill off more cerr/cout uses and prune includes a bit.
2009-08-23 Benjamin KramerRemove uses of Streams.h from CommandLine.cpp, fix...
2009-08-23 Benjamin KramerFix windows build.
2009-08-23 Daniel DunbarFix some refactos for iostream changes (in -Asserts...
2009-08-23 Chris Lattnerremove some uses of llvm/Support/Streams.h
2009-08-23 Chris Lattnerconvert LoopInfo.h and GraphWriter.h to use raw_ostream
2009-08-23 Chris Lattnereliminate DOUT and make Debug.h not include Streams...
2009-08-23 Chris LattnerChange Pass::print to take a raw ostream instead of...
2009-08-23 Chris LattnerChange raw_fd_ostream to take flags as an optional...
2009-08-22 Chris Lattnerswitch formattedstream to use raw_ostream::indent....
2009-08-22 Chris Lattneradd a raw_ostream::indent method, to be used like:
2009-08-21 Anton KorobeynikovFix typo.
2009-08-21 Anton KorobeynikovImplement APInt <-> APFloat conversion for IEEE 128...
2009-08-21 Erick TryzelaarClean up the APInt function getDigit.
2009-08-21 Eric ChristopherUpdate error messages for '+'. Fix grammar and make...
2009-08-21 Eric ChristopherFix trailing whitespace and 80-col violation.
2009-08-21 Erick TryzelaarFix bug with APInt::getBitsNeeded with for base 10...
2009-08-21 Erick TryzelaarAllow '+' to appear in APInt strings, and add more...
2009-08-20 Erick TryzelaarAdd support for including '+' in APFloat strings, more...
2009-08-20 Dan GohmanAdd a comment explaining why llvm_unreachable_internal...
2009-08-20 Daniel DunbarFix two APFloat bugs in converting hexadecimal constants.
2009-08-19 Eli FriedmanAdd triple parsing support for TCE.
2009-08-19 Daniel DunbarSwitch to SmallString::str from SmallString::c_str...
2009-08-19 Daniel DunbarChange raw_svector_ostream to reserve the input buffer...
2009-08-19 Daniel DunbarSwitch Twine::str() to use toVector(), which is now...
2009-08-19 Daniel DunbarSwitch raw_svector_ostream to use the vector as the...
2009-08-19 Daniel DunbarSpeculatively revert r79375, which may be breaking...
2009-08-19 Daniel Dunbarraw_ostream: Simplify write(unsigned char) to match...
2009-08-19 Daniel Dunbarraw_ostream: Remove pointless redefinitions of tell().
2009-08-18 Daniel Dunbarraw_ostream: Add the capability for subclasses to manua...
2009-08-18 Daniel Dunbarraw_ostream: Reduce FormattedStream's reliance on raw_o...
2009-08-18 Daniel DunbarSpeed up raw_ostream::<<(unsigned long long) for 32...
2009-08-18 Dan GohmanFix a bug in raw_ostream::write(char) introduced by...
2009-08-18 Daniel DunbarRevert r78924, disabling buffering defeats all the...
2009-08-18 Daniel DunbarImprove Triple to recognize the OS in i386-mingw32.
2009-08-18 Erick TryzelaarFix an uninitialized value warning in APFloat.
2009-08-18 Daniel DunbarFix Triple to recognize the 'bfin' arch.
2009-08-18 Daniel DunbarRecognize xscale as an ARM arch.
2009-08-18 Daniel DunbarAdd Triple matching for pic16 arch and solaris OS.
2009-08-17 Chris Lattnerthe MinPad argument to PadToColumn only really makes...
next