Searched refs:SDVTList (Results 1 - 25 of 32) sorted by relevance

12

/external/llvm/include/llvm/CodeGen/
H A DSelectionDAG.h46 /// SDVTList contains all types which are frequently accessed in SelectionDAG.
52 /// The hash value for SDVTList is fixed, so cache it to avoid
60 SDVTList getSDVTList() {
61 SDVTList result = {VTs, NumVTs};
420 /// Return an SDVTList that represents the list of values specified.
421 SDVTList getVTList(EVT VT);
422 SDVTList getVTList(EVT VT1, EVT VT2);
423 SDVTList getVTList(EVT VT1, EVT VT2, EVT VT3);
424 SDVTList getVTList(EVT VT1, EVT VT2, EVT VT3, EVT VT4);
425 SDVTList getVTLis
[all...]
H A DSelectionDAGNodes.h61 struct SDVTList { struct in namespace:llvm
658 SDVTList getVTList() const {
659 SDVTList X = { ValueList, NumValues };
771 static SDVTList getSDVTList(EVT VT) {
772 SDVTList Ret = { getValueTypeList(VT), 1 };
776 SDNode(unsigned Opc, unsigned Order, DebugLoc dl, SDVTList VTs,
798 SDNode(unsigned Opc, unsigned Order, DebugLoc dl, SDVTList VTs)
1001 UnarySDNode(unsigned Opc, unsigned Order, DebugLoc dl, SDVTList VTs,
1013 BinarySDNode(unsigned Opc, unsigned Order, DebugLoc dl, SDVTList VTs,
1047 BinaryWithFlagsSDNode(unsigned Opc, unsigned Order, DebugLoc dl, SDVTList VT
[all...]
H A DSelectionDAGISel.h260 SDNode *MorphNode(SDNode *Node, unsigned TargetOpc, SDVTList VTs,
/external/llvm/lib/Target/SystemZ/
H A DSystemZSelectionDAGInfo.cpp155 SDVTList VTs = DAG.getVTList(MVT::Other, MVT::Glue);
207 SDVTList VTs = DAG.getVTList(PtrVT, MVT::Other, MVT::Glue);
234 SDVTList VTs = DAG.getVTList(Dest.getValueType(), MVT::Other);
245 SDVTList VTs = DAG.getVTList(Src1.getValueType(), MVT::Other, MVT::Glue);
262 SDVTList VTs = DAG.getVTList(PtrVT, MVT::Other, MVT::Glue);
H A DSystemZISelLowering.cpp1138 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
1419 SDVTList RawVTs = DAG.getVTList(MVT::Other, MVT::Glue);
1440 SDVTList RawVTs = DAG.getVTList(Op->getValueType(0), MVT::Glue);
2407 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Glue);
2490 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
3112 SDVTList VTList = DAG.getVTList(WideVT, MVT::Other);
3203 SDVTList VTList = DAG.getVTList(WideVT, MVT::Other);
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp57 /// makeVTList - Return an instance of the SDVTList struct initialized with the
59 static SDVTList makeVTList(const EVT *VTs, unsigned NumVTs) {
60 SDVTList Res = {VTs, NumVTs};
356 static void AddNodeIDValueTypes(FoldingSetNodeID &ID, SDVTList VTList) {
397 SDVTList VTList, ArrayRef<SDValue> OpList) {
937 SDVTList VTs, SDValue N1,
3166 SDVTList VTs = getVTList(VT);
3874 SDVTList VTs = getVTList(VT);
3981 SDVTList VTs = getVTList(VT);
4767 SDVTList VTLis
[all...]
H A DStatepointLowering.cpp719 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
782 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
809 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
H A DLegalizeIntegerTypes.cpp219 SDVTList VTs = DAG.getVTList(N->getValueType(0), SVT, MVT::Other);
232 SDVTList VTs =
774 SDVTList VTs = DAG.getVTList(LHS.getValueType(), N->getValueType(1));
1351 SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::Other);
1446 SDVTList VTList = DAG.getVTList(NVT, MVT::Glue);
1698 SDVTList VTList = DAG.getVTList(NVT, MVT::Glue);
1716 SDVTList VTList = DAG.getVTList(NVT, NVT);
1776 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Glue);
1802 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Glue);
2156 SDVTList VT
[all...]
H A DScheduleDAGSDNodes.cpp146 SDVTList VTList = DAG->getVTList(VTs);
H A DLegalizeDAG.cpp3041 SDVTList VTs = DAG.getVTList(Node->getValueType(0), MVT::Other);
3069 SDVTList VTs = DAG.getVTList(Node->getValueType(0), MVT::Other);
3376 SDVTList VTs = DAG.getVTList(VT, VT);
3458 SDVTList VTs = DAG.getVTList(VT, VT);
3476 SDVTList VTs = DAG.getVTList(VT, VT);
3488 SDVTList VTs = DAG.getVTList(VT, VT);
3498 SDVTList VTs = DAG.getVTList(VT, VT);
H A DSelectionDAGBuilder.cpp3107 SDVTList VTs = DAG.getVTList(AllocSize.getValueType(), MVT::Other);
3494 SDVTList VTs = DAG.getVTList(MemVT, MVT::i1, MVT::Other);
3657 SDVTList VTs = DAG.getVTList(ValueVTs);
5091 SDVTList VTs = DAG.getVTList(Op1.getValueType(), MVT::i1);
6801 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
6922 SDVTList NodeTys;
/external/llvm/lib/Target/X86/
H A DX86SelectionDAGInfo.cpp161 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
258 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
H A DX86ISelDAGToDAG.cpp2188 SDVTList VTs = CurDAG->getVTList(VSrc.getValueType(), VSrc.getValueType(),
2411 SDVTList VTs = CurDAG->getVTList(NVT, MVT::i32);
2436 SDVTList VTs = CurDAG->getVTList(NVT, NVT, MVT::i32);
2518 SDVTList VTs = CurDAG->getVTList(NVT, NVT, MVT::Other, MVT::Glue);
2525 SDVTList VTs = CurDAG->getVTList(MVT::Other, MVT::Glue);
2536 SDVTList VTs = CurDAG->getVTList(NVT, NVT, MVT::Glue);
2542 SDVTList VTs = CurDAG->getVTList(MVT::Glue);
H A DX86ISelLowering.cpp3470 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
5469 SDVTList Tys = DAG.getVTList(MVT::v2i64, MVT::Other);
12163 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
12369 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
12561 SDVTList Tys;
12936 SDVTList Tys = DAG.getVTList(MVT::f80, MVT::Other);
13097 SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other);
13985 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
14018 SDVTList VTs = DAG.getVTList(Op0.getValueType(), MVT::i32);
14764 SDVTList VT
[all...]
/external/llvm/lib/Target/NVPTX/
H A DNVPTXISelLowering.cpp1108 SDVTList DeclareParamVTs = DAG.getVTList(MVT::Other, MVT::Glue);
1126 SDVTList CopyParamVTs = DAG.getVTList(MVT::Other, MVT::Glue);
1148 SDVTList DeclareParamVTs = DAG.getVTList(MVT::Other, MVT::Glue);
1172 SDVTList CopyParamVTs = DAG.getVTList(MVT::Other, MVT::Glue);
1189 SDVTList CopyParamVTs = DAG.getVTList(MVT::Other, MVT::Glue);
1268 SDVTList CopyParamVTs = DAG.getVTList(MVT::Other, MVT::Glue);
1289 SDVTList DeclareParamVTs = DAG.getVTList(MVT::Other, MVT::Glue);
1305 SDVTList CopyParamVTs = DAG.getVTList(MVT::Other, MVT::Glue);
1333 SDVTList DeclareParamVTs = DAG.getVTList(MVT::Other, MVT::Glue);
1359 SDVTList CopyParamVT
[all...]
/external/llvm/lib/Target/ARM/
H A DARMSelectionDAGInfo.cpp179 SDVTList VTs = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other, MVT::Glue);
H A DARMISelLowering.cpp1731 SDVTList VTs = DAG.getVTList(MVT::Other, MVT::Glue);
1947 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
3445 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
3788 SDVTList VTList = DAG.getVTList(MVT::Other, MVT::Glue);
3840 SDVTList VTList = DAG.getVTList(MVT::Other, MVT::Glue);
6613 SDVTList VTs = DAG.getVTList(VT, MVT::i32);
6703 SDVTList Tys = DAG.getVTList(ArgVT, ArgVT);
9630 // First, create an SDVTList for the new updating node's results.
9638 SDVTList SDTys = DAG.getVTList(makeArrayRef(Tys, NumResultVecs+2));
9751 SDVTList SDTy
[all...]
/external/llvm/lib/Target/BPF/
H A DBPFISelLowering.cpp358 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
504 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Glue);
/external/llvm/lib/Target/MSP430/
H A DMSP430ISelLowering.cpp680 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
978 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Glue);
996 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Glue);
/external/llvm/lib/Target/WebAssembly/
H A DWebAssemblyISelLowering.cpp442 SDVTList TyList = DAG.getVTList(Tys);
/external/llvm/lib/Target/XCore/
H A DXCoreISelLowering.cpp1102 SDVTList VTs = DAG.getVTList(MVT::i32, MVT::Other);
1223 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
/external/llvm/lib/Target/Sparc/
H A DSparcISelLowering.cpp964 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
1300 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
2006 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
2840 SDVTList VTs = DAG.getVTList(MVT::i32, MVT::Glue);
/external/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp1606 SDVTList VTs = DAG.getVTList(MVT::i32, MVT::i32);
1617 SDVTList VTs = DAG.getVTList(MVT::i64, MVT::i32);
1634 SDVTList VTs = DAG.getVTList(MVT::i64, MVT::i32);
1639 SDVTList VTs = DAG.getVTList(MVT::i64, MVT::i32);
1650 SDVTList VTs = DAG.getVTList(Op->getValueType(0), MVT::i32);
1731 SDVTList VTs = DAG.getVTList(VT, MVT::i32);
1782 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
3189 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
3455 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
8737 SDVTList SDTy
[all...]
/external/llvm/lib/Target/Mips/
H A DMipsISelLowering.cpp2170 SDVTList VTList = DAG.getVTList(VT, MVT::Other);
2251 SDVTList VTList = DAG.getVTList(MVT::Other);
2794 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
/external/llvm/lib/Target/AMDGPU/
H A DAMDGPUISelDAGToDAG.cpp728 SDVTList VTList = CurDAG->getVTList(MVT::i32, MVT::Glue);

Completed in 696 milliseconds

12