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

  /external/llvm/lib/Transforms/InstCombine/
InstCombineInternal.h 471 void computeKnownBits(Value *V, APInt &KnownZero, APInt &KnownOne,
473 return llvm::computeKnownBits(V, KnownZero, KnownOne, DL, Depth, AC, CxtI,
  /external/llvm/lib/Analysis/
ValueTracking.cpp 81 // cause computeKnownBits to repeatedly visit the same assume intrinsic. The
84 // bits in x, etc. Regarding the mutual recursion, computeKnownBits can call
85 // isKnownNonZero, which calls computeKnownBits and ComputeSignBit and
86 // isKnownToBeAPowerOfTwo (all of which can call computeKnownBits), and so on.
127 static void computeKnownBits(Value *V, APInt &KnownZero, APInt &KnownOne,
131 void llvm::computeKnownBits(Value *V, APInt &KnownZero, APInt &KnownOne,
135 ::computeKnownBits(V, KnownZero, KnownOne, DL, Depth,
206 computeKnownBits(Op1, KnownZero2, KnownOne2, DL, Depth + 1, Q);
225 computeKnownBits(Op0, LHSKnownZero, LHSKnownOne, DL, Depth + 1, Q);
226 computeKnownBits(Op1, KnownZero2, KnownOne2, DL, Depth + 1, Q)
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp     [all...]

Completed in 193 milliseconds