Searched refs:OffsetOk (Results 1 – 1 of 1) sorted by relevance
/external/llvm/lib/Analysis/ |
D | Lint.cpp | 101 Value *findValue(Value *V, const DataLayout &DL, bool OffsetOk) const; 102 Value *findValueImpl(Value *V, const DataLayout &DL, bool OffsetOk, 817 Value *Lint::findValue(Value *V, const DataLayout &DL, bool OffsetOk) const { in findValue() 819 return findValueImpl(V, DL, OffsetOk, Visited); in findValue() 823 Value *Lint::findValueImpl(Value *V, const DataLayout &DL, bool OffsetOk, in findValueImpl() argument 834 V = OffsetOk ? GetUnderlyingObject(V, DL) : V->stripPointerCasts(); in findValueImpl() 844 return findValueImpl(U, DL, OffsetOk, Visited); in findValueImpl() 853 return findValueImpl(W, DL, OffsetOk, Visited); in findValueImpl() 856 return findValueImpl(CI->getOperand(0), DL, OffsetOk, Visited); in findValueImpl() 861 return findValueImpl(W, DL, OffsetOk, Visited); in findValueImpl() [all …]
|