Home
last modified time | relevance | path

Searched refs:LoadVT (Results 1 – 16 of 16) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DSIISelLowering.cpp4108 static SDValue adjustLoadValueTypeImpl(SDValue Result, EVT LoadVT, in adjustLoadValueTypeImpl() argument
4111 if (!LoadVT.isVector()) in adjustLoadValueTypeImpl()
4116 EVT IntLoadVT = LoadVT.changeTypeToInteger(); in adjustLoadValueTypeImpl()
4128 return DAG.getNode(ISD::BITCAST, DL, LoadVT, Result); in adjustLoadValueTypeImpl()
4132 return DAG.getNode(ISD::BITCAST, DL, LoadVT, Result); in adjustLoadValueTypeImpl()
4143 EVT LoadVT = M->getValueType(0); in adjustLoadValueType() local
4145 EVT EquivLoadVT = LoadVT; in adjustLoadValueType()
4146 if (Unpacked && LoadVT.isVector()) { in adjustLoadValueType()
4147 EquivLoadVT = LoadVT.isVector() ? in adjustLoadValueType()
4149 LoadVT.getVectorNumElements()) : LoadVT; in adjustLoadValueType()
[all …]
DSIISelLowering.h212 SDValue handleByteShortBufferLoads(SelectionDAG &DAG, EVT LoadVT, SDLoc DL,
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DTargetLowering.h412 virtual bool isLoadBitCastBeneficial(EVT LoadVT, EVT BitcastVT, in isLoadBitCastBeneficial() argument
417 if (!LoadVT.isSimple() || !BitcastVT.isSimple()) in isLoadBitCastBeneficial()
420 MVT LoadMVT = LoadVT.getSimpleVT(); in isLoadBitCastBeneficial()
2354 EVT LoadVT = getValueType(DL, Load->getType()); in isExtLoad() local
2358 if (!Load->hasOneUse() && (isTypeLegal(LoadVT) || !isTypeLegal(VT)) && in isExtLoad()
2371 return isLoadExtLegal(LType, VT, LoadVT); in isExtLoad()
DBasicTTIImpl.h732 EVT LoadVT = EVT::getEVT(Src);
735 if (TLI->isLoadExtLegal(LType, ExtVT, LoadVT))
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
DStatepointLowering.cpp1036 auto LoadVT = DAG.getTargetLoweringInfo().getValueType(DAG.getDataLayout(), in visitGCRelocate() local
1039 SDValue SpillLoad = DAG.getLoad(LoadVT, getCurSDLoc(), Chain, in visitGCRelocate()
DLegalizeVectorOps.cpp753 EVT LoadVT = WideVT; in ExpandLoad() local
756 LoadVT = EVT::getIntegerVT(*DAG.getContext(), LoadBytes << 3); in ExpandLoad()
760 LD->getPointerInfo().getWithOffset(Offset), LoadVT, in ExpandLoad()
DSelectionDAGBuilder.cpp7259 static SDValue getMemCmpLoad(const Value *PtrVal, MVT LoadVT, in getMemCmpLoad() argument
7266 Type::getIntNTy(PtrVal->getContext(), LoadVT.getScalarSizeInBits()); in getMemCmpLoad()
7267 if (LoadVT.isVector()) in getMemCmpLoad()
7268 LoadTy = VectorType::get(LoadTy, LoadVT.getVectorNumElements()); in getMemCmpLoad()
7293 SDValue LoadVal = Builder.DAG.getLoad(LoadVT, Builder.getCurSDLoc(), Root, in getMemCmpLoad()
7372 MVT LoadVT; in visitMemCmpCall() local
7378 LoadVT = MVT::i16; in visitMemCmpCall()
7381 LoadVT = MVT::i32; in visitMemCmpCall()
7386 LoadVT = hasFastLoadsAndCompare(NumBitsToCompare); in visitMemCmpCall()
7390 if (LoadVT == MVT::INVALID_SIMPLE_VALUE_TYPE) in visitMemCmpCall()
[all …]
DLegalizeDAG.cpp881 EVT LoadVT = TLI.getRegisterType(SrcVT.getSimpleVT()); in LegalizeLoadOps() local
883 TLI.isLoadExtLegal(ExtType, LoadVT, SrcVT)) { in LegalizeLoadOps()
887 (LoadVT == SrcVT) ? ISD::NON_EXTLOAD : ExtType; in LegalizeLoadOps()
889 SDValue Load = DAG.getExtLoad(MidExtType, dl, LoadVT, Chain, Ptr, in LegalizeLoadOps()
DDAGCombiner.cpp15539 EVT LoadVT; in getStoreMergeCandidates() local
15543 LoadVT = Ld->getMemoryVT(); in getStoreMergeCandidates()
15545 if (MemVT != LoadVT) in getStoreMergeCandidates()
15574 if (LoadVT != OtherLd->getMemoryVT()) in getStoreMergeCandidates()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/NVPTX/
DNVPTXISelLowering.cpp2577 EVT LoadVT = EltVT; in LowerFormalArguments() local
2579 LoadVT = MVT::i8; in LowerFormalArguments()
2584 LoadVT = MVT::i32; in LowerFormalArguments()
2586 EVT VecVT = EVT::getVectorVT(F->getContext(), LoadVT, NumElts); in LowerFormalArguments()
2600 SDValue Elt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, LoadVT, P, in LowerFormalArguments()
2611 Ins[InsIdx].VT.getSizeInBits() > LoadVT.getSizeInBits()) { in LowerFormalArguments()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
DX86ISelLowering.h1183 bool isLoadBitCastBeneficial(EVT LoadVT, EVT BitcastVT,
DX86ISelLowering.cpp5166 bool X86TargetLowering::isLoadBitCastBeneficial(EVT LoadVT, EVT BitcastVT, in isLoadBitCastBeneficial() argument
5169 if (!Subtarget.hasAVX512() && !LoadVT.isVector() && BitcastVT.isVector() && in isLoadBitCastBeneficial()
5173 if (!Subtarget.hasDQI() && BitcastVT == MVT::v8i1 && LoadVT == MVT::i8) in isLoadBitCastBeneficial()
5177 if (LoadVT.isVector() && BitcastVT.isVector() && in isLoadBitCastBeneficial()
5178 isTypeLegal(LoadVT) && isTypeLegal(BitcastVT)) in isLoadBitCastBeneficial()
5181 return TargetLowering::isLoadBitCastBeneficial(LoadVT, BitcastVT, DAG, MMO); in isLoadBitCastBeneficial()
43023 MVT LoadVT = MVT::getVectorVT(MemVT, 128 / NumBits); in combineX86INT_TO_FP() local
43024 SDVTList Tys = DAG.getVTList(LoadVT, MVT::Other); in combineX86INT_TO_FP()
43059 MVT LoadVT = MVT::getVectorVT(MemVT, 128 / NumBits); in combineCVTP2I_CVTTP2I() local
43060 SDVTList Tys = DAG.getVTList(LoadVT, MVT::Other); in combineCVTP2I_CVTTP2I()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/SystemZ/
DSystemZISelLowering.cpp6074 EVT LoadVT = N->getValueType(0); in combineBSWAP() local
6075 if (LoadVT == MVT::i16) in combineBSWAP()
6076 LoadVT = MVT::i32; in combineBSWAP()
6079 DAG.getVTList(LoadVT, MVT::Other), in combineBSWAP()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/
DPPCISelLowering.cpp13824 MVT LoadVT = VT.getSimpleVT(); in PerformDAGCombine() local
13826 (LoadVT == MVT::v2f64 || LoadVT == MVT::v2i64 || in PerformDAGCombine()
13827 LoadVT == MVT::v4f32 || LoadVT == MVT::v4i32)) in PerformDAGCombine()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/
DAArch64ISelLowering.cpp11248 EVT LoadVT = VT; in performLDNT1Combine() local
11250 LoadVT = VT.changeTypeToInteger(); in performLDNT1Combine()
11253 SDValue PassThru = DAG.getConstant(0, DL, LoadVT); in performLDNT1Combine()
11254 SDValue L = DAG.getMaskedLoad(LoadVT, DL, MINode->getChain(), in performLDNT1Combine()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/
DARMISelLowering.cpp13261 EVT LoadVT = isLaneOp ? VecTy.getVectorElementType() : AlignedVecTy; in CombineBaseUpdate() local
13262 SDValue UpdN = DAG.getMemIntrinsicNode(NewOpc, dl, SDTys, Ops, LoadVT, in CombineBaseUpdate()