2010-02-15 16:04:42 +08:00
|
|
|
//===- DAGISelMatcherEmitter.cpp - Matcher Emitter ------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file contains code to generate C++ code a matcher.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "DAGISelMatcher.h"
|
|
|
|
#include "CodeGenDAGPatterns.h"
|
2010-02-17 08:31:50 +08:00
|
|
|
#include "llvm/ADT/DenseMap.h"
|
2010-02-15 16:04:42 +08:00
|
|
|
#include "llvm/ADT/SmallString.h"
|
2010-02-16 15:21:10 +08:00
|
|
|
#include "llvm/ADT/StringMap.h"
|
2010-02-15 16:04:42 +08:00
|
|
|
#include "llvm/Support/FormattedStream.h"
|
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
enum {
|
|
|
|
CommentIndent = 25
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
/// ClassifyInt - Classify an integer by size, return '1','2','4','8' if this
|
|
|
|
/// fits in 1, 2, 4, or 8 sign extended bytes.
|
|
|
|
static char ClassifyInt(int64_t Val) {
|
|
|
|
if (Val == int8_t(Val)) return '1';
|
|
|
|
if (Val == int16_t(Val)) return '2';
|
|
|
|
if (Val == int32_t(Val)) return '4';
|
|
|
|
return '8';
|
|
|
|
}
|
|
|
|
|
|
|
|
/// EmitInt - Emit the specified integer, returning the number of bytes emitted.
|
|
|
|
static unsigned EmitInt(int64_t Val, formatted_raw_ostream &OS) {
|
|
|
|
unsigned BytesEmitted = 1;
|
|
|
|
OS << (int)(unsigned char)Val << ", ";
|
|
|
|
if (Val == int8_t(Val)) {
|
|
|
|
OS << "\n";
|
|
|
|
return BytesEmitted;
|
|
|
|
}
|
|
|
|
|
|
|
|
OS << (int)(unsigned char)(Val >> 8) << ", ";
|
|
|
|
++BytesEmitted;
|
|
|
|
|
|
|
|
if (Val != int16_t(Val)) {
|
|
|
|
OS << (int)(unsigned char)(Val >> 16) << ','
|
|
|
|
<< (int)(unsigned char)(Val >> 24) << ',';
|
|
|
|
BytesEmitted += 2;
|
|
|
|
|
|
|
|
if (Val != int32_t(Val)) {
|
|
|
|
OS << (int)(unsigned char)(Val >> 32) << ','
|
|
|
|
<< (int)(unsigned char)(Val >> 40) << ','
|
|
|
|
<< (int)(unsigned char)(Val >> 48) << ','
|
|
|
|
<< (int)(unsigned char)(Val >> 56) << ',';
|
|
|
|
BytesEmitted += 4;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
OS.PadToColumn(CommentIndent) << "// " << Val << '\n';
|
|
|
|
return BytesEmitted;
|
|
|
|
}
|
|
|
|
|
2010-02-16 14:52:01 +08:00
|
|
|
namespace {
|
|
|
|
class MatcherTableEmitter {
|
|
|
|
formatted_raw_ostream &OS;
|
2010-02-16 15:21:10 +08:00
|
|
|
|
|
|
|
StringMap<unsigned> NodePredicateMap, PatternPredicateMap;
|
|
|
|
std::vector<std::string> NodePredicates, PatternPredicates;
|
2010-02-17 08:31:50 +08:00
|
|
|
|
|
|
|
DenseMap<const ComplexPattern*, unsigned> ComplexPatternMap;
|
|
|
|
std::vector<const ComplexPattern*> ComplexPatterns;
|
2010-02-16 14:52:01 +08:00
|
|
|
public:
|
|
|
|
MatcherTableEmitter(formatted_raw_ostream &os) : OS(os) {}
|
|
|
|
|
|
|
|
unsigned EmitMatcherAndChildren(const MatcherNode *N, unsigned Indent);
|
2010-02-16 15:21:10 +08:00
|
|
|
|
|
|
|
void EmitPredicateFunctions();
|
2010-02-16 14:52:01 +08:00
|
|
|
private:
|
|
|
|
unsigned EmitMatcher(const MatcherNode *N, unsigned Indent);
|
2010-02-16 15:21:10 +08:00
|
|
|
|
|
|
|
unsigned getNodePredicate(StringRef PredName) {
|
|
|
|
unsigned &Entry = NodePredicateMap[PredName];
|
|
|
|
if (Entry == 0) {
|
|
|
|
NodePredicates.push_back(PredName.str());
|
|
|
|
Entry = NodePredicates.size();
|
|
|
|
}
|
|
|
|
return Entry-1;
|
|
|
|
}
|
|
|
|
unsigned getPatternPredicate(StringRef PredName) {
|
|
|
|
unsigned &Entry = PatternPredicateMap[PredName];
|
|
|
|
if (Entry == 0) {
|
|
|
|
PatternPredicates.push_back(PredName.str());
|
|
|
|
Entry = PatternPredicates.size();
|
|
|
|
}
|
|
|
|
return Entry-1;
|
|
|
|
}
|
2010-02-17 08:31:50 +08:00
|
|
|
|
|
|
|
unsigned getComplexPat(const ComplexPattern &P) {
|
|
|
|
unsigned &Entry = ComplexPatternMap[&P];
|
|
|
|
if (Entry == 0) {
|
|
|
|
ComplexPatterns.push_back(&P);
|
|
|
|
Entry = ComplexPatterns.size();
|
|
|
|
}
|
|
|
|
return Entry-1;
|
|
|
|
}
|
2010-02-16 14:52:01 +08:00
|
|
|
};
|
|
|
|
} // end anonymous namespace.
|
|
|
|
|
2010-02-15 16:04:42 +08:00
|
|
|
/// EmitMatcherOpcodes - Emit bytes for the specified matcher and return
|
|
|
|
/// the number of bytes emitted.
|
2010-02-16 14:52:01 +08:00
|
|
|
unsigned MatcherTableEmitter::
|
|
|
|
EmitMatcher(const MatcherNode *N, unsigned Indent) {
|
2010-02-15 16:04:42 +08:00
|
|
|
OS.PadToColumn(Indent*2);
|
|
|
|
|
|
|
|
switch (N->getKind()) {
|
|
|
|
case MatcherNode::Push: assert(0 && "Should be handled by caller");
|
|
|
|
case MatcherNode::EmitNode:
|
|
|
|
OS << "OPC_Emit, /*XXX*/";
|
|
|
|
OS.PadToColumn(CommentIndent) << "// Src: "
|
|
|
|
<< *cast<EmitNodeMatcherNode>(N)->getPattern().getSrcPattern() << '\n';
|
|
|
|
OS.PadToColumn(CommentIndent) << "// Dst: "
|
|
|
|
<< *cast<EmitNodeMatcherNode>(N)->getPattern().getDstPattern() << '\n';
|
|
|
|
return 1;
|
|
|
|
case MatcherNode::Record:
|
|
|
|
OS << "OPC_Record,\n";
|
|
|
|
return 1;
|
|
|
|
case MatcherNode::MoveChild:
|
|
|
|
OS << "OPC_MoveChild, "
|
|
|
|
<< cast<MoveChildMatcherNode>(N)->getChildNo() << ",\n";
|
|
|
|
return 2;
|
|
|
|
|
|
|
|
case MatcherNode::MoveParent:
|
|
|
|
OS << "OPC_MoveParent,\n";
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
case MatcherNode::CheckSame:
|
|
|
|
OS << "OPC_CheckSame, "
|
|
|
|
<< cast<CheckSameMatcherNode>(N)->getMatchNumber() << ",\n";
|
|
|
|
return 2;
|
|
|
|
|
2010-02-16 15:21:10 +08:00
|
|
|
case MatcherNode::CheckPatternPredicate: {
|
|
|
|
StringRef Pred = cast<CheckPatternPredicateMatcherNode>(N)->getPredicate();
|
|
|
|
OS << "OPC_CheckPatternPredicate, " << getPatternPredicate(Pred) << ',';
|
|
|
|
OS.PadToColumn(CommentIndent) << "// " << Pred << '\n';
|
2010-02-15 16:04:42 +08:00
|
|
|
return 2;
|
2010-02-16 15:21:10 +08:00
|
|
|
}
|
|
|
|
case MatcherNode::CheckPredicate: {
|
|
|
|
StringRef Pred = cast<CheckPredicateMatcherNode>(N)->getPredicateName();
|
|
|
|
OS << "OPC_CheckPredicate, " << getNodePredicate(Pred) << ',';
|
|
|
|
OS.PadToColumn(CommentIndent) << "// " << Pred << '\n';
|
2010-02-15 16:04:42 +08:00
|
|
|
return 2;
|
2010-02-16 15:21:10 +08:00
|
|
|
}
|
|
|
|
|
2010-02-15 16:04:42 +08:00
|
|
|
case MatcherNode::CheckOpcode:
|
|
|
|
OS << "OPC_CheckOpcode, "
|
|
|
|
<< cast<CheckOpcodeMatcherNode>(N)->getOpcodeName() << ",\n";
|
|
|
|
return 2;
|
|
|
|
|
|
|
|
case MatcherNode::CheckType:
|
|
|
|
OS << "OPC_CheckType, "
|
|
|
|
<< getEnumName(cast<CheckTypeMatcherNode>(N)->getType()) << ",\n";
|
|
|
|
return 2;
|
|
|
|
|
|
|
|
case MatcherNode::CheckInteger: {
|
|
|
|
int64_t Val = cast<CheckIntegerMatcherNode>(N)->getValue();
|
|
|
|
OS << "OPC_CheckInteger" << ClassifyInt(Val) << ", ";
|
|
|
|
return EmitInt(Val, OS)+1;
|
|
|
|
}
|
|
|
|
case MatcherNode::CheckCondCode:
|
|
|
|
OS << "OPC_CheckCondCode, ISD::"
|
|
|
|
<< cast<CheckCondCodeMatcherNode>(N)->getCondCodeName() << ",\n";
|
|
|
|
return 2;
|
|
|
|
|
|
|
|
case MatcherNode::CheckValueType:
|
|
|
|
OS << "OPC_CheckValueType, MVT::"
|
|
|
|
<< cast<CheckValueTypeMatcherNode>(N)->getTypeName() << ",\n";
|
|
|
|
return 2;
|
|
|
|
|
|
|
|
case MatcherNode::CheckComplexPat:
|
2010-02-17 08:31:50 +08:00
|
|
|
OS << "OPC_CheckComplexPat, "
|
|
|
|
<< getComplexPat(cast<CheckComplexPatMatcherNode>(N)->getPattern())
|
|
|
|
<< ",\n";
|
2010-02-15 16:04:42 +08:00
|
|
|
return 2;
|
|
|
|
|
|
|
|
case MatcherNode::CheckAndImm: {
|
|
|
|
int64_t Val = cast<CheckAndImmMatcherNode>(N)->getValue();
|
|
|
|
OS << "OPC_CheckAndImm" << ClassifyInt(Val) << ", ";
|
|
|
|
return EmitInt(Val, OS)+1;
|
|
|
|
}
|
|
|
|
|
|
|
|
case MatcherNode::CheckOrImm: {
|
|
|
|
int64_t Val = cast<CheckOrImmMatcherNode>(N)->getValue();
|
|
|
|
OS << "OPC_CheckOrImm" << ClassifyInt(Val) << ", ";
|
|
|
|
return EmitInt(Val, OS)+1;
|
|
|
|
}
|
2010-02-17 03:15:55 +08:00
|
|
|
case MatcherNode::CheckFoldableChainNode:
|
|
|
|
OS << "OPC_CheckFoldableChainNode,\n";
|
2010-02-16 14:10:58 +08:00
|
|
|
return 1;
|
2010-02-15 16:04:42 +08:00
|
|
|
}
|
|
|
|
assert(0 && "Unreachable");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// EmitMatcherAndChildren - Emit the bytes for the specified matcher subtree.
|
2010-02-16 14:52:01 +08:00
|
|
|
unsigned MatcherTableEmitter::
|
|
|
|
EmitMatcherAndChildren(const MatcherNode *N, unsigned Indent) {
|
2010-02-15 16:04:42 +08:00
|
|
|
unsigned Size = 0;
|
|
|
|
while (1) {
|
|
|
|
// Push is a special case since it is binary.
|
|
|
|
if (const PushMatcherNode *PMN = dyn_cast<PushMatcherNode>(N)) {
|
|
|
|
// We need to encode the child and the offset of the failure code before
|
|
|
|
// emitting either of them. Handle this by buffering the output into a
|
|
|
|
// string while we get the size.
|
|
|
|
SmallString<128> TmpBuf;
|
|
|
|
unsigned ChildSize;
|
|
|
|
{
|
|
|
|
raw_svector_ostream OS(TmpBuf);
|
|
|
|
formatted_raw_ostream FOS(OS);
|
|
|
|
ChildSize =
|
2010-02-16 14:52:01 +08:00
|
|
|
EmitMatcherAndChildren(cast<PushMatcherNode>(N)->getChild(),Indent+1);
|
2010-02-15 16:04:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (ChildSize > 255) {
|
|
|
|
errs() <<
|
|
|
|
"Tblgen internal error: can't handle predicate this complex yet\n";
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
OS.PadToColumn(Indent*2);
|
|
|
|
OS << "OPC_Push, " << ChildSize << ",\n";
|
|
|
|
OS << TmpBuf.str();
|
|
|
|
|
|
|
|
Size += 2 + ChildSize;
|
|
|
|
|
|
|
|
N = PMN->getFailure();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2010-02-16 14:52:01 +08:00
|
|
|
Size += EmitMatcher(N, Indent);
|
2010-02-15 16:04:42 +08:00
|
|
|
|
|
|
|
// If there are children of this node, iterate to them, otherwise we're
|
|
|
|
// done.
|
|
|
|
if (const MatcherNodeWithChild *MNWC = dyn_cast<MatcherNodeWithChild>(N))
|
|
|
|
N = MNWC->getChild();
|
|
|
|
else
|
|
|
|
return Size;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-02-16 15:21:10 +08:00
|
|
|
void MatcherTableEmitter::EmitPredicateFunctions() {
|
2010-02-17 08:31:50 +08:00
|
|
|
// Emit pattern predicates.
|
2010-02-16 15:21:10 +08:00
|
|
|
OS << "bool CheckPatternPredicate(unsigned PredNo) const {\n";
|
|
|
|
OS << " switch (PredNo) {\n";
|
|
|
|
OS << " default: assert(0 && \"Invalid predicate in table?\");\n";
|
|
|
|
for (unsigned i = 0, e = PatternPredicates.size(); i != e; ++i)
|
|
|
|
OS << " case " << i << ": return " << PatternPredicates[i] << ";\n";
|
|
|
|
OS << " }\n";
|
|
|
|
OS << "}\n\n";
|
|
|
|
|
2010-02-17 08:31:50 +08:00
|
|
|
// Emit Node predicates.
|
2010-02-16 15:21:10 +08:00
|
|
|
OS << "bool CheckNodePredicate(SDNode *N, unsigned PredNo) const {\n";
|
|
|
|
OS << " switch (PredNo) {\n";
|
|
|
|
OS << " default: assert(0 && \"Invalid predicate in table?\");\n";
|
|
|
|
for (unsigned i = 0, e = NodePredicates.size(); i != e; ++i)
|
|
|
|
OS << " case " << i << ": return " << NodePredicates[i] << "(N);\n";
|
|
|
|
OS << " }\n";
|
|
|
|
OS << "}\n\n";
|
2010-02-17 08:31:50 +08:00
|
|
|
|
|
|
|
// Emit CompletePattern matchers.
|
|
|
|
|
|
|
|
OS << "bool CheckComplexPattern(SDNode *Root, SDValue N,\n";
|
|
|
|
OS << " unsigned PatternNo, SmallVectorImpl<SDValue> &Result) {\n";
|
|
|
|
OS << " switch (PatternNo) {\n";
|
|
|
|
OS << " default: assert(0 && \"Invalid pattern # in table?\");\n";
|
|
|
|
for (unsigned i = 0, e = ComplexPatterns.size(); i != e; ++i) {
|
|
|
|
const ComplexPattern &P = *ComplexPatterns[i];
|
|
|
|
unsigned NumOps = P.getNumOperands();
|
|
|
|
if (P.hasProperty(SDNPHasChain))
|
|
|
|
NumOps += 2; // Input and output chains.
|
|
|
|
OS << " case " << i << ":\n";
|
|
|
|
OS << " Result.resize(Result.size()+" << NumOps << ");\n";
|
|
|
|
OS << " return " << P.getSelectFunc() << "(Root, N";
|
|
|
|
for (unsigned i = 0; i != NumOps; ++i)
|
|
|
|
OS << ", Result[Result.size()-" << (NumOps-i) << ']';
|
|
|
|
OS << ");\n";
|
|
|
|
}
|
|
|
|
OS << " }\n";
|
|
|
|
OS << "}\n\n";
|
|
|
|
|
2010-02-16 15:21:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-02-15 16:04:42 +08:00
|
|
|
void llvm::EmitMatcherTable(const MatcherNode *Matcher, raw_ostream &O) {
|
|
|
|
formatted_raw_ostream OS(O);
|
|
|
|
|
|
|
|
OS << "// The main instruction selector code.\n";
|
|
|
|
OS << "SDNode *SelectCode2(SDNode *N) {\n";
|
|
|
|
|
2010-02-16 14:52:01 +08:00
|
|
|
MatcherTableEmitter MatcherEmitter(OS);
|
|
|
|
|
2010-02-15 16:04:42 +08:00
|
|
|
OS << " static const unsigned char MatcherTable[] = {\n";
|
2010-02-16 14:52:01 +08:00
|
|
|
unsigned TotalSize = MatcherEmitter.EmitMatcherAndChildren(Matcher, 2);
|
2010-02-15 16:04:42 +08:00
|
|
|
OS << " 0\n }; // Total Array size is " << (TotalSize+1) << " bytes\n\n";
|
2010-02-16 14:52:01 +08:00
|
|
|
OS << " return SelectCodeCommon(N, MatcherTable,sizeof(MatcherTable));\n}\n";
|
2010-02-16 15:21:10 +08:00
|
|
|
OS << "\n";
|
|
|
|
|
|
|
|
// Next up, emit the function for node and pattern predicates:
|
|
|
|
MatcherEmitter.EmitPredicateFunctions();
|
2010-02-15 16:04:42 +08:00
|
|
|
}
|