Searched defs:isKnownNonZero (Results 1 - 1 of 1) sorted by relevance

/external/llvm/lib/Analysis/
H A DValueTracking.cpp158 isKnownNonZero(Op0, TD, Depth)) ||
160 isKnownNonZero(Op1, TD, Depth));
925 if (isKnownNonZero(GEP->getPointerOperand(), DL, Depth))
960 // We post-increment Depth here because while isKnownNonZero increments it
968 if (isKnownNonZero(GTI.getOperand(), DL, Depth))
975 /// isKnownNonZero - Return true if the given value is known to be non-zero
979 bool llvm::isKnownNonZero(Value *V, const DataLayout *TD, unsigned Depth) { function in class:llvm
1008 return isKnownNonZero(X, TD, Depth) || isKnownNonZero(Y, TD, Depth);
1012 return isKnownNonZero(cas
[all...]

Completed in 69 milliseconds