Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Change Pass::print to take a raw ostream instead of std::ostream, | Chris Lattner | 2009-08-23 | 1 | -1/+2 | |
| | | | | | | update all code that this affects. llvm-svn: 79830 | |||||
* | llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable. | Torok Edwin | 2009-07-14 | 1 | -1/+1 | |
| | | | | | | | | | This adds location info for all llvm_unreachable calls (which is a macro now) in !NDEBUG builds. In NDEBUG builds location info and the message is off (it only prints "UREACHABLE executed"). llvm-svn: 75640 | |||||
* | Convert more assert(0)+abort() -> LLVM_UNREACHABLE, | Torok Edwin | 2009-07-11 | 1 | -1/+2 | |
| | | | | | | and abort()/exit() -> llvm_report_error(). llvm-svn: 75363 | |||||
* | Eliminate several more unnecessary intptr_t casts. | Dan Gohman | 2009-02-18 | 1 | -1/+1 | |
| | | | | llvm-svn: 64888 | |||||
* | Whitespace and comment changes. No functionality change. | Bill Wendling | 2009-02-03 | 1 | -0/+1 | |
| | | | | llvm-svn: 63660 | |||||
* | Explicitly pass in debug location information to BuildMI. | Bill Wendling | 2009-02-03 | 1 | -1/+2 | |
| | | | | llvm-svn: 63599 | |||||
* | Rename getAnalysisToUpdate to getAnalysisIfAvailable. | Duncan Sands | 2009-01-28 | 1 | -1/+1 | |
| | | | | llvm-svn: 63198 | |||||
* | Tidy up several unbeseeming casts from pointer to intptr_t. | Dan Gohman | 2008-09-04 | 1 | -1/+1 | |
| | | | | llvm-svn: 55779 | |||||
* | Delete a dead field. | Gordon Henriksen | 2008-08-19 | 1 | -1/+0 | |
| | | | | llvm-svn: 54995 | |||||
* | [PR2327] Leverage TargetRegisterInfo to compute frame offsets for GC metadata. | Gordon Henriksen | 2008-08-19 | 1 | -7/+5 | |
| | | | | llvm-svn: 54994 | |||||
* | Don't require Registry specializations to define random static variables. | Gordon Henriksen | 2008-08-17 | 1 | -7/+0 | |
| | | | | llvm-svn: 54902 | |||||
* | Rename some GC classes so that their roll will hopefully be clearer. | Gordon Henriksen | 2008-08-17 | 1 | -48/+59 | |
| | | | | | | | | | | | | | | | | | | In particular, Collector was confusing to implementors. Several thought that this compile-time class was the place to implement their runtime GC heap. Of course, it doesn't even exist at runtime. Specifically, the renames are: Collector -> GCStrategy CollectorMetadata -> GCFunctionInfo CollectorModuleMetadata -> GCModuleInfo CollectorRegistry -> GCRegistry Function::getCollector -> getGC (setGC, hasGC, clearGC) Several accessors and nested types have also been renamed to be consistent. These changes should be obvious. llvm-svn: 54899 | |||||
* | Don't instantiate GC metadata for declarations. | Gordon Henriksen | 2008-08-17 | 1 | -1/+1 | |
| | | | | llvm-svn: 54895 | |||||
* | Factor GC metadata table assembly generation out of Collector in preparation ↵ | Gordon Henriksen | 2008-08-17 | 1 | -0/+389 | |
for splitting AsmPrinter into its own library. llvm-svn: 54881 |