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

  /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; }
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));
TargetLowering.cpp     [all...]
SelectionDAGBuilder.cpp     [all...]
  /external/llvm/utils/TableGen/
DAGISelMatcher.h 501 unsigned ResNo;
503 CheckTypeMatcher(MVT::SimpleValueType type, unsigned resno)
504 : Matcher(CheckType), Type(type), ResNo(resno) {}
507 unsigned getResNo() const { return ResNo; }
    [all...]
CodeGenDAGPatterns.cpp 811 /// N, and the result number in ResNo.
814 unsigned &ResNo) {
817 ResNo = OpNo;
841 unsigned ResNo = 0; // The result number being referenced.
842 TreePatternNode *NodeToApply = getOperandNum(OperandNo, N, NodeInfo, ResNo);
847 return NodeToApply->UpdateNodeType(ResNo, x.SDTCisVT_Info.VT, TP);
850 return NodeToApply->UpdateNodeType(ResNo, MVT::iPTR, TP);
853 return NodeToApply->getExtType(ResNo).EnforceInteger(TP);
856 return NodeToApply->getExtType(ResNo).EnforceFloatingPoint(TP);
859 return NodeToApply->getExtType(ResNo).EnforceVector(TP)
    [all...]
  /external/llvm/include/llvm/CodeGen/
SelectionDAGNodes.h 92 unsigned ResNo; // Which return value of the node we are using.
94 SDValue() : Node(0), ResNo(0) {}
95 SDValue(SDNode *node, unsigned resno) : Node(node), ResNo(resno) {}
98 unsigned getResNo() const { return ResNo; }
109 return Node == O.Node && ResNo == O.ResNo;
115 return Node < O.Node || (Node == O.Node && ResNo < O.ResNo);
    [all...]
  /external/llvm/lib/Target/ARM/
ARMISelLowering.cpp     [all...]

Completed in 409 milliseconds