mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 20:29:48 +00:00
make getDependencyFrom private.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@60637 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
630c99fd21
commit
aea5a2a22a
@ -200,16 +200,6 @@ namespace llvm {
|
|||||||
/// this on non-memory instructions.
|
/// this on non-memory instructions.
|
||||||
MemDepResult getDependency(Instruction *QueryInst);
|
MemDepResult getDependency(Instruction *QueryInst);
|
||||||
|
|
||||||
/// getDependencyFrom - Return the instruction on which the memory operation
|
|
||||||
/// 'QueryInst' depends. This starts scanning from the instruction before
|
|
||||||
/// the position indicated by ScanIt.
|
|
||||||
///
|
|
||||||
/// Note that this method does no caching at all. You should use
|
|
||||||
/// getDependency where possible.
|
|
||||||
MemDepResult getDependencyFrom(Instruction *QueryInst,
|
|
||||||
BasicBlock::iterator ScanIt, BasicBlock *BB);
|
|
||||||
|
|
||||||
|
|
||||||
/// getNonLocalDependency - Perform a full dependency query for the
|
/// getNonLocalDependency - Perform a full dependency query for the
|
||||||
/// specified instruction, returning the set of blocks that the value is
|
/// specified instruction, returning the set of blocks that the value is
|
||||||
/// potentially live across. The returned set of results will include a
|
/// potentially live across. The returned set of results will include a
|
||||||
@ -229,6 +219,16 @@ namespace llvm {
|
|||||||
void removeInstruction(Instruction *InstToRemove);
|
void removeInstruction(Instruction *InstToRemove);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
|
/// getDependencyFrom - Return the instruction on which the memory operation
|
||||||
|
/// 'QueryInst' depends. This starts scanning from the instruction before
|
||||||
|
/// the position indicated by ScanIt.
|
||||||
|
///
|
||||||
|
/// Note that this method does no caching at all. You should use
|
||||||
|
/// getDependency where possible.
|
||||||
|
MemDepResult getDependencyFrom(Instruction *QueryInst,
|
||||||
|
BasicBlock::iterator ScanIt, BasicBlock *BB);
|
||||||
|
|
||||||
/// verifyRemoved - Verify that the specified instruction does not occur
|
/// verifyRemoved - Verify that the specified instruction does not occur
|
||||||
/// in our internal data structures.
|
/// in our internal data structures.
|
||||||
void verifyRemoved(Instruction *Inst) const;
|
void verifyRemoved(Instruction *Inst) const;
|
||||||
|
Loading…
Reference in New Issue
Block a user