Home
last modified time | relevance | path

Searched refs:ChildNo (Results 1 – 5 of 5) sorted by relevance

/external/llvm/utils/TableGen/
DDAGISelMatcher.h265 unsigned ChildNo; variable
277 : Matcher(RecordChild), ChildNo(childno), WhatFor(whatfor), in RecordChildMatcher()
280 unsigned getChildNo() const { return ChildNo; } in getChildNo()
337 unsigned ChildNo; variable
339 MoveChildMatcher(unsigned childNo) : Matcher(MoveChild), ChildNo(childNo) {} in MoveChildMatcher()
341 unsigned getChildNo() const { return ChildNo; } in getChildNo()
404 unsigned ChildNo; variable
408 : Matcher(CheckChildSame), ChildNo(childno), MatchNumber(matchnumber) {} in CheckChildSameMatcher()
410 unsigned getChildNo() const { return ChildNo; } in getChildNo()
422 return cast<CheckChildSameMatcher>(M)->ChildNo == ChildNo && in isEqualImpl()
[all …]
DDAGISelMatcher.cpp123 OS.indent(indent) << "RecordChild: " << ChildNo << '\n'; in printImpl()
135 OS.indent(indent) << "MoveChild " << ChildNo << '\n'; in printImpl()
147 OS.indent(indent) << "CheckChild" << ChildNo << "Same\n"; in printImpl()
188 OS.indent(indent) << "CheckChildType " << ChildNo << " " in printImpl()
199 OS.indent(indent) << "CheckChildInteger " << ChildNo << " " << Value << '\n'; in printImpl()
DDAGISelMatcherGen.cpp770 unsigned ChildNo = 0; in EmitResultInstructionAsOperand() local
801 const TreePatternNode *Child = N->getChild(ChildNo); in EmitResultInstructionAsOperand()
811 ++ChildNo; in EmitResultInstructionAsOperand()
821 for (unsigned I = ChildNo, E = N->getNumChildren(); I < E; ++I) in EmitResultInstructionAsOperand()
DCodeGenDAGPatterns.cpp1885 unsigned ChildNo = 0; in ApplyTypeConstraints() local
1897 if (ChildNo >= getNumChildren()) { in ApplyTypeConstraints()
1902 TreePatternNode *Child = getChild(ChildNo++); in ApplyTypeConstraints()
1921 if (ChildNo >= getNumChildren()) { in ApplyTypeConstraints()
1926 Child = getChild(ChildNo++); in ApplyTypeConstraints()
1942 if (!InstInfo.Operands.isVariadic && ChildNo != getNumChildren()) { in ApplyTypeConstraints()
1944 ChildNo, getNumChildren()); in ApplyTypeConstraints()
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGISel.cpp2344 unsigned ChildNo) { in CheckChildSame() argument
2345 if (ChildNo >= N.getNumOperands()) in CheckChildSame()
2347 return ::CheckSame(MatcherTable, MatcherIndex, N.getOperand(ChildNo), in CheckChildSame()
2386 unsigned ChildNo) { in CheckChildType() argument
2387 if (ChildNo >= N.getNumOperands()) in CheckChildType()
2389 return ::CheckType(MatcherTable, MatcherIndex, N.getOperand(ChildNo), TLI, in CheckChildType()
2424 SDValue N, unsigned ChildNo) { in CheckChildInteger() argument
2425 if (ChildNo >= N.getNumOperands()) in CheckChildInteger()
2427 return ::CheckInteger(MatcherTable, MatcherIndex, N.getOperand(ChildNo)); in CheckChildInteger()
2788 unsigned ChildNo = Opcode-OPC_RecordChild0; in SelectCodeCommon() local
[all …]