aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/CodeGen/LiveVariables.h
AgeCommit message (Expand)Author
2009-05-26LiveVariables::VarInfo contains an AliveBlocks BitVector, which has as manyJeffrey Yasskin
2009-05-26Eliminate VarInfo::UsedBlocks.Evan Cheng
2009-01-20Fix PR3243: a LiveVariables bug. When HandlePhysRegKill is checking whether t...Evan Cheng
2009-01-05Tidy up #includes, deleting a bunch of unnecessary #includes.Dan Gohman
2008-11-12Revert the part of r59145 that changed the comment aboutDan Gohman
2008-11-12Update VarInfo's comments to reflect the current code. LiveVarDan Gohman
2008-10-03Switch the MachineOperand accessors back to the short names likeDan Gohman
2008-09-21Factor out code into HandleVirtRegDef, for consistency withDan Gohman
2008-09-04Tidy up several unbeseeming casts from pointer to intptr_t.Dan Gohman
2008-08-04- Fix SelectionDAG to generate correct CFGs.Owen Anderson
2008-07-03- Remove calls to copyKillDeadInfo which is an N^2 function. Instead, propaga...Evan Cheng
2008-07-03- Add LiveVariables::replaceKillInstruction. This does a subset of instructio...Evan Cheng
2008-04-16Rewrite LiveVariable liveness computation. The new implementation is much sim...Evan Cheng
2008-04-02Now that I am told MachineRegisterInfo also tracks physical register uses / d...Evan Cheng
2008-04-02Remove #include<map> from LiveVariables.h. Not referenced.Evan Cheng
2008-03-19Fix live variables issues:Evan Cheng
2008-03-13Improve VarInfo::removeKill() by using std::find instead of linear search.Evan Cheng
2008-03-05Refactor code. Remove duplicated functions that basically do the same thing asEvan Cheng
2008-02-20Fixed typo.Bill Wendling
2008-02-20More constification of things. More comments added. No functionalityBill Wendling
2008-02-10Rename MRegisterInfo to TargetRegisterInfo.Dan Gohman
2008-01-31Fix a typo in a comment.Dan Gohman
2008-01-29Fix a typo in a comment.Dan Gohman
2008-01-24Move some functionality for adding flags to MachineInstr's into methods on Ma...Owen Anderson
2008-01-15Move some calls to getVRegDef higher in the callgraph, so they don't get exec...Owen Anderson
2008-01-15Unbreak the build.Evan Cheng
2007-12-30More cleanups for MachineOperand:Chris Lattner
2007-12-29Don't attribute in file headers anymore. See llvmdev for theChris Lattner
2007-11-17Live interval splitting:Evan Cheng
2007-11-08Oops, forgot to commit this file.Owen Anderson
2007-09-14Remove isReg, isImm, and isMBB, and change all their users to use Dan Gohman
2007-07-20Don't assume that only Uses can be kills. Defs are marked as kills initiallyDan Gohman
2007-06-26Properly handle kills of a physical register which has sub-registers that are...Evan Cheng
2007-05-08Eliminate MarkVirtRegAliveInBlock recursion.Evan Cheng
2007-05-06Fix typo in comment.Nick Lewycky
2007-05-03Drop 'const'Devang Patel
2007-05-02Use 'static const char' instead of 'static const int'.Devang Patel
2007-05-01Do not use typeinfo to identify pass in pass manager.Devang Patel
2007-04-26Be careful when to add implicit kill / dead operands. Don't add them during /...Evan Cheng
2007-04-25Data structure change to improve compile time (especially in debug mode).Evan Cheng
2007-04-25Fix for PR1306.Evan Cheng
2007-04-18VarInfo::UsedBlocks is no longer used. Remove.Evan Cheng
2007-04-17Keep track of number of uses within the function per virtual register.Evan Cheng
2007-03-17Track the BB's where each virtual register is used.Evan Cheng
2007-02-19Re-apply my liveintervalanalysis changes. Now with PR1207 fixes.Evan Cheng
2007-02-19For PR1207:Reid Spencer
2007-02-17Allow LiveVariables to track liveness of more registers.Evan Cheng
2007-02-15Use BitVector instead of vector<bool> which can be extremely slow.Evan Cheng
2006-11-15Do away with kill / dead maps. Move kill / dead info onto MI's.Evan Cheng
2006-10-03Fix for PR929. The PHI nodes were being gone through for each instructionBill Wendling