| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPULibFunc.cpp | 436 case AMDGPULibFunc::IMG1DA: P.VectorSize = 2; break; in getNextParam() 437 case AMDGPULibFunc::IMG1DB: P.VectorSize = 1; break; in getNextParam() 438 case AMDGPULibFunc::IMG2DA: P.VectorSize = 4; break; in getNextParam() 439 case AMDGPULibFunc::IMG1D: P.VectorSize = 1; break; in getNextParam() 604 res.VectorSize = parseVecSize(param); in parseItaniumParam() 642 res.VectorSize = Prev.VectorSize; in parseItaniumParam() 649 Prev.VectorSize = res.VectorSize; in parseItaniumParam() 788 P.VectorSize == T.VectorSize && in findSubst() 841 if (p.VectorSize > 1) { in operator ()() 908 if (P.VectorSize > 1) in getIntrinsicParamType() [all …]
|
| H A D | AMDGPULibFunc.h | 293 unsigned char VectorSize; member 300 VectorSize = 1; in reset()
|
| H A D | AMDGPULibCalls.cpp | 454 return FInfo.getLeads()[0].VectorSize; in getVecSize() 503 nf.getLeads()[0].VectorSize = FInfo.getLeads()[0].VectorSize; in sincosUseNative()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
| H A D | HexagonAsmPrinter.cpp | 247 unsigned VectorSize, MCContext &Ctx) { in ScaleVectorOffset() argument 638 MappedInst = ScaleVectorOffset(Inst, 3, VectorSize, OutContext); in HexagonProcessInstruction() 648 MappedInst = ScaleVectorOffset(Inst, 2, VectorSize, OutContext); in HexagonProcessInstruction() 656 MappedInst = ScaleVectorOffset(Inst, 2, VectorSize, OutContext); in HexagonProcessInstruction() 664 MappedInst = ScaleVectorOffset(Inst, 1, VectorSize, OutContext); in HexagonProcessInstruction() 679 MappedInst = ScaleVectorOffset(Inst, 4, VectorSize, OutContext); in HexagonProcessInstruction() 694 MappedInst = ScaleVectorOffset(Inst, 3, VectorSize, OutContext); in HexagonProcessInstruction() 711 MappedInst = ScaleVectorOffset(Inst, 3, VectorSize, OutContext); in HexagonProcessInstruction() 728 MappedInst = ScaleVectorOffset(Inst, 2, VectorSize, OutContext); in HexagonProcessInstruction() 733 MappedInst = ScaleVectorOffset(Inst, 1, VectorSize, OutContext); in HexagonProcessInstruction() [all …]
|
| H A D | HexagonInstrInfo.cpp | 2731 unsigned VectorSize = TRI->getSpillSize(Hexagon::HvxVRRegClass); in isValidOffset() local 2732 assert(isPowerOf2_32(VectorSize)); in isValidOffset() 2733 if (Offset & (VectorSize-1)) in isValidOffset() 2735 return isInt<4>(Offset >> Log2_32(VectorSize)); in isValidOffset()
|
| /freebsd-13.1/contrib/llvm-project/clang/utils/TableGen/ |
| H A D | ClangOpenCLBuiltinEmitter.cpp | 260 int VectorSize) const; 928 int VectorSize) const { in getTypeString() 962 if (VectorSize > 1) { in getTypeString() 963 S += std::to_string(VectorSize); in getTypeString()
|
| H A D | NeonEmitter.cpp | 1595 int64_t VectorSize = cast<IntInit>(Expr->getArg(0))->getValue(); in emitDagShuffle() local 1596 VectorSize /= ElementSize; in emitDagShuffle() 1599 for (unsigned VI = 0; VI < Elts2.size(); VI += VectorSize) { in emitDagShuffle() 1600 for (int LI = VectorSize - 1; LI >= 0; --LI) { in emitDagShuffle()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86InterleavedAccess.cpp | 442 int VectorSize = VT.getSizeInBits(); in createShuffleStride() local 444 int LaneCount = std::max(VectorSize / 128, 1); in createShuffleStride() 455 int VectorSize = VT.getSizeInBits(); in setGroupSize() local 456 int VF = VT.getVectorNumElements() / std::max(VectorSize / 128, 1); in setGroupSize()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaDeclAttr.cpp | 4252 llvm::APInt VectorSize(64, 0); in AddModeAttr() local 4261 !Str.substr(1, VectorStringLength).getAsInteger(10, VectorSize) && in AddModeAttr() 4262 VectorSize.isPowerOf2()) { in AddModeAttr() 4269 VectorSize = 0; in AddModeAttr() 4273 if (!VectorSize) in AddModeAttr() 4313 VectorSize.getBoolValue()) { in AddModeAttr() 4353 if (VectorSize.getBoolValue()) { in AddModeAttr() 4354 NewTy = Context.getVectorType(NewTy, VectorSize.getZExtValue(), in AddModeAttr()
|
| H A D | TreeTransform.h | 14339 IntegerLiteral *VectorSize in RebuildExtVectorType() local 14342 return SemaRef.BuildExtVectorType(ElementType, VectorSize, AttributeLoc); in RebuildExtVectorType()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGBuiltin.cpp | 6336 int VectorSize = 0; in LookupNeonLLVMIntrinsic() local 6338 VectorSize = 64; in LookupNeonLLVMIntrinsic() 6340 VectorSize = 128; in LookupNeonLLVMIntrinsic() 6348 Ty, VectorSize ? VectorSize / Ty->getPrimitiveSizeInBits() : 1); in LookupNeonLLVMIntrinsic() 6355 int Elts = VectorSize ? VectorSize / ArgType->getPrimitiveSizeInBits() : 1; in LookupNeonLLVMIntrinsic()
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | Attr.td | 2772 def VectorSize : TypeAttr {
|