Searched defs:OpBits (Results 1 - 2 of 2) sorted by relevance

/external/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp9473 unsigned OpBits = N->getOperand(0).getValueSizeInBits(); local
9476 if (DAG.ComputeNumSignBits(N->getOperand(0)) != OpBits ||
9477 DAG.ComputeNumSignBits(N->getOperand(1)) != OpBits)
9481 APInt::getHighBitsSet(OpBits, OpBits-1)) ||
9483 APInt::getHighBitsSet(OpBits, OpBits-1)))
9863 unsigned OpBits = local
9865 assert(PromBits < OpBits && "Truncation not to a smaller bit count?");
9869 APInt::getHighBitsSet(OpBits,
[all...]
/external/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp3841 // for two opposing shifts shift1 and shift2 and a value X with OpBits bits:
5989 unsigned OpBits = Op.getValueType().getScalarType().getSizeInBits(); local
5994 if (OpBits == DestBits) {
5999 } else if (OpBits < DestBits) {
6002 if (NumSignBits > OpBits-MidBits)
6007 if (NumSignBits > OpBits-MidBits)
6014 if (OpBits < DestBits)
6016 else if (OpBits > DestBits)

Completed in 72 milliseconds