Don't attribute in file headers anymore. See llvmdev for the
[oota-llvm.git] / include / llvm / CodeGen / LiveVariables.h
2007-12-29 Chris LattnerDon't attribute in file headers anymore. See llvmdev...
2007-11-17 Evan ChengLive interval splitting:
2007-11-08 Owen AndersonOops, forgot to commit this file.
2007-09-14 Dan GohmanRemove isReg, isImm, and isMBB, and change all their...
2007-07-20 Dan GohmanDon't assume that only Uses can be kills. Defs are...
2007-06-26 Evan ChengProperly handle kills of a physical register which...
2007-05-08 Evan ChengEliminate MarkVirtRegAliveInBlock recursion.
2007-05-06 Nick LewyckyFix typo in comment.
2007-05-03 Devang PatelDrop 'const'
2007-05-02 Devang PatelUse 'static const char' instead of 'static const int'.
2007-05-01 Devang PatelDo not use typeinfo to identify pass in pass manager.
2007-04-26 Evan ChengBe careful when to add implicit kill / dead operands...
2007-04-25 Evan ChengData structure change to improve compile time (especial...
2007-04-25 Evan ChengFix for PR1306.
2007-04-18 Evan ChengVarInfo::UsedBlocks is no longer used. Remove.
2007-04-17 Evan ChengKeep track of number of uses within the function per...
2007-03-17 Evan ChengTrack the BB's where each virtual register is used.
2007-02-19 Evan ChengRe-apply my liveintervalanalysis changes. Now with...
2007-02-19 Reid SpencerFor PR1207:
2007-02-17 Evan ChengAllow LiveVariables to track liveness of more registers.
2007-02-15 Evan ChengUse BitVector instead of vector<bool> which can be...
2006-11-15 Evan ChengDo away with kill / dead maps. Move kill / dead info...
2006-10-03 Bill WendlingFix for PR929. The PHI nodes were being gone through...
2006-09-03 Chris LattnerMove two methods out of line, make them work when the...
2006-01-04 Chris Lattneradd a comment that I should have written a long time ago
2006-01-04 Chris Lattneradd a dump method to help debugging
2005-08-25 Chris LattnerFix a problem Duraid noticed, where we weren't removing...
2005-08-24 Chris LattnerKeep the killed/dead sets sorted, so that "KillsRegiste...
2005-08-23 Chris LattnerChange live variables from using multimaps to using...
2005-08-23 Chris LattnerAdd RegisterDefIsDead to correspond to KillsRegister...
2005-04-22 Misha BrukmanConvert tabs to spaces
2005-04-21 Misha BrukmanRemove trailing whitespace
2005-01-01 Chris LattnerAdd a useful accessor
2004-08-26 Alkis EvlogimenosUse newly added API in MRegisterInfo and don't expose...
2004-07-19 Chris LattnerThere is no need to store the MBB along with the MI...
2004-07-19 Chris LattnerSimplify the interface to LiveVariables::addVirtualRegi...
2004-07-19 Chris LattnerRemove the DefBlock element of VarInfo. DefBlock is...
2004-07-01 Chris LattnerNow that we have happy mappings from MBBs->numbers...
2004-05-01 Chris LattnerStop LiveVariables from using BasicBlocks as part of...
2004-02-19 Chris LattnerADd a method for when an instruction moves
2004-01-30 Chris LattnerAdd a new lazily constructed mapping from Idx's the...
2004-01-11 Alkis EvlogimenosMake LiveVariables::HandlePhysRegUse and
2003-12-18 Alkis EvlogimenosAdd TwoAddressInstructionPass to handle instructions...
2003-12-13 Alkis EvlogimenosIgnore non-allocatable physical registers in live inter...
2003-11-11 Brian GaekePut all LLVM code into the llvm namespace, as per bug...
2003-10-20 John CriswellAdded LLVM copyright header (for lack of a better term).
2003-06-22 Chris LattnerRemove a ton of extraneous #includes
2003-06-11 John CriswellIncluded assert.h so that the code compiles under newer...
2003-05-12 Chris LattnerBeef up interface, move getVarInfo out-of-line.
2003-05-12 Chris LattnerExpand API for updating live var info.
2003-05-07 Chris LattnerAdd comments, add a vector to keep track of which regis...
2003-01-13 Chris LattnerAdd new files