summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/Alpha/AlphaTargetMachine.cpp
Commit message (Collapse)AuthorAgeFilesLines
...
* long double patch 2 of N. Handle it in TargetData.Dale Johannesen2007-08-031-1/+1
| | | | | | | (I've tried to get the info right for all targets, but I'm not expert on all of them - check yours.) llvm-svn: 40792
* Added -print-emitted-asm to print out JIT generated asm to cerr.Evan Cheng2007-07-201-3/+5
| | | | llvm-svn: 40123
* The various "getModuleMatchQuality" implementations should returnChris Lattner2007-07-091-0/+2
| | | | | | zero if they see a target triple they don't understand. llvm-svn: 38463
* Added new method to add a "simple" code emitter. That is, to only addBill Wendling2007-02-081-0/+5
| | | | | | the code emitter and not set variables. llvm-svn: 34033
* Add all that branch mangling niftinessAndrew Lenharth2006-10-311-1/+1
| | | | llvm-svn: 31313
* Jimptables working again on alpha.Andrew Lenharth2006-10-111-1/+2
| | | | | | As a bonus, use the GOT node instead of the AlphaISD::GOT for internal stuff. llvm-svn: 30873
* Fix jump tables to match gcc (and the ABI and whatnot)Andrew Lenharth2006-09-241-0/+1
| | | | llvm-svn: 30594
* A pass to remove the worst of the replay trap offenders, and as a bonus, ↵Andrew Lenharth2006-09-181-0/+1
| | | | | | align basic blocks when it is free to do so llvm-svn: 30467
* 1. Remove condition on delete.Jim Laskey2006-09-071-2/+6
| | | | | | | | 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-1/+2
| | | | llvm-svn: 30162
* Completely rearchitect the interface between targets and the pass manager.Chris Lattner2006-09-041-78/+15
| | | | | | | | | | | | | | | | | | | | | | | | 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
* Simplify target construction.Chris Lattner2006-09-031-1/+1
| | | | llvm-svn: 30070
* - 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
* Don't pass target name into TargetData anymore, it is never used or needed.Chris Lattner2006-06-161-2/+1
| | | | | | | Remove explicit casts to std::string now that there is no overload resolution issues in the TargetData ctors. llvm-svn: 28830
* Make all of the TargetMachine subclasses use the new string TargetData methods.Owen Anderson2006-05-201-1/+1
| | | | | | This is part of the on-going work on PR 761. llvm-svn: 28414
* Refactor TargetMachine, pushing handling of TargetData into the ↵Owen Anderson2006-05-031-1/+2
| | | | | | | | target-specific subclasses. This has one caller-visible change: getTargetData() now returns a pointer instead of a reference. This fixes PR 759. llvm-svn: 28074
* Disable switch lowering for targets based on the selection dag isel,Nate Begeman2006-04-081-6/+0
| | | | | | letting the code generator handle them directly. llvm-svn: 27539
* Eliminate IntrinsicLowering from TargetMachine.Chris Lattner2006-03-231-3/+2
| | | | | | Make the CBE and V9 backends create their own, since they're the only ones that use it. llvm-svn: 26974
* bye bye Pattern ISELAndrew Lenharth2006-01-231-11/+2
| | | | llvm-svn: 25553
* make DAG isel the defaultAndrew Lenharth2006-01-131-3/+3
| | | | llvm-svn: 25282
* prevent latent switch creationAndrew Lenharth2005-11-181-2/+2
| | | | llvm-svn: 24413
* unbreak the buildChris Lattner2005-11-131-4/+2
| | | | llvm-svn: 24339
* enable LSR by default on alphaAndrew Lenharth2005-11-121-7/+3
| | | | llvm-svn: 24337
* Add a new option to indicate we want the code generator to emit code ↵Chris Lattner2005-11-081-1/+2
| | | | | | quickly,not spending tons of time microoptimizing it. This is useful for an -O0style of build. llvm-svn: 24233
* If the module has no t-t and the host is an alpha, default to using the Alpha BEChris Lattner2005-10-301-1/+1
| | | | llvm-svn: 24110
* ret 0; works, not much elseAndrew Lenharth2005-10-201-1/+7
| | | | | | | | still lots of uglyness. Maybe calls will come soon. Fixing the return value of things will be necessary to make alpha work. llvm-svn: 23832
* begining alpha subtarget supportAndrew Lenharth2005-09-291-2/+6
| | | | llvm-svn: 23531
* 1. Use SubtargetFeatures in llc/lli.Jim Laskey2005-09-011-1/+2
| | | | | | | | 2. Propagate feature "string" to all targets. 3. Implement use of SubtargetFeatures in PowerPCTargetSubtarget. llvm-svn: 23192
* Alpha ABI specifies stack is always 16 byte alligned, and gcc does it, so I ↵Andrew Lenharth2005-08-031-1/+1
| | | | | | will too llvm-svn: 22634
* finally found the gcc defined constantsAndrew Lenharth2005-07-221-1/+1
| | | | llvm-svn: 22502
* Alpha JIT (beta)Andrew Lenharth2005-07-221-1/+55
| | | | llvm-svn: 22500
* Refactor the addPassesToEmitAssembly interface into a addPassesToEmitFileChris Lattner2005-06-251-4/+6
| | | | | | interface. llvm-svn: 22282
* Remove trailing whitespaceMisha Brukman2005-04-211-10/+10
| | | | llvm-svn: 21424
* LSR cleanup patchAndrew Lenharth2005-03-031-1/+3
| | | | llvm-svn: 20422
* Added LSR as a beta pass for alphaAndrew Lenharth2005-03-021-0/+9
| | | | llvm-svn: 20407
* try to match alpha patternAndrew Lenharth2005-02-011-0/+19
| | | | llvm-svn: 19972
* Alpha JIT pruneAndrew Lenharth2005-01-241-8/+0
| | | | llvm-svn: 19815
* include prune and JIT pruneAndrew Lenharth2005-01-241-35/+1
| | | | llvm-svn: 19814
* Let me introduce you to the early stages of the llvm backend for the alpha ↵Andrew Lenharth2005-01-221-0/+111
processor llvm-svn: 19764
OpenPOWER on IntegriCloud