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 42 unsigned ResNo; // valid for expressions
62 u.s.ResNo = R;
91 // Returns the ResNo for a register ref
92 unsigned getResNo() { assert (kind==SDNODE); return u.s.ResNo; }
ScheduleDAGSDNodes.cpp 122 unsigned ResNo = User->getOperand(2).getResNo();
125 if (ResNo >= II.getNumDefs() &&
126 II.ImplicitDefs[ResNo - II.getNumDefs()] == Reg) {
129 TRI->getMinimalPhysRegClass(Reg, Def->getValueType(ResNo));
    [all...]
TargetLowering.cpp     [all...]
  /external/llvm/utils/TableGen/
DAGISelMatcher.h 531 unsigned ResNo;
533 CheckTypeMatcher(MVT::SimpleValueType type, unsigned resno)
534 : Matcher(CheckType), Type(type), ResNo(resno) {}
537 unsigned getResNo() const { return ResNo; }
    [all...]
CodeGenDAGPatterns.cpp 849 /// N, and the result number in ResNo.
852 unsigned &ResNo) {
855 ResNo = OpNo;
881 unsigned ResNo = 0; // The result number being referenced.
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).EnforceVector(TP)
    [all...]
  /external/llvm/include/llvm/CodeGen/
SelectionDAGNodes.h 121 unsigned ResNo; // Which return value of the node we are using.
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);
    [all...]
  /external/llvm/lib/Target/ARM/
ARMISelLowering.cpp     [all...]

Completed in 471 milliseconds