HomeSort by relevance Sort by last modified time
    Searched defs:ResNo (Results 1 - 7 of 7) 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; }
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...]
TargetLowering.cpp     [all...]
  /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/utils/TableGen/
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...]
CodeGenDAGPatterns.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMISelLowering.cpp     [all...]

Completed in 1135 milliseconds