Searched refs:OpBits (Results 1 - 5 of 5) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/clang/lib/AST/Interp/
H A DBoolean.h124 static bool add(Boolean A, Boolean B, unsigned OpBits, Boolean *R) { argument
129 static bool sub(Boolean A, Boolean B, unsigned OpBits, Boolean *R) { argument
134 static bool mul(Boolean A, Boolean B, unsigned OpBits, Boolean *R) { argument
H A DIntegral.h195 static bool add(Integral A, Integral B, unsigned OpBits, Integral *R) { argument
199 static bool sub(Integral A, Integral B, unsigned OpBits, Integral *R) { argument
203 static bool mul(Integral A, Integral B, unsigned OpBits, Integral *R) { argument
/freebsd-12-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DFixedLenDecoderEmitter.cpp2039 if (const BitsInit *OpBits = dyn_cast<BitsInit>(EncodedValue->getValue()))
2040 for (unsigned I = 0; I < OpBits->getNumBits(); ++I)
2041 if (const BitInit *OpBit = dyn_cast<BitInit>(OpBits->getBit(I)))
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp12389 unsigned OpBits = N->getOperand(0).getValueSizeInBits(); local
12392 if (DAG.ComputeNumSignBits(N->getOperand(0)) != OpBits ||
12393 DAG.ComputeNumSignBits(N->getOperand(1)) != OpBits)
12397 APInt::getHighBitsSet(OpBits, OpBits-1)) ||
12399 APInt::getHighBitsSet(OpBits, OpBits-1)))
12782 unsigned OpBits = local
12784 assert(PromBits < OpBits && "Truncation not to a smaller bit count?");
12788 APInt::getHighBitsSet(OpBits,
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp6120 // for two opposing shifts shift1 and shift2 and a value X with OpBits bits:
9638 unsigned OpBits = Op.getScalarValueSizeInBits(); local
9643 if (OpBits == DestBits) {
9648 } else if (OpBits < DestBits) {
9651 if (NumSignBits > OpBits-MidBits)
9656 if (NumSignBits > OpBits-MidBits)
9663 if (OpBits < DestBits)
9665 else if (OpBits > DestBits)

Completed in 252 milliseconds