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

  /external/swiftshader/third_party/LLVM/lib/Analysis/
ValueTracking.cpp 754 /// isKnownNonZero - Return true if the given value is known to be non-zero
758 bool llvm::isKnownNonZero(Value *V, const TargetData *TD, unsigned Depth) {
778 return isKnownNonZero(X, TD, Depth) || isKnownNonZero(Y, TD, Depth);
782 return isKnownNonZero(cast<Instruction>(V)->getOperand(0), TD, Depth);
    [all...]
  /external/llvm/lib/Analysis/
ValueTracking.cpp 80 /// isKnownNonZero, which calls computeKnownBits and ComputeSignBit and
170 static bool isKnownNonZero(Value *V, unsigned Depth, const Query &Q);
172 bool llvm::isKnownNonZero(Value *V, const DataLayout &DL, unsigned Depth,
175 return ::isKnownNonZero(V, Depth, Query(DL, AC, safeCxtI(V, CxtI), DT));
195 isKnownNonZero(V, DL, Depth, AC, CxtI, DT);
341 isKnownNonZero(Op0, Depth, Q)) ||
343 isKnownNonZero(Op1, Depth, Q));
    [all...]

Completed in 88 milliseconds