/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | ValueTypes.cpp | 49 VectorType::get(VT.getTypeForEVT(Context), NumElements, IsScalable); in getExtendedVectorVT() 56 ResultVT.LLVMTy = VectorType::get(VT.getTypeForEVT(Context), EC); in getExtendedVectorVT() 203 Type *EVT::getTypeForEVT(LLVMContext &Context) const { in getTypeForEVT() function in EVT
|
H A D | TargetLoweringBase.cpp | 1704 Type *Ty = VT.getTypeForEVT(Context); in allowsMemoryAccessForAlignment()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
H A D | CallLowering.cpp | 303 SplitArgs.emplace_back(OrigArg.Regs[0], SplitVTs[0].getTypeForEVT(Ctx), in splitToValueTypes() 315 Type *SplitTy = SplitVTs[i].getTypeForEVT(Ctx); in splitToValueTypes() 1066 ArgInfo DemoteArg(DemoteReg, ValueVTs[0].getTypeForEVT(PtrTy->getContext()), in insertSRetIncomingArgument() 1121 Type *PartTy = EVT(RegVT).getTypeForEVT(Context); in getReturnInfo()
|
H A D | IRTranslator.cpp | 2792 DL->getABITypeAlign(Info.memVT.getTypeForEVT(F->getContext()))); in translateCall()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | ValueTypes.h | 488 Type *getTypeForEVT(LLVMContext &Context) const;
|
H A D | TargetLowering.h | 1670 EltTy = PointerTy.getTypeForEVT(Ty->getContext()); 1689 EltTy = PointerTy.getTypeForEVT(Ty->getContext());
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
H A D | LegalizeDAG.cpp | 343 Type *SType = SVT.getTypeForEVT(*DAG.getContext()); in ExpandConstantFP() 1433 Op.getValueType().getTypeForEVT(*DAG.getContext()))); in ExpandExtractFromVectorThroughStack() 1782 Type *DestType = DestVT.getTypeForEVT(*DAG.getContext()); in EmitStackConvert() 1794 SrcOp.getValueType().getTypeForEVT(*DAG.getContext())); in EmitStackConvert() 1991 CV.push_back(ConstantInt::get(EltVT.getTypeForEVT(*DAG.getContext()), in ExpandBUILD_VECTOR() 1996 Type *OpNTy = EltVT.getTypeForEVT(*DAG.getContext()); in ExpandBUILD_VECTOR() 2076 Type *RetTy = RetVT.getTypeForEVT(*DAG.getContext()); in ExpandLibCall() 2123 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext()); in ExpandLibCall() 2143 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext()); in ExpandFrexpLibCall() 2270 Type *RetTy = RetVT.getTypeForEVT(*DAG.getContext()); in ExpandDivRemLibCall() [all …]
|
H A D | SelectionDAG.cpp | 1318 : VT.getTypeForEVT(*getContext()); in getEVTAlign() 2439 VT.getTypeForEVT(*getContext())), in expandVAArg() 2464 Type *Ty = VT.getTypeForEVT(*getContext()); in getReducedAlign() 2481 Ty = IntermediateVT.getTypeForEVT(*getContext()); in getReducedAlign() 2504 Type *Ty = VT.getTypeForEVT(*getContext()); in CreateStackTemporary() 2520 Type *Ty1 = VT1.getTypeForEVT(*getContext()); in CreateStackTemporary() 2521 Type *Ty2 = VT2.getTypeForEVT(*getContext()); in CreateStackTemporary() 7719 Type *Ty = VT.getTypeForEVT(*DAG.getContext()); in getMemsetStringVal() 7849 Type *Ty = MemOps[0].getTypeForEVT(C); in getMemcpyLoadsAndStores() 8044 Type *Ty = MemOps[0].getTypeForEVT(C); in getMemmoveLoadsAndStores() [all …]
|
H A D | LegalizeVectorOps.cpp | 1869 Type *Ty = VT.getTypeForEVT(*Ctx); in tryExpandVecMathCall() 1908 Entry.Ty = MaskVT.getTypeForEVT(*Ctx); in tryExpandVecMathCall()
|
H A D | LegalizeIntegerTypes.cpp | 4964 Type *RetTy = VT.getTypeForEVT(*DAG.getContext()); in ExpandIntRes_XMULO() 4966 Type *PtrTy = PtrVT.getTypeForEVT(*DAG.getContext()); in ExpandIntRes_XMULO() 5009 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext()); in ExpandIntRes_XMULO()
|
H A D | TargetLowering.cpp | 161 Entry.Ty = Entry.Node.getValueType().getTypeForEVT(*DAG.getContext()); in makeLibCall() 178 Type *RetTy = RetVT.getTypeForEVT(*DAG.getContext()); in makeLibCall() 8589 const Type *FloatTy = ScalarFloatVT.getTypeForEVT(*DAG.getContext()); in expandIS_FPCLASS()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
H A D | AArch64TargetTransformInfo.cpp | 614 Type *LegalVTy = EVT(LT.second).getTypeForEVT(RetTy->getContext()); in getIntrinsicInstrCost() 2800 getTypeLegalizationCost(WiderTy.getTypeForEVT(Dst->getContext())); in getCastInstrCost() 2858 Type *LegalTy = EVT(SrcLT.second).getTypeForEVT(Src->getContext()); in getCastInstrCost() 3832 Type *LegalVTy = EVT(LT.second).getTypeForEVT(Ty->getContext()); in getMinMaxReductionCost() 3845 Type *LegalVTy = EVT(LT.second).getTypeForEVT(ValTy->getContext()); in getArithmeticReductionCostSVE() 4000 Type *LegalVTy = EVT(LT.second).getTypeForEVT(Tp->getContext()); in getSpliceCost() 4005 Type *PromotedVTy = EVT(PromotedVT).getTypeForEVT(Tp->getContext()); in getSpliceCost()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/GISel/ |
H A D | AArch64CallLowering.cpp | 390 ArgInfo CurArgInfo = ArgInfo{CurVReg, SplitEVTs[i].getTypeForEVT(Ctx), 0}; in lowerReturn() 412 CurArgInfo.Ty = EVT(NewVT).getTypeForEVT(Ctx); in lowerReturn()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/NVPTX/ |
H A D | NVPTXISelLowering.cpp | 1823 DL.getABITypeAlign(EltVT.getTypeForEVT(*DAG.getContext()))) { in LowerCall() 1889 TheStoreType.getTypeForEVT(*DAG.getContext())); in LowerCall() 2103 TheLoadType.getTypeForEVT(*DAG.getContext()))) { in LowerCall() 2832 auto *Ty = VT.getTypeForEVT(*DAG.getContext()); in LowerVAARG() 3007 TD.getPrefTypeAlign(ValVT.getTypeForEVT(*DAG.getContext())); in LowerSTOREVector() 3287 EltVT.getTypeForEVT(F->getContext()), ADDRESS_SPACE_PARAM)); in LowerFormalArguments() 3295 DL.getABITypeAlign(EltVT.getTypeForEVT(F->getContext())); in LowerFormalArguments() 3459 DL.getABITypeAlign(ElementType.getTypeForEVT(RetTy->getContext())); in LowerReturn() 6089 TD.getPrefTypeAlign(LD->getMemoryVT().getTypeForEVT(*DAG.getContext())); in ReplaceLoadVector()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPUCallLowering.cpp | 326 ArgInfo RetInfo(Reg, VT.getTypeForEVT(Ctx), 0); in lowerReturnVal() 342 RetInfo.Ty = ExtVT.getTypeForEVT(Ctx); in lowerReturnVal()
|
H A D | R600ISelLowering.cpp | 766 PointerType * PtrType = PointerType::get(VT.getTypeForEVT(*DAG.getContext()), in LowerImplicitParameter()
|
H A D | SIISelLowering.cpp | 6365 DataLayout.getABITypeAlign(VT.getTypeForEVT(*DAG.getContext())); in ReplaceNodeResults() 7669 Type *Ty = PtrVT.getTypeForEVT(*DAG.getContext()); in LowerGlobalAddress() 8272 DataLayout.getABITypeAlign(VT.getTypeForEVT(*DAG.getContext())); in lowerSBuffer() 8462 Type *Type = VT.getTypeForEVT(*DAG.getContext()); in LowerINTRINSIC_WO_CHAIN() 11332 Type *Ty = MemVT.getTypeForEVT(*DCI.DAG.getContext()); in performSHLPtrCombine()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AVR/ |
H A D | AVRISelLowering.cpp | 545 Type *Ty = VT.getTypeForEVT(*DAG.getContext()); in LowerDivRem() 568 Entry.Ty = Value.getValueType().getTypeForEVT(*DAG.getContext()); in LowerDivRem() 1276 auto evt = EVT(VT).getTypeForEVT(CCInfo.getContext()); in analyzeArguments()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/VE/ |
H A D | VEISelLowering.cpp | 1663 Entry.Ty = Entry.Node.getValueType().getTypeForEVT(*DAG.getContext()); in lowerDYNAMIC_STACKALLOC() 1667 Entry.Ty = Entry.Node.getValueType().getTypeForEVT(*DAG.getContext()); in lowerDYNAMIC_STACKALLOC()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/ |
H A D | RISCVTargetTransformInfo.cpp | 353 return cast<VectorType>(EVT(IndexVT).getTypeForEVT(C)); in getVRGatherIndexType()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Sparc/ |
H A D | SparcISelLowering.cpp | 2318 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext()); in LowerF128_LibCallArg() 2349 Type *RetTy = Op.getValueType().getTypeForEVT(*DAG.getContext()); in LowerF128Op()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/ |
H A D | WebAssemblyISelLowering.cpp | 1175 Type *Ty = VT.getTypeForEVT(*DAG.getContext()); in LowerCall()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/ |
H A D | SystemZISelLowering.cpp | 2128 Entry.Ty = Entry.Node.getValueType().getTypeForEVT(*DAG.getContext()); in makeExternalCall() 2137 Type *RetTy = RetVT.getTypeForEVT(*DAG.getContext()); in makeExternalCall() 7448 Type *OutLLVMTy = OutVT.getTypeForEVT(Ctx); in combineINT_TO_FP()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
H A D | HexagonISelLowering.cpp | 2120 Info.align = DL.getABITypeAlign(Info.memVT.getTypeForEVT(Cont)); in getTgtMemIntrinsic()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
H A D | PPCISelLowering.cpp | 16062 Type *Ty = MemVT.getTypeForEVT(*DAG.getContext()); in PerformDAGCombine() 17508 MF.getFunction(), VT.getTypeForEVT(MF.getFunction().getContext())); in isFMAFasterThanFMulAndFAdd() 18495 Type *RetTy = RetVT.getTypeForEVT(*DAG.getContext()); in lowerToLibCall() 18503 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext()); in lowerToLibCall()
|