diff options
author | Chris Lattner <sabre@nondot.org> | 2005-09-23 21:53:45 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-09-23 21:53:45 +0000 |
commit | 547394ca38d75d9784498afa6963efc0f9818f7d (patch) | |
tree | 5c311838b91b74f89e7d15ff63f536b0236cdd53 /utils/TableGen | |
parent | d1ff35a49d1a8bfbcbaaec259ea368848d599a03 (diff) | |
download | external_llvm-547394ca38d75d9784498afa6963efc0f9818f7d.zip external_llvm-547394ca38d75d9784498afa6963efc0f9818f7d.tar.gz external_llvm-547394ca38d75d9784498afa6963efc0f9818f7d.tar.bz2 |
Fix a fixme by passing around SDOperand's instead of SDNode*'s
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23415 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen')
-rw-r--r-- | utils/TableGen/DAGISelEmitter.cpp | 29 |
1 files changed, 14 insertions, 15 deletions
diff --git a/utils/TableGen/DAGISelEmitter.cpp b/utils/TableGen/DAGISelEmitter.cpp index d888c90..5c664ed 100644 --- a/utils/TableGen/DAGISelEmitter.cpp +++ b/utils/TableGen/DAGISelEmitter.cpp @@ -994,13 +994,13 @@ void DAGISelEmitter::EmitMatchForPattern(TreePatternNode *N, assert(!N->isLeaf() && "Cannot match against a leaf!"); // Emit code to load the child nodes and match their contents recursively. for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i) { - OS << " SDNode *" << RootName << i <<" = " << RootName - << "->getOperand(" << i << ").Val;\n"; + OS << " SDOperand " << RootName << i <<" = " << RootName + << ".getOperand(" << i << ");\n"; TreePatternNode *Child = N->getChild(i); if (!Child->isLeaf()) { // If it's not a leaf, recursively match. const SDNodeInfo &CInfo = getSDNodeInfo(Child->getOperator()); - OS << " if (" << RootName << i << "->getOpcode() != " + OS << " if (" << RootName << i << ".getOpcode() != " << CInfo.getEnumName() << ") goto P" << PatternNo << "Fail;\n"; EmitMatchForPattern(Child, RootName + utostr(i), PatternNo, OS); } else { @@ -1022,14 +1022,14 @@ void DAGISelEmitter::EmitMatchForPattern(TreePatternNode *N, // If this child has a name associated with it, capture it as a variable. if (!Child->getName().empty()) - OS << " SDOperand op" << Child->getName() << "(" << RootName - << i << ", 0 /*FIXME*/);\n"; + OS << " SDOperand op" << Child->getName() << " = " << RootName + << i << ";\n"; } // If there is a node predicate for this, emit the call. if (!N->getPredicateFn().empty()) OS << " if (!" << N->getPredicateFn() << "(" << RootName - << ")) goto P" << PatternNo << "Fail;\n"; + << ".Val)) goto P" << PatternNo << "Fail;\n"; } /// EmitCodeForPattern - Given a pattern to match, emit code to the specified @@ -1090,18 +1090,17 @@ struct PatternSortingPredicate { void DAGISelEmitter::EmitInstructionSelector(std::ostream &OS) { // Emit boilerplate. OS << "// The main instruction selector code.\n" - << "SDOperand SelectCode(SDOperand Op) {\n" - << " SDNode *N = Op.Val;\n" - << " if (N->getOpcode() >= ISD::BUILTIN_OP_END &&\n" - << " N->getOpcode() < PPCISD::FIRST_NUMBER)\n" - << " return Op; // Already selected.\n\n" - << " switch (N->getOpcode()) {\n" + << "SDOperand SelectCode(SDOperand N) {\n" + << " if (N.getOpcode() >= ISD::BUILTIN_OP_END &&\n" + << " N.getOpcode() < PPCISD::FIRST_NUMBER)\n" + << " return N; // Already selected.\n\n" + << " switch (N.getOpcode()) {\n" << " default: break;\n" << " case ISD::EntryToken: // These leaves remain the same.\n" - << " return Op;\n" + << " return N;\n" << " case ISD::AssertSext:\n" << " case ISD::AssertZext:\n" - << " return Select(N->getOperand(0));\n"; + << " return Select(N.getOperand(0));\n"; // Group the patterns by their top-level opcodes. std::map<Record*, std::vector<PatternToMatch*> > PatternsByOpcode; @@ -1132,7 +1131,7 @@ void DAGISelEmitter::EmitInstructionSelector(std::ostream &OS) { OS << " } // end of big switch.\n\n" << " std::cerr << \"Cannot yet select: \";\n" - << " N->dump();\n" + << " N.Val->dump();\n" << " std::cerr << '\\n';\n" << " abort();\n" << "}\n"; |