Home
last modified time | relevance | path

Searched refs:MaxWidth (Results 1 – 14 of 14) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DMatrixBuilder.h246 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 DLoopUnrolling.cpp286 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 DSemaARM.h48 unsigned MaxWidth);
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetInstrInfo.cpp1515 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 DSemaARM.cpp851 unsigned MaxWidth) { in CheckARMBuiltinExclusiveCall() argument
927 if (Context.getTypeSize(ValType) > MaxWidth) { in CheckARMBuiltinExclusiveCall()
928 assert(MaxWidth == 64 && "Diagnostic unexpectedly inaccurate"); in CheckARMBuiltinExclusiveCall()
H A DSemaChecking.cpp10586 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 Dllvm-objdump.cpp2804 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 Dhptintf.h462 HPT_U8 MaxWidth; member
/freebsd/sys/dev/hptnr/
H A Dhptintf.h458 HPT_U8 MaxWidth; member
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp4522 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 DHexagonISelLoweringHVX.cpp2375 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 DLoongArchISelLowering.cpp1004 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 DAArch64ISelLowering.cpp4954 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 DX86ISelLowering.cpp12178 unsigned MaxWidth = ((SizeInBits == 512) && !Subtarget.hasBWI() ? 64 : 128); in matchShuffleAsShift() local
12179 for (int Scale = 2; Scale * ScalarSizeInBits <= MaxWidth; Scale *= 2) in matchShuffleAsShift()