| //===- DAGISelMatcher.cpp - Representation of DAG pattern matcher ---------===// |
| // |
| // The LLVM Compiler Infrastructure |
| // |
| // This file is distributed under the University of Illinois Open Source |
| // License. See LICENSE.TXT for details. |
| // |
| //===----------------------------------------------------------------------===// |
| |
| #include "DAGISelMatcher.h" |
| #include "CodeGenDAGPatterns.h" |
| #include "CodeGenTarget.h" |
| #include "Record.h" |
| #include "llvm/Support/raw_ostream.h" |
| using namespace llvm; |
| |
| void MatcherNode::dump() const { |
| print(errs()); |
| } |
| |
| void EmitNodeMatcherNode::print(raw_ostream &OS, unsigned indent) const { |
| OS.indent(indent) << "EmitNode: Src = " << *Pattern.getSrcPattern() << "\n"; |
| OS.indent(indent) << "EmitNode: Dst = " << *Pattern.getDstPattern() << "\n"; |
| } |
| |
| void MatcherNode::printNext(raw_ostream &OS, unsigned indent) const { |
| if (Next) |
| return Next->print(OS, indent); |
| OS.indent(indent) << "<null next field>\n"; |
| } |
| |
| |
| void PushMatcherNode::print(raw_ostream &OS, unsigned indent) const { |
| OS.indent(indent) << "Push\n"; |
| printNext(OS, indent+2); |
| Failure->print(OS, indent); |
| } |
| |
| void RecordMatcherNode::print(raw_ostream &OS, unsigned indent) const { |
| OS.indent(indent) << "Record\n"; |
| printNext(OS, indent); |
| } |
| |
| void MoveChildMatcherNode::print(raw_ostream &OS, unsigned indent) const { |
| OS.indent(indent) << "MoveChild " << ChildNo << '\n'; |
| printNext(OS, indent); |
| } |
| |
| void MoveParentMatcherNode::print(raw_ostream &OS, unsigned indent) const { |
| OS.indent(indent) << "MoveParent\n"; |
| printNext(OS, indent); |
| } |
| |
| void CheckSameMatcherNode::print(raw_ostream &OS, unsigned indent) const { |
| OS.indent(indent) << "CheckSame " << MatchNumber << '\n'; |
| printNext(OS, indent); |
| } |
| |
| void CheckPatternPredicateMatcherNode:: |
| print(raw_ostream &OS, unsigned indent) const { |
| OS.indent(indent) << "CheckPatternPredicate " << Predicate << '\n'; |
| printNext(OS, indent); |
| } |
| |
| void CheckPredicateMatcherNode::print(raw_ostream &OS, unsigned indent) const { |
| OS.indent(indent) << "CheckPredicate " << PredName << '\n'; |
| printNext(OS, indent); |
| } |
| |
| void CheckOpcodeMatcherNode::print(raw_ostream &OS, unsigned indent) const { |
| OS.indent(indent) << "CheckOpcode " << OpcodeName << '\n'; |
| printNext(OS, indent); |
| } |
| |
| void CheckTypeMatcherNode::print(raw_ostream &OS, unsigned indent) const { |
| OS.indent(indent) << "CheckType " << getEnumName(Type) << '\n'; |
| printNext(OS, indent); |
| } |
| |
| void CheckIntegerMatcherNode::print(raw_ostream &OS, unsigned indent) const { |
| OS.indent(indent) << "CheckInteger " << Value << '\n'; |
| printNext(OS, indent); |
| } |
| |
| void CheckCondCodeMatcherNode::print(raw_ostream &OS, unsigned indent) const { |
| OS.indent(indent) << "CheckCondCode ISD::" << CondCodeName << '\n'; |
| printNext(OS, indent); |
| } |
| |
| void CheckValueTypeMatcherNode::print(raw_ostream &OS, unsigned indent) const { |
| OS.indent(indent) << "CheckValueType MVT::" << TypeName << '\n'; |
| printNext(OS, indent); |
| } |
| |
| void CheckComplexPatMatcherNode::print(raw_ostream &OS, unsigned indent) const { |
| OS.indent(indent) << "CheckComplexPat " << Pattern.getSelectFunc() << '\n'; |
| printNext(OS, indent); |
| } |
| |
| void CheckAndImmMatcherNode::print(raw_ostream &OS, unsigned indent) const { |
| OS.indent(indent) << "CheckAndImm " << Value << '\n'; |
| printNext(OS, indent); |
| } |
| |
| void CheckOrImmMatcherNode::print(raw_ostream &OS, unsigned indent) const { |
| OS.indent(indent) << "CheckOrImm " << Value << '\n'; |
| printNext(OS, indent); |
| } |
| |
| void CheckFoldableChainNodeMatcherNode::print(raw_ostream &OS, |
| unsigned indent) const { |
| OS.indent(indent) << "CheckFoldableChainNode\n"; |
| printNext(OS, indent); |
| } |
| |
| void CheckChainCompatibleMatcherNode::print(raw_ostream &OS, |
| unsigned indent) const { |
| OS.indent(indent) << "CheckChainCompatibleMatcherNode " << PreviousOp << "\n"; |
| printNext(OS, indent); |
| } |
| |
| void EmitIntegerMatcherNode::print(raw_ostream &OS, unsigned indent) const { |
| OS.indent(indent) << "EmitIntegerMatcherNode " << Val << " VT=" << VT << '\n'; |
| printNext(OS, indent); |
| } |
| |
| void EmitRegisterMatcherNode::print(raw_ostream &OS, unsigned indent) const { |
| OS.indent(indent) << "EmitRegisterMatcherNode "; |
| if (Reg) |
| OS << Reg->getName(); |
| else |
| OS << "zero_reg"; |
| OS << " VT=" << VT << '\n'; |
| printNext(OS, indent); |
| } |
| |