Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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);
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaChecking.cpp3087 unsigned MaxWidth) { in CheckARMBuiltinExclusiveCall() argument
3160 if (Context.getTypeSize(ValType) > MaxWidth) { in CheckARMBuiltinExclusiveCall()
3161 assert(MaxWidth == 64 && "Diagnostic unexpectedly inaccurate"); in CheckARMBuiltinExclusiveCall()
12450 unsigned MaxWidth) { in GetValueRange() argument
12454 if (value.getBitWidth() > MaxWidth) in GetValueRange()
12455 value = value.trunc(MaxWidth); in GetValueRange()
12463 unsigned MaxWidth) { in GetValueRange() argument
12465 return GetValueRange(C, result.getInt(), MaxWidth); in GetValueRange()
12468 IntRange R = GetValueRange(C, result.getVectorElt(0), Ty, MaxWidth); in GetValueRange()
12470 IntRange El = GetValueRange(C, result.getVectorElt(i), Ty, MaxWidth); in GetValueRange()
[all …]
/openbsd-src/gnu/llvm/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp2254 size_t MaxWidth = 13; in getMaxSectionNameWidth() local
2257 MaxWidth = std::max(MaxWidth, Name.size()); in getMaxSectionNameWidth()
2259 return MaxWidth; in getMaxSectionNameWidth()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp5598 unsigned MaxWidth = 8; in getSmallestAndWidestTypes() local
5606 MaxWidth = -1U; in getSmallestAndWidestTypes()
5611 MaxWidth = std::min<unsigned>( in getSmallestAndWidestTypes()
5612 MaxWidth, std::min<unsigned>( in getSmallestAndWidestTypes()
5620 MaxWidth = std::max<unsigned>( in getSmallestAndWidestTypes()
5621 MaxWidth, DL.getTypeSizeInBits(T->getScalarType()).getFixedValue()); in getSmallestAndWidestTypes()
5624 return {MinWidth, MaxWidth}; in getSmallestAndWidestTypes()
/openbsd-src/gnu/llvm/llvm/lib/Target/Hexagon/
H A DHexagonISelLoweringHVX.cpp2338 unsigned MaxWidth = std::max(Width0, Width1); in typeExtendToWider() local
2347 MVT WideETy0 = getScalarWithWidth(ElemTy0, MaxWidth); in typeExtendToWider()
2348 MVT WideETy1 = getScalarWithWidth(ElemTy1, MaxWidth); in typeExtendToWider()
/openbsd-src/gnu/llvm/clang/include/clang/Sema/
H A DSema.h13455 unsigned MaxWidth);
/openbsd-src/gnu/llvm/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp14006 unsigned MaxWidth = ((SizeInBits == 512) && !Subtarget.hasBWI() ? 64 : 128); in matchShuffleAsShift() local
14007 for (int Scale = 2; Scale * ScalarSizeInBits <= MaxWidth; Scale *= 2) in matchShuffleAsShift()