HomeSort by relevance Sort by last modified time
    Searched full:scanfrom (Results 1 - 2 of 2) sorted by null

  /external/llvm/include/llvm/Analysis/
Loads.h 28 /// ScanFrom, to determine if the address is already accessed.
29 bool isSafeToLoadUnconditionally(Value *V, Instruction *ScanFrom,
34 /// the instruction before ScanFrom) checking to see if we have the value at
40 /// find something that invalidates *Ptr or provides it, ScanFrom would be
41 /// left at begin() and this returns null. ScanFrom could also be left
51 BasicBlock::iterator &ScanFrom,
  /external/llvm/lib/Analysis/
Loads.cpp 55 /// ScanFrom, to determine if the address is already accessed.
56 bool llvm::isSafeToLoadUnconditionally(Value *V, Instruction *ScanFrom,
102 BasicBlock::iterator BBI = ScanFrom, E = ScanFrom->getParent()->begin();
123 /// instruction before ScanFrom) checking to see if we have the value at the
129 /// something that invalidates *Ptr or provides it, ScanFrom would be left at
130 /// begin() and this returns null. ScanFrom could also be left
140 BasicBlock::iterator &ScanFrom,
153 while (ScanFrom != ScanBB->begin()) {
156 Instruction *Inst = --ScanFrom;
    [all...]

Completed in 400 milliseconds