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

  /external/llvm/lib/Transforms/InstCombine/
InstCombineInternal.h 477 void computeKnownBits(Value *V, APInt &KnownZero, APInt &KnownOne,
479 return llvm::computeKnownBits(V, KnownZero, KnownOne, DL, Depth, AC, CxtI,
  /external/llvm/lib/Analysis/
ValueTracking.cpp 76 /// computeKnownBits to repeatedly visit the same assume intrinsic. The
79 /// bits in x, etc. Regarding the mutual recursion, computeKnownBits can call
80 /// isKnownNonZero, which calls computeKnownBits and ComputeSignBit and
81 /// isKnownToBeAPowerOfTwo (all of which can call computeKnownBits), and so
122 static void computeKnownBits(Value *V, APInt &KnownZero, APInt &KnownOne,
125 void llvm::computeKnownBits(Value *V, APInt &KnownZero, APInt &KnownOne,
129 ::computeKnownBits(V, KnownZero, KnownOne, Depth,
143 computeKnownBits(LHS, LHSKnownZero, LHSKnownOne, DL, 0, AC, CxtI, DT);
144 computeKnownBits(RHS, RHSKnownZero, RHSKnownOne, DL, 0, AC, CxtI, DT);
249 computeKnownBits(Op1, KnownZero2, KnownOne2, Depth + 1, Q)
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMISelLowering.cpp     [all...]

Completed in 219 milliseconds