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

/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineInternal.h471 void computeKnownBits(Value *V, APInt &KnownZero, APInt &KnownOne, function in class:llvm::InstCombiner
473 return llvm::computeKnownBits(V, KnownZero, KnownOne, DL, Depth, AC, CxtI,
/external/llvm/lib/Analysis/
H A DValueTracking.cpp81 // 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, function in class:llvm
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(Op
937 void computeKnownBits(Value *V, APInt &KnownZero, APInt &KnownOne, function
[all...]
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp1958 computeKnownBits(Op, KnownZero, KnownOne, Depth);
1964 void SelectionDAG::computeKnownBits(SDValue Op, APInt &KnownZero, function in class:SelectionDAG
1982 computeKnownBits(Op.getOperand(1), KnownZero, KnownOne, Depth+1);
1983 computeKnownBits(Op.getOperand(0), KnownZero2, KnownOne2, Depth+1);
1991 computeKnownBits(Op.getOperand(1), KnownZero, KnownOne, Depth+1);
1992 computeKnownBits(Op.getOperand(0), KnownZero2, KnownOne2, Depth+1);
2000 computeKnownBits(Op.getOperand(1), KnownZero, KnownOne, Depth+1);
2001 computeKnownBits(Op.getOperand(0), KnownZero2, KnownOne2, Depth+1);
2011 computeKnownBits(Op.getOperand(1), KnownZero, KnownOne, Depth+1);
2012 computeKnownBits(O
[all...]

Completed in 130 milliseconds