Home
last modified time | relevance | path

Searched refs:ZEXTLOAD (Results 1 – 25 of 27) sorted by relevance

12

/external/llvm/include/llvm/CodeGen/
DISDOpcodes.h743 ZEXTLOAD, enumerator
DSelectionDAGNodes.h2036 cast<LoadSDNode>(N)->getExtensionType() == ISD::ZEXTLOAD;
/external/llvm/lib/Target/R600/
DSIISelLowering.cpp148 setLoadExtAction(ISD::ZEXTLOAD, MVT::i1, Promote); in SITargetLowering()
149 setLoadExtAction(ISD::ZEXTLOAD, MVT::i8, Custom); in SITargetLowering()
150 setLoadExtAction(ISD::ZEXTLOAD, MVT::i16, Custom); in SITargetLowering()
151 setLoadExtAction(ISD::ZEXTLOAD, MVT::i32, Expand); in SITargetLowering()
298 return DAG.getExtLoad(Signed ? ISD::SEXTLOAD : ISD::ZEXTLOAD, DL, VT, Chain, Ptr, in LowerParameter()
1070 SDValue NewLoad = DAG.getExtLoad(ISD::ZEXTLOAD, DL, RegVT, in performUCharToFloatCombine()
DAMDGPUISelLowering.cpp219 setLoadExtAction(ISD::ZEXTLOAD, MVT::v2i8, Expand); in AMDGPUTargetLowering()
222 setLoadExtAction(ISD::ZEXTLOAD, MVT::v4i8, Expand); in AMDGPUTargetLowering()
225 setLoadExtAction(ISD::ZEXTLOAD, MVT::v2i16, Expand); in AMDGPUTargetLowering()
228 setLoadExtAction(ISD::ZEXTLOAD, MVT::v4i16, Expand); in AMDGPUTargetLowering()
DAMDGPUInstructions.td152 return L->getExtensionType() == ISD::ZEXTLOAD ||
DR600ISelLowering.cpp124 setLoadExtAction(ISD::ZEXTLOAD, MVT::i8, Custom); in R600TargetLowering()
125 setLoadExtAction(ISD::ZEXTLOAD, MVT::i16, Custom); in R600TargetLowering()
1527 (LoadNode->getExtensionType() == ISD::ZEXTLOAD))) { in LowerLOAD()
/external/llvm/lib/CodeGen/SelectionDAG/
DDAGCombiner.cpp834 ? (TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT) ? ISD::ZEXTLOAD in PromoteOperand()
1056 ? (TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT) ? ISD::ZEXTLOAD in PromoteLoad()
2715 bool CanZextLoadProfitably = TLI.isLoadExtLegal(ISD::ZEXTLOAD, in visitAND()
2728 case ISD::ZEXTLOAD: in visitAND()
2737 NewLoad = DAG.getLoad(Load->getAddressingMode(), ISD::ZEXTLOAD, in visitAND()
2842 TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT))) { in visitAND()
2843 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, SDLoc(N0), VT, in visitAND()
2862 TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT))) { in visitAND()
2863 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, SDLoc(N0), VT, in visitAND()
2890 (!LegalOperations || TLI.isLoadExtLegal(ISD::ZEXTLOAD, ExtVT))) { in visitAND()
[all …]
DLegalizeDAG.cpp534 HiExtType = ISD::ZEXTLOAD; in ExpandUnalignedLoad()
539 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, VT, Chain, Ptr, LD->getPointerInfo(), in ExpandUnalignedLoad()
555 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, VT, Chain, Ptr, in ExpandUnalignedLoad()
963 ExtType == ISD::ZEXTLOAD ? ISD::ZEXTLOAD : ISD::EXTLOAD; in LegalizeLoadOps()
977 else if (ExtType == ISD::ZEXTLOAD || NVT == Result.getValueType()) in LegalizeLoadOps()
1002 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, Node->getValueType(0), in LegalizeLoadOps()
1040 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, in LegalizeLoadOps()
1108 case ISD::ZEXTLOAD: ExtendOp = ISD::ZERO_EXTEND; break; in LegalizeLoadOps()
DSelectionDAGDumper.cpp463 case ISD::ZEXTLOAD: OS << ", zext"; break; in print_details()
DLegalizeVectorOps.cpp543 case ISD::ZEXTLOAD: in ExpandLoad()
DLegalizeIntegerTypes.cpp1884 } else if (ExtType == ISD::ZEXTLOAD) { in ExpandIntRes_LOAD()
1933 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, NVT, Ch, Ptr, in ExpandIntRes_LOAD()
DTargetLowering.cpp1303 if (LN0->getExtensionType() == ISD::ZEXTLOAD) { in SimplifySetCC()
DSelectionDAG.cpp242 case ISD::ZEXTLOAD: in getExtForLoadExtType()
2542 case ISD::ZEXTLOAD: // '16' bits known in ComputeNumSignBits()
/external/llvm/lib/Target/XCore/
DXCoreISelLowering.cpp131 setLoadExtAction(ISD::ZEXTLOAD, MVT::i1, Promote); in XCoreTargetLowering()
135 setLoadExtAction(ISD::ZEXTLOAD, MVT::i16, Expand); in XCoreTargetLowering()
462 SDValue Low = DAG.getExtLoad(ISD::ZEXTLOAD, DL, MVT::i32, Chain, in LowerLOAD()
/external/llvm/lib/Target/SystemZ/
DSystemZISelLowering.cpp222 setLoadExtAction(ISD::ZEXTLOAD, MVT::i1, Promote); in SystemZTargetLowering()
1176 } else if (Load->getExtensionType() == ISD::ZEXTLOAD) { in adjustSubwordCmp()
1187 ISD::ZEXTLOAD); in adjustSubwordCmp()
1216 case ISD::ZEXTLOAD: in isNaturalMemoryOperand()
1369 if ((Type == ISD::ZEXTLOAD && C.ICmpType != SystemZICMP::SignedOnly) || in adjustICmpTruncate()
DSystemZOperators.td225 return Type == ISD::EXTLOAD || Type == ISD::ZEXTLOAD;
/external/llvm/lib/Target/Hexagon/
DHexagonISelDAGToDAG.cpp591 bool zextval = (LD->getExtensionType() == ISD::ZEXTLOAD); in SelectIndexedLoad()
621 LD->getExtensionType() == ISD::ZEXTLOAD) { in SelectIndexedLoad()
/external/llvm/lib/Target/NVPTX/
DNVPTXISelLowering.cpp209 setLoadExtAction(ISD::ZEXTLOAD, MVT::i1, Promote); in NVPTXTargetLowering()
1746 ISD::SEXTLOAD : ISD::ZEXTLOAD; in LowerFormalArguments()
1879 ISD::SEXTLOAD : ISD::ZEXTLOAD; in LowerFormalArguments()
/external/llvm/lib/Target/Mips/
DMipsISelLowering.cpp226 setLoadExtAction(ISD::ZEXTLOAD, MVT::i1, Promote); in MipsTargetLowering()
379 setLoadExtAction(ISD::ZEXTLOAD, MVT::i32, Custom); in MipsTargetLowering()
2071 assert((VT == MVT::i64) && (ExtType == ISD::ZEXTLOAD)); in lowerLOAD()
3629 ISD::ZEXTLOAD, DL, RegTy, Chain, LoadPtr, MachinePointerInfo(), in passByValArg()
DMipsSEISelLowering.cpp56 setLoadExtAction(ISD::ZEXTLOAD, (MVT::SimpleValueType)VT0, Expand); in MipsSETargetLowering()
/external/llvm/lib/Target/MSP430/
DMSP430ISelLowering.cpp85 setLoadExtAction(ISD::ZEXTLOAD, MVT::i1, Promote); in MSP430TargetLowering()
/external/llvm/include/llvm/Target/
DTargetSelectionDAG.td636 return cast<LoadSDNode>(N)->getExtensionType() == ISD::ZEXTLOAD;
/external/llvm/lib/CodeGen/
DCodeGenPrepare.cpp2867 LType = ISD::ZEXTLOAD; in MoveExtToFormExtLoad()
/external/llvm/lib/Target/PowerPC/
DPPCISelLowering.cpp124 setLoadExtAction(ISD::ZEXTLOAD, MVT::i1, Promote); in PPCTargetLowering()
477 setLoadExtAction(ISD::ZEXTLOAD, VT, Expand); in PPCTargetLowering()
1795 SDValue GprIndex = DAG.getExtLoad(ISD::ZEXTLOAD, dl, MVT::i32, InChain, in LowerVAARG()
1818 SDValue FprIndex = DAG.getExtLoad(ISD::ZEXTLOAD, dl, MVT::i32, InChain, in LowerVAARG()
/external/llvm/lib/Target/AArch64/
DAArch64ISelLowering.cpp459 setLoadExtAction(ISD::ZEXTLOAD, (MVT::SimpleValueType)VT, Expand); in AArch64TargetLowering()
1778 ExtType = ISD::ZEXTLOAD; in LowerFormalArguments()

12