Home
last modified time | relevance | path

Searched refs:VSize (Results 1 – 6 of 6) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/
DOpenCLBuiltins.td721 foreach VSize = [3, 4] in {
722 …def : Builtin<name, [VectorType<Float, VSize>, VectorType<Float, VSize>, VectorType<Float, VSize>]…
723 …def : Builtin<name, [VectorType<Double, VSize>, VectorType<Double, VSize>, VectorType<Double, VSiz…
724 …def : Builtin<name, [VectorType<Half, VSize>, VectorType<Half, VSize>, VectorType<Half, VSize>], A…
790 foreach VSize = [2, 3, 4, 8, 16] in {
791 foreach name = ["vload" # VSize] in {
792 def : Builtin<name, [VectorType<Char, VSize>, Size, PointerType<ConstType<Char>, AS>]>;
793 def : Builtin<name, [VectorType<UChar, VSize>, Size, PointerType<ConstType<UChar>, AS>]>;
794 def : Builtin<name, [VectorType<Short, VSize>, Size, PointerType<ConstType<Short>, AS>]>;
795 def : Builtin<name, [VectorType<UShort, VSize>, Size, PointerType<ConstType<UShort>, AS>]>;
[all …]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/MC/
DMCAssembler.cpp591 unsigned VSize = FF.getValueSize(); in writeFragment() local
594 assert(0 < VSize && VSize <= MaxChunkSize && "Illegal fragment fill size"); in writeFragment()
597 for (unsigned I = 0; I != VSize; ++I) { in writeFragment()
598 unsigned index = Endian == support::little ? I : (VSize - I - 1); in writeFragment()
601 for (unsigned I = VSize; I < MaxChunkSize; ++I) in writeFragment()
602 Data[I] = Data[I - VSize]; in writeFragment()
605 const unsigned NumPerChunk = MaxChunkSize / VSize; in writeFragment()
607 const unsigned ChunkSize = VSize * NumPerChunk; in writeFragment()
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-stress/
Dllvm-stress.cpp572 unsigned VSize = VTy->getScalarType()->getPrimitiveSizeInBits(); in Act() local
576 if ((getRandom() & 1) && VSize == DestSize) { in Act()
583 if (VSize > DestSize) { in Act()
587 assert(VSize < DestSize && "Different int types with the same size?"); in Act()
613 if (VSize > DestSize) { in Act()
616 } else if (VSize < DestSize) { in Act()
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/MC/
DMCFragment.h347 MCFillFragment(uint64_t Value, uint8_t VSize, const MCExpr &NumValues,
349 : MCFragment(FT_Fill, false, Sec), ValueSize(VSize), Value(Value), in MCFragment()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
DInstCombineCasts.cpp1156 unsigned VSize = V->getType()->getScalarSizeInBits(); in canEvaluateZExtd() local
1158 APInt::getHighBitsSet(VSize, BitsToClear), in canEvaluateZExtd()
/freebsd-12-stable/sys/dev/drm2/radeon/
Datombios.h6423 USHORT VSize; member