summaryrefslogtreecommitdiff
path: root/lib/CodeGen/LiveVariables.cpp
Commit message (Expand)AuthorAge
* Do not use typeinfo to identify pass in pass manager.Devang Patel2007-05-01
* Rename findRegisterUseOperand to findRegisterUseOperandIdx to avoid confusion.Evan Cheng2007-04-26
* Minor bug.Evan Cheng2007-04-26
* Be careful when to add implicit kill / dead operands. Don't add them during /...Evan Cheng2007-04-26
* Clean up.Evan Cheng2007-04-25
* Data structure change to improve compile time (especially in debug mode).Evan Cheng2007-04-25
* Fix for PR1306.Evan Cheng2007-04-25
* VarInfo::UsedBlocks is no longer used. Remove.Evan Cheng2007-04-18
* Keep track of number of uses within the function per virtual register.Evan Cheng2007-04-17
* Track the BB's where each virtual register is used.Evan Cheng2007-03-17
* If a virtual register is already marked alive in this block, that means it isEvan Cheng2007-03-09
* Avoid variable shadowing.Evan Cheng2007-03-09
* Re-apply my liveintervalanalysis changes. Now with PR1207 fixes.Evan Cheng2007-02-19
* For PR1207:Reid Spencer2007-02-19
* - Use MRegister::regsOverlap().Evan Cheng2007-02-17
* Allow any MachineBasicBlock (not just the entry block) to have live-in physicalEvan Cheng2007-02-13
* Removed more <iostream> includesBill Wendling2006-12-07
* Do away with kill / dead maps. Move kill / dead info onto MI's.Evan Cheng2006-11-15
* Add implicit def / use operands to MachineInstr.Evan Cheng2006-11-10
* For PR786:Reid Spencer2006-11-02
* Fix for PR929. The PHI nodes were being gone through for each instructionBill Wendling2006-10-03
* Only call isUse/isDef on register operandsChris Lattner2006-09-05
* Move two methods out of line, make them work when the record for a machineChris Lattner2006-09-03
* Eliminate RegisterAnalysis. RegisterPass now does all that is necessary.Chris Lattner2006-08-27
* Eliminate data relocations by using NULL instead of global empty list.Jim Laskey2006-07-21
* Remove a bunch more dead V9 specific stuffChris Lattner2006-05-04
* Add a LiveVariables::VarInfo::dump methodChris Lattner2006-01-04
* Add section switching to common code generator code. Add a couple ofChris Lattner2005-11-21
* Implement LiveVariables.h changeChris Lattner2005-08-24
* adjust to new live variables interfaceChris Lattner2005-08-23
* allow a virtual register to be associated with live-in values.Chris Lattner2005-05-13
* Remove trailing whitespaceMisha Brukman2005-04-21
* Consider the livein/out set for a function, allowing targets to not have toChris Lattner2005-04-09
* Just in case, handle something that is both a use and a def.Chris Lattner2005-01-19
* When an instruction moves, make sure to update the VarInfo::Kills list asChris Lattner2005-01-19
* Do not use variable sized arrays in C++, they are non-portable. PatchChris Lattner2004-10-25
* Changes For Bug 352Reid Spencer2004-09-01
* Give a better assertion if we see a use before a def.Alkis Evlogimenos2004-09-01
* Remove dead code.Alkis Evlogimenos2004-08-28
* Use newly added API in MRegisterInfo and don't expose the allocatableAlkis Evlogimenos2004-08-26
* There is no need to store the MBB along with the MI any more, we can nowChris Lattner2004-07-19
* Simplify the interface to LiveVariables::addVirtualRegister(Killed|Dead)Chris Lattner2004-07-19
* Remove the DefBlock element of VarInfo. DefBlock is always DefInst->getParent()Chris Lattner2004-07-19
* Add checks to ensure that there are no unreachable blocks in the functionChris Lattner2004-07-09
* Now that MachineFunction/MachineBasicBlock keep a mapping of blocks to ID #'sChris Lattner2004-07-01
* Start using MBB numbers directly instead of going through the live variablesChris Lattner2004-07-01
* Instead of building a private numbering of MBB's use brg's nifty auto-numbering.Chris Lattner2004-07-01
* Convert tabs to spaces.Misha Brukman2004-06-24
* Adjust to new TargetMachine interfaceChris Lattner2004-06-02
* Patch to fix PR337. Make sure to mark all aliased physical registers as usedChris Lattner2004-05-10