aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/LiveVariables.cpp
Commit message (Expand)AuthorAgeFilesLines
* rename TargetInstrDescriptor -> TargetInstrDesc.Chris Lattner2008-01-071-1/+1
* Move a bunch more accessors from TargetInstrInfo to TargetInstrDescriptorChris Lattner2008-01-071-2/+1
* Rename SSARegMap -> MachineRegisterInfo in keeping with the idea Chris Lattner2007-12-311-2/+4
* Add new shorter predicates for testing machine operands for various types: Chris Lattner2007-12-301-1/+1
* More cleanups for MachineOperand:Chris Lattner2007-12-301-6/+6
* Start using the simplified methods for adding operands.Chris Lattner2007-12-301-9/+15
* Remove attribution from file headers, per discussion on llvmdev.Chris Lattner2007-12-291-2/+2
* Live interval splitting:Evan Cheng2007-11-171-10/+39
* Bring UsedBlocks back. StrongPHIElimination needs this information.Owen Anderson2007-11-081-1/+8
* Handle cases where a register and one of its super-register are both marked asEvan Cheng2007-11-051-2/+4
* Remove isReg, isImm, and isMBB, and change all their users to use Dan Gohman2007-09-141-7/+7
* Fixed a typo that's causing a missing kill marker.Evan Cheng2007-09-121-4/+3
* Sometimes a MI can define a register as well as defining a super-register at theEvan Cheng2007-09-111-6/+7
* Bugs: missing partial uses and redundant partial defs.Evan Cheng2007-08-011-4/+20
* Don't assume that only Uses can be kills. Defs are marked as kills initiallyDan Gohman2007-07-201-8/+6
* Dead code.Evan Cheng2007-07-171-1/+0
* Replace std::set with SmallPtrSet.Evan Cheng2007-06-271-3/+5
* Properly handle kills of a physical register which has sub-registers that are...Evan Cheng2007-06-261-13/+73
* When marking a register as being implicitly defined, make sure to clear its p...Evan Cheng2007-05-141-0/+2
* Eliminate MarkVirtRegAliveInBlock recursion.Evan Cheng2007-05-081-4/+17
* Drop 'const'Devang Patel2007-05-031-1/+1
* Use 'static const char' instead of 'static const int'.Devang Patel2007-05-021-1/+1
* Do not use typeinfo to identify pass in pass manager.Devang Patel2007-05-011-0/+1
* Rename findRegisterUseOperand to findRegisterUseOperandIdx to avoid confusion.Evan Cheng2007-04-261-1/+2
* Minor bug.Evan Cheng2007-04-261-2/+2
* Be careful when to add implicit kill / dead operands. Don't add them during /...Evan Cheng2007-04-261-9/+17
* Clean up.Evan Cheng2007-04-251-3/+1
* Data structure change to improve compile time (especially in debug mode).Evan Cheng2007-04-251-12/+23
* Fix for PR1306.Evan Cheng2007-04-251-37/+132
* VarInfo::UsedBlocks is no longer used. Remove.Evan Cheng2007-04-181-8/+1
* Keep track of number of uses within the function per virtual register.Evan Cheng2007-04-171-0/+1
* Track the BB's where each virtual register is used.Evan Cheng2007-03-171-15/+22
* If a virtual register is already marked alive in this block, that means it isEvan Cheng2007-03-091-1/+6
* Avoid variable shadowing.Evan Cheng2007-03-091-2/+2
* Re-apply my liveintervalanalysis changes. Now with PR1207 fixes.Evan Cheng2007-02-191-28/+8
* For PR1207:Reid Spencer2007-02-191-8/+28
* - Use MRegister::regsOverlap().Evan Cheng2007-02-171-28/+8
* Allow any MachineBasicBlock (not just the entry block) to have live-in physicalEvan Cheng2007-02-131-8/+8
* Removed more <iostream> includesBill Wendling2006-12-071-10/+9
* Do away with kill / dead maps. Move kill / dead info onto MI's.Evan Cheng2006-11-151-81/+107
* Add implicit def / use operands to MachineInstr.Evan Cheng2006-11-101-17/+2
* For PR786:Reid Spencer2006-11-021-1/+0
* Fix for PR929. The PHI nodes were being gone through for each instructionBill Wendling2006-10-031-21/+26
* Only call isUse/isDef on register operandsChris Lattner2006-09-051-2/+2
* Move two methods out of line, make them work when the record for a machineChris Lattner2006-09-031-0/+36
* Eliminate RegisterAnalysis. RegisterPass now does all that is necessary.Chris Lattner2006-08-271-1/+1
* Eliminate data relocations by using NULL instead of global empty list.Jim Laskey2006-07-211-6/+10
* Remove a bunch more dead V9 specific stuffChris Lattner2006-05-041-8/+6
* Add a LiveVariables::VarInfo::dump methodChris Lattner2006-01-041-0/+20
* Add section switching to common code generator code. Add a couple ofChris Lattner2005-11-211-2/+3