mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-13 04:38:24 +00:00
rename GetValueInBlock -> GetValueAtEndOfBlock to better reflect
what it does. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@83740 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -52,16 +52,16 @@ public:
|
||||
/// specified block with the specified value.
|
||||
void AddAvailableValue(BasicBlock *BB, Value *V);
|
||||
|
||||
/// GetValueInBlock - Construct SSA form, materializing a value in the
|
||||
/// specified block.
|
||||
Value *GetValueInBlock(BasicBlock *BB);
|
||||
/// GetValueAtEndOfBlock - Construct SSA form, materializing a value that is
|
||||
/// live at the end of the specified block.
|
||||
Value *GetValueAtEndOfBlock(BasicBlock *BB);
|
||||
|
||||
/// RewriteUse - Rewrite a use of the symbolic value. This handles PHI nodes,
|
||||
/// which use their value in the corresponding predecessor.
|
||||
void RewriteUse(Use &U);
|
||||
|
||||
private:
|
||||
Value *GetValueInBlockInternal(BasicBlock *BB);
|
||||
Value *GetValueAtEndOfBlockInternal(BasicBlock *BB);
|
||||
void operator=(const SSAUpdater&); // DO NOT IMPLEMENT
|
||||
SSAUpdater(const SSAUpdater&); // DO NOT IMPLEMENT
|
||||
};
|
||||
|
Reference in New Issue
Block a user