HomeSort by relevance Sort by last modified time
    Searched refs:ResNo (Results 1 - 25 of 44) sorted by null

1 2

  /external/swiftshader/third_party/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; }
InstrEmitter.h 41 void EmitCopyFromReg(SDNode *Node, unsigned ResNo,
49 unsigned ResNo) const;
LegalizeTypes.h 153 /// node with the corresponding input operand, except for the result 'ResNo',
155 SDValue DisintegrateMERGE_VALUES(SDNode *N, unsigned ResNo);
215 void PromoteIntegerResult(SDNode *N, unsigned ResNo);
216 SDValue PromoteIntRes_MERGE_VALUES(SDNode *N, unsigned ResNo);
242 SDValue PromoteIntRes_SADDSUBO(SDNode *N, unsigned ResNo);
254 SDValue PromoteIntRes_UADDSUBO(SDNode *N, unsigned ResNo);
258 SDValue PromoteIntRes_XMULO(SDNode *N, unsigned ResNo);
304 void ExpandIntegerResult(SDNode *N, unsigned ResNo);
305 void ExpandIntRes_MERGE_VALUES (SDNode *N, unsigned ResNo,
383 SDValue SoftenFloatRes_MERGE_VALUES(SDNode *N, unsigned ResNo);
    [all...]
InstrEmitter.cpp 67 EmitCopyFromReg(SDNode *Node, unsigned ResNo, bool IsClone, bool IsCloned,
72 SDValue Op(Node, ResNo);
85 EVT VT = Node->getValueType(ResNo);
98 User->getOperand(2).getResNo() == ResNo) {
108 if (Op.getNode() != Node || Op.getResNo() != ResNo)
161 SDValue Op(Node, ResNo);
172 unsigned ResNo) const {
179 User->getOperand(2).getResNo() == ResNo) {
    [all...]
LegalizeVectorTypes.cpp 34 void DAGTypeLegalizer::ScalarizeVectorResult(SDNode *N, unsigned ResNo) {
35 DEBUG(dbgs() << "Scalarize node result " << ResNo << ": ";
43 dbgs() << "ScalarizeVectorResult #" << ResNo << ": ";
50 case ISD::MERGE_VALUES: R = ScalarizeVecRes_MERGE_VALUES(N, ResNo);break;
122 SetScalarizedVector(SDValue(N, ResNo), R);
133 unsigned ResNo) {
134 SDValue Op = DisintegrateMERGE_VALUES(N, ResNo);
403 void DAGTypeLegalizer::SplitVectorResult(SDNode *N, unsigned ResNo) {
412 dbgs() << "SplitVectorResult #" << ResNo << ": ";
418 case ISD::MERGE_VALUES: SplitRes_MERGE_VALUES(N, ResNo, Lo, Hi); break
    [all...]
LegalizeFloatTypes.cpp 45 void DAGTypeLegalizer::SoftenFloatResult(SDNode *N, unsigned ResNo) {
46 DEBUG(dbgs() << "Soften float result " << ResNo << ": "; N->dump(&DAG);
53 dbgs() << "SoftenFloatResult #" << ResNo << ": ";
58 case ISD::MERGE_VALUES:R = SoftenFloatRes_MERGE_VALUES(N, ResNo); break;
104 SetSoftenedFloat(SDValue(N, ResNo), R);
112 unsigned ResNo) {
113 SDValue Op = DisintegrateMERGE_VALUES(N, ResNo);
    [all...]
  /external/swiftshader/third_party/LLVM/utils/TableGen/
CodeGenDAGPatterns.h 225 MVT::SimpleValueType getKnownType(unsigned ResNo) const;
343 MVT::SimpleValueType getType(unsigned ResNo) const {
344 return Types[ResNo].getConcrete();
347 const EEVT::TypeSet &getExtType(unsigned ResNo) const { return Types[ResNo]; }
348 EEVT::TypeSet &getExtType(unsigned ResNo) { return Types[ResNo]; }
349 void setType(unsigned ResNo, const EEVT::TypeSet &T) { Types[ResNo] = T; }
351 bool hasTypeSet(unsigned ResNo) const
    [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/lib/CodeGen/SelectionDAG/
SDNodeDbgValue.h 41 unsigned ResNo; // valid for expressions
63 u.s.ResNo = R;
96 // Returns the ResNo for a register ref
97 unsigned getResNo() const { assert (kind==SDNODE); return u.s.ResNo; }
LegalizeTypes.h 172 /// input operand, except for the result 'ResNo', for which the corresponding
174 SDValue DisintegrateMERGE_VALUES(SDNode *N, unsigned ResNo);
234 void PromoteIntegerResult(SDNode *N, unsigned ResNo);
235 SDValue PromoteIntRes_MERGE_VALUES(SDNode *N, unsigned ResNo);
240 SDValue PromoteIntRes_AtomicCmpSwap(AtomicSDNode *N, unsigned ResNo);
265 SDValue PromoteIntRes_SADDSUBO(SDNode *N, unsigned ResNo);
278 SDValue PromoteIntRes_UADDSUBO(SDNode *N, unsigned ResNo);
281 SDValue PromoteIntRes_XMULO(SDNode *N, unsigned ResNo);
329 void ExpandIntegerResult(SDNode *N, unsigned ResNo);
412 // Call ReplaceValueWith(SDValue(N, ResNo), Res) if necessary
    [all...]
InstrEmitter.h 41 void EmitCopyFromReg(SDNode *Node, unsigned ResNo,
49 unsigned ResNo) const;
LegalizeFloatTypes.cpp 49 bool DAGTypeLegalizer::SoftenFloatResult(SDNode *N, unsigned ResNo) {
50 DEBUG(dbgs() << "Soften float result " << ResNo << ": "; N->dump(&DAG);
57 dbgs() << "SoftenFloatResult #" << ResNo << ": ";
65 assert(isLegalInHWReg(N->getValueType(ResNo)) &&
68 R = SDValue(N, ResNo);
70 case ISD::MERGE_VALUES:R = SoftenFloatRes_MERGE_VALUES(N, ResNo); break;
71 case ISD::BITCAST: R = SoftenFloatRes_BITCAST(N, ResNo); break;
73 case ISD::ConstantFP: R = SoftenFloatRes_ConstantFP(N, ResNo); break;
76 case ISD::FABS: R = SoftenFloatRes_FABS(N, ResNo); break;
81 case ISD::FCOPYSIGN: R = SoftenFloatRes_FCOPYSIGN(N, ResNo); break
    [all...]
InstrEmitter.cpp 87 EmitCopyFromReg(SDNode *Node, unsigned ResNo, bool IsClone, bool IsCloned,
92 SDValue Op(Node, ResNo);
105 MVT VT = Node->getSimpleValueType(ResNo);
116 User->getOperand(2).getResNo() == ResNo) {
126 if (Op.getNode() != Node || Op.getResNo() != ResNo)
181 SDValue Op(Node, ResNo);
192 unsigned ResNo) const {
199 User->getOperand(2).getResNo() == ResNo) {
    [all...]
  /external/llvm/utils/TableGen/
CodeGenDAGPatterns.h 250 MVT::SimpleValueType getKnownType(unsigned ResNo) const;
369 MVT::SimpleValueType getType(unsigned ResNo) const {
370 return Types[ResNo].getConcrete();
373 const EEVT::TypeSet &getExtType(unsigned ResNo) const { return Types[ResNo]; }
374 EEVT::TypeSet &getExtType(unsigned ResNo) { return Types[ResNo]; }
375 void setType(unsigned ResNo, const EEVT::TypeSet &T) { Types[ResNo] = T; }
377 bool hasTypeSet(unsigned ResNo) const
    [all...]
CodeGenDAGPatterns.cpp     [all...]
  /external/llvm/include/llvm/CodeGen/
SelectionDAGNodes.h 109 unsigned ResNo; // Which return value of the node we are using.
111 SDValue() : Node(nullptr), ResNo(0) {}
112 SDValue(SDNode *node, unsigned resno);
115 unsigned getResNo() const { return ResNo; }
126 return Node == O.Node && ResNo == O.ResNo;
132 return std::tie(Node, ResNo) < std::tie(O.Node, O.ResNo);
184 /// Return true if there are no nodes using value ResNo of Node.
187 /// Return true if there is exactly one node using value ResNo of Node
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/CodeGen/
SelectionDAGNodes.h 122 unsigned ResNo = 0; // Which return value of the node we are using.
126 SDValue(SDNode *node, unsigned resno);
129 unsigned getResNo() const { return ResNo; }
140 return Node == O.Node && ResNo == O.ResNo;
146 return std::tie(Node, ResNo) < std::tie(O.Node, O.ResNo);
198 /// Return true if there are no nodes using value ResNo of Node.
201 /// Return true if there is exactly one node using value ResNo of Node.
208 V.ResNo = -1U
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/CodeGen/
SelectionDAGNodes.h 122 unsigned ResNo = 0; // Which return value of the node we are using.
126 SDValue(SDNode *node, unsigned resno);
129 unsigned getResNo() const { return ResNo; }
140 return Node == O.Node && ResNo == O.ResNo;
146 return std::tie(Node, ResNo) < std::tie(O.Node, O.ResNo);
198 /// Return true if there are no nodes using value ResNo of Node.
201 /// Return true if there is exactly one node using value ResNo of Node.
208 V.ResNo = -1U
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/CodeGen/
SelectionDAGNodes.h 122 unsigned ResNo = 0; // Which return value of the node we are using.
126 SDValue(SDNode *node, unsigned resno);
129 unsigned getResNo() const { return ResNo; }
140 return Node == O.Node && ResNo == O.ResNo;
146 return std::tie(Node, ResNo) < std::tie(O.Node, O.ResNo);
198 /// Return true if there are no nodes using value ResNo of Node.
201 /// Return true if there is exactly one node using value ResNo of Node.
208 V.ResNo = -1U
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
SelectionDAGNodes.h 122 unsigned ResNo = 0; // Which return value of the node we are using.
126 SDValue(SDNode *node, unsigned resno);
129 unsigned getResNo() const { return ResNo; }
140 return Node == O.Node && ResNo == O.ResNo;
146 return std::tie(Node, ResNo) < std::tie(O.Node, O.ResNo);
198 /// Return true if there are no nodes using value ResNo of Node.
201 /// Return true if there is exactly one node using value ResNo of Node.
208 V.ResNo = -1U
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/CodeGen/
SelectionDAGNodes.h 122 unsigned ResNo = 0; // Which return value of the node we are using.
126 SDValue(SDNode *node, unsigned resno);
129 unsigned getResNo() const { return ResNo; }
140 return Node == O.Node && ResNo == O.ResNo;
146 return std::tie(Node, ResNo) < std::tie(O.Node, O.ResNo);
198 /// Return true if there are no nodes using value ResNo of Node.
201 /// Return true if there is exactly one node using value ResNo of Node.
208 V.ResNo = -1U
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/CodeGen/
SelectionDAGNodes.h 122 unsigned ResNo = 0; // Which return value of the node we are using.
126 SDValue(SDNode *node, unsigned resno);
129 unsigned getResNo() const { return ResNo; }
140 return Node == O.Node && ResNo == O.ResNo;
146 return std::tie(Node, ResNo) < std::tie(O.Node, O.ResNo);
198 /// Return true if there are no nodes using value ResNo of Node.
201 /// Return true if there is exactly one node using value ResNo of Node.
208 V.ResNo = -1U
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/CodeGen/
SelectionDAGNodes.h 122 unsigned ResNo = 0; // Which return value of the node we are using.
126 SDValue(SDNode *node, unsigned resno);
129 unsigned getResNo() const { return ResNo; }
140 return Node == O.Node && ResNo == O.ResNo;
146 return std::tie(Node, ResNo) < std::tie(O.Node, O.ResNo);
198 /// Return true if there are no nodes using value ResNo of Node.
201 /// Return true if there is exactly one node using value ResNo of Node.
208 V.ResNo = -1U
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
SelectionDAGNodes.h 122 unsigned ResNo = 0; // Which return value of the node we are using.
126 SDValue(SDNode *node, unsigned resno);
129 unsigned getResNo() const { return ResNo; }
140 return Node == O.Node && ResNo == O.ResNo;
146 return std::tie(Node, ResNo) < std::tie(O.Node, O.ResNo);
198 /// Return true if there are no nodes using value ResNo of Node.
201 /// Return true if there is exactly one node using value ResNo of Node.
208 V.ResNo = -1U
    [all...]
  /external/swiftshader/third_party/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...]

Completed in 739 milliseconds

1 2