Home
last modified time | relevance | path

Searched refs:ResNo (Results 1 – 14 of 14) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
DLegalizeTypes.h215 SDValue DisintegrateMERGE_VALUES(SDNode *N, unsigned ResNo);
281 void PromoteIntegerResult(SDNode *N, unsigned ResNo);
282 SDValue PromoteIntRes_MERGE_VALUES(SDNode *N, unsigned ResNo);
287 SDValue PromoteIntRes_AtomicCmpSwap(AtomicSDNode *N, unsigned ResNo);
312 SDValue PromoteIntRes_SADDSUBO(SDNode *N, unsigned ResNo);
325 SDValue PromoteIntRes_UADDSUBO(SDNode *N, unsigned ResNo);
326 SDValue PromoteIntRes_ADDSUBCARRY(SDNode *N, unsigned ResNo);
329 SDValue PromoteIntRes_XMULO(SDNode *N, unsigned ResNo);
391 void ExpandIntegerResult(SDNode *N, unsigned ResNo);
483 void SoftenFloatResult(SDNode *N, unsigned ResNo);
[all …]
DSDNodeDbgValue.h42 unsigned ResNo; ///< Valid for expressions. member
64 u.s.ResNo = R; in SDDbgValue()
102 unsigned getResNo() const { assert (kind==SDNODE); return u.s.ResNo; } in getResNo()
DLegalizeFloatTypes.cpp48 void DAGTypeLegalizer::SoftenFloatResult(SDNode *N, unsigned ResNo) { in SoftenFloatResult() argument
49 LLVM_DEBUG(dbgs() << "Soften float result " << ResNo << ": "; N->dump(&DAG); in SoftenFloatResult()
56 dbgs() << "SoftenFloatResult #" << ResNo << ": "; in SoftenFloatResult()
61 case ISD::MERGE_VALUES:R = SoftenFloatRes_MERGE_VALUES(N, ResNo); break; in SoftenFloatResult()
66 R = SoftenFloatRes_EXTRACT_VECTOR_ELT(N, ResNo); break; in SoftenFloatResult()
139 SetSoftenedFloat(SDValue(N, ResNo), R); in SoftenFloatResult()
188 unsigned ResNo) { in SoftenFloatRes_MERGE_VALUES() argument
189 SDValue Op = DisintegrateMERGE_VALUES(N, ResNo); in SoftenFloatRes_MERGE_VALUES()
226 SDValue DAGTypeLegalizer::SoftenFloatRes_EXTRACT_VECTOR_ELT(SDNode *N, unsigned ResNo) { in SoftenFloatRes_EXTRACT_VECTOR_ELT() argument
1100 void DAGTypeLegalizer::ExpandFloatResult(SDNode *N, unsigned ResNo) { in ExpandFloatResult() argument
[all …]
DLegalizeVectorTypes.cpp35 void DAGTypeLegalizer::ScalarizeVectorResult(SDNode *N, unsigned ResNo) { in ScalarizeVectorResult() argument
36 LLVM_DEBUG(dbgs() << "Scalarize node result " << ResNo << ": "; N->dump(&DAG); in ScalarizeVectorResult()
43 dbgs() << "ScalarizeVectorResult #" << ResNo << ": "; in ScalarizeVectorResult()
50 case ISD::MERGE_VALUES: R = ScalarizeVecRes_MERGE_VALUES(N, ResNo);break; in ScalarizeVectorResult()
162 R = ScalarizeVecRes_OverflowOp(N, ResNo); in ScalarizeVectorResult()
176 SetScalarizedVector(SDValue(N, ResNo), R); in ScalarizeVectorResult()
233 unsigned ResNo) { in ScalarizeVecRes_OverflowOp() argument
256 unsigned OtherNo = 1 - ResNo; in ScalarizeVecRes_OverflowOp()
266 return SDValue(ScalarNode, ResNo); in ScalarizeVecRes_OverflowOp()
270 unsigned ResNo) { in ScalarizeVecRes_MERGE_VALUES() argument
[all …]
DLegalizeTypesGeneric.cpp34 void DAGTypeLegalizer::ExpandRes_MERGE_VALUES(SDNode *N, unsigned ResNo, in ExpandRes_MERGE_VALUES() argument
36 SDValue Op = DisintegrateMERGE_VALUES(N, ResNo); in ExpandRes_MERGE_VALUES()
499 void DAGTypeLegalizer::SplitRes_MERGE_VALUES(SDNode *N, unsigned ResNo, in SplitRes_MERGE_VALUES() argument
501 SDValue Op = DisintegrateMERGE_VALUES(N, ResNo); in SplitRes_MERGE_VALUES()
DInstrEmitter.cpp86 EmitCopyFromReg(SDNode *Node, unsigned ResNo, bool IsClone, bool IsCloned, in EmitCopyFromReg() argument
91 SDValue Op(Node, ResNo); in EmitCopyFromReg()
104 MVT VT = Node->getSimpleValueType(ResNo); in EmitCopyFromReg()
115 User->getOperand(2).getResNo() == ResNo) { in EmitCopyFromReg()
125 if (Op.getNode() != Node || Op.getResNo() != ResNo) in EmitCopyFromReg()
181 SDValue Op(Node, ResNo); in EmitCopyFromReg()
DLegalizeIntegerTypes.cpp37 void DAGTypeLegalizer::PromoteIntegerResult(SDNode *N, unsigned ResNo) { in PromoteIntegerResult() argument
43 if (CustomLowerNode(N, N->getValueType(ResNo), true)) { in PromoteIntegerResult()
51 dbgs() << "PromoteIntegerResult #" << ResNo << ": "; in PromoteIntegerResult()
55 case ISD::MERGE_VALUES:Res = PromoteIntRes_MERGE_VALUES(N, ResNo); break; in PromoteIntegerResult()
142 case ISD::SSUBO: Res = PromoteIntRes_SADDSUBO(N, ResNo); break; in PromoteIntegerResult()
144 case ISD::USUBO: Res = PromoteIntRes_UADDSUBO(N, ResNo); break; in PromoteIntegerResult()
146 case ISD::UMULO: Res = PromoteIntRes_XMULO(N, ResNo); break; in PromoteIntegerResult()
151 case ISD::SUBCARRY: Res = PromoteIntRes_ADDSUBCARRY(N, ResNo); break; in PromoteIntegerResult()
187 Res = PromoteIntRes_AtomicCmpSwap(cast<AtomicSDNode>(N), ResNo); in PromoteIntegerResult()
205 SetPromotedInteger(SDValue(N, ResNo), Res); in PromoteIntegerResult()
[all …]
DInstrEmitter.h40 void EmitCopyFromReg(SDNode *Node, unsigned ResNo,
DScheduleDAGSDNodes.cpp121 unsigned ResNo = User->getOperand(2).getResNo(); in CheckForPhysRegDependency() local
127 if (ResNo >= II.getNumDefs() && in CheckForPhysRegDependency()
128 II.ImplicitDefs[ResNo - II.getNumDefs()] == Reg) in CheckForPhysRegDependency()
134 TRI->getMinimalPhysRegClass(Reg, Def->getSimpleValueType(ResNo)); in CheckForPhysRegDependency()
DLegalizeTypes.cpp941 SDValue DAGTypeLegalizer::DisintegrateMERGE_VALUES(SDNode *N, unsigned ResNo) { in DisintegrateMERGE_VALUES() argument
943 if (i != ResNo) in DisintegrateMERGE_VALUES()
945 return SDValue(N->getOperand(ResNo)); in DisintegrateMERGE_VALUES()
DTargetLowering.cpp4257 unsigned ResNo = 0; // ResNo - The result number of the next output. in ParseConstraints() local
4284 getSimpleValueType(DL, STy->getElementType(ResNo)); in ParseConstraints()
4286 assert(ResNo == 0 && "Asm only has one result!"); in ParseConstraints()
4289 ++ResNo; in ParseConstraints()
DSelectionDAGBuilder.cpp8119 unsigned ResNo = 0; // ResNo - The result number of the next output. in visitInlineAsm() local
8154 DAG.getDataLayout(), STy->getElementType(ResNo)); in visitInlineAsm()
8156 assert(ResNo == 0 && "Asm only has one result!"); in visitInlineAsm()
8160 ++ResNo; in visitInlineAsm()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DSelectionDAGNodes.h128 unsigned ResNo = 0; // Which return value of the node we are using.
135 unsigned getResNo() const { return ResNo; }
146 return Node == O.Node && ResNo == O.ResNo;
152 return std::tie(Node, ResNo) < std::tie(O.Node, O.ResNo);
221 V.ResNo = -1U;
227 V.ResNo = -2U;
1001 EVT getValueType(unsigned ResNo) const {
1002 assert(ResNo < NumValues && "Illegal result number!");
1003 return ValueList[ResNo];
1007 MVT getSimpleValueType(unsigned ResNo) const {
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/
DARMISelLowering.cpp13356 unsigned ResNo = UI.getUse().getResNo(); in CombineVLDDUP() local
13358 if (ResNo == NumVecs) in CombineVLDDUP()
13361 DCI.CombineTo(User, SDValue(VLDDup.getNode(), ResNo)); in CombineVLDDUP()