HomeSort by relevance Sort by last modified time
    Searched refs:ResNo (Results 1 - 18 of 18) sorted by null

  /external/llvm/lib/CodeGen/SelectionDAG/
SDNodeDbgValue.h 41 unsigned ResNo; // valid for expressions
62 u.s.ResNo = R;
93 // Returns the ResNo for a register ref
94 unsigned getResNo() const { assert (kind==SDNODE); return u.s.ResNo; }
LegalizeTypes.h 177 /// node with the corresponding input operand, except for the result 'ResNo',
179 SDValue DisintegrateMERGE_VALUES(SDNode *N, unsigned ResNo);
241 void PromoteIntegerResult(SDNode *N, unsigned ResNo);
242 SDValue PromoteIntRes_MERGE_VALUES(SDNode *N, unsigned ResNo);
247 SDValue PromoteIntRes_AtomicCmpSwap(AtomicSDNode *N, unsigned ResNo);
271 SDValue PromoteIntRes_SADDSUBO(SDNode *N, unsigned ResNo);
284 SDValue PromoteIntRes_UADDSUBO(SDNode *N, unsigned ResNo);
287 SDValue PromoteIntRes_XMULO(SDNode *N, unsigned ResNo);
335 void ExpandIntegerResult(SDNode *N, unsigned ResNo);
416 // Call ReplaceValueWith(SDValue(N, ResNo), Res) if necessary
    [all...]
InstrEmitter.h 41 void EmitCopyFromReg(SDNode *Node, unsigned ResNo,
49 unsigned ResNo) const;
LegalizeFloatTypes.cpp 49 bool DAGTypeLegalizer::SoftenFloatResult(SDNode *N, unsigned ResNo) {
50 DEBUG(dbgs() << "Soften float result " << ResNo << ": "; N->dump(&DAG);
57 dbgs() << "SoftenFloatResult #" << ResNo << ": ";
65 assert(isLegalInHWReg(N->getValueType(ResNo)) &&
68 R = SDValue(N, ResNo);
70 case ISD::MERGE_VALUES:R = SoftenFloatRes_MERGE_VALUES(N, ResNo); break;
71 case ISD::BITCAST: R = SoftenFloatRes_BITCAST(N, ResNo); break;
73 case ISD::ConstantFP: R = SoftenFloatRes_ConstantFP(N, ResNo); break;
76 case ISD::FABS: R = SoftenFloatRes_FABS(N, ResNo); break;
81 case ISD::FCOPYSIGN: R = SoftenFloatRes_FCOPYSIGN(N, ResNo); break
    [all...]
InstrEmitter.cpp 86 EmitCopyFromReg(SDNode *Node, unsigned ResNo, bool IsClone, bool IsCloned,
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) {
    [all...]
LegalizeIntegerTypes.cpp 37 void DAGTypeLegalizer::PromoteIntegerResult(SDNode *N, unsigned ResNo) {
42 if (CustomLowerNode(N, N->getValueType(ResNo), true))
48 dbgs() << "PromoteIntegerResult #" << ResNo << ": ";
52 case ISD::MERGE_VALUES:Res = PromoteIntRes_MERGE_VALUES(N, ResNo); break;
128 case ISD::SSUBO: Res = PromoteIntRes_SADDSUBO(N, ResNo); break;
130 case ISD::USUBO: Res = PromoteIntRes_UADDSUBO(N, ResNo); break;
132 case ISD::UMULO: Res = PromoteIntRes_XMULO(N, ResNo); break;
152 Res = PromoteIntRes_AtomicCmpSwap(cast<AtomicSDNode>(N), ResNo);
158 SetPromotedInteger(SDValue(N, ResNo), Res);
162 unsigned ResNo) {
    [all...]
LegalizeTypesGeneric.cpp 35 void DAGTypeLegalizer::ExpandRes_MERGE_VALUES(SDNode *N, unsigned ResNo,
37 SDValue Op = DisintegrateMERGE_VALUES(N, ResNo);
517 void DAGTypeLegalizer::SplitRes_MERGE_VALUES(SDNode *N, unsigned ResNo,
519 SDValue Op = DisintegrateMERGE_VALUES(N, ResNo);
ScheduleDAGSDNodes.cpp 121 unsigned ResNo = User->getOperand(2).getResNo();
127 if (ResNo >= II.getNumDefs() &&
128 II.ImplicitDefs[ResNo - II.getNumDefs()] == Reg)
134 TRI->getMinimalPhysRegClass(Reg, Def->getSimpleValueType(ResNo));
    [all...]
LegalizeVectorTypes.cpp 35 void DAGTypeLegalizer::ScalarizeVectorResult(SDNode *N, unsigned ResNo) {
36 DEBUG(dbgs() << "Scalarize node result " << ResNo << ": ";
44 dbgs() << "ScalarizeVectorResult #" << ResNo << ": ";
51 case ISD::MERGE_VALUES: R = ScalarizeVecRes_MERGE_VALUES(N, ResNo);break;
142 SetScalarizedVector(SDValue(N, ResNo), R);
161 unsigned ResNo) {
162 SDValue Op = DisintegrateMERGE_VALUES(N, ResNo);
572 void DAGTypeLegalizer::SplitVectorResult(SDNode *N, unsigned ResNo) {
579 if (CustomLowerNode(N, N->getValueType(ResNo), true))
585 dbgs() << "SplitVectorResult #" << ResNo << ": "
    [all...]
LegalizeTypes.cpp     [all...]
TargetLowering.cpp     [all...]
SelectionDAGBuilder.cpp     [all...]
  /external/llvm/utils/TableGen/
CodeGenDAGPatterns.h 250 MVT::SimpleValueType getKnownType(unsigned ResNo) const;
369 MVT::SimpleValueType getType(unsigned ResNo) const {
370 return Types[ResNo].getConcrete();
373 const EEVT::TypeSet &getExtType(unsigned ResNo) const { return Types[ResNo]; }
374 EEVT::TypeSet &getExtType(unsigned ResNo) { return Types[ResNo]; }
375 void setType(unsigned ResNo, const EEVT::TypeSet &T) { Types[ResNo] = T; }
377 bool hasTypeSet(unsigned ResNo) const
    [all...]
CodeGenDAGPatterns.cpp     [all...]
DAGISelMatcher.h 532 unsigned ResNo;
534 CheckTypeMatcher(MVT::SimpleValueType type, unsigned resno)
535 : Matcher(CheckType), Type(type), ResNo(resno) {}
538 unsigned getResNo() const { return ResNo; }
    [all...]
DAGISelMatcher.cpp 174 OS.indent(indent) << "CheckType " << getEnumName(Type) << ", ResNo="
175 << ResNo << '\n';
  /external/llvm/include/llvm/CodeGen/
SelectionDAGNodes.h 105 unsigned ResNo; // Which return value of the node we are using.
107 SDValue() : Node(nullptr), ResNo(0) {}
108 SDValue(SDNode *node, unsigned resno);
111 unsigned getResNo() const { return ResNo; }
122 return Node == O.Node && ResNo == O.ResNo;
128 return std::tie(Node, ResNo) < std::tie(O.Node, O.ResNo);
180 /// Return true if there are no nodes using value ResNo of Node.
183 /// Return true if there is exactly one node using value ResNo of Node
    [all...]
  /external/llvm/lib/Target/ARM/
ARMISelLowering.cpp     [all...]

Completed in 1321 milliseconds