summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/X86/X86ELFWriter.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Dead files. Functionality has been taken over by the Add*Writer functions.Bill Wendling2007-02-081-39/+0
| | | | llvm-svn: 34029
* Completely rearchitect the interface between targets and the pass manager.Chris Lattner2006-09-041-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | This pass: 1. Splits TargetMachine into TargetMachine (generic targets, can be implemented any way, like the CBE) and LLVMTargetMachine (subclass of TM that is used by things using libcodegen and other support). 2. Instead of having each target fully populate the passmgr for file or JIT output, move all this to common code, and give targets hooks they can implement. 3. Commonalize the target population stuff between file emission and JIT emission. 4. All (native code) codegen stuff now happens in a FunctionPassManager, which paves the way for "fast -O0" stuff in the CFE later, and now LLC could lazily stream .bc files from disk to use less memory. 5. There are now many fewer #includes and the targets don't depend on the scalar xforms or libanalysis anymore (but codegen does). 6. Changing common code generator pass ordering stuff no longer requires touching all targets. 7. The JIT now has the option of "-fast" codegen or normal optimized codegen, which is now orthogonal to the fact that JIT'ing is being done. llvm-svn: 30081
* s|llvm/Support/Visibility.h|llvm/Support/Compiler.h|Chris Lattner2006-08-271-1/+1
| | | | llvm-svn: 29911
* - Refactor the code that resolve basic block references to a TargetJITInfoEvan Cheng2006-07-251-1/+1
| | | | | | | | | | method. - Added synchronizeICache() to TargetJITInfo. It is called after each block of code is emitted to flush the icache. This ensures correct execution on targets that have separate dcache and icache. - Added PPC / Mac OS X specific code to do icache flushing. llvm-svn: 29276
* Hide x86 symbolsChris Lattner2006-06-281-1/+2
| | | | llvm-svn: 28976
* Added getTargetLowering() to TargetMachine. Refactored targets to support this.Evan Cheng2006-03-131-3/+3
| | | | llvm-svn: 26742
* Refactor things a bit to allow the ELF code emitter to run the X86 machine ↵Chris Lattner2005-07-111-5/+9
| | | | | | | | code emitter after itself. llvm-svn: 22376
* Add support to the X86 backend for emitting ELF files. To use this, weChris Lattner2005-06-271-0/+34
currently use: llc t.bc --filetype=obj This will produce a t.o file which is dumpable with readelf. Currently the file produced is empty, but the scaffolding to do more is now in place. llvm-svn: 22292
OpenPOWER on IntegriCloud