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

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

Completed in 92 milliseconds