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 113 unsigned ResNo = User->getOperand(2).getResNo();
116 if (ResNo >= II.getNumDefs() &&
117 II.ImplicitDefs[ResNo - II.getNumDefs()] == Reg) {
120 TRI->getMinimalPhysRegClass(Reg, Def->getValueType(ResNo));
TargetLowering.cpp     [all...]
SelectionDAGBuilder.cpp     [all...]
  /external/llvm/utils/TableGen/
DAGISelMatcher.h 500 unsigned ResNo;
502 CheckTypeMatcher(MVT::SimpleValueType type, unsigned resno)
503 : Matcher(CheckType), Type(type), ResNo(resno) {}
506 unsigned getResNo() const { return ResNo; }
    [all...]
CodeGenDAGPatterns.cpp 808 /// N, and the result number in ResNo.
811 unsigned &ResNo) {
814 ResNo = OpNo;
838 unsigned ResNo = 0; // The result number being referenced.
839 TreePatternNode *NodeToApply = getOperandNum(OperandNo, N, NodeInfo, ResNo);
845 return NodeToApply->UpdateNodeType(ResNo, x.SDTCisVT_Info.VT, TP);
848 return NodeToApply->UpdateNodeType(ResNo, MVT::iPTR, TP);
851 return NodeToApply->getExtType(ResNo).EnforceInteger(TP);
854 return NodeToApply->getExtType(ResNo).EnforceFloatingPoint(TP);
857 return NodeToApply->getExtType(ResNo).EnforceVector(TP)
    [all...]
  /external/llvm/include/llvm/CodeGen/
SelectionDAGNodes.h 91 unsigned ResNo; // Which return value of the node we are using.
93 SDValue() : Node(0), ResNo(0) {}
94 SDValue(SDNode *node, unsigned resno) : Node(node), ResNo(resno) {}
97 unsigned getResNo() const { return ResNo; }
108 return Node == O.Node && ResNo == O.ResNo;
114 return Node < O.Node || (Node == O.Node && ResNo < O.ResNo);
    [all...]
  /external/llvm/lib/Target/ARM/
ARMISelLowering.cpp     [all...]

Completed in 270 milliseconds