Searched refs:BitWidth (Results 126 - 150 of 192) sorted by relevance

12345678

/netbsd-current/usr.sbin/acpitools/acpidump/
H A Dacpi.c231 if (gas->BitWidth <= 32)
234 gas->BitWidth);
238 gas->BitWidth);
242 gas->BitOffset, gas->BitWidth);
252 gas->BitOffset, gas->BitWidth);
256 gas->BitOffset, gas->BitWidth);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp321 unsigned BitWidth = Op.getScalarValueSizeInBits(); local
322 APInt DemandedBits = APInt::getAllOnesValue(BitWidth);
970 unsigned BitWidth = N.getScalarValueSizeInBits(); local
975 if (!Const || Const->getAPIntValue().getBitWidth() != BitWidth ||
3276 unsigned BitWidth = VT.getScalarSizeInBits(); local
3283 if (ShiftAmt && ShiftAmt->getAPIntValue() == (BitWidth - 1)) {
3294 if (DAG.MaskedValueIsZero(N1, ~APInt::getSignMask(BitWidth))) {
4181 unsigned BitWidth = VT.getScalarSizeInBits(); local
4206 SDValue Bits = DAG.getConstant(BitWidth, DL, ShiftAmtTy);
4215 DAG.getConstant(BitWidth
5651 unsigned BitWidth = VT.getScalarSizeInBits(); local
7122 unsigned BitWidth = Op.getValueSizeInBits(); local
7858 unsigned BitWidth = VT.getScalarSizeInBits(); local
8946 unsigned BitWidth = VT.getScalarSizeInBits(); local
15884 unsigned BitWidth = Origin->getValueSizeInBits(0); local
16501 unsigned BitWidth = N1.getValueSizeInBits(); local
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DCodeGenPrepare.cpp2071 Value *BitWidth = Builder.getInt(APInt(SizeInBits, SizeInBits)); local
2072 PN->addIncoming(BitWidth, StartBlock);
4391 unsigned BitWidth = Ext->getType()->getIntegerBitWidth(); local
4392 APInt CstVal = IsSExt ? Cst->getValue().sext(BitWidth)
4393 : Cst->getValue().zext(BitWidth);
6453 unsigned BitWidth = LoadResultVT.getSizeInBits(); local
6454 APInt DemandBits(BitWidth, 0);
6455 APInt WidestAndBits(BitWidth, 0);
6491 uint64_t ShiftAmt = ShlC->getLimitedValue(BitWidth - 1);
6492 DemandBits.setLowBits(BitWidth
[all...]
H A DAtomicExpandPass.cpp334 unsigned BitWidth = VT.getStoreSizeInBits(); local
335 assert(BitWidth == VT.getSizeInBits() && "must be a power of two");
336 return IntegerType::get(T->getContext(), BitWidth);
/netbsd-current/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGCall.cpp3208 // Set the bits corresponding to a field having width `BitWidth` and located at
3213 int BitWidth, int CharWidth) {
3215 assert(static_cast<unsigned>(BitWidth) <= Bits.size() * CharWidth);
3224 if (BitOffset + BitWidth >= CharWidth) {
3226 BitWidth -= CharWidth - BitOffset;
3230 while (BitWidth >= CharWidth) {
3232 BitWidth -= CharWidth;
3235 if (BitWidth > 0)
3236 Bits[Pos++] |= (Used >> (CharWidth - BitWidth)) << BitOffset;
3239 // Set the bits corresponding to a field having width `BitWidth` an
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp2821 unsigned BitWidth = CI->getBitWidth(); local
2827 unsigned ExtraBitsSize = BitWidth & 63;
2839 // 0 1 BitWidth / 64
2844 // ExtraBits 0 1 (BitWidth / 64) - 1
2851 ExtraBits = Realigned.getRawData()[BitWidth / 64];
2858 for (unsigned i = 0, e = BitWidth / 64; i != e; ++i) {
2868 Size -= (BitWidth / 64) * 8;
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
H A DSILoadStoreOptimizer.cpp1594 unsigned BitWidth = 32 * (CI.Width + Paired.Width); local
1596 ? TRI->getAGPRClassForBitWidth(BitWidth)
1597 : TRI->getVGPRClassForBitWidth(BitWidth);
/netbsd-current/external/apache2/llvm/dist/llvm/utils/TableGen/
H A DCodeGenRegisters.cpp1441 if (Bit > LaneBitmask::BitWidth) {
1486 if (NextBit < LaneBitmask::BitWidth-1)
1502 : LaneBitmask::BitWidth + Shift;
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DSimplifyIndVar.cpp157 uint32_t BitWidth = cast<IntegerType>(UseInst->getType())->getBitWidth(); local
158 if (D->getValue().uge(BitWidth))
162 APInt::getOneBitSet(BitWidth, D->getZExtValue()));
H A DScalarEvolutionExpander.cpp1171 unsigned BitWidth = cast<IntegerType>(AR->getType())->getBitWidth(); local
1172 Type *WideTy = IntegerType::get(AR->getType()->getContext(), BitWidth * 2);
1185 unsigned BitWidth = cast<IntegerType>(AR->getType())->getBitWidth(); local
1186 Type *WideTy = IntegerType::get(AR->getType()->getContext(), BitWidth * 2);
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/AST/
H A DExpr.h1446 unsigned BitWidth; member in class:clang::APNumericStorage
1448 bool hasAllocation() const { return llvm::APInt::getNumWords(BitWidth) > 1; }
1454 APNumericStorage() : VAL(0), BitWidth(0) { }
1457 unsigned NumWords = llvm::APInt::getNumWords(BitWidth);
1459 return llvm::APInt(BitWidth, NumWords, pVal);
1461 return llvm::APInt(BitWidth, VAL);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DTargetTransformInfo.cpp512 unsigned BitWidth,
516 return TTIImpl->allowsMisalignedMemoryAccesses(Context, BitWidth,
511 allowsMisalignedMemoryAccesses(LLVMContext &Context, unsigned BitWidth, unsigned AddressSpace, Align Alignment, bool *Fast) const argument
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp21817 unsigned BitWidth = VecVT.getSizeInBits();
21818 unsigned NumLanes = BitWidth / 128;
21820 assert((BitWidth == 128 || BitWidth == 256 || BitWidth == 512) &&
21826 if (BitWidth == 256 || BitWidth == 512) {
22631 unsigned BitWidth = Op0.getValueSizeInBits();
22633 if (BitWidth > AndBitWidth) {
22635 if (Known.countMinLeadingZeros() < BitWidth
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/IR/
H A DConstantFold.cpp730 uint32_t BitWidth = cast<IntegerType>(DestTy)->getBitWidth(); local
732 CI->getValue().zext(BitWidth));
737 uint32_t BitWidth = cast<IntegerType>(DestTy)->getBitWidth(); local
739 CI->getValue().sext(BitWidth));
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/RISCV/
H A DRISCVISelLowering.cpp5598 unsigned BitWidth = ShAmt.getValueSizeInBits(); local
5599 assert(isPowerOf2_32(BitWidth) && "Unexpected bit width");
5600 APInt ShAmtMask(BitWidth, (BitWidth * 2) - 1);
5630 unsigned BitWidth = ShAmt.getValueSizeInBits(); local
5631 assert(isPowerOf2_32(BitWidth) && "Unexpected bit width");
5632 APInt ShAmtMask(BitWidth, BitWidth - 1);
5661 unsigned BitWidth = ShAmt.getValueSizeInBits(); local
5662 assert(isPowerOf2_32(BitWidth)
6060 unsigned BitWidth = Known.getBitWidth(); local
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
H A DInstructionCombining.cpp2295 unsigned BitWidth = Idx->getType()->getPrimitiveSizeInBits(); local
2305 if (Value *NewIdx = Descale(Idx, APInt(BitWidth, Scale), NSW)) {
2337 unsigned BitWidth = Idx->getType()->getPrimitiveSizeInBits(); local
2347 if (Value *NewIdx = Descale(Idx, APInt(BitWidth, Scale), NSW)) {
H A DInstCombineSelect.cpp857 unsigned BitWidth = TrueVal->getType()->getScalarSizeInBits(); local
865 m_Xor(m_Deferred(TrueVal), m_SpecificInt(BitWidth - 1))))
1482 unsigned BitWidth = local
1484 APInt MinSignedValue = APInt::getSignedMinValue(BitWidth);
H A DInstCombineMulDivRem.cpp157 unsigned BitWidth = I.getType()->getScalarSizeInBits(); local
368 m_SpecificIntAllowUndef(BitWidth - 1)),
/netbsd-current/sys/external/bsd/acpica/dist/include/
H A Dactypes.h1210 UINT32 BitWidth,
/netbsd-current/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaTemplateInstantiateDecl.cpp1102 Expr *BitWidth = D->getBitWidth(); local
1104 BitWidth = nullptr;
1105 else if (BitWidth) {
1111 = SemaRef.SubstExpr(BitWidth, TemplateArgs);
1114 BitWidth = nullptr;
1116 BitWidth = InstantiatedBitWidth.getAs<Expr>();
1124 BitWidth,
/netbsd-current/external/apache2/llvm/dist/clang/lib/AST/
H A DExpr.cpp281 ConstantExprBits.BitWidth = 0;
338 ConstantExprBits.BitWidth = Value.getInt().getBitWidth();
357 return llvm::APSInt(llvm::APInt(ConstantExprBits.BitWidth, Int64Result()),
371 llvm::APSInt(llvm::APInt(ConstantExprBits.BitWidth, Int64Result()),
803 BitWidth = Val.getBitWidth();
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/
H A DMetadataLoader.cpp1396 const uint64_t BitWidth = Record[1]; local
1398 Value = readWideAPInt(makeArrayRef(&Record[3], NumWords), BitWidth);
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DBasicTTIImpl.h251 bool allowsMisalignedMemoryAccesses(LLVMContext &Context, unsigned BitWidth, argument
254 EVT E = EVT::getIntegerVT(Context, BitWidth);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
H A DLowerTypeTests.cpp586 unsigned BitWidth = BitsType->getBitWidth(); local
590 B.CreateAnd(BitOffset, ConstantInt::get(BitsType, BitWidth - 1));
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/Coroutines/
H A DCoroFrame.cpp842 auto BitWidth = cast<IntegerType>(Ty)->getBitWidth(); local
843 RetType = Builder.createBasicType(Name, BitWidth, dwarf::DW_ATE_signed,

Completed in 497 milliseconds

12345678