Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | fix GetOrCreateTemporarySymbol to require a name, clients | Chris Lattner | 2010-03-17 | 1 | -1/+1 | |
| | | | | | | | should use CreateTempSymbol() if they don't care about the name. llvm-svn: 98712 | |||||
* | Change this code to allocate temporary labels from mccontext, | Chris Lattner | 2010-03-14 | 1 | -1/+1 | |
| | | | | | | not from MMI. llvm-svn: 98475 | |||||
* | switch GC_LABEL to use an MCSymbol operand instead of a label ID operand. | Chris Lattner | 2010-03-14 | 1 | -11/+8 | |
| | | | | llvm-svn: 98474 | |||||
* | move target-independent opcodes out of TargetInstrInfo | Chris Lattner | 2010-02-09 | 1 | -1/+1 | |
| | | | | | | | | | into TargetOpcodes.h. #include the new TargetOpcodes.h into MachineInstr. Add new inline accessors (like isPHI()) to MachineInstr, and start using them throughout the codebase. llvm-svn: 95687 | |||||
* | Change errs() to dbgs(). | David Greene | 2010-01-04 | 1 | -1/+2 | |
| | | | | llvm-svn: 92518 | |||||
* | Remove includes of Support/Compiler.h that are no longer needed after the | Nick Lewycky | 2009-10-25 | 1 | -1/+0 | |
| | | | | | | VISIBILITY_HIDDEN removal. llvm-svn: 85043 | |||||
* | Remove VISIBILITY_HIDDEN from class/struct found inside anonymous namespaces. | Nick Lewycky | 2009-10-25 | 1 | -2/+2 | |
| | | | | | | | Chris claims we should never have visibility_hidden inside any .cpp file but that's still not true even after this commit. llvm-svn: 85042 | |||||
* | When emitting a label for a PostCall safe point, the machine | Nicolas Geoffray | 2009-09-08 | 1 | -6/+11 | |
| | | | | | | | | instruction to insert before can be end(). getDebugLoc on end() returns an invalid value, therefore use the debug loc of the call instruction, and give it to InsertLabel. llvm-svn: 81207 | |||||
* | 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 |