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::__anon25805::__anon25806
62 u.s.ResNo = R;
91 // Returns the ResNo for a register ref
92 unsigned getResNo() { assert (kind==SDNODE); return u.s.ResNo; }
H A DInstrEmitter.h42 void EmitCopyFromReg(SDNode *Node, unsigned ResNo,
50 unsigned ResNo) const;
H A DLegalizeTypes.h158 /// node with the corresponding input operand, except for the result 'ResNo',
160 SDValue DisintegrateMERGE_VALUES(SDNode *N, unsigned ResNo);
217 void PromoteIntegerResult(SDNode *N, unsigned ResNo);
218 SDValue PromoteIntRes_MERGE_VALUES(SDNode *N, unsigned ResNo);
223 SDValue PromoteIntRes_AtomicCmpSwap(AtomicSDNode *N, unsigned ResNo);
244 SDValue PromoteIntRes_SADDSUBO(SDNode *N, unsigned ResNo);
256 SDValue PromoteIntRes_UADDSUBO(SDNode *N, unsigned ResNo);
260 SDValue PromoteIntRes_XMULO(SDNode *N, unsigned ResNo);
305 void ExpandIntegerResult(SDNode *N, unsigned ResNo);
306 void ExpandIntRes_MERGE_VALUES (SDNode *N, unsigned ResNo,
[all...]
H A DInstrEmitter.cpp86 EmitCopyFromReg(SDNode *Node, unsigned ResNo, bool IsClone, bool IsCloned, argument
91 SDValue Op(Node, ResNo);
104 MVT VT = Node->getSimpleValueType(ResNo);
115 User->getOperand(2).getResNo() == ResNo) {
125 if (Op.getNode() != Node || Op.getResNo() != ResNo)
180 SDValue Op(Node, ResNo);
191 unsigned ResNo) const {
198 User->getOperand(2).getResNo() == ResNo) {
H A DLegalizeVectorTypes.cpp35 void DAGTypeLegalizer::ScalarizeVectorResult(SDNode *N, unsigned ResNo) { argument
36 DEBUG(dbgs() << "Scalarize node result " << ResNo << ": ";
44 dbgs() << "ScalarizeVectorResult #" << ResNo << ": ";
51 case ISD::MERGE_VALUES: R = ScalarizeVecRes_MERGE_VALUES(N, ResNo);break;
132 SetScalarizedVector(SDValue(N, ResNo), R);
151 unsigned ResNo) {
152 SDValue Op = DisintegrateMERGE_VALUES(N, ResNo);
539 void DAGTypeLegalizer::SplitVectorResult(SDNode *N, unsigned ResNo) { argument
546 if (CustomLowerNode(N, N->getValueType(ResNo), true))
552 dbgs() << "SplitVectorResult #" << ResNo << "
150 ScalarizeVecRes_MERGE_VALUES(SDNode *N, unsigned ResNo) argument
1531 WidenVectorResult(SDNode *N, unsigned ResNo) argument
1930 WidenVecRes_MERGE_VALUES(SDNode *N, unsigned ResNo) argument
[all...]
H A DLegalizeIntegerTypes.cpp37 void DAGTypeLegalizer::PromoteIntegerResult(SDNode *N, unsigned ResNo) { argument
42 if (CustomLowerNode(N, N->getValueType(ResNo), true))
48 dbgs() << "PromoteIntegerResult #" << ResNo << ": ";
52 case ISD::MERGE_VALUES:Res = PromoteIntRes_MERGE_VALUES(N, ResNo); break;
118 case ISD::SSUBO: Res = PromoteIntRes_SADDSUBO(N, ResNo); break;
120 case ISD::USUBO: Res = PromoteIntRes_UADDSUBO(N, ResNo); break;
122 case ISD::UMULO: Res = PromoteIntRes_XMULO(N, ResNo); break;
142 Res = PromoteIntRes_AtomicCmpSwap(cast<AtomicSDNode>(N), ResNo);
148 SetPromotedInteger(SDValue(N, ResNo), Res);
152 unsigned ResNo) {
151 PromoteIntRes_MERGE_VALUES(SDNode *N, unsigned ResNo) argument
197 PromoteIntRes_AtomicCmpSwap(AtomicSDNode *N, unsigned ResNo) argument
474 PromoteIntRes_SADDSUBO(SDNode *N, unsigned ResNo) argument
650 PromoteIntRes_UADDSUBO(SDNode *N, unsigned ResNo) argument
678 PromoteIntRes_XMULO(SDNode *N, unsigned ResNo) argument
1103 ExpandIntegerResult(SDNode *N, unsigned ResNo) argument
1682 ExpandIntRes_MERGE_VALUES(SDNode *N, unsigned ResNo, SDValue &Lo, SDValue &Hi) argument
[all...]
H A DLegalizeFloatTypes.cpp49 void DAGTypeLegalizer::SoftenFloatResult(SDNode *N, unsigned ResNo) { argument
50 DEBUG(dbgs() << "Soften float result " << ResNo << ": "; N->dump(&DAG);
57 dbgs() << "SoftenFloatResult #" << ResNo << ": ";
62 case ISD::MERGE_VALUES:R = SoftenFloatRes_MERGE_VALUES(N, ResNo); break;
109 SetSoftenedFloat(SDValue(N, ResNo), R);
117 unsigned ResNo) {
118 SDValue Op = DisintegrateMERGE_VALUES(N, ResNo);
786 void DAGTypeLegalizer::ExpandFloatResult(SDNode *N, unsigned ResNo) { argument
792 if (CustomLowerNode(N, N->getValueType(ResNo), true))
798 dbgs() << "ExpandFloatResult #" << ResNo << "
116 SoftenFloatRes_MERGE_VALUES(SDNode *N, unsigned ResNo) argument
[all...]
H A DLegalizeTypesGeneric.cpp35 void DAGTypeLegalizer::ExpandRes_MERGE_VALUES(SDNode *N, unsigned ResNo, argument
37 SDValue Op = DisintegrateMERGE_VALUES(N, ResNo);
507 void DAGTypeLegalizer::SplitRes_MERGE_VALUES(SDNode *N, unsigned ResNo, argument
509 SDValue Op = DisintegrateMERGE_VALUES(N, ResNo);
H A DScheduleDAGSDNodes.cpp122 unsigned ResNo = User->getOperand(2).getResNo(); local
125 if (ResNo >= II.getNumDefs() &&
126 II.ImplicitDefs[ResNo - II.getNumDefs()] == Reg) {
129 TRI->getMinimalPhysRegClass(Reg, Def->getValueType(ResNo));
H A DLegalizeTypes.cpp908 /// illegal ResNo in that case.
956 SDValue DAGTypeLegalizer::DisintegrateMERGE_VALUES(SDNode *N, unsigned ResNo) { argument
958 if (i != ResNo)
960 return SDValue(N->getOperand(ResNo));
H A DTargetLowering.cpp2246 unsigned ResNo = 0; // ResNo - The result number of the next output. local
2272 OpInfo.ConstraintVT = getSimpleValueType(STy->getElementType(ResNo));
2274 assert(ResNo == 0 && "Asm only has one result!");
2277 ++ResNo;
H A DSelectionDAGBuilder.cpp6226 unsigned ResNo = 0; // ResNo - The result number of the next output.
6246 OpVT = TLI->getSimpleValueType(STy->getElementType(ResNo));
6248 assert(ResNo == 0 && "Asm only has one result!");
6251 ++ResNo;
/external/llvm/utils/TableGen/
H A DCodeGenDAGPatterns.h230 MVT::SimpleValueType getKnownType(unsigned ResNo) const;
349 MVT::SimpleValueType getType(unsigned ResNo) const {
350 return Types[ResNo].getConcrete();
353 const EEVT::TypeSet &getExtType(unsigned ResNo) const { return Types[ResNo]; }
354 EEVT::TypeSet &getExtType(unsigned ResNo) { return Types[ResNo]; }
355 void setType(unsigned ResNo, const EEVT::TypeSet &T) { Types[ResNo] = T; }
357 bool hasTypeSet(unsigned ResNo) cons
[all...]
H A DCodeGenDAGPatterns.cpp849 /// N, and the result number in ResNo.
852 unsigned &ResNo) {
855 ResNo = OpNo;
881 unsigned ResNo = 0; // The result number being referenced. local
882 TreePatternNode *NodeToApply = getOperandNum(OperandNo, N, NodeInfo, ResNo);
887 return NodeToApply->UpdateNodeType(ResNo, x.SDTCisVT_Info.VT, TP);
890 return NodeToApply->UpdateNodeType(ResNo, MVT::iPTR, TP);
893 return NodeToApply->getExtType(ResNo).EnforceInteger(TP);
896 return NodeToApply->getExtType(ResNo).EnforceFloatingPoint(TP);
899 return NodeToApply->getExtType(ResNo)
850 getOperandNum(unsigned OpNo, TreePatternNode *N, const SDNodeInfo &NodeInfo, unsigned &ResNo) argument
966 UpdateNodeTypeFromInst(unsigned ResNo, Record *Operand, TreePattern &TP) argument
1344 getImplicitType(Record *R, unsigned ResNo, bool NotRegisters, bool Unnamed, TreePattern &TP) argument
1675 unsigned ResNo = NumResultsToAdd; local
[all...]
H A DDAGISelMatcher.h531 unsigned ResNo; member in class:llvm::CheckTypeMatcher
534 : Matcher(CheckType), Type(type), ResNo(resno) {}
537 unsigned getResNo() const { return ResNo; }
H A DDAGISelMatcher.cpp174 OS.indent(indent) << "CheckType " << getEnumName(Type) << ", ResNo="
175 << ResNo << '\n';
/external/llvm/include/llvm/CodeGen/
H A DSelectionDAGNodes.h121 unsigned ResNo; // Which return value of the node we are using. member in class:llvm::SDValue
123 SDValue() : Node(nullptr), ResNo(0) {}
124 SDValue(SDNode *node, unsigned resno) : Node(node), ResNo(resno) {}
127 unsigned getResNo() const { return ResNo; }
138 return Node == O.Node && ResNo == O.ResNo;
144 return std::tie(Node, ResNo) < std::tie(O.Node, O.ResNo);
197 /// use_empty - Return true if there are no nodes using value ResNo
203 /// ResNo o
[all...]
/external/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp9014 unsigned ResNo = UI.getUse().getResNo(); local
9016 if (ResNo == NumVecs)
9019 DCI.CombineTo(User, SDValue(VLDDup.getNode(), ResNo));

Completed in 664 milliseconds