Home
last modified time | relevance | path

Searched refs:VectorSize (Results 1 – 12 of 12) sorted by relevance

/freebsd-12.1/contrib/llvm/lib/Target/AMDGPU/
H A DAMDGPULibFunc.cpp450 case AMDGPULibFunc::IMG1DA: P.VectorSize = 2; break; in getNextParam()
451 case AMDGPULibFunc::IMG1DB: P.VectorSize = 1; break; in getNextParam()
452 case AMDGPULibFunc::IMG2DA: P.VectorSize = 4; break; in getNextParam()
453 case AMDGPULibFunc::IMG1D: P.VectorSize = 1; break; in getNextParam()
610 res.VectorSize = parseVecSize(param); in parseItaniumParam()
648 res.VectorSize = Prev.VectorSize; in parseItaniumParam()
655 Prev.VectorSize = res.VectorSize; in parseItaniumParam()
794 P.VectorSize == T.VectorSize && in findSubst()
846 if (p.VectorSize > 1) { in operator ()()
913 if (P.VectorSize > 1) in getIntrinsicParamType()
[all …]
H A DAMDGPULibFunc.h293 unsigned char VectorSize; member
300 VectorSize = 1; in reset()
H A DAMDGPULibCalls.cpp468 return FInfo.getLeads()[0].VectorSize; in getVecSize()
518 nf.getLeads()[0].VectorSize = FInfo.getLeads()[0].VectorSize; in sincosUseNative()
/freebsd-12.1/contrib/llvm/lib/Target/Hexagon/
H A DHexagonAsmPrinter.cpp255 unsigned VectorSize, MCContext &Ctx) { in ScaleVectorOffset() argument
646 MappedInst = ScaleVectorOffset(Inst, 3, VectorSize, OutContext); in HexagonProcessInstruction()
656 MappedInst = ScaleVectorOffset(Inst, 2, VectorSize, OutContext); in HexagonProcessInstruction()
664 MappedInst = ScaleVectorOffset(Inst, 2, VectorSize, OutContext); in HexagonProcessInstruction()
672 MappedInst = ScaleVectorOffset(Inst, 1, VectorSize, OutContext); in HexagonProcessInstruction()
687 MappedInst = ScaleVectorOffset(Inst, 4, VectorSize, OutContext); in HexagonProcessInstruction()
702 MappedInst = ScaleVectorOffset(Inst, 3, VectorSize, OutContext); in HexagonProcessInstruction()
719 MappedInst = ScaleVectorOffset(Inst, 3, VectorSize, OutContext); in HexagonProcessInstruction()
736 MappedInst = ScaleVectorOffset(Inst, 2, VectorSize, OutContext); in HexagonProcessInstruction()
741 MappedInst = ScaleVectorOffset(Inst, 1, VectorSize, OutContext); in HexagonProcessInstruction()
[all …]
H A DHexagonInstrInfo.cpp2654 unsigned VectorSize = TRI->getSpillSize(Hexagon::HvxVRRegClass); in isValidOffset() local
2655 assert(isPowerOf2_32(VectorSize)); in isValidOffset()
2656 if (Offset & (VectorSize-1)) in isValidOffset()
2658 return isInt<4>(Offset >> Log2_32(VectorSize)); in isValidOffset()
/freebsd-12.1/contrib/llvm/lib/Target/X86/
H A DX86InterleavedAccess.cpp434 int VectorSize = VT.getSizeInBits(); in createShuffleStride() local
436 int LaneCount = std::max(VectorSize / 128, 1); in createShuffleStride()
447 int VectorSize = VT.getSizeInBits(); in setGroupSize() local
448 int VF = VT.getVectorNumElements() / std::max(VectorSize / 128, 1); in setGroupSize()
/freebsd-12.1/contrib/llvm/tools/clang/utils/TableGen/
H A DNeonEmitter.cpp1693 int64_t VectorSize = cast<IntInit>(Expr->getArg(0))->getValue(); in emitDagShuffle() local
1694 VectorSize /= ElementSize; in emitDagShuffle()
1697 for (unsigned VI = 0; VI < Elts2.size(); VI += VectorSize) { in emitDagShuffle()
1698 for (int LI = VectorSize - 1; LI >= 0; --LI) { in emitDagShuffle()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaDeclAttr.cpp3926 llvm::APInt VectorSize(64, 0); in AddModeAttr() local
3935 !Str.substr(1, VectorStringLength).getAsInteger(10, VectorSize) && in AddModeAttr()
3936 VectorSize.isPowerOf2()) { in AddModeAttr()
3943 VectorSize = 0; in AddModeAttr()
3947 if (!VectorSize) in AddModeAttr()
3987 VectorSize.getBoolValue()) { in AddModeAttr()
4026 if (VectorSize.getBoolValue()) { in AddModeAttr()
4027 NewTy = Context.getVectorType(NewTy, VectorSize.getZExtValue(), in AddModeAttr()
H A DSemaType.cpp2326 unsigned VectorSize = static_cast<unsigned>(VecSize.getZExtValue() * 8); in BuildVectorType() local
2329 if (VectorSize == 0) { in BuildVectorType()
2335 if (VectorSize % TypeSize) { in BuildVectorType()
2341 if (VectorType::isVectorSizeTooLarge(VectorSize / TypeSize)) { in BuildVectorType()
2347 return Context.getVectorType(CurType, VectorSize / TypeSize, in BuildVectorType()
H A DTreeTransform.h12503 IntegerLiteral *VectorSize in RebuildExtVectorType() local
12506 return SemaRef.BuildExtVectorType(ElementType, VectorSize, AttributeLoc); in RebuildExtVectorType()
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGBuiltin.cpp4938 int VectorSize = 0; in LookupNeonLLVMIntrinsic() local
4940 VectorSize = 64; in LookupNeonLLVMIntrinsic()
4942 VectorSize = 128; in LookupNeonLLVMIntrinsic()
4950 Ty, VectorSize ? VectorSize / Ty->getPrimitiveSizeInBits() : 1); in LookupNeonLLVMIntrinsic()
4957 int Elts = VectorSize ? VectorSize / ArgType->getPrimitiveSizeInBits() : 1; in LookupNeonLLVMIntrinsic()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/
H A DAttr.td2218 def VectorSize : TypeAttr {