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

/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineInternal.h481 unsigned ComputeNumSignBits(Value *Op, unsigned Depth = 0, function in class:llvm::InstCombiner
483 return llvm::ComputeNumSignBits(Op, DL, Depth, AC, CxtI, DT);
/external/llvm/lib/Analysis/
H A DValueTracking.cpp181 static unsigned ComputeNumSignBits(Value *V, const DataLayout &DL,
184 unsigned llvm::ComputeNumSignBits(Value *V, const DataLayout &DL, function in class:llvm
188 return ::ComputeNumSignBits(V, DL, Depth, Query(AC, safeCxtI(V, CxtI), DT));
1877 unsigned ComputeNumSignBits(Value *V, const DataLayout &DL, unsigned Depth, function
1894 return ComputeNumSignBits(U->getOperand(0), DL, Depth + 1, Q) + Tmp;
1906 unsigned NumBits = ComputeNumSignBits(U->getOperand(0), DL, Depth + 1, Q);
1928 ComputeNumSignBits(U->getOperand(0), DL, Depth + 1, Q);
1950 Tmp = ComputeNumSignBits(U->getOperand(0), DL, Depth + 1, Q);
1963 Tmp = ComputeNumSignBits(U->getOperand(0), DL, Depth + 1, Q);
1975 Tmp = ComputeNumSignBits(
[all...]
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp2410 /// ComputeNumSignBits - Return the number of times the sign bit of the
2415 unsigned SelectionDAG::ComputeNumSignBits(SDValue Op, unsigned Depth) const{ function in class:SelectionDAG
2442 return ComputeNumSignBits(Op.getOperand(0), Depth+1) + Tmp;
2450 Tmp2 = ComputeNumSignBits(Op.getOperand(0), Depth+1);
2454 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
2464 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
2474 Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
2476 Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
2485 Tmp = ComputeNumSignBits(Op.getOperand(1), Depth+1);
2487 Tmp2 = ComputeNumSignBits(O
[all...]

Completed in 470 milliseconds