/external/llvm/include/llvm/CodeGen/ |
ISDOpcodes.h | 685 /// EXTLOAD is used for two things: floating point extending loads and 689 EXTLOAD, [all...] |
SelectionDAGNodes.h | [all...] |
/external/llvm/lib/CodeGen/SelectionDAG/ |
LegalizeVectorOps.cpp | 426 ScalarLoad = DAG.getExtLoad(ISD::EXTLOAD, dl, WideVT, Chain, BasePTR, 475 case ISD::EXTLOAD:
|
LegalizeDAG.cpp | 275 // Only do this if the target has a native EXTLOAD instruction from 277 TLI.isLoadExtLegal(ISD::EXTLOAD, SVT) && 290 DAG.getExtLoad(ISD::EXTLOAD, dl, OrigVT, 375 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, RegVT, Store, StackPtr, 491 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, RegVT, Chain, Ptr, 585 // with a "move to register" or "extload into register" instruction, then [all...] |
SelectionDAGDumper.cpp | 448 case ISD::EXTLOAD: OS << ", anyext"; break;
|
DAGCombiner.cpp | 148 void ReplaceLoadWithPromotedLoad(SDNode *Load, SDNode *ExtLoad); 158 SDValue Trunc, SDValue ExtLoad, SDLoc DL, 717 void DAGCombiner::ReplaceLoadWithPromotedLoad(SDNode *Load, SDNode *ExtLoad) { 720 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, dl, VT, SDValue(ExtLoad, 0)); 729 DAG.ReplaceAllUsesOfValueWith(SDValue(Load, 1), SDValue(ExtLoad, 1)); 742 : ISD::EXTLOAD) [all...] |
LegalizeIntegerTypes.cpp | 417 ISD::isNON_EXTLoad(N) ? ISD::EXTLOAD : N->getExtensionType(); [all...] |
LegalizeVectorTypes.cpp | [all...] |
SelectionDAG.cpp | [all...] |
/external/llvm/lib/Target/AArch64/ |
AArch64ISelLowering.cpp | 84 setLoadExtAction(ISD::EXTLOAD, MVT::i1, Promote); 258 setLoadExtAction(ISD::EXTLOAD, MVT::f64, Expand); 259 setLoadExtAction(ISD::EXTLOAD, MVT::f32, Expand); 260 setLoadExtAction(ISD::EXTLOAD, MVT::f16, Expand); [all...] |
/external/llvm/lib/Target/Mips/ |
MipsSEISelLowering.cpp | 67 setLoadExtAction(ISD::EXTLOAD, (MVT::SimpleValueType)VT0, Expand);
|
MipsISelLowering.cpp | 226 setLoadExtAction(ISD::EXTLOAD, MVT::i1, Promote); 231 setLoadExtAction(ISD::EXTLOAD, MVT::f32, Expand); 384 setLoadExtAction(ISD::EXTLOAD, MVT::i32, Custom); [all...] |
/external/llvm/lib/Target/XCore/ |
XCoreISelLowering.cpp | 129 setLoadExtAction(ISD::EXTLOAD, MVT::i1, Promote); 418 SDValue High = DAG.getExtLoad(ISD::EXTLOAD, DL, MVT::i32, Chain, [all...] |
/external/llvm/lib/Target/MSP430/ |
MSP430ISelLowering.cpp | 86 setLoadExtAction(ISD::EXTLOAD, MVT::i1, Promote); [all...] |
/external/llvm/lib/Target/SystemZ/ |
SystemZISelLowering.cpp | 184 setLoadExtAction(ISD::EXTLOAD, MVT::i1, Promote); 227 setLoadExtAction(ISD::EXTLOAD, MVT::f80, Expand); [all...] |
/external/llvm/lib/Target/Hexagon/ |
HexagonISelLowering.cpp | [all...] |
/external/llvm/lib/Target/NVPTX/ |
NVPTXISelLowering.cpp | 184 // Turn FP extload into load/fextend 185 setLoadExtAction(ISD::EXTLOAD, MVT::f32, Expand); [all...] |
/external/llvm/lib/Target/R600/ |
R600ISelLowering.cpp | [all...] |
/external/llvm/lib/Target/Sparc/ |
SparcISelLowering.cpp | [all...] |
/external/llvm/lib/Target/X86/ |
X86ISelLowering.cpp | [all...] |
X86ISelDAGToDAG.cpp | 520 // FPStack has extload and truncstore. SSE can fold direct loads into other 536 SDValue Result = CurDAG->getExtLoad(ISD::EXTLOAD, dl, DstVT, Store, MemTmp, 541 // extload we created. This will cause general havok on the dag because [all...] |
/external/llvm/lib/Target/PowerPC/ |
PPCISelLowering.cpp | 441 setLoadExtAction(ISD::EXTLOAD, VT, Expand); [all...] |
/external/llvm/lib/Target/ARM/ |
ARMISelLowering.cpp | 451 setLoadExtAction(ISD::EXTLOAD, (MVT::SimpleValueType)VT, Expand); 609 // It is legal to extload from v4i8 to v4i16 or v4i32. 614 setLoadExtAction(ISD::EXTLOAD, Tys[i], Legal); 628 setLoadExtAction(ISD::EXTLOAD, MVT::f32, Expand); [all...] |