| /freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | MatrixBuilder.h | 246 unsigned MaxWidth = std::max(RowIdx->getType()->getScalarSizeInBits(), variable 248 Type *IntTy = IntegerType::get(RowIdx->getType()->getContext(), MaxWidth); 251 Value *NumRowsV = B.getIntN(MaxWidth, NumRows);
|
| /freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
| H A D | LoopUnrolling.cpp | 286 unsigned MaxWidth = std::max(InitNum.getBitWidth(), BoundNum.getBitWidth()); in shouldCompletelyUnroll() local 288 InitNum = InitNum.zext(MaxWidth); in shouldCompletelyUnroll() 289 BoundNum = BoundNum.zext(MaxWidth); in shouldCompletelyUnroll()
|
| /freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | SemaARM.h | 48 unsigned MaxWidth);
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | TargetInstrInfo.cpp | 1515 unsigned int MaxWidth = Log2_32(Depth) < MaxAccumulatorWidth in genAlternativeCodeSequence() local 1528 if (IndexedReg.index() < MaxWidth) { in genAlternativeCodeSequence() 1545 assert(IndexedReg.index() >= MaxWidth); in genAlternativeCodeSequence() 1547 ChainRegs[Depth - (IndexedReg.index() - MaxWidth) - 1]; in genAlternativeCodeSequence() 1564 for (unsigned i = (InsInstrs.size() - MaxWidth); i < InsInstrs.size(); in genAlternativeCodeSequence()
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaARM.cpp | 851 unsigned MaxWidth) { in CheckARMBuiltinExclusiveCall() argument 927 if (Context.getTypeSize(ValType) > MaxWidth) { in CheckARMBuiltinExclusiveCall() 928 assert(MaxWidth == 64 && "Diagnostic unexpectedly inaccurate"); in CheckARMBuiltinExclusiveCall()
|
| H A D | SemaChecking.cpp | 10586 static IntRange GetValueRange(llvm::APSInt &value, unsigned MaxWidth) { in GetValueRange() argument 10590 if (value.getBitWidth() > MaxWidth) in GetValueRange() 10591 value = value.trunc(MaxWidth); in GetValueRange() 10598 static IntRange GetValueRange(APValue &result, QualType Ty, unsigned MaxWidth) { in GetValueRange() argument 10600 return GetValueRange(result.getInt(), MaxWidth); in GetValueRange() 10603 IntRange R = GetValueRange(result.getVectorElt(0), Ty, MaxWidth); in GetValueRange() 10605 IntRange El = GetValueRange(result.getVectorElt(i), Ty, MaxWidth); in GetValueRange() 10612 IntRange R = GetValueRange(result.getComplexIntReal(), MaxWidth); in GetValueRange() 10613 IntRange I = GetValueRange(result.getComplexIntImag(), MaxWidth); in GetValueRange() 10623 return IntRange(MaxWidth, Ty->isUnsignedIntegerOrEnumerationType()); in GetValueRange() [all …]
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/ |
| H A D | llvm-objdump.cpp | 2804 size_t MaxWidth = 13; in getMaxSectionNameWidth() local 2807 MaxWidth = std::max(MaxWidth, Name.size()); in getMaxSectionNameWidth() 2809 return MaxWidth; in getMaxSectionNameWidth()
|
| /freebsd/sys/dev/hpt27xx/ |
| H A D | hptintf.h | 462 HPT_U8 MaxWidth; member
|
| /freebsd/sys/dev/hptnr/ |
| H A D | hptintf.h | 458 HPT_U8 MaxWidth; member
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/ |
| H A D | LoopVectorize.cpp | 4522 unsigned MaxWidth = 8; in getSmallestAndWidestTypes() local 4536 MaxWidth = std::max(MaxWidth, in getSmallestAndWidestTypes() 4543 MaxWidth = std::max<unsigned>( in getSmallestAndWidestTypes() 4544 MaxWidth, DL.getTypeSizeInBits(T->getScalarType()).getFixedValue()); in getSmallestAndWidestTypes() 4547 return {MinWidth, MaxWidth}; in getSmallestAndWidestTypes()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
| H A D | HexagonISelLoweringHVX.cpp | 2375 unsigned MaxWidth = std::max(Width0, Width1); in typeExtendToWider() local 2384 MVT WideETy0 = getScalarWithWidth(ElemTy0, MaxWidth); in typeExtendToWider() 2385 MVT WideETy1 = getScalarWithWidth(ElemTy1, MaxWidth); in typeExtendToWider()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/LoongArch/ |
| H A D | LoongArchISelLowering.cpp | 1004 unsigned MaxWidth = 128; in matchShuffleAsShift() local 1005 for (int Scale = 2; Scale * ScalarSizeInBits <= MaxWidth; Scale *= 2) in matchShuffleAsShift()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| H A D | AArch64ISelLowering.cpp | 4954 unsigned MaxWidth = IsSigned in LowerINT_TO_FP() local 4958 if (MaxWidth <= 24) { in LowerINT_TO_FP() 4963 if (MaxWidth <= 53) { in LowerINT_TO_FP()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86ISelLowering.cpp | 12178 unsigned MaxWidth = ((SizeInBits == 512) && !Subtarget.hasBWI() ? 64 : 128); in matchShuffleAsShift() local 12179 for (int Scale = 2; Scale * ScalarSizeInBits <= MaxWidth; Scale *= 2) in matchShuffleAsShift()
|