| Commit message (Expand) | Author | Age | Files | Lines |
* | Eliminate data relocations by using NULL instead of global empty list. | Jim Laskey | 2006-07-21 | 1 | -4/+6 |
* | Reduce number of exported symbols | Andrew Lenharth | 2006-07-20 | 1 | -7/+7 |
* | Shave another 27K off libllvmgcc.dylib with visibility hidden | Chris Lattner | 2006-06-28 | 1 | -4/+7 |
* | Move some methods out of MachineInstr into MachineOperand | Chris Lattner | 2006-05-04 | 1 | -8/+8 |
* | Fix a latent bug that my spiller patch last week exposed: we were leaving | Chris Lattner | 2006-05-01 | 1 | -0/+4 |
* | When promoting a load to a reg-reg copy, where the load was a previous | Chris Lattner | 2006-05-01 | 1 | -0/+1 |
* | Remove previous patch, which wasn't quite right. | Chris Lattner | 2006-05-01 | 1 | -18/+12 |
* | Remove temp. option -spiller-check-liveout, it didn't cause any failure nor p... | Evan Cheng | 2006-05-01 | 1 | -5/+1 |
* | Local spiller kills a store if the folded restore is turned into a copy. | Evan Cheng | 2006-04-30 | 1 | -5/+15 |
* | Mapping of physregs can make it so that the designated and input physregs are | Chris Lattner | 2006-04-28 | 1 | -0/+13 |
* | When we have a two-address instruction where the input cannot be clobbered | Chris Lattner | 2006-04-28 | 1 | -26/+64 |
* | Fix a bug that Evan exposed with some changes he's making, and that was | Chris Lattner | 2006-02-25 | 1 | -9/+23 |
* | Remove debugging printout :) | Chris Lattner | 2006-02-25 | 1 | -5/+6 |
* | Refactor some code from being inline to being out in a new class with methods. | Chris Lattner | 2006-02-25 | 1 | -42/+97 |
* | Fix VC++ warning. | Jeff Cohen | 2006-02-04 | 1 | -1/+1 |
* | Handle another case exposed on X86. | Chris Lattner | 2006-02-03 | 1 | -0/+4 |
* | Fix a nasty problem on two-address machines in the following situation: | Chris Lattner | 2006-02-03 | 1 | -9/+27 |
* | significantly simplify the VirtRegMap code by pulling the SpillSlotsAvailable | Chris Lattner | 2006-02-03 | 1 | -70/+98 |
* | Fix VC++ compilation error caused by using a std::map iterator variable to re... | Jeff Cohen | 2006-02-03 | 1 | -1/+1 |
* | Remove move copies and dead stuff by not clobbering the result reg of a noop ... | Chris Lattner | 2006-02-03 | 1 | -12/+21 |
* | Simplify some code | Chris Lattner | 2006-02-03 | 1 | -45/+40 |
* | Add code that checks for noop copies, which triggers when either: | Chris Lattner | 2006-02-03 | 1 | -0/+13 |
* | Physregs may hold multiple stack slot values at the same time. Keep track | Chris Lattner | 2006-02-03 | 1 | -37/+49 |
* | Fix a deficiency in the spiller that Evan noticed. In particular, consider | Chris Lattner | 2006-02-02 | 1 | -1/+31 |
* | Move isLoadFrom/StoreToStackSlot from MRegisterInfo to TargetInstrInfo,a far ... | Chris Lattner | 2006-02-02 | 1 | -2/+3 |
* | Add explicit #includes of <iostream> | Chris Lattner | 2006-01-22 | 1 | -0/+1 |
* | Add an assertion, update DefInst even though no one uses it (dangling pointers | Chris Lattner | 2006-01-04 | 1 | -0/+1 |
* | Fix the LLC regressions on X86 last night. In particular, when undoing | Chris Lattner | 2005-10-06 | 1 | -5/+12 |
* | Fix a bug in the local spiller, where we could take code like this: | Chris Lattner | 2005-10-05 | 1 | -5/+5 |
* | Change this code ot pass register classes into the stack slot spiller/reloader | Chris Lattner | 2005-09-30 | 1 | -5/+11 |
* | Teach the local spiller to turn stack slot loads into register-register copies | Chris Lattner | 2005-09-19 | 1 | -26/+52 |
* | Use continue in the use-processing loop to make it clear what the early exits | Chris Lattner | 2005-09-09 | 1 | -115/+123 |
* | Remove trailing whitespace | Misha Brukman | 2005-04-21 | 1 | -11/+11 |
* | Make sure to notice that explicit physregs are used in the function | Chris Lattner | 2005-04-04 | 1 | -23/+29 |
* | Update these register allocators to set the PhysRegUsed info in MachineFunction. | Chris Lattner | 2005-01-23 | 1 | -8/+17 |
* | Improve compatibility with acc | Chris Lattner | 2005-01-14 | 1 | -2/+2 |
* | Clean up the MachineBasicBlock.h file, percolating #includes into this file. | Chris Lattner | 2004-10-26 | 1 | -0/+1 |
* | This patch fixes the nasty bug that caused 175.vpr to fail for X86 last night. | Chris Lattner | 2004-10-15 | 1 | -1/+2 |
* | This patch adds and improves debugging output. No functionality changes. | Chris Lattner | 2004-10-15 | 1 | -3/+7 |
* | Do not repeat the map lookup | Chris Lattner | 2004-10-01 | 1 | -1/+1 |
* | When a virtual register is folded into an instruction, keep track of whether | Chris Lattner | 2004-10-01 | 1 | -21/+43 |
* | Add a simple little improvement to the local spiller to keep track of stores | Chris Lattner | 2004-10-01 | 1 | -0/+26 |
* | Substantially revamp the local spiller, causing it to actually improve the | Chris Lattner | 2004-10-01 | 1 | -164/+301 |
* | Use more efficient map operations. Fix a bug that would affect hypothetical | Chris Lattner | 2004-09-30 | 1 | -6/+8 |
* | There is no need to call MachineInstr::print directly, just send the MI& to a... | Chris Lattner | 2004-09-30 | 1 | -10/+7 |
* | Simplify the logic in the simple spiller and capitalize some variables | Chris Lattner | 2004-09-30 | 1 | -86/+90 |
* | Switch from defaulting to the 'local' spiller to the 'simple' spiller. The | Chris Lattner | 2004-09-30 | 1 | -2/+2 |
* | Don't use a densemap for keeping track of which vregs are already loaded, just | Chris Lattner | 2004-09-30 | 1 | -6/+10 |
* | Use longer and more explicit names for instance vars (particularly important | Chris Lattner | 2004-09-30 | 1 | -32/+30 |
* | Reindent code, improve comments, move huge nested methods out of classes, | Chris Lattner | 2004-09-30 | 1 | -300/+314 |