/external/llvm/lib/CodeGen/SelectionDAG/ |
SDNodeDbgValue.h | 42 unsigned ResNo; // valid for expressions 59 u.s.ResNo = R; 86 // Returns the ResNo for a register ref 87 unsigned getResNo() { assert (kind==SDNODE); return u.s.ResNo; }
|
InstrEmitter.h | 42 void EmitCopyFromReg(SDNode *Node, unsigned ResNo, 50 unsigned ResNo) const;
|
LegalizeTypes.h | 159 /// node with the corresponding input operand, except for the result 'ResNo', 161 SDValue DisintegrateMERGE_VALUES(SDNode *N, unsigned ResNo); 218 void PromoteIntegerResult(SDNode *N, unsigned ResNo); 219 SDValue PromoteIntRes_MERGE_VALUES(SDNode *N, unsigned ResNo); 245 SDValue PromoteIntRes_SADDSUBO(SDNode *N, unsigned ResNo); 257 SDValue PromoteIntRes_UADDSUBO(SDNode *N, unsigned ResNo); 261 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...] |
InstrEmitter.cpp | 84 EmitCopyFromReg(SDNode *Node, unsigned ResNo, bool IsClone, bool IsCloned, 89 SDValue Op(Node, ResNo); 102 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) { [all...] |
LegalizeVectorTypes.cpp | 33 void DAGTypeLegalizer::ScalarizeVectorResult(SDNode *N, unsigned ResNo) { 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); 476 void DAGTypeLegalizer::SplitVectorResult(SDNode *N, unsigned ResNo) { 483 if (CustomLowerNode(N, N->getValueType(ResNo), true)) 489 dbgs() << "SplitVectorResult #" << ResNo << ": " [all...] |
LegalizeFloatTypes.cpp | 47 void DAGTypeLegalizer::SoftenFloatResult(SDNode *N, unsigned ResNo) { 48 DEBUG(dbgs() << "Soften float result " << ResNo << ": "; N->dump(&DAG); 55 dbgs() << "SoftenFloatResult #" << ResNo << ": "; 60 case ISD::MERGE_VALUES:R = SoftenFloatRes_MERGE_VALUES(N, ResNo); break; 106 SetSoftenedFloat(SDValue(N, ResNo), R); 114 unsigned ResNo) { 115 SDValue Op = DisintegrateMERGE_VALUES(N, ResNo); [all...] |
LegalizeIntegerTypes.cpp | 35 void DAGTypeLegalizer::PromoteIntegerResult(SDNode *N, unsigned ResNo) { 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); [all...] |
LegalizeTypesGeneric.cpp | 33 void DAGTypeLegalizer::ExpandRes_MERGE_VALUES(SDNode *N, unsigned ResNo, 35 SDValue Op = DisintegrateMERGE_VALUES(N, ResNo); 476 void DAGTypeLegalizer::SplitRes_MERGE_VALUES(SDNode *N, unsigned ResNo, 478 SDValue Op = DisintegrateMERGE_VALUES(N, ResNo);
|
ScheduleDAGSDNodes.cpp | 121 unsigned ResNo = User->getOperand(2).getResNo(); 124 if (ResNo >= II.getNumDefs() && 125 II.ImplicitDefs[ResNo - II.getNumDefs()] == Reg) { 128 TRI->getMinimalPhysRegClass(Reg, Def->getValueType(ResNo)); [all...] |
LegalizeTypes.cpp | [all...] |
TargetLowering.cpp | [all...] |
SelectionDAGBuilder.cpp | [all...] |
/external/llvm/utils/TableGen/ |
CodeGenDAGPatterns.h | 226 MVT::SimpleValueType getKnownType(unsigned ResNo) const; 345 MVT::SimpleValueType getType(unsigned ResNo) const { 346 return Types[ResNo].getConcrete(); 349 const EEVT::TypeSet &getExtType(unsigned ResNo) const { return Types[ResNo]; } 350 EEVT::TypeSet &getExtType(unsigned ResNo) { return Types[ResNo]; } 351 void setType(unsigned ResNo, const EEVT::TypeSet &T) { Types[ResNo] = T; } 353 bool hasTypeSet(unsigned ResNo) const [all...] |
CodeGenDAGPatterns.cpp | 845 /// N, and the result number in ResNo. 848 unsigned &ResNo) { 851 ResNo = OpNo; 877 unsigned ResNo = 0; // The result number being referenced. 878 TreePatternNode *NodeToApply = getOperandNum(OperandNo, N, NodeInfo, ResNo); 883 return NodeToApply->UpdateNodeType(ResNo, x.SDTCisVT_Info.VT, TP); 886 return NodeToApply->UpdateNodeType(ResNo, MVT::iPTR, TP); 889 return NodeToApply->getExtType(ResNo).EnforceInteger(TP); 892 return NodeToApply->getExtType(ResNo).EnforceFloatingPoint(TP); 895 return NodeToApply->getExtType(ResNo).EnforceVector(TP) [all...] |
DAGISelMatcher.h | 499 unsigned ResNo; 501 CheckTypeMatcher(MVT::SimpleValueType type, unsigned resno) 502 : Matcher(CheckType), Type(type), ResNo(resno) {} 505 unsigned getResNo() const { return ResNo; } [all...] |
DAGISelMatcher.cpp | 161 OS.indent(indent) << "CheckType " << getEnumName(Type) << ", ResNo=" 162 << ResNo << '\n';
|
/external/llvm/include/llvm/CodeGen/ |
SelectionDAGNodes.h | 96 unsigned ResNo; // Which return value of the node we are using. 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); [all...] |
/external/llvm/lib/Target/ARM/ |
ARMISelLowering.cpp | [all...] |