| Commit message (Expand) | Author | Age | Files | Lines |
* | Clean up the MachineBasicBlock.h file, percolating #includes into this file. | Chris Lattner | 2004-10-26 | 1 | -0/+1 |
* | Changes For Bug 352 | Reid Spencer | 2004-09-01 | 1 | -4/+4 |
* | Reduce usage of MRegisterInfo::getRegClass | Chris Lattner | 2004-08-15 | 1 | -2/+2 |
* | Nuke ifdef'd out code | Chris Lattner | 2004-08-15 | 1 | -33/+0 |
* | Stop using CreateStackObject(RegClass*) | Chris Lattner | 2004-08-15 | 1 | -1/+2 |
* | These methods no longer take a TargetRegisterClass* operand. | Chris Lattner | 2004-08-15 | 1 | -2/+2 |
* | These files don't need to include <iostream> since they include "Support/Debu... | Brian Gaeke | 2004-07-21 | 1 | -1/+0 |
* | Fix a recent regression in Applications/sgefa that Alkis pointed out to me. | Chris Lattner | 2004-06-16 | 1 | -2/+2 |
* | Adjust to new TargetMachine interface | Chris Lattner | 2004-06-02 | 1 | -1/+1 |
* | Change MRegisterInfo::foldMemoryOperand to return the folded | Alkis Evlogimenos | 2004-03-14 | 1 | -4/+3 |
* | Uncomment assertions that register# != 0 on calls to | Alkis Evlogimenos | 2004-02-26 | 1 | -12/+18 |
* | No need to clear the map here, it will always be empty | Chris Lattner | 2004-02-26 | 1 | -1/+0 |
* | Add DenseMap template and actually use it for for mapping virtual regs | Alkis Evlogimenos | 2004-02-25 | 1 | -13/+8 |
* | Refactor rewinding code for finding the first terminator of a basic | Alkis Evlogimenos | 2004-02-23 | 1 | -5/+1 |
* | Another bug fix for empty MBB's | Chris Lattner | 2004-02-22 | 1 | -1/+1 |
* | Fix a bug where we were implicitly assuming that there would be at least | Chris Lattner | 2004-02-22 | 1 | -2/+2 |
* | Make 'fold' statistic's description the same in both allocators. | Alkis Evlogimenos | 2004-02-21 | 1 | -2/+3 |
* | Fix problem fusing spill code into instructions: we didn't update the live | Chris Lattner | 2004-02-19 | 1 | -0/+3 |
* | Rename reloads/spills to loads/stores. | Alkis Evlogimenos | 2004-02-19 | 1 | -5/+5 |
* | Remove the -disable-kill option. The register allocator is buggy with it, | Chris Lattner | 2004-02-17 | 1 | -50/+39 |
* | Add support to the local allocator for fusing spill code into the instructions | Chris Lattner | 2004-02-17 | 1 | -11/+13 |
* | Fix a bug in my previous refactoring change... arg! | Chris Lattner | 2004-02-17 | 1 | -1/+3 |
* | Once we have a way to fold spill code reloads into instructions, we have a wa... | Chris Lattner | 2004-02-17 | 1 | -2/+17 |
* | Refactor code a bit. No functionality changes, though the comment hints at t... | Chris Lattner | 2004-02-17 | 1 | -30/+46 |
* | Make dense maps keyed on physical registers smallerusing | Alkis Evlogimenos | 2004-02-15 | 1 | -1/+1 |
* | Remove getAllocatedRegNum(). Use getReg() instead. | Alkis Evlogimenos | 2004-02-13 | 1 | -3/+3 |
* | Use getNumVirtualRegs(). | Alkis Evlogimenos | 2004-02-13 | 1 | -41/+34 |
* | Change MachineBasicBlock's vector of MachineInstr pointers into an | Alkis Evlogimenos | 2004-02-12 | 1 | -11/+10 |
* | Do not use MachineOperand::isVirtualRegister either! | Chris Lattner | 2004-02-10 | 1 | -4/+4 |
* | Eliminate users of MachineOperand::isPhysicalRegister | Chris Lattner | 2004-02-10 | 1 | -2/+2 |
* | Another nice speedup for the register allocator. This time, we replace | Chris Lattner | 2004-02-09 | 1 | -37/+55 |
* | Change the PhysRegsUsed map into a dense array. Seeing that this is a mapping | Chris Lattner | 2004-02-09 | 1 | -34/+35 |
* | Finegrainify namespacification, use new MRegisterInfo::isVirtualRegister | Chris Lattner | 2004-01-31 | 1 | -8/+6 |
* | Correctly compute live variable information for physical registers | Alkis Evlogimenos | 2004-01-13 | 1 | -3/+12 |
* | Remove TwoAddressInstruction from the public headers and add an ID | Alkis Evlogimenos | 2003-12-18 | 1 | -2/+1 |
* | Modify local register allocator to use the two-address instruction pass. | Alkis Evlogimenos | 2003-12-18 | 1 | -18/+5 |
* | Change interface of MachineOperand as follows: | Alkis Evlogimenos | 2003-12-14 | 1 | -6/+7 |
* | Remove unecessary if statements when looping on ImplicitDefs. | Alkis Evlogimenos | 2003-12-13 | 1 | -7/+7 |
* | Make assertion stricter. Since the source operands are allocated at | Alkis Evlogimenos | 2003-12-05 | 1 | -1/+1 |
* | Put all LLVM code into the llvm namespace, as per bug 109. | Brian Gaeke | 2003-11-11 | 1 | -1/+4 |
* | standardize command line option names | Chris Lattner | 2003-10-24 | 1 | -1/+1 |
* | Added LLVM project notice to the top of every C++ source file. | John Criswell | 2003-10-20 | 1 | -0/+7 |
* | Change MRegisterDesc::AliasSet, TargetInstrDescriptor::ImplicitDefs | Alkis Evlogimenos | 2003-10-08 | 1 | -20/+23 |
* | Fix bug: Jello/2003-08-23-RegisterAllocatePhysReg.ll | Chris Lattner | 2003-08-23 | 1 | -13/+21 |
* | Fix bug: Jello/2003-08-15-AllocaAssertion.ll | Chris Lattner | 2003-08-17 | 1 | -8/+18 |
* | Fix typo in comment | Brian Gaeke | 2003-08-15 | 1 | -1/+1 |
* | Factory methods for FunctionPasses now return type FunctionPass *. | Brian Gaeke | 2003-08-13 | 1 | -1/+1 |
* | Fix bugs handling ESP in alloca references | Chris Lattner | 2003-08-05 | 1 | -3/+6 |
* | Revert previous change, and be really anal about what physical registers can do. | Chris Lattner | 2003-08-05 | 1 | -27/+19 |
* | Don't bother calculating info unless its needed. May reduce number of stack ... | Chris Lattner | 2003-08-04 | 1 | -4/+2 |