| Commit message (Expand) | Author | Age | Files | Lines |
* | Added LLVM project notice to the top of every C++ source file. | John Criswell | 2003-10-20 | 5 | -0/+35 |
* | #include vector which we will need here soon | Chris Lattner | 2003-10-15 | 1 | -0/+1 |
* | include passes.h which defines the interface this file exposes | Chris Lattner | 2003-09-30 | 1 | -4/+4 |
* | Update head-of-file comment. | Brian Gaeke | 2003-09-24 | 1 | -1/+10 |
* | Untabify tabs in stuff I've recently added. | Brian Gaeke | 2003-09-24 | 2 | -3/+156 |
* | Use getRegClassID() instead of getRegClass()->getID(), since it's there. | Brian Gaeke | 2003-09-24 | 1 | -17/+15 |
* | Remove some unused methods of class IGNode. | Brian Gaeke | 2003-09-24 | 1 | -13/+0 |
* | Move getAnalysisUsage method from header to .cpp file. Add a normal file | Chris Lattner | 2003-09-23 | 2 | -21/+22 |
* | Use C++ math header instead of C version. | Brian Gaeke | 2003-09-21 | 1 | -1/+1 |
* | Erase now-unused prototypes. | Brian Gaeke | 2003-09-21 | 1 | -3/+0 |
* | Rearrange #includes ... since there are fewer now I guess it's a win. | Brian Gaeke | 2003-09-21 | 1 | -2/+2 |
* | Standardize the names of include guards. | Brian Gaeke | 2003-09-21 | 5 | -11/+10 |
* | Standardize the names of include guards. | Brian Gaeke | 2003-09-21 | 1 | -4/+2 |
* | Standardize the names of include guards. | Brian Gaeke | 2003-09-21 | 1 | -6/+5 |
* | I tried to standardize the formatting and tidy up the huge amount of | Brian Gaeke | 2003-09-21 | 2 | -204/+33 |
* | Convert PhyRegAlloc into a proper pass. | Brian Gaeke | 2003-09-21 | 2 | -132/+98 |
* | Fix typo in comment. Take out some random whitespace. | Brian Gaeke | 2003-09-16 | 1 | -4/+1 |
* | Edit comment for accuracy | Brian Gaeke | 2003-09-16 | 1 | -3/+3 |
* | Fix typos in comments. | Brian Gaeke | 2003-09-15 | 1 | -2/+2 |
* | Fixed spelling and grammar. | Misha Brukman | 2003-09-11 | 2 | -18/+18 |
* | LiveRange.h is now in lib/CodeGen/RegAlloc | Chris Lattner | 2003-09-01 | 1 | -1/+1 |
* | LiveRangeInfo got moved into the lib/CodeGen/RegAlloc directory | Chris Lattner | 2003-09-01 | 2 | -2/+2 |
* | PhyRegAlloc.h got moved to lib/CodeGen/RegAlloc | Chris Lattner | 2003-09-01 | 1 | -1/+1 |
* | Move IGNode from public include directory to here. Minor cleanups like addin... | Chris Lattner | 2003-09-01 | 5 | -117/+102 |
* | The word `dependent' has no `a'. | Misha Brukman | 2003-08-21 | 1 | -1/+1 |
* | Factory methods for function passes now return type FunctionPass *. | Brian Gaeke | 2003-08-14 | 1 | -1/+1 |
* | For instructions in a delay slot of another instruction, | Vikram S. Adve | 2003-08-12 | 1 | -12/+16 |
* | Use a new local data structure instead of the MachineInstr::regsUsed set | Chris Lattner | 2003-08-05 | 1 | -8/+7 |
* | Add a map | Chris Lattner | 2003-08-05 | 1 | -0/+4 |
* | Minor cleanups | Chris Lattner | 2003-08-05 | 1 | -23/+22 |
* | Physical registers no longer live in the regsUsed set for each machine instr | Chris Lattner | 2003-08-05 | 1 | -18/+30 |
* | 1. Bug fix: Don't use branch operand reg. as temp. reg. when | Vikram S. Adve | 2003-07-29 | 1 | -81/+326 |
* | Add const version of getLiveRangeForValue(). | Vikram S. Adve | 2003-07-29 | 1 | -4/+9 |
* | Code to insert caller-saves moved here from SparcRegInfo: it is now | Vikram S. Adve | 2003-07-29 | 1 | -9/+22 |
* | Making this code const-correct would be a pain, so I'll hack it. | Chris Lattner | 2003-07-26 | 1 | -1/+1 |
* | Remove extraneous #includes | Chris Lattner | 2003-07-26 | 1 | -1/+1 |
* | (1) Change the way unused regs. are marked and found to consider regType | Vikram S. Adve | 2003-07-25 | 4 | -116/+134 |
* | Remove unused field. Change the way unused regs. are marked and | Vikram S. Adve | 2003-07-25 | 1 | -10/+11 |
* | isMarkedForSpill() should be const. | Vikram S. Adve | 2003-07-10 | 1 | -1/+1 |
* | Print out all neighbors in interference graph, not just higher-numbered ones. | Vikram S. Adve | 2003-07-10 | 1 | -1/+1 |
* | Several fixes to handling of int CC register: | Vikram S. Adve | 2003-07-10 | 1 | -8/+10 |
* | Minor beautification: fold a couple of lines of code. | Vikram S. Adve | 2003-07-02 | 1 | -3/+2 |
* | Remove a ton of extraneous #includes | Chris Lattner | 2003-06-22 | 2 | -5/+1 |
* | Included assert.h so that the code compiles under newer versions of GCC. | John Criswell | 2003-06-11 | 2 | -0/+3 |
* | Minor changes. | Vikram S. Adve | 2003-05-31 | 1 | -0/+5 |
* | Extensive changes to the way code generation occurs for function | Vikram S. Adve | 2003-05-31 | 2 | -157/+261 |
* | (1) Added special register class containing (for now) %fsr. | Vikram S. Adve | 2003-05-27 | 2 | -16/+15 |
* | Adjust to new interfaces | Chris Lattner | 2003-01-15 | 2 | -6/+8 |
* | Move headers around | Chris Lattner | 2003-01-15 | 2 | -2/+2 |
* | Header is moved into local directory | Chris Lattner | 2003-01-15 | 1 | -3/+2 |