Don't require a BB to look-up live variables, unless they may need to

be recomputed.

llvm-svn: 7384
This commit is contained in:
Vikram S. Adve 2003-07-29 19:32:04 +00:00
parent 4f37692a80
commit 44119ac56e
1 changed files with 7 additions and 3 deletions

View File

@ -110,13 +110,17 @@ public:
// gets InSet of a BB
const ValueSet &getInSetOfBB(const BasicBlock *BB) const;
// gets the Live var set BEFORE an instruction
// gets the Live var set BEFORE an instruction.
// if BB is specified and the live var set has not yet been computed,
// it will be computed on demand.
const ValueSet &getLiveVarSetBeforeMInst(const MachineInstr *MI,
const BasicBlock *BB);
const BasicBlock *BB = 0);
// gets the Live var set AFTER an instruction
// if BB is specified and the live var set has not yet been computed,
// it will be computed on demand.
const ValueSet &getLiveVarSetAfterMInst(const MachineInstr *MI,
const BasicBlock *BB);
const BasicBlock *BB = 0);
};
#endif