| Commit message (Expand) | Author | Age | Files | Lines |
* | Remove now unused arguments from TargetRegistry::lookupTarget. | Daniel Dunbar | 2009-08-03 | 1 | -14/+11 |
* | Pass target triple string in to TargetMachine constructor. | Daniel Dunbar | 2009-08-03 | 1 | -0/+35 |
* | Analog Devices Blackfin back-end. | Jakob Stoklund Olesen | 2009-08-02 | 1 | -0/+3 |
* | Remove duplicated colons and spaces. | Benjamin Kramer | 2009-08-02 | 1 | -15/+15 |
* | Add missing flush(). | Daniel Dunbar | 2009-08-02 | 1 | -0/+3 |
* | Update CMake files. | Ted Kremenek | 2009-07-31 | 1 | -1/+0 |
* | Remove Annotation.h, which is no longer used in the LLVM tree. | Dan Gohman | 2009-07-31 | 1 | -130/+0 |
* | Twine: Directly support int, long, and long long types. | Daniel Dunbar | 2009-07-30 | 1 | -17/+29 |
* | Twine: Use raw_ostream::write_hex, remove unused itohexstr method. | Daniel Dunbar | 2009-07-30 | 1 | -2/+1 |
* | Add raw_ostream::write_hex | Daniel Dunbar | 2009-07-30 | 1 | -4/+7 |
* | Twine: Provide [u]int{32,64} conversions via implicit constructors instead of | Daniel Dunbar | 2009-07-30 | 1 | -6/+18 |
* | Perform simplification noticed by Reid. | Daniel Dunbar | 2009-07-29 | 1 | -4/+0 |
* | Re-apply previous changes and improve column padding performance some more. | David Greene | 2009-07-29 | 1 | -17/+21 |
* | Twines: Support numeric conversion directly (uitostr, etc). | Daniel Dunbar | 2009-07-29 | 1 | -11/+37 |
* | raw_ostream: Follow the 32-bit path when printing "small" decimal numbers. | Daniel Dunbar | 2009-07-29 | 1 | -0/+4 |
* | Revert r77397, it causes significant regressions in llc performance. | Daniel Dunbar | 2009-07-29 | 1 | -9/+4 |
* | Improve performance of PadToColumn by eliminating flushes. | David Greene | 2009-07-28 | 1 | -4/+9 |
* | Make raw_null_ostream flush its buffer in its destructor, so that | Dan Gohman | 2009-07-27 | 1 | -0/+9 |
* | Add an assertion check to raw_ostream's destructor to verify | Dan Gohman | 2009-07-27 | 1 | -0/+5 |
* | Sort list of targets in --version. | Daniel Dunbar | 2009-07-26 | 1 | -8/+11 |
* | Oops, forgot XCore. Sorry XCore! | Daniel Dunbar | 2009-07-26 | 1 | -2/+3 |
* | Update for API change. | Daniel Dunbar | 2009-07-26 | 1 | -6/+46 |
* | Update Triple to use StringRef/Twine based APIs. | Daniel Dunbar | 2009-07-26 | 1 | -58/+35 |
* | Remove unused header | Daniel Dunbar | 2009-07-26 | 1 | -1/+0 |
* | Kill Target specific ModuleMatchQuality stuff. | Daniel Dunbar | 2009-07-26 | 1 | -3/+1 |
* | Add TargetRegistry::lookupTarget. | Daniel Dunbar | 2009-07-26 | 1 | -85/+17 |
* | Added a test and fixed a bug in BumpPtrAllocator relating to large alignment | Reid Kleckner | 2009-07-25 | 1 | -2/+2 |
* | Simplify JIT target selection. | Daniel Dunbar | 2009-07-25 | 1 | -5/+20 |
* | Allow llvm_report_error to accept a Twine. | Daniel Dunbar | 2009-07-24 | 1 | -3/+12 |
* | Update CMake | Daniel Dunbar | 2009-07-24 | 1 | -0/+1 |
* | Add Twine ADT. | Daniel Dunbar | 2009-07-24 | 1 | -0/+91 |
* | Switch to raw_ostream. | Daniel Dunbar | 2009-07-24 | 1 | -9/+9 |
* | Write space padding as one string to speed up comment printing. | David Greene | 2009-07-23 | 1 | -3/+13 |
* | Re-committing changes from r76825 to BumpPtrAllocator with a fix and tests for | Reid Kleckner | 2009-07-23 | 1 | -105/+133 |
* | Convert StringMap to using StringRef for its APIs. | Daniel Dunbar | 2009-07-23 | 2 | -19/+14 |
* | Reverting r76825 and r76828, since they caused clang runtime errors and some ... | Reid Kleckner | 2009-07-23 | 1 | -132/+104 |
* | add header for 'memset'. | Zhongxing Xu | 2009-07-23 | 1 | -0/+1 |
* | Parameterize the BumpPtrAllocator over a slab allocator. It defaults to using | Reid Kleckner | 2009-07-23 | 1 | -104/+131 |
* | Hide the DOUT static variable behind a function interface. | David Greene | 2009-07-20 | 1 | -0/+8 |
* | Fix ConstantRange::unionWith. Also make it work a little hard in some cases to | Nick Lewycky | 2009-07-19 | 1 | -45/+50 |
* | Replace intersectWith with maximalIntersectWith. The latter guarantees that | Nick Lewycky | 2009-07-18 | 1 | -43/+5 |
* | Provide slightly more refined error message when trying to lookup a target, and | Daniel Dunbar | 2009-07-17 | 1 | -1/+18 |
* | Add raw_null_ostream and llvm::nulls(), a raw_ostream that discards output. | Daniel Dunbar | 2009-07-16 | 1 | -0/+17 |
* | Use size_t. | Dan Gohman | 2009-07-16 | 2 | -13/+13 |
* | add a knob to turn off PrettyStackTrace globally. Patch by Zoltan | Chris Lattner | 2009-07-16 | 1 | -1/+6 |
* | Add registered target list to --version output. | Daniel Dunbar | 2009-07-16 | 2 | -20/+39 |
* | Change raw_ostream so that it doesn't call llvm_report_error | Dan Gohman | 2009-07-15 | 1 | -4/+14 |
* | Reapply TargetRegistry refactoring commits. | Daniel Dunbar | 2009-07-15 | 1 | -7/+5 |
* | Add a Force option to raw_fd_ostream to specify whether opening | Dan Gohman | 2009-07-15 | 1 | -1/+3 |
* | Revert 75762, 75763, 75766..75769, 75772..75775, 75778, 75780, 75782 to repai... | Stuart Hastings | 2009-07-15 | 1 | -5/+7 |