Searched refs:ScanFrom (Results 1 - 2 of 2) sorted by relevance

/external/llvm/include/llvm/Analysis/
H A DLoads.h27 /// ScanFrom, to determine if the address is already accessed.
28 bool isSafeToLoadUnconditionally(Value *V, Instruction *ScanFrom,
32 /// the instruction before ScanFrom) checking to see if we have the value at
38 /// find something that invalidates *Ptr or provides it, ScanFrom would be
39 /// left at begin() and this returns null. ScanFrom could also be left
45 BasicBlock::iterator &ScanFrom,
/external/llvm/lib/Analysis/
H A DLoads.cpp85 /// ScanFrom, to determine if the address is already accessed.
86 bool llvm::isSafeToLoadUnconditionally(Value *V, Instruction *ScanFrom, argument
130 BasicBlock::iterator BBI = ScanFrom, E = ScanFrom->getParent()->begin();
151 /// instruction before ScanFrom) checking to see if we have the value at the
157 /// something that invalidates *Ptr or provides it, ScanFrom would be left at
158 /// begin() and this returns null. ScanFrom could also be left
164 BasicBlock::iterator &ScanFrom,
176 while (ScanFrom != ScanBB->begin()) {
179 Instruction *Inst = --ScanFrom;
163 FindAvailableLoadedValue(Value *Ptr, BasicBlock *ScanBB, BasicBlock::iterator &ScanFrom, unsigned MaxInstsToScan, AliasAnalysis *AA) argument
[all...]

Completed in 178 milliseconds