Searched refs:VSize (Results 1 – 5 of 5) sorted by relevance
| /llvm-project-15.0.7/clang/lib/Sema/ |
| H A D | OpenCLBuiltins.td | 782 foreach VSize = [3, 4] in { 783 …def : Builtin<name, [VectorType<Float, VSize>, VectorType<Float, VSize>, VectorType<Float, VSize>]… 784 …def : Builtin<name, [VectorType<Double, VSize>, VectorType<Double, VSize>, VectorType<Double, VSiz… 785 …def : Builtin<name, [VectorType<Half, VSize>, VectorType<Half, VSize>, VectorType<Half, VSize>], A… 849 foreach VSize = [2, 3, 4, 8, 16] in { 850 foreach name = ["vload" # VSize] in { 864 foreach name = ["vstore" # VSize] in { 894 foreach VSize = [2, 3, 4, 8, 16] in { 895 foreach name = ["vload_half" # VSize, "vloada_half" # VSize] in { 905 foreach VSize = [2, 3, 4, 8, 16] in { [all …]
|
| /llvm-project-15.0.7/llvm/lib/MC/ |
| H A D | MCAssembler.cpp | 596 unsigned VSize = FF.getValueSize(); in writeFragment() local 599 assert(0 < VSize && VSize <= MaxChunkSize && "Illegal fragment fill size"); in writeFragment() 602 for (unsigned I = 0; I != VSize; ++I) { in writeFragment() 603 unsigned index = Endian == support::little ? I : (VSize - I - 1); in writeFragment() 606 for (unsigned I = VSize; I < MaxChunkSize; ++I) in writeFragment() 607 Data[I] = Data[I - VSize]; in writeFragment() 610 const unsigned NumPerChunk = MaxChunkSize / VSize; in writeFragment() 612 const unsigned ChunkSize = VSize * NumPerChunk; in writeFragment()
|
| /llvm-project-15.0.7/llvm/tools/llvm-stress/ |
| H A D | llvm-stress.cpp | 564 unsigned VSize = VTy->getScalarType()->getPrimitiveSizeInBits(); in Act() local 568 if ((getRandom() & 1) && VSize == DestSize) { in Act() 575 if (VSize > DestSize) { in Act() 579 assert(VSize < DestSize && "Different int types with the same size?"); in Act() 605 if (VSize > DestSize) { in Act() 608 } else if (VSize < DestSize) { in Act()
|
| /llvm-project-15.0.7/llvm/include/llvm/MC/ |
| H A D | MCFragment.h | 354 MCFillFragment(uint64_t Value, uint8_t VSize, const MCExpr &NumValues, 356 : MCFragment(FT_Fill, false, Sec), ValueSize(VSize), Value(Value), in MCFragment()
|
| /llvm-project-15.0.7/llvm/lib/Transforms/InstCombine/ |
| H A D | InstCombineCasts.cpp | 1165 unsigned VSize = V->getType()->getScalarSizeInBits(); in canEvaluateZExtd() local 1167 APInt::getHighBitsSet(VSize, BitsToClear), in canEvaluateZExtd()
|