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

/macosx-10.10.1/llvmCore-3425.0.34/lib/CodeGen/SelectionDAG/
H A DSDNodeDbgValue.h42 unsigned ResNo; // valid for expressions member in struct:llvm::SDDbgValue::__anon10005::__anon10006
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.h155 /// node with the corresponding input operand, except for the result 'ResNo',
157 SDValue DisintegrateMERGE_VALUES(SDNode *N, unsigned ResNo);
217 void PromoteIntegerResult(SDNode *N, unsigned ResNo);
218 SDValue PromoteIntRes_MERGE_VALUES(SDNode *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);
306 void ExpandIntegerResult(SDNode *N, unsigned ResNo);
307 void ExpandIntRes_MERGE_VALUES (SDNode *N, unsigned ResNo,
385 SDValue SoftenFloatRes_MERGE_VALUES(SDNode *N, unsigned ResNo);
[all...]
H A DInstrEmitter.cpp84 EmitCopyFromReg(SDNode *Node, unsigned ResNo, bool IsClone, bool IsCloned, argument
89 SDValue Op(Node, ResNo);
102 EVT VT = Node->getValueType(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.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;
125 SetScalarizedVector(SDValue(N, ResNo), R);
144 unsigned ResNo) {
145 SDValue Op = DisintegrateMERGE_VALUES(N, ResNo);
455 void DAGTypeLegalizer::SplitVectorResult(SDNode *N, unsigned ResNo) { argument
462 if (CustomLowerNode(N, N->getValueType(ResNo), true))
468 dbgs() << "SplitVectorResult #" << ResNo << "
143 ScalarizeVecRes_MERGE_VALUES(SDNode *N, unsigned ResNo) argument
1265 WidenVectorResult(SDNode *N, unsigned ResNo) argument
1647 WidenVecRes_MERGE_VALUES(SDNode *N, unsigned ResNo) argument
2085 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
609 PromoteIntRes_UADDSUBO(SDNode *N, unsigned ResNo) argument
637 PromoteIntRes_XMULO(SDNode *N, unsigned ResNo) argument
1078 ExpandIntegerResult(SDNode *N, unsigned ResNo) argument
1627 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);
473 void DAGTypeLegalizer::SplitRes_MERGE_VALUES(SDNode *N, unsigned ResNo, argument
475 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.cpp927 /// illegal ResNo in that case.
977 SDValue DAGTypeLegalizer::DisintegrateMERGE_VALUES(SDNode *N, unsigned ResNo) { argument
979 if (i != ResNo)
981 return SDValue(N->getOperand(ResNo));
H A DTargetLowering.cpp2890 unsigned ResNo = 0; // ResNo - The result number of the next output. local
2916 OpInfo.ConstraintVT = getValueType(STy->getElementType(ResNo));
2918 assert(ResNo == 0 && "Asm only has one result!");
2921 ++ResNo;
H A DSelectionDAGBuilder.cpp5949 unsigned ResNo = 0; // ResNo - The result number of the next output. local
5969 OpVT = TLI.getValueType(STy->getElementType(ResNo));
5971 assert(ResNo == 0 && "Asm only has one result!");
5974 ++ResNo;
/macosx-10.10.1/llvmCore-3425.0.34/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.cpp807 /// N, and the result number in ResNo.
810 unsigned &ResNo) {
813 ResNo = OpNo;
837 unsigned ResNo = 0; // The result number being referenced. local
838 TreePatternNode *NodeToApply = getOperandNum(OperandNo, N, NodeInfo, ResNo);
843 return NodeToApply->UpdateNodeType(ResNo, x.SDTCisVT_Info.VT, TP);
846 return NodeToApply->UpdateNodeType(ResNo, MVT::iPTR, TP);
849 return NodeToApply->getExtType(ResNo).EnforceInteger(TP);
852 return NodeToApply->getExtType(ResNo).EnforceFloatingPoint(TP);
855 return NodeToApply->getExtType(ResNo)
808 getOperandNum(unsigned OpNo, TreePatternNode *N, const SDNodeInfo &NodeInfo, unsigned &ResNo) argument
1241 getImplicitType(Record *R, unsigned ResNo, bool NotRegisters, TreePattern &TP) argument
1548 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';
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/CodeGen/
H A DSelectionDAGNodes.h96 unsigned ResNo; // Which return value of the node we are using. member in class:llvm::SDValue
98 SDValue() : Node(0), ResNo(0) {}
99 SDValue(SDNode *node, unsigned resno) : Node(node), ResNo(resno) {}
102 unsigned getResNo() const { return ResNo; }
113 return Node == O.Node && ResNo == O.ResNo;
119 return Node < O.Node || (Node == O.Node && ResNo < O.ResNo);
160 /// use_empty - Return true if there are no nodes using value ResNo
166 /// ResNo o
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/lib/Target/ARM/
H A DARMISelLowering.cpp8400 unsigned ResNo = UI.getUse().getResNo(); local
8402 if (ResNo == NumVecs)
8405 DCI.CombineTo(User, SDValue(VLDDup.getNode(), ResNo));

Completed in 188 milliseconds