Searched refs:ResNo (Results 1 - 18 of 18) sorted by relevance

/external/llvm/lib/CodeGen/SelectionDAG/
H A DSDNodeDbgValue.h42 unsigned ResNo; // valid for expressions member in struct:llvm::SDDbgValue::__anon7404::__anon7405
59 u.s.ResNo = R;
86 // Returns the ResNo for a register ref
87 unsigned getResNo() { assert (kind==SDNODE); return u.s.ResNo; }
H A DInstrEmitter.h41 void EmitCopyFromReg(SDNode *Node, unsigned ResNo,
49 unsigned ResNo) const;
H A DLegalizeTypes.h153 /// node with the corresponding input operand, except for the result 'ResNo',
155 SDValue DisintegrateMERGE_VALUES(SDNode *N, unsigned ResNo);
215 void PromoteIntegerResult(SDNode *N, unsigned ResNo);
216 SDValue PromoteIntRes_MERGE_VALUES(SDNode *N, unsigned ResNo);
242 SDValue PromoteIntRes_SADDSUBO(SDNode *N, unsigned ResNo);
254 SDValue PromoteIntRes_UADDSUBO(SDNode *N, unsigned ResNo);
258 SDValue PromoteIntRes_XMULO(SDNode *N, unsigned ResNo);
304 void ExpandIntegerResult(SDNode *N, unsigned ResNo);
305 void ExpandIntRes_MERGE_VALUES (SDNode *N, unsigned ResNo,
383 SDValue SoftenFloatRes_MERGE_VALUES(SDNode *N, unsigned ResNo);
[all...]
H A DInstrEmitter.cpp67 EmitCopyFromReg(SDNode *Node, unsigned ResNo, bool IsClone, bool IsCloned, argument
72 SDValue Op(Node, ResNo);
85 EVT VT = Node->getValueType(ResNo);
98 User->getOperand(2).getResNo() == ResNo) {
108 if (Op.getNode() != Node || Op.getResNo() != ResNo)
161 SDValue Op(Node, ResNo);
172 unsigned ResNo) const {
179 User->getOperand(2).getResNo() == ResNo) {
H A DLegalizeVectorTypes.cpp33 void DAGTypeLegalizer::ScalarizeVectorResult(SDNode *N, unsigned ResNo) { argument
34 DEBUG(dbgs() << "Scalarize node result " << ResNo << ": ";
42 dbgs() << "ScalarizeVectorResult #" << ResNo << ": ";
49 case ISD::MERGE_VALUES: R = ScalarizeVecRes_MERGE_VALUES(N, ResNo);break;
122 SetScalarizedVector(SDValue(N, ResNo), R);
133 unsigned ResNo) {
134 SDValue Op = DisintegrateMERGE_VALUES(N, ResNo);
434 void DAGTypeLegalizer::SplitVectorResult(SDNode *N, unsigned ResNo) { argument
441 if (CustomLowerNode(N, N->getValueType(ResNo), true))
447 dbgs() << "SplitVectorResult #" << ResNo << "
132 ScalarizeVecRes_MERGE_VALUES(SDNode *N, unsigned ResNo) argument
1222 WidenVectorResult(SDNode *N, unsigned ResNo) argument
1591 WidenVecRes_MERGE_VALUES(SDNode *N, unsigned ResNo) argument
2029 WidenVectorOperand(SDNode *N, unsigned ResNo) argument
[all...]
H A DLegalizeFloatTypes.cpp45 void DAGTypeLegalizer::SoftenFloatResult(SDNode *N, unsigned ResNo) { argument
46 DEBUG(dbgs() << "Soften float result " << ResNo << ": "; N->dump(&DAG);
53 dbgs() << "SoftenFloatResult #" << ResNo << ": ";
58 case ISD::MERGE_VALUES:R = SoftenFloatRes_MERGE_VALUES(N, ResNo); break;
104 SetSoftenedFloat(SDValue(N, ResNo), R);
112 unsigned ResNo) {
113 SDValue Op = DisintegrateMERGE_VALUES(N, ResNo);
820 void DAGTypeLegalizer::ExpandFloatResult(SDNode *N, unsigned ResNo) { argument
826 if (CustomLowerNode(N, N->getValueType(ResNo), true))
832 dbgs() << "ExpandFloatResult #" << ResNo << "
111 SoftenFloatRes_MERGE_VALUES(SDNode *N, unsigned ResNo) argument
[all...]
H A DLegalizeIntegerTypes.cpp35 void DAGTypeLegalizer::PromoteIntegerResult(SDNode *N, unsigned ResNo) { argument
40 if (CustomLowerNode(N, N->getValueType(ResNo), true))
46 dbgs() << "PromoteIntegerResult #" << ResNo << ": ";
50 case ISD::MERGE_VALUES:Res = PromoteIntRes_MERGE_VALUES(N, ResNo); break;
116 case ISD::SSUBO: Res = PromoteIntRes_SADDSUBO(N, ResNo); break;
118 case ISD::USUBO: Res = PromoteIntRes_UADDSUBO(N, ResNo); break;
120 case ISD::UMULO: Res = PromoteIntRes_XMULO(N, ResNo); break;
144 SetPromotedInteger(SDValue(N, ResNo), Res);
148 unsigned ResNo) {
149 SDValue Op = DisintegrateMERGE_VALUES(N, ResNo);
147 PromoteIntRes_MERGE_VALUES(SDNode *N, unsigned ResNo) argument
446 PromoteIntRes_SADDSUBO(SDNode *N, unsigned ResNo) argument
613 PromoteIntRes_UADDSUBO(SDNode *N, unsigned ResNo) argument
641 PromoteIntRes_XMULO(SDNode *N, unsigned ResNo) argument
1074 ExpandIntegerResult(SDNode *N, unsigned ResNo) argument
1623 ExpandIntRes_MERGE_VALUES(SDNode *N, unsigned ResNo, SDValue &Lo, SDValue &Hi) argument
[all...]
H A DLegalizeTypesGeneric.cpp33 void DAGTypeLegalizer::ExpandRes_MERGE_VALUES(SDNode *N, unsigned ResNo, argument
35 SDValue Op = DisintegrateMERGE_VALUES(N, ResNo);
433 void DAGTypeLegalizer::SplitRes_MERGE_VALUES(SDNode *N, unsigned ResNo, argument
435 SDValue Op = DisintegrateMERGE_VALUES(N, ResNo);
H A DScheduleDAGSDNodes.cpp121 unsigned ResNo = User->getOperand(2).getResNo(); local
124 if (ResNo >= II.getNumDefs() &&
125 II.ImplicitDefs[ResNo - II.getNumDefs()] == Reg) {
128 TRI->getMinimalPhysRegClass(Reg, Def->getValueType(ResNo));
H A DLegalizeTypes.cpp902 /// illegal ResNo in that case.
949 SDValue DAGTypeLegalizer::DisintegrateMERGE_VALUES(SDNode *N, unsigned ResNo) { argument
951 if (i != ResNo)
953 return SDValue(N, ResNo);
H A DTargetLowering.cpp2850 unsigned ResNo = 0; // ResNo - The result number of the next output. local
2876 OpInfo.ConstraintVT = getValueType(STy->getElementType(ResNo));
2878 assert(ResNo == 0 && "Asm only has one result!");
2881 ++ResNo;
H A DSelectionDAGBuilder.cpp5869 unsigned ResNo = 0; // ResNo - The result number of the next output. local
5889 OpVT = TLI.getValueType(STy->getElementType(ResNo));
5891 assert(ResNo == 0 && "Asm only has one result!");
5894 ++ResNo;
/external/llvm/utils/TableGen/
H A DCodeGenDAGPatterns.h226 MVT::SimpleValueType getKnownType(unsigned ResNo) const;
344 MVT::SimpleValueType getType(unsigned ResNo) const {
345 return Types[ResNo].getConcrete();
348 const EEVT::TypeSet &getExtType(unsigned ResNo) const { return Types[ResNo]; }
349 EEVT::TypeSet &getExtType(unsigned ResNo) { return Types[ResNo]; }
350 void setType(unsigned ResNo, const EEVT::TypeSet &T) { Types[ResNo] = T; }
352 bool hasTypeSet(unsigned ResNo) cons
[all...]
H A DCodeGenDAGPatterns.cpp811 /// N, and the result number in ResNo.
814 unsigned &ResNo) {
817 ResNo = OpNo;
841 unsigned ResNo = 0; // The result number being referenced. local
842 TreePatternNode *NodeToApply = getOperandNum(OperandNo, N, NodeInfo, ResNo);
847 return NodeToApply->UpdateNodeType(ResNo, x.SDTCisVT_Info.VT, TP);
850 return NodeToApply->UpdateNodeType(ResNo, MVT::iPTR, TP);
853 return NodeToApply->getExtType(ResNo).EnforceInteger(TP);
856 return NodeToApply->getExtType(ResNo).EnforceFloatingPoint(TP);
859 return NodeToApply->getExtType(ResNo)
812 getOperandNum(unsigned OpNo, TreePatternNode *N, const SDNodeInfo &NodeInfo, unsigned &ResNo) argument
1245 getImplicitType(Record *R, unsigned ResNo, bool NotRegisters, TreePattern &TP) argument
1558 unsigned ResNo = NumResultsToAdd; local
[all...]
H A DDAGISelMatcher.h501 unsigned ResNo; member in class:llvm::CheckTypeMatcher
504 : Matcher(CheckType), Type(type), ResNo(resno) {}
507 unsigned getResNo() const { return ResNo; }
H A DDAGISelMatcher.cpp161 OS.indent(indent) << "CheckType " << getEnumName(Type) << ", ResNo="
162 << ResNo << '\n';
/external/llvm/include/llvm/CodeGen/
H A DSelectionDAGNodes.h92 unsigned ResNo; // Which return value of the node we are using. member in class:llvm::SDValue
94 SDValue() : Node(0), ResNo(0) {}
95 SDValue(SDNode *node, unsigned resno) : Node(node), ResNo(resno) {}
98 unsigned getResNo() const { return ResNo; }
109 return Node == O.Node && ResNo == O.ResNo;
115 return Node < O.Node || (Node == O.Node && ResNo < O.ResNo);
155 /// use_empty - Return true if there are no nodes using value ResNo
161 /// ResNo o
[all...]
/external/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp7808 unsigned ResNo = UI.getUse().getResNo(); local
7810 if (ResNo == NumVecs)
7813 DCI.CombineTo(User, SDValue(VLDDup.getNode(), ResNo));

Completed in 1928 milliseconds