/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
D | SIISelLowering.cpp | 4108 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 …]
|
D | SIISelLowering.h | 212 SDValue handleByteShortBufferLoads(SelectionDAG &DAG, EVT LoadVT, SDLoc DL,
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
D | TargetLowering.h | 412 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()
|
D | BasicTTIImpl.h | 732 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/ |
D | StatepointLowering.cpp | 1036 auto LoadVT = DAG.getTargetLoweringInfo().getValueType(DAG.getDataLayout(), in visitGCRelocate() local 1039 SDValue SpillLoad = DAG.getLoad(LoadVT, getCurSDLoc(), Chain, in visitGCRelocate()
|
D | LegalizeVectorOps.cpp | 753 EVT LoadVT = WideVT; in ExpandLoad() local 756 LoadVT = EVT::getIntegerVT(*DAG.getContext(), LoadBytes << 3); in ExpandLoad() 760 LD->getPointerInfo().getWithOffset(Offset), LoadVT, in ExpandLoad()
|
D | SelectionDAGBuilder.cpp | 7259 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 …]
|
D | LegalizeDAG.cpp | 881 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()
|
D | DAGCombiner.cpp | 15539 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/ |
D | NVPTXISelLowering.cpp | 2577 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/ |
D | X86ISelLowering.h | 1183 bool isLoadBitCastBeneficial(EVT LoadVT, EVT BitcastVT,
|
D | X86ISelLowering.cpp | 5166 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/ |
D | SystemZISelLowering.cpp | 6074 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/ |
D | PPCISelLowering.cpp | 13824 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/ |
D | AArch64ISelLowering.cpp | 11248 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/ |
D | ARMISelLowering.cpp | 13261 EVT LoadVT = isLaneOp ? VecTy.getVectorElementType() : AlignedVecTy; in CombineBaseUpdate() local 13262 SDValue UpdN = DAG.getMemIntrinsicNode(NewOpc, dl, SDTys, Ops, LoadVT, in CombineBaseUpdate()
|