| /freebsd-13.1/contrib/llvm-project/compiler-rt/lib/ubsan/ |
| H A D | ubsan_value.cpp | 76 sizeof(SIntMax) * 8 - getType().getIntegerBitWidth(); in getSIntValue() 79 if (getType().getIntegerBitWidth() == 64) in getSIntValue() 82 if (getType().getIntegerBitWidth() == 128) in getSIntValue() 85 if (getType().getIntegerBitWidth() == 128) in getSIntValue() 95 if (getType().getIntegerBitWidth() == 64) in getUIntValue() 98 if (getType().getIntegerBitWidth() == 128) in getUIntValue() 101 if (getType().getIntegerBitWidth() == 128) in getUIntValue()
|
| H A D | ubsan_value.h | 123 unsigned getIntegerBitWidth() const { in getIntegerBitWidth() function 157 const unsigned Bits = getType().getIntegerBitWidth(); in isInlineInt()
|
| H A D | ubsan_handlers.cpp | 339 RHSVal.getPositiveIntValue() >= Data->LHSType.getIntegerBitWidth()) in handleShiftOutOfBoundsImpl() 355 << RHSVal << Data->LHSType.getIntegerBitWidth() << Data->LHSType; in handleShiftOutOfBoundsImpl() 602 << SrcTy << Value(SrcTy, Src) << SrcTy.getIntegerBitWidth() in handleImplicitConversion() 604 << DstTy.getIntegerBitWidth() << (DstSigned ? "" : "un"); in handleImplicitConversion()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | IntegerDivision.cpp | 35 unsigned BitWidth = Dividend->getType()->getIntegerBitWidth(); in generateSignedRemainderCode() 107 unsigned BitWidth = Dividend->getType()->getIntegerBitWidth(); in generateSignedDivisionCode() 383 assert((Rem->getType()->getIntegerBitWidth() == 32 || in expandRemainder() 384 Rem->getType()->getIntegerBitWidth() == 64) && in expandRemainder() 441 assert((Div->getType()->getIntegerBitWidth() == 32 || in expandDivision() 442 Div->getType()->getIntegerBitWidth() == 64) && in expandDivision() 493 unsigned RemTyBitWidth = RemTy->getIntegerBitWidth(); in expandRemainderUpTo32Bits() 542 unsigned RemTyBitWidth = RemTy->getIntegerBitWidth(); in expandRemainderUpTo64Bits() 591 unsigned DivTyBitWidth = DivTy->getIntegerBitWidth(); in expandDivisionUpTo32Bits() 639 unsigned DivTyBitWidth = DivTy->getIntegerBitWidth(); in expandDivisionUpTo64Bits()
|
| H A D | BypassSlowDivision.cpp | 233 unsigned LongLen = V->getType()->getIntegerBitWidth(); in getValueRange()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | LowerExpectIntrinsic.cpp | 172 Result = Result.zext(Op->getType()->getIntegerBitWidth()); in handlePhiDef() 175 Result = Result.sext(Op->getType()->getIntegerBitWidth()); in handlePhiDef()
|
| H A D | StraightLineStrengthReduce.cpp | 552 if (ArrayIdx->getType()->getIntegerBitWidth() <= in allocateCandidatesAndFindBasisForGEP() 563 TruncatedArrayIdx->getType()->getIntegerBitWidth() <= in allocateCandidatesAndFindBasisForGEP()
|
| H A D | SeparateConstOffsetFromGEP.cpp | 875 APInt ElementSize = APInt(IntPtrTy->getIntegerBitWidth(), in lowerToSingleIndexGEPs() 936 APInt ElementSize = APInt(IntPtrTy->getIntegerBitWidth(), in lowerToArithmetics()
|
| H A D | CorrelatedValuePropagation.cpp | 680 unsigned OrigWidth = Instr->getType()->getIntegerBitWidth(); in narrowSDivOrSRem() 747 if (NewWidth >= Instr->getType()->getIntegerBitWidth()) in processUDivOrURem()
|
| H A D | LoopFlatten.cpp | 459 V->getType()->getIntegerBitWidth() >= in checkOverflow()
|
| H A D | MemCpyOptimizer.cpp | 1226 if (DestSize->getType()->getIntegerBitWidth() > in processMemSetMemCpyDependence() 1227 SrcSize->getType()->getIntegerBitWidth()) in processMemSetMemCpyDependence()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Analysis/Utils/ |
| H A D | Local.h | 40 unsigned IntPtrWidth = IntIdxTy->getScalarType()->getIntegerBitWidth();
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | LazyValueInfo.cpp | 921 const unsigned ResultBitWidth = CI->getType()->getIntegerBitWidth(); in solveBlockValueCast() 1063 ConstantRange RHSRange(RHS->getType()->getIntegerBitWidth(), in getValueFromSimpleICmpCondition() 1122 unsigned BitWidth = Ty->getIntegerBitWidth(); in getValueFromICmpCondition() 1377 unsigned BitWidth = Val->getType()->getIntegerBitWidth(); in getEdgeValueLocal() 1605 unsigned Width = V->getType()->getIntegerBitWidth(); in getConstantRange() 1643 unsigned Width = V->getType()->getIntegerBitWidth(); in getConstantRangeOnEdge()
|
| H A D | IVDescriptors.cpp | 852 APInt::getSignedMaxValue(Tp->getIntegerBitWidth())); in getRecurrenceIdentity() 855 APInt::getSignedMinValue(Tp->getIntegerBitWidth())); in getRecurrenceIdentity()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | Type.h | 363 inline unsigned getIntegerBitWidth() const;
|
| H A D | DataLayout.h | 672 return TypeSize::Fixed(Ty->getIntegerBitWidth()); in getTypeSizeInBits()
|
| H A D | DerivedTypes.h | 96 unsigned Type::getIntegerBitWidth() const { in getIntegerBitWidth() function
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPUHSAMetadataStreamer.cpp | 148 auto BitWidth = Ty->getIntegerBitWidth(); in getTypeName() 567 auto BitWidth = Ty->getIntegerBitWidth(); in getTypeName()
|
| H A D | AMDGPUCodeGenPrepare.cpp | 236 return T->getIntegerBitWidth(); in getBaseElementBitWidth() 237 return cast<VectorType>(T)->getElementType()->getIntegerBitWidth(); in getBaseElementBitWidth()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86InstCombineIntrinsic.cpp | 353 int BitWidth = SVT->getIntegerBitWidth(); in simplifyX86varShift() 949 unsigned BitWidth = II.getType()->getIntegerBitWidth(); in instCombineIntrinsic() 973 unsigned BitWidth = II.getType()->getIntegerBitWidth(); in instCombineIntrinsic()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/ARM/ |
| H A D | ARMParallelDSP.cpp | 329 if (SExt->getSrcTy()->getIntegerBitWidth() != MaxBitWidth) in IsNarrowSequence()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | CodeGenPrepare.cpp | 4214 Cst->getValue().isIntN(Inst->getType()->getIntegerBitWidth())) in canGetThrough() 4229 OpndVal->getType()->getIntegerBitWidth() > in canGetThrough() 4230 ConsideredExtType->getIntegerBitWidth()) in canGetThrough() 4253 return Inst->getType()->getIntegerBitWidth() >= in canGetThrough() 4254 OpndType->getIntegerBitWidth(); in canGetThrough() 4395 unsigned BitWidth = Ext->getType()->getIntegerBitWidth(); in promoteOperandForOther() 5686 if (ExtTy->getScalarType()->getIntegerBitWidth() > in hasSameExtUse() 5687 CurTy->getScalarType()->getIntegerBitWidth()) { in hasSameExtUse()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/IR/ |
| H A D | DataLayout.cpp | 768 return getIntegerAlignment(Ty->getIntegerBitWidth(), abi_or_pref); in getAlignment()
|
| H A D | Constants.cpp | 1591 unsigned NumBits = Ty->getIntegerBitWidth(); // assert okay in isValueValidForType() 1598 unsigned NumBits = Ty->getIntegerBitWidth(); in isValueValidForType() 3187 switch (getElementType()->getIntegerBitWidth()) { in getElementAsInteger() 3207 switch (getElementType()->getIntegerBitWidth()) { in getElementAsAPInt()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Frontend/OpenMP/ |
| H A D | OMPIRBuilder.cpp | 1254 unsigned Bitwidth = Ty->getIntegerBitWidth(); in getKmpcForStaticInitForType() 1372 unsigned Bitwidth = Ty->getIntegerBitWidth(); in getKmpcForDynamicInitForType() 1388 unsigned Bitwidth = Ty->getIntegerBitWidth(); in getKmpcForDynamicNextForType()
|