Searched refs:OpBits (Results 1 – 5 of 5) sorted by relevance
| /freebsd-11-stable/contrib/llvm-project/clang/lib/AST/Interp/ |
| HD | Boolean.h | 124 static bool add(Boolean A, Boolean B, unsigned OpBits, Boolean *R) { in add() argument 129 static bool sub(Boolean A, Boolean B, unsigned OpBits, Boolean *R) { in sub() argument 134 static bool mul(Boolean A, Boolean B, unsigned OpBits, Boolean *R) { in mul() argument
|
| HD | Integral.h | 195 static bool add(Integral A, Integral B, unsigned OpBits, Integral *R) { 199 static bool sub(Integral A, Integral B, unsigned OpBits, Integral *R) { 203 static bool mul(Integral A, Integral B, unsigned OpBits, Integral *R) {
|
| /freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/ |
| HD | FixedLenDecoderEmitter.cpp | 2039 if (const BitsInit *OpBits = dyn_cast<BitsInit>(EncodedValue->getValue())) in populateInstruction() local 2040 for (unsigned I = 0; I < OpBits->getNumBits(); ++I) in populateInstruction() 2041 if (const BitInit *OpBit = dyn_cast<BitInit>(OpBits->getBit(I))) in populateInstruction()
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
| HD | PPCISelLowering.cpp | 12389 unsigned OpBits = N->getOperand(0).getValueSizeInBits(); in DAGCombineTruncBoolExt() local 12392 if (DAG.ComputeNumSignBits(N->getOperand(0)) != OpBits || in DAGCombineTruncBoolExt() 12393 DAG.ComputeNumSignBits(N->getOperand(1)) != OpBits) in DAGCombineTruncBoolExt() 12397 APInt::getHighBitsSet(OpBits, OpBits-1)) || in DAGCombineTruncBoolExt() 12399 APInt::getHighBitsSet(OpBits, OpBits-1))) in DAGCombineTruncBoolExt() 12782 unsigned OpBits = in DAGCombineExtBoolTrunc() local 12784 assert(PromBits < OpBits && "Truncation not to a smaller bit count?"); in DAGCombineExtBoolTrunc() 12788 APInt::getHighBitsSet(OpBits, in DAGCombineExtBoolTrunc() 12789 OpBits-PromBits))) || in DAGCombineExtBoolTrunc() 12792 (OpBits-(PromBits-1)))) { in DAGCombineExtBoolTrunc()
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| HD | DAGCombiner.cpp | 9638 unsigned OpBits = Op.getScalarValueSizeInBits(); in visitSIGN_EXTEND() local 9643 if (OpBits == DestBits) { in visitSIGN_EXTEND() 9648 } else if (OpBits < DestBits) { in visitSIGN_EXTEND() 9651 if (NumSignBits > OpBits-MidBits) in visitSIGN_EXTEND() 9656 if (NumSignBits > OpBits-MidBits) in visitSIGN_EXTEND() 9663 if (OpBits < DestBits) in visitSIGN_EXTEND() 9665 else if (OpBits > DestBits) in visitSIGN_EXTEND()
|