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));
    [all...]
TargetLowering.cpp     [all...]
SelectionDAGBuilder.cpp     [all...]
  /external/llvm/utils/TableGen/
DAGISelMatcher.h 499 unsigned ResNo;
501 CheckTypeMatcher(MVT::SimpleValueType type, unsigned resno)
502 : Matcher(CheckType), Type(type), ResNo(resno) {}
505 unsigned getResNo() const { return ResNo; }
    [all...]
CodeGenDAGPatterns.cpp 845 /// N, and the result number in ResNo.
848 unsigned &ResNo) {
851 ResNo = OpNo;
877 unsigned ResNo = 0; // The result number being referenced.
878 TreePatternNode *NodeToApply = getOperandNum(OperandNo, N, NodeInfo, ResNo);
883 return NodeToApply->UpdateNodeType(ResNo, x.SDTCisVT_Info.VT, TP);
886 return NodeToApply->UpdateNodeType(ResNo, MVT::iPTR, TP);
889 return NodeToApply->getExtType(ResNo).EnforceInteger(TP);
892 return NodeToApply->getExtType(ResNo).EnforceFloatingPoint(TP);
895 return NodeToApply->getExtType(ResNo).EnforceVector(TP)
    [all...]
  /external/llvm/include/llvm/CodeGen/
SelectionDAGNodes.h 96 unsigned ResNo; // Which return value of the node we are using.
98 SDValue() : Node(0), ResNo(0) {}
99 SDValue(SDNode *node, unsigned resno) : Node(node), ResNo(resno) {}
102 unsigned getResNo() const { return ResNo; }
113 return Node == O.Node && ResNo == O.ResNo;
119 return Node < O.Node || (Node == O.Node && ResNo < O.ResNo);
    [all...]
  /external/llvm/lib/Target/ARM/
ARMISelLowering.cpp     [all...]

Completed in 2693 milliseconds