summaryrefslogtreecommitdiff
path: root/lib/CodeGen
Commit message (Expand)AuthorAge
* Add fast isel physical register definition support.Evan Cheng2008-09-08
* Revert my previous change -- the subtraction of two constants was a no-opBill Wendling2008-09-08
* ConvertBill Wendling2008-09-07
* Indentation.Evan Cheng2008-09-07
* - Doh. Pass vector by value is bad.Evan Cheng2008-09-07
* Next limited float precision expansion (log2 12 bits)Dale Johannesen2008-09-05
* Revert r55859. This is breaking the build in the abscence of its companion c...Owen Anderson2008-09-05
* Move the code that inserts copies for function livein registersDan Gohman2008-09-05
* Add the next limited-precision expansion.Dale Johannesen2008-09-05
* FastISel support for AND and OR with type i1.Dan Gohman2008-09-05
* Add hooks for other intrinsics to get low-precision expansions.Dale Johannesen2008-09-05
* FastISel support for ConstantExprs.Dan Gohman2008-09-05
* Revert r55817. It broke PIC. FastISel will need to find a differentDan Gohman2008-09-05
* Add a variant of AnalyzeCallOperands that can be used by fast isel.Evan Cheng2008-09-05
* "Fix" PR2762. The testcase now crashes codegenDuncan Sands2008-09-05
* Fix a search+replace-o.Dan Gohman2008-09-05
* Add -flimit-float-precision to enable some faster,Dale Johannesen2008-09-05
* FastISel support for unreachable.Dan Gohman2008-09-05
* In FastISel mode, the scheduler may be invoked multiple timesDan Gohman2008-09-05
* Add initial support for selecting constant materializations that require cons...Owen Anderson2008-09-05
* Add an include of SmallSet.h.Dan Gohman2008-09-04
* Tidy up several unbeseeming casts from pointer to intptr_t.Dan Gohman2008-09-04
* Clean up uses of TargetLowering::getTargetMachine.Dan Gohman2008-09-04
* Fix an overly strict assertion. Source register of a copy may not be killed, ...Evan Cheng2008-09-04
* Add intrinsics for log, log2, log10, exp, exp2.Dale Johannesen2008-09-04
* Do trivial local CSE for constants and other non-Instruction valuesDan Gohman2008-09-03
* Put RegsForValue in the llvm namespace to avoid warnings aboutDan Gohman2008-09-03
* Create HandlePHINodesInSuccessorBlocksFast, a version ofDan Gohman2008-09-03
* Do not emit a UsedDirective for things in the llvm.usedDale Johannesen2008-09-03
* Oops, I accidentally broke the fallback case with my last commit.Owen Anderson2008-09-03
* Fix an issue where we were reusing materializations of constants in blocks no...Owen Anderson2008-09-03
* Split the SelectionDAG-building code, including the FunctionLoweringInfoDan Gohman2008-09-03
* Separate MachineInstr-emitting routines from actual schedulingDan Gohman2008-09-03
* Fix addRegisterDead and addRegisterKilled to be more thoroughDan Gohman2008-09-03
* If TargetSelectInstruction returns true, move to next instruction.Evan Cheng2008-09-03
* 80 col violations.Evan Cheng2008-09-02
* Ensure that HandlePHINodesInSuccessorBlocks is run for all blocks,Dan Gohman2008-09-02
* Provide two overloads of AnalyzeNewNode.Gabor Greif2008-09-01
* Even though no caller actually uses the new valueDuncan Sands2008-09-01
* Cosmetic changes to Machine LICM. No functionality change.Bill Wendling2008-08-31
* Another situation where ROTR is cheaper than ROTL.Bill Wendling2008-08-31
* For this pattern, ROTR is the cheaper option.Bill Wendling2008-08-31
* - Fix comment so that it describes how the code really works:Bill Wendling2008-08-31
* typoGabor Greif2008-08-30
* fix some 80-col violationsGabor Greif2008-08-30
* Re-apply 55467 with fix. If copy is being replaced by remat'ed def, transfer ...Evan Cheng2008-08-30
* Fold isRematerializable checks into isSafeToReMat.Evan Cheng2008-08-30
* Transform (x << (y&31)) -> (x << y). This takes advantage of the fact x86 shi...Evan Cheng2008-08-30
* Fix an issue where a use might be selected before a def, and then we didn't r...Owen Anderson2008-08-30
* Fix 80 col. violations.Evan Cheng2008-08-29