summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/ARM/ARMTargetMachine.h
Commit message (Collapse)AuthorAgeFilesLines
...
* Use PassManagerBase instead of FunctionPassManager for functionsDan Gohman2008-03-111-5/+5
| | | | | | | | that merely add passes. This allows them to be used with either FunctionPassManager or PassManager, or even with a custom new kind of pass manager. llvm-svn: 48256
* Rename MRegisterInfo to TargetRegisterInfo.Dan Gohman2008-02-101-1/+1
| | | | llvm-svn: 46930
* Remove attribution from file headers, per discussion on llvmdev.Chris Lattner2007-12-291-2/+1
| | | | llvm-svn: 45418
* Added -print-emitted-asm to print out JIT generated asm to cerr.Evan Cheng2007-07-201-2/+2
| | | | llvm-svn: 40123
* Initial ARM JIT support by Raul Fernandes Herbster.Evan Cheng2007-07-051-0/+9
| | | | llvm-svn: 37926
* Move if-conversion after all passes that may use register scavenger.Evan Cheng2007-05-161-1/+0
| | | | llvm-svn: 37120
* Hooks for predication support.Evan Cheng2007-05-161-0/+1
| | | | llvm-svn: 37093
* Implement getTargetLowering() or else LSR won't be using ARM specific hooks.Evan Cheng2007-03-131-0/+6
| | | | llvm-svn: 35077
* Added -march=thumb; removed -enable-thumb.Evan Cheng2007-02-231-1/+10
| | | | llvm-svn: 34521
* ARM backend contribution from Apple.Evan Cheng2007-01-191-8/+9
| | | | llvm-svn: 33353
* Implement a MachineFunctionPass to fix the mul instructionRafael Espindola2006-09-191-0/+1
| | | | llvm-svn: 30485
* 1. Remove condition on delete.Jim Laskey2006-09-071-5/+4
| | | | | | | | 2. Protect and outline createTargetAsmInfo. 3. Misc. kruft. llvm-svn: 30169
* Make target asm info a property of the target machine.Jim Laskey2006-09-071-0/+5
| | | | llvm-svn: 30162
* Completely rearchitect the interface between targets and the pass manager.Chris Lattner2006-09-041-4/+5
| | | | | | | | | | | | | | | | | | | | | | | | 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
* Declare the callee saved regsRafael Espindola2006-08-161-1/+2
| | | | | | | Remove the hard coded store and load of the link register Implement ARMFrameInfo llvm-svn: 29727
* added a skeleton of the ARM backendRafael Espindola2006-05-141-0/+49
llvm-svn: 28301
OpenPOWER on IntegriCloud