aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Support
Commit message (Expand)AuthorAgeFilesLines
* Avoid using mutex locks if not in multithreaded mode by using a SmartScopedMutexTorok Edwin2009-09-271-2/+2
* remove support for "NoSub" from regex. It seems like a minor optimizationChris Lattner2009-09-261-15/+12
* add and document regex support for FileCheck. You can now do stuff like:Chris Lattner2009-09-241-2/+3
* wrap long lines.Chris Lattner2009-09-241-2/+4
* tidy up, fix a memory leak in Regex::isValidChris Lattner2009-09-241-13/+10
* reapply r82348 with a fix, thanks Jeffrey.Chris Lattner2009-09-241-33/+24
* Roll back r82348, which introduced an infinite loop in ParseCStringVector() thatJeffrey Yasskin2009-09-241-22/+33
* Switch FoldingSet::AddString to StringRef based API.Daniel Dunbar2009-09-221-11/+3
* Workaround what I believe is an MSVC bug where it emits a definition for aDaniel Dunbar2009-09-221-0/+3
* simplify as daniel suggestsChris Lattner2009-09-201-16/+9
* tidy upChris Lattner2009-09-201-1/+1
* smallvectorize getExtraOptionNamesChris Lattner2009-09-201-2/+1
* minor cleanups.Chris Lattner2009-09-201-22/+24
* strength reduce further StringRef-> const char*, saving another 620 bytes.Chris Lattner2009-09-201-5/+11
* switch an std::string to StringRef, shaving 400 bytes off CommandLine.oChris Lattner2009-09-201-11/+10
* the switch from std::map -> StringMap caused --help output to be in Chris Lattner2009-09-201-5/+15
* eliminate the duplicate detection loop, moving it into the loop that populate...Chris Lattner2009-09-201-13/+6
* Eliminate a masochistic "algorithm" loop, shrinking CommandLine.o from 71524-...Chris Lattner2009-09-201-13/+8
* don't use count + insert, just do insert + failure. Also, instead of deletin...Chris Lattner2009-09-201-6/+9
* switch to SmallPtrSet instead of std::set, saving 1K from theChris Lattner2009-09-201-4/+4
* change an std::sort to an array_pod_sort call, shrinking CommandLine.o by 9%.Chris Lattner2009-09-201-1/+2
* Several changes together in a murky mess:Chris Lattner2009-09-201-84/+102
* Fix refacto, this code was expecting to stride past the argument prefix.Daniel Dunbar2009-09-201-0/+1
* Tabs -> spaces, and remove trailing whitespace.Daniel Dunbar2009-09-201-1/+1
* convert argname to StringRef, simplifying LookupOption.Chris Lattner2009-09-201-21/+22
* convert 'Value' to StringRef which makes it easier to Chris Lattner2009-09-201-12/+8
* Change CommaSeparated processing to do it with StringRef instead of temporary...Chris Lattner2009-09-201-21/+26
* rewrite ParseCStringVector in terms of stringref.Chris Lattner2009-09-201-33/+22
* move a couple non-trivial methods out of line, add new Chris Lattner2009-09-201-0/+71
* coding style cleanupChris Lattner2009-09-201-13/+12
* convert a bunch more stuff to use StringRef. The ArgName arguments are nowChris Lattner2009-09-201-28/+29
* avoid a bunch of malloc thrashing for PositinoalVals by eliminatingChris Lattner2009-09-201-11/+9
* Avoid some temporary strings.Chris Lattner2009-09-191-19/+6
* add some more overloads of StringRef::getAsInteger forChris Lattner2009-09-191-0/+45
* provide a "strtoull" operation that works on StringRef's.Chris Lattner2009-09-191-0/+63
* convert a bunch of std::strings to use StringRef. This should eliminateChris Lattner2009-09-191-48/+56
* Try to speed up the slowest parts of the CommandLine libraryBenjamin Kramer2009-09-191-28/+28
* add a version of the APFloat constructor that initializes to 0.0Chris Lattner2009-09-171-0/+8
* Add StringRef::{rfind, rsplit}Daniel Dunbar2009-09-162-0/+14
* Drop the raw_ostream required buffer size to 1.Daniel Dunbar2009-09-151-2/+2
* Update CMake files.Ted Kremenek2009-09-111-0/+1
* Fix llvm-extract's "writing bitcode to a terminal" warning, which wasn'tDan Gohman2009-09-112-2/+5
* canonicalize namespace gymnasticsChris Lattner2009-09-091-23/+20
* Add comment re: clang dependency.Daniel Dunbar2009-09-091-0/+3
* Added an abstract superclass, MCDisassembler, forSean Callanan2009-09-091-0/+37
* Make sure the memory range is writable before memset'ing it.Evan Cheng2009-09-091-0/+2
* Add Triple::getArchTypeForDarwinArchName, which converts a "Darwin" architectureDaniel Dunbar2009-09-081-0/+34
* Improve JIT error message for users crazy enough to use -march with JIT, andDaniel Dunbar2009-09-081-1/+2
* Fix may-be-used-uninitialized warning.Daniel Dunbar2009-09-081-2/+2
* Avoid warnings if assertions are off.Duncan Sands2009-09-061-0/+3