1 //===- DAGISelMatcherEmitter.cpp - Matcher Emitter ------------------------===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file contains code to generate C++ code for a matcher.
12 //===----------------------------------------------------------------------===//
14 #include "DAGISelMatcher.h"
15 #include "CodeGenDAGPatterns.h"
17 #include "llvm/ADT/DenseMap.h"
18 #include "llvm/ADT/SmallString.h"
19 #include "llvm/ADT/StringMap.h"
20 #include "llvm/Support/CommandLine.h"
21 #include "llvm/Support/FormattedStream.h"
28 // To reduce generated source code size.
30 OmitComments("omit-comments", cl::desc("Do not generate comments"),
34 class MatcherTableEmitter
{
35 const CodeGenDAGPatterns
&CGP
;
37 DenseMap
<TreePattern
*, unsigned> NodePredicateMap
;
38 std::vector
<TreePredicateFn
> NodePredicates
;
40 StringMap
<unsigned> PatternPredicateMap
;
41 std::vector
<std::string
> PatternPredicates
;
43 DenseMap
<const ComplexPattern
*, unsigned> ComplexPatternMap
;
44 std::vector
<const ComplexPattern
*> ComplexPatterns
;
47 DenseMap
<Record
*, unsigned> NodeXFormMap
;
48 std::vector
<Record
*> NodeXForms
;
51 MatcherTableEmitter(const CodeGenDAGPatterns
&cgp
)
54 unsigned EmitMatcherList(const Matcher
*N
, unsigned Indent
,
55 unsigned StartIdx
, formatted_raw_ostream
&OS
);
57 void EmitPredicateFunctions(formatted_raw_ostream
&OS
);
59 void EmitHistogram(const Matcher
*N
, formatted_raw_ostream
&OS
);
61 unsigned EmitMatcher(const Matcher
*N
, unsigned Indent
, unsigned CurrentIdx
,
62 formatted_raw_ostream
&OS
);
64 unsigned getNodePredicate(TreePredicateFn Pred
) {
65 unsigned &Entry
= NodePredicateMap
[Pred
.getOrigPatFragRecord()];
67 NodePredicates
.push_back(Pred
);
68 Entry
= NodePredicates
.size();
73 unsigned getPatternPredicate(StringRef PredName
) {
74 unsigned &Entry
= PatternPredicateMap
[PredName
];
76 PatternPredicates
.push_back(PredName
.str());
77 Entry
= PatternPredicates
.size();
81 unsigned getComplexPat(const ComplexPattern
&P
) {
82 unsigned &Entry
= ComplexPatternMap
[&P
];
84 ComplexPatterns
.push_back(&P
);
85 Entry
= ComplexPatterns
.size();
90 unsigned getNodeXFormID(Record
*Rec
) {
91 unsigned &Entry
= NodeXFormMap
[Rec
];
93 NodeXForms
.push_back(Rec
);
94 Entry
= NodeXForms
.size();
100 } // end anonymous namespace.
102 static unsigned GetVBRSize(unsigned Val
) {
103 if (Val
<= 127) return 1;
105 unsigned NumBytes
= 0;
113 /// EmitVBRValue - Emit the specified value as a VBR, returning the number of
115 static uint64_t EmitVBRValue(uint64_t Val
, raw_ostream
&OS
) {
121 uint64_t InVal
= Val
;
122 unsigned NumBytes
= 0;
124 OS
<< (Val
&127) << "|128,";
130 OS
<< "/*" << InVal
<< "*/";
135 /// EmitMatcherOpcodes - Emit bytes for the specified matcher and return
136 /// the number of bytes emitted.
137 unsigned MatcherTableEmitter::
138 EmitMatcher(const Matcher
*N
, unsigned Indent
, unsigned CurrentIdx
,
139 formatted_raw_ostream
&OS
) {
140 OS
.PadToColumn(Indent
*2);
142 switch (N
->getKind()) {
143 case Matcher::Scope
: {
144 const ScopeMatcher
*SM
= cast
<ScopeMatcher
>(N
);
145 assert(SM
->getNext() == 0 && "Shouldn't have next after scope");
147 unsigned StartIdx
= CurrentIdx
;
149 // Emit all of the children.
150 for (unsigned i
= 0, e
= SM
->getNumChildren(); i
!= e
; ++i
) {
156 OS
<< "/*" << CurrentIdx
<< "*/";
157 OS
.PadToColumn(Indent
*2) << "/*Scope*/ ";
159 OS
.PadToColumn(Indent
*2);
162 // We need to encode the child and the offset of the failure code before
163 // emitting either of them. Handle this by buffering the output into a
164 // string while we get the size. Unfortunately, the offset of the
165 // children depends on the VBR size of the child, so for large children we
166 // have to iterate a bit.
167 SmallString
<128> TmpBuf
;
168 unsigned ChildSize
= 0;
169 unsigned VBRSize
= 0;
171 VBRSize
= GetVBRSize(ChildSize
);
174 raw_svector_ostream
OS(TmpBuf
);
175 formatted_raw_ostream
FOS(OS
);
176 ChildSize
= EmitMatcherList(SM
->getChild(i
), Indent
+1,
177 CurrentIdx
+VBRSize
, FOS
);
178 } while (GetVBRSize(ChildSize
) != VBRSize
);
180 assert(ChildSize
!= 0 && "Should not have a zero-sized child!");
182 CurrentIdx
+= EmitVBRValue(ChildSize
, OS
);
184 OS
<< "/*->" << CurrentIdx
+ChildSize
<< "*/";
187 OS
.PadToColumn(CommentIndent
) << "// " << SM
->getNumChildren()
188 << " children in Scope";
191 OS
<< '\n' << TmpBuf
.str();
192 CurrentIdx
+= ChildSize
;
195 // Emit a zero as a sentinel indicating end of 'Scope'.
197 OS
<< "/*" << CurrentIdx
<< "*/";
198 OS
.PadToColumn(Indent
*2) << "0, ";
200 OS
<< "/*End of Scope*/";
202 return CurrentIdx
- StartIdx
+ 1;
205 case Matcher::RecordNode
:
206 OS
<< "OPC_RecordNode,";
208 OS
.PadToColumn(CommentIndent
) << "// #"
209 << cast
<RecordMatcher
>(N
)->getResultNo() << " = "
210 << cast
<RecordMatcher
>(N
)->getWhatFor();
214 case Matcher::RecordChild
:
215 OS
<< "OPC_RecordChild" << cast
<RecordChildMatcher
>(N
)->getChildNo()
218 OS
.PadToColumn(CommentIndent
) << "// #"
219 << cast
<RecordChildMatcher
>(N
)->getResultNo() << " = "
220 << cast
<RecordChildMatcher
>(N
)->getWhatFor();
224 case Matcher::RecordMemRef
:
225 OS
<< "OPC_RecordMemRef,\n";
228 case Matcher::CaptureGlueInput
:
229 OS
<< "OPC_CaptureGlueInput,\n";
232 case Matcher::MoveChild
:
233 OS
<< "OPC_MoveChild, " << cast
<MoveChildMatcher
>(N
)->getChildNo() << ",\n";
236 case Matcher::MoveParent
:
237 OS
<< "OPC_MoveParent,\n";
240 case Matcher::CheckSame
:
241 OS
<< "OPC_CheckSame, "
242 << cast
<CheckSameMatcher
>(N
)->getMatchNumber() << ",\n";
245 case Matcher::CheckPatternPredicate
: {
246 StringRef Pred
=cast
<CheckPatternPredicateMatcher
>(N
)->getPredicate();
247 OS
<< "OPC_CheckPatternPredicate, " << getPatternPredicate(Pred
) << ',';
249 OS
.PadToColumn(CommentIndent
) << "// " << Pred
;
253 case Matcher::CheckPredicate
: {
254 TreePredicateFn Pred
= cast
<CheckPredicateMatcher
>(N
)->getPredicate();
255 OS
<< "OPC_CheckPredicate, " << getNodePredicate(Pred
) << ',';
257 OS
.PadToColumn(CommentIndent
) << "// " << Pred
.getFnName();
262 case Matcher::CheckOpcode
:
263 OS
<< "OPC_CheckOpcode, TARGET_VAL("
264 << cast
<CheckOpcodeMatcher
>(N
)->getOpcode().getEnumName() << "),\n";
267 case Matcher::SwitchOpcode
:
268 case Matcher::SwitchType
: {
269 unsigned StartIdx
= CurrentIdx
;
272 if (const SwitchOpcodeMatcher
*SOM
= dyn_cast
<SwitchOpcodeMatcher
>(N
)) {
273 OS
<< "OPC_SwitchOpcode ";
274 NumCases
= SOM
->getNumCases();
276 OS
<< "OPC_SwitchType ";
277 NumCases
= cast
<SwitchTypeMatcher
>(N
)->getNumCases();
281 OS
<< "/*" << NumCases
<< " cases */";
285 // For each case we emit the size, then the opcode, then the matcher.
286 for (unsigned i
= 0, e
= NumCases
; i
!= e
; ++i
) {
287 const Matcher
*Child
;
289 if (const SwitchOpcodeMatcher
*SOM
= dyn_cast
<SwitchOpcodeMatcher
>(N
)) {
290 Child
= SOM
->getCaseMatcher(i
);
291 IdxSize
= 2; // size of opcode in table is 2 bytes.
293 Child
= cast
<SwitchTypeMatcher
>(N
)->getCaseMatcher(i
);
294 IdxSize
= 1; // size of type in table is 1 byte.
297 // We need to encode the opcode and the offset of the case code before
298 // emitting the case code. Handle this by buffering the output into a
299 // string while we get the size. Unfortunately, the offset of the
300 // children depends on the VBR size of the child, so for large children we
301 // have to iterate a bit.
302 SmallString
<128> TmpBuf
;
303 unsigned ChildSize
= 0;
304 unsigned VBRSize
= 0;
306 VBRSize
= GetVBRSize(ChildSize
);
309 raw_svector_ostream
OS(TmpBuf
);
310 formatted_raw_ostream
FOS(OS
);
311 ChildSize
= EmitMatcherList(Child
, Indent
+1, CurrentIdx
+VBRSize
+IdxSize
,
313 } while (GetVBRSize(ChildSize
) != VBRSize
);
315 assert(ChildSize
!= 0 && "Should not have a zero-sized child!");
318 OS
.PadToColumn(Indent
*2);
320 OS
<< (isa
<SwitchOpcodeMatcher
>(N
) ?
321 "/*SwitchOpcode*/ " : "/*SwitchType*/ ");
325 CurrentIdx
+= EmitVBRValue(ChildSize
, OS
);
328 if (const SwitchOpcodeMatcher
*SOM
= dyn_cast
<SwitchOpcodeMatcher
>(N
))
329 OS
<< "TARGET_VAL(" << SOM
->getCaseOpcode(i
).getEnumName() << "),";
331 OS
<< getEnumName(cast
<SwitchTypeMatcher
>(N
)->getCaseType(i
)) << ',';
333 CurrentIdx
+= IdxSize
;
336 OS
<< "// ->" << CurrentIdx
+ChildSize
;
339 CurrentIdx
+= ChildSize
;
342 // Emit the final zero to terminate the switch.
343 OS
.PadToColumn(Indent
*2) << "0, ";
345 OS
<< (isa
<SwitchOpcodeMatcher
>(N
) ?
346 "// EndSwitchOpcode" : "// EndSwitchType");
350 return CurrentIdx
-StartIdx
;
353 case Matcher::CheckType
:
354 assert(cast
<CheckTypeMatcher
>(N
)->getResNo() == 0 &&
355 "FIXME: Add support for CheckType of resno != 0");
356 OS
<< "OPC_CheckType, "
357 << getEnumName(cast
<CheckTypeMatcher
>(N
)->getType()) << ",\n";
360 case Matcher::CheckChildType
:
361 OS
<< "OPC_CheckChild"
362 << cast
<CheckChildTypeMatcher
>(N
)->getChildNo() << "Type, "
363 << getEnumName(cast
<CheckChildTypeMatcher
>(N
)->getType()) << ",\n";
366 case Matcher::CheckInteger
: {
367 OS
<< "OPC_CheckInteger, ";
368 unsigned Bytes
=1+EmitVBRValue(cast
<CheckIntegerMatcher
>(N
)->getValue(), OS
);
372 case Matcher::CheckCondCode
:
373 OS
<< "OPC_CheckCondCode, ISD::"
374 << cast
<CheckCondCodeMatcher
>(N
)->getCondCodeName() << ",\n";
377 case Matcher::CheckValueType
:
378 OS
<< "OPC_CheckValueType, MVT::"
379 << cast
<CheckValueTypeMatcher
>(N
)->getTypeName() << ",\n";
382 case Matcher::CheckComplexPat
: {
383 const CheckComplexPatMatcher
*CCPM
= cast
<CheckComplexPatMatcher
>(N
);
384 const ComplexPattern
&Pattern
= CCPM
->getPattern();
385 OS
<< "OPC_CheckComplexPat, /*CP*/" << getComplexPat(Pattern
) << ", /*#*/"
386 << CCPM
->getMatchNumber() << ',';
389 OS
.PadToColumn(CommentIndent
) << "// " << Pattern
.getSelectFunc();
390 OS
<< ":$" << CCPM
->getName();
391 for (unsigned i
= 0, e
= Pattern
.getNumOperands(); i
!= e
; ++i
)
392 OS
<< " #" << CCPM
->getFirstResult()+i
;
394 if (Pattern
.hasProperty(SDNPHasChain
))
395 OS
<< " + chain result";
401 case Matcher::CheckAndImm
: {
402 OS
<< "OPC_CheckAndImm, ";
403 unsigned Bytes
=1+EmitVBRValue(cast
<CheckAndImmMatcher
>(N
)->getValue(), OS
);
408 case Matcher::CheckOrImm
: {
409 OS
<< "OPC_CheckOrImm, ";
410 unsigned Bytes
= 1+EmitVBRValue(cast
<CheckOrImmMatcher
>(N
)->getValue(), OS
);
415 case Matcher::CheckFoldableChainNode
:
416 OS
<< "OPC_CheckFoldableChainNode,\n";
419 case Matcher::EmitInteger
: {
420 int64_t Val
= cast
<EmitIntegerMatcher
>(N
)->getValue();
421 OS
<< "OPC_EmitInteger, "
422 << getEnumName(cast
<EmitIntegerMatcher
>(N
)->getVT()) << ", ";
423 unsigned Bytes
= 2+EmitVBRValue(Val
, OS
);
427 case Matcher::EmitStringInteger
: {
428 const std::string
&Val
= cast
<EmitStringIntegerMatcher
>(N
)->getValue();
429 // These should always fit into one byte.
430 OS
<< "OPC_EmitInteger, "
431 << getEnumName(cast
<EmitStringIntegerMatcher
>(N
)->getVT()) << ", "
436 case Matcher::EmitRegister
: {
437 const EmitRegisterMatcher
*Matcher
= cast
<EmitRegisterMatcher
>(N
);
438 const CodeGenRegister
*Reg
= Matcher
->getReg();
439 // If the enum value of the register is larger than one byte can handle,
440 // use EmitRegister2.
441 if (Reg
&& Reg
->EnumValue
> 255) {
442 OS
<< "OPC_EmitRegister2, " << getEnumName(Matcher
->getVT()) << ", ";
443 OS
<< "TARGET_VAL(" << getQualifiedName(Reg
->TheDef
) << "),\n";
446 OS
<< "OPC_EmitRegister, " << getEnumName(Matcher
->getVT()) << ", ";
448 OS
<< getQualifiedName(Reg
->TheDef
) << ",\n";
452 OS
<< "/*zero_reg*/";
459 case Matcher::EmitConvertToTarget
:
460 OS
<< "OPC_EmitConvertToTarget, "
461 << cast
<EmitConvertToTargetMatcher
>(N
)->getSlot() << ",\n";
464 case Matcher::EmitMergeInputChains
: {
465 const EmitMergeInputChainsMatcher
*MN
=
466 cast
<EmitMergeInputChainsMatcher
>(N
);
468 // Handle the specialized forms OPC_EmitMergeInputChains1_0 and 1_1.
469 if (MN
->getNumNodes() == 1 && MN
->getNode(0) < 2) {
470 OS
<< "OPC_EmitMergeInputChains1_" << MN
->getNode(0) << ",\n";
474 OS
<< "OPC_EmitMergeInputChains, " << MN
->getNumNodes() << ", ";
475 for (unsigned i
= 0, e
= MN
->getNumNodes(); i
!= e
; ++i
)
476 OS
<< MN
->getNode(i
) << ", ";
478 return 2+MN
->getNumNodes();
480 case Matcher::EmitCopyToReg
:
481 OS
<< "OPC_EmitCopyToReg, "
482 << cast
<EmitCopyToRegMatcher
>(N
)->getSrcSlot() << ", "
483 << getQualifiedName(cast
<EmitCopyToRegMatcher
>(N
)->getDestPhysReg())
486 case Matcher::EmitNodeXForm
: {
487 const EmitNodeXFormMatcher
*XF
= cast
<EmitNodeXFormMatcher
>(N
);
488 OS
<< "OPC_EmitNodeXForm, " << getNodeXFormID(XF
->getNodeXForm()) << ", "
489 << XF
->getSlot() << ',';
491 OS
.PadToColumn(CommentIndent
) << "// "<<XF
->getNodeXForm()->getName();
496 case Matcher::EmitNode
:
497 case Matcher::MorphNodeTo
: {
498 const EmitNodeMatcherCommon
*EN
= cast
<EmitNodeMatcherCommon
>(N
);
499 OS
<< (isa
<EmitNodeMatcher
>(EN
) ? "OPC_EmitNode" : "OPC_MorphNodeTo");
500 OS
<< ", TARGET_VAL(" << EN
->getOpcodeName() << "), 0";
502 if (EN
->hasChain()) OS
<< "|OPFL_Chain";
503 if (EN
->hasInFlag()) OS
<< "|OPFL_GlueInput";
504 if (EN
->hasOutFlag()) OS
<< "|OPFL_GlueOutput";
505 if (EN
->hasMemRefs()) OS
<< "|OPFL_MemRefs";
506 if (EN
->getNumFixedArityOperands() != -1)
507 OS
<< "|OPFL_Variadic" << EN
->getNumFixedArityOperands();
510 OS
.PadToColumn(Indent
*2+4) << EN
->getNumVTs();
514 for (unsigned i
= 0, e
= EN
->getNumVTs(); i
!= e
; ++i
)
515 OS
<< getEnumName(EN
->getVT(i
)) << ", ";
517 OS
<< EN
->getNumOperands();
521 unsigned NumOperandBytes
= 0;
522 for (unsigned i
= 0, e
= EN
->getNumOperands(); i
!= e
; ++i
)
523 NumOperandBytes
+= EmitVBRValue(EN
->getOperand(i
), OS
);
526 // Print the result #'s for EmitNode.
527 if (const EmitNodeMatcher
*E
= dyn_cast
<EmitNodeMatcher
>(EN
)) {
528 if (unsigned NumResults
= EN
->getNumVTs()) {
529 OS
.PadToColumn(CommentIndent
) << "// Results = ";
530 unsigned First
= E
->getFirstResultSlot();
531 for (unsigned i
= 0; i
!= NumResults
; ++i
)
532 OS
<< "#" << First
+i
<< " ";
537 if (const MorphNodeToMatcher
*SNT
= dyn_cast
<MorphNodeToMatcher
>(N
)) {
538 OS
.PadToColumn(Indent
*2) << "// Src: "
539 << *SNT
->getPattern().getSrcPattern() << " - Complexity = "
540 << SNT
->getPattern().getPatternComplexity(CGP
) << '\n';
541 OS
.PadToColumn(Indent
*2) << "// Dst: "
542 << *SNT
->getPattern().getDstPattern() << '\n';
547 return 6+EN
->getNumVTs()+NumOperandBytes
;
549 case Matcher::MarkGlueResults
: {
550 const MarkGlueResultsMatcher
*CFR
= cast
<MarkGlueResultsMatcher
>(N
);
551 OS
<< "OPC_MarkGlueResults, " << CFR
->getNumNodes() << ", ";
552 unsigned NumOperandBytes
= 0;
553 for (unsigned i
= 0, e
= CFR
->getNumNodes(); i
!= e
; ++i
)
554 NumOperandBytes
+= EmitVBRValue(CFR
->getNode(i
), OS
);
556 return 2+NumOperandBytes
;
558 case Matcher::CompleteMatch
: {
559 const CompleteMatchMatcher
*CM
= cast
<CompleteMatchMatcher
>(N
);
560 OS
<< "OPC_CompleteMatch, " << CM
->getNumResults() << ", ";
561 unsigned NumResultBytes
= 0;
562 for (unsigned i
= 0, e
= CM
->getNumResults(); i
!= e
; ++i
)
563 NumResultBytes
+= EmitVBRValue(CM
->getResult(i
), OS
);
566 OS
.PadToColumn(Indent
*2) << "// Src: "
567 << *CM
->getPattern().getSrcPattern() << " - Complexity = "
568 << CM
->getPattern().getPatternComplexity(CGP
) << '\n';
569 OS
.PadToColumn(Indent
*2) << "// Dst: "
570 << *CM
->getPattern().getDstPattern();
573 return 2 + NumResultBytes
;
576 assert(0 && "Unreachable");
580 /// EmitMatcherList - Emit the bytes for the specified matcher subtree.
581 unsigned MatcherTableEmitter::
582 EmitMatcherList(const Matcher
*N
, unsigned Indent
, unsigned CurrentIdx
,
583 formatted_raw_ostream
&OS
) {
587 OS
<< "/*" << CurrentIdx
<< "*/";
588 unsigned MatcherSize
= EmitMatcher(N
, Indent
, CurrentIdx
, OS
);
590 CurrentIdx
+= MatcherSize
;
592 // If there are other nodes in this list, iterate to them, otherwise we're
599 void MatcherTableEmitter::EmitPredicateFunctions(formatted_raw_ostream
&OS
) {
600 // Emit pattern predicates.
601 if (!PatternPredicates
.empty()) {
602 OS
<< "bool CheckPatternPredicate(unsigned PredNo) const {\n";
603 OS
<< " switch (PredNo) {\n";
604 OS
<< " default: assert(0 && \"Invalid predicate in table?\");\n";
605 for (unsigned i
= 0, e
= PatternPredicates
.size(); i
!= e
; ++i
)
606 OS
<< " case " << i
<< ": return " << PatternPredicates
[i
] << ";\n";
611 // Emit Node predicates.
612 // FIXME: Annoyingly, these are stored by name, which we never even emit. Yay?
613 StringMap
<TreePattern
*> PFsByName
;
615 for (CodeGenDAGPatterns::pf_iterator I
= CGP
.pf_begin(), E
= CGP
.pf_end();
617 PFsByName
[I
->first
->getName()] = I
->second
;
619 if (!NodePredicates
.empty()) {
620 OS
<< "bool CheckNodePredicate(SDNode *Node, unsigned PredNo) const {\n";
621 OS
<< " switch (PredNo) {\n";
622 OS
<< " default: assert(0 && \"Invalid predicate in table?\");\n";
623 for (unsigned i
= 0, e
= NodePredicates
.size(); i
!= e
; ++i
) {
624 // Emit the predicate code corresponding to this pattern.
625 TreePredicateFn PredFn
= NodePredicates
[i
];
627 assert(!PredFn
.isAlwaysTrue() && "No code in this predicate");
628 OS
<< " case " << i
<< ": { // " << NodePredicates
[i
].getFnName() <<'\n';
630 OS
<< PredFn
.getCodeToRunOnSDNode() << "\n }\n";
636 // Emit CompletePattern matchers.
637 // FIXME: This should be const.
638 if (!ComplexPatterns
.empty()) {
639 OS
<< "bool CheckComplexPattern(SDNode *Root, SDNode *Parent, SDValue N,\n";
640 OS
<< " unsigned PatternNo,\n";
641 OS
<< " SmallVectorImpl<std::pair<SDValue, SDNode*> > &Result) {\n";
642 OS
<< " unsigned NextRes = Result.size();\n";
643 OS
<< " switch (PatternNo) {\n";
644 OS
<< " default: assert(0 && \"Invalid pattern # in table?\");\n";
645 for (unsigned i
= 0, e
= ComplexPatterns
.size(); i
!= e
; ++i
) {
646 const ComplexPattern
&P
= *ComplexPatterns
[i
];
647 unsigned NumOps
= P
.getNumOperands();
649 if (P
.hasProperty(SDNPHasChain
))
650 ++NumOps
; // Get the chained node too.
652 OS
<< " case " << i
<< ":\n";
653 OS
<< " Result.resize(NextRes+" << NumOps
<< ");\n";
654 OS
<< " return " << P
.getSelectFunc();
657 // If the complex pattern wants the root of the match, pass it in as the
659 if (P
.hasProperty(SDNPWantRoot
))
662 // If the complex pattern wants the parent of the operand being matched,
663 // pass it in as the next argument.
664 if (P
.hasProperty(SDNPWantParent
))
668 for (unsigned i
= 0; i
!= NumOps
; ++i
)
669 OS
<< ", Result[NextRes+" << i
<< "].first";
677 // Emit SDNodeXForm handlers.
678 // FIXME: This should be const.
679 if (!NodeXForms
.empty()) {
680 OS
<< "SDValue RunSDNodeXForm(SDValue V, unsigned XFormNo) {\n";
681 OS
<< " switch (XFormNo) {\n";
682 OS
<< " default: assert(0 && \"Invalid xform # in table?\");\n";
684 // FIXME: The node xform could take SDValue's instead of SDNode*'s.
685 for (unsigned i
= 0, e
= NodeXForms
.size(); i
!= e
; ++i
) {
686 const CodeGenDAGPatterns::NodeXForm
&Entry
=
687 CGP
.getSDNodeTransform(NodeXForms
[i
]);
689 Record
*SDNode
= Entry
.first
;
690 const std::string
&Code
= Entry
.second
;
692 OS
<< " case " << i
<< ": { ";
694 OS
<< "// " << NodeXForms
[i
]->getName();
697 std::string ClassName
= CGP
.getSDNodeInfo(SDNode
).getSDClassName();
698 if (ClassName
== "SDNode")
699 OS
<< " SDNode *N = V.getNode();\n";
701 OS
<< " " << ClassName
<< " *N = cast<" << ClassName
702 << ">(V.getNode());\n";
703 OS
<< Code
<< "\n }\n";
710 static void BuildHistogram(const Matcher
*M
, std::vector
<unsigned> &OpcodeFreq
){
711 for (; M
!= 0; M
= M
->getNext()) {
713 if (unsigned(M
->getKind()) >= OpcodeFreq
.size())
714 OpcodeFreq
.resize(M
->getKind()+1);
715 OpcodeFreq
[M
->getKind()]++;
717 // Handle recursive nodes.
718 if (const ScopeMatcher
*SM
= dyn_cast
<ScopeMatcher
>(M
)) {
719 for (unsigned i
= 0, e
= SM
->getNumChildren(); i
!= e
; ++i
)
720 BuildHistogram(SM
->getChild(i
), OpcodeFreq
);
721 } else if (const SwitchOpcodeMatcher
*SOM
=
722 dyn_cast
<SwitchOpcodeMatcher
>(M
)) {
723 for (unsigned i
= 0, e
= SOM
->getNumCases(); i
!= e
; ++i
)
724 BuildHistogram(SOM
->getCaseMatcher(i
), OpcodeFreq
);
725 } else if (const SwitchTypeMatcher
*STM
= dyn_cast
<SwitchTypeMatcher
>(M
)) {
726 for (unsigned i
= 0, e
= STM
->getNumCases(); i
!= e
; ++i
)
727 BuildHistogram(STM
->getCaseMatcher(i
), OpcodeFreq
);
732 void MatcherTableEmitter::EmitHistogram(const Matcher
*M
,
733 formatted_raw_ostream
&OS
) {
737 std::vector
<unsigned> OpcodeFreq
;
738 BuildHistogram(M
, OpcodeFreq
);
740 OS
<< " // Opcode Histogram:\n";
741 for (unsigned i
= 0, e
= OpcodeFreq
.size(); i
!= e
; ++i
) {
743 switch ((Matcher::KindTy
)i
) {
744 case Matcher::Scope
: OS
<< "OPC_Scope"; break;
745 case Matcher::RecordNode
: OS
<< "OPC_RecordNode"; break;
746 case Matcher::RecordChild
: OS
<< "OPC_RecordChild"; break;
747 case Matcher::RecordMemRef
: OS
<< "OPC_RecordMemRef"; break;
748 case Matcher::CaptureGlueInput
: OS
<< "OPC_CaptureGlueInput"; break;
749 case Matcher::MoveChild
: OS
<< "OPC_MoveChild"; break;
750 case Matcher::MoveParent
: OS
<< "OPC_MoveParent"; break;
751 case Matcher::CheckSame
: OS
<< "OPC_CheckSame"; break;
752 case Matcher::CheckPatternPredicate
:
753 OS
<< "OPC_CheckPatternPredicate"; break;
754 case Matcher::CheckPredicate
: OS
<< "OPC_CheckPredicate"; break;
755 case Matcher::CheckOpcode
: OS
<< "OPC_CheckOpcode"; break;
756 case Matcher::SwitchOpcode
: OS
<< "OPC_SwitchOpcode"; break;
757 case Matcher::CheckType
: OS
<< "OPC_CheckType"; break;
758 case Matcher::SwitchType
: OS
<< "OPC_SwitchType"; break;
759 case Matcher::CheckChildType
: OS
<< "OPC_CheckChildType"; break;
760 case Matcher::CheckInteger
: OS
<< "OPC_CheckInteger"; break;
761 case Matcher::CheckCondCode
: OS
<< "OPC_CheckCondCode"; break;
762 case Matcher::CheckValueType
: OS
<< "OPC_CheckValueType"; break;
763 case Matcher::CheckComplexPat
: OS
<< "OPC_CheckComplexPat"; break;
764 case Matcher::CheckAndImm
: OS
<< "OPC_CheckAndImm"; break;
765 case Matcher::CheckOrImm
: OS
<< "OPC_CheckOrImm"; break;
766 case Matcher::CheckFoldableChainNode
:
767 OS
<< "OPC_CheckFoldableChainNode"; break;
768 case Matcher::EmitInteger
: OS
<< "OPC_EmitInteger"; break;
769 case Matcher::EmitStringInteger
: OS
<< "OPC_EmitStringInteger"; break;
770 case Matcher::EmitRegister
: OS
<< "OPC_EmitRegister"; break;
771 case Matcher::EmitConvertToTarget
: OS
<< "OPC_EmitConvertToTarget"; break;
772 case Matcher::EmitMergeInputChains
: OS
<< "OPC_EmitMergeInputChains"; break;
773 case Matcher::EmitCopyToReg
: OS
<< "OPC_EmitCopyToReg"; break;
774 case Matcher::EmitNode
: OS
<< "OPC_EmitNode"; break;
775 case Matcher::MorphNodeTo
: OS
<< "OPC_MorphNodeTo"; break;
776 case Matcher::EmitNodeXForm
: OS
<< "OPC_EmitNodeXForm"; break;
777 case Matcher::MarkGlueResults
: OS
<< "OPC_MarkGlueResults"; break;
778 case Matcher::CompleteMatch
: OS
<< "OPC_CompleteMatch"; break;
781 OS
.PadToColumn(40) << " = " << OpcodeFreq
[i
] << '\n';
787 void llvm::EmitMatcherTable(const Matcher
*TheMatcher
,
788 const CodeGenDAGPatterns
&CGP
,
790 formatted_raw_ostream
OS(O
);
792 OS
<< "// The main instruction selector code.\n";
793 OS
<< "SDNode *SelectCode(SDNode *N) {\n";
795 MatcherTableEmitter
MatcherEmitter(CGP
);
797 OS
<< " // Some target values are emitted as 2 bytes, TARGET_VAL handles\n";
799 OS
<< " #define TARGET_VAL(X) X & 255, unsigned(X) >> 8\n";
800 OS
<< " static const unsigned char MatcherTable[] = {\n";
801 unsigned TotalSize
= MatcherEmitter
.EmitMatcherList(TheMatcher
, 5, 0, OS
);
802 OS
<< " 0\n }; // Total Array size is " << (TotalSize
+1) << " bytes\n\n";
804 MatcherEmitter
.EmitHistogram(TheMatcher
, OS
);
806 OS
<< " #undef TARGET_VAL\n";
807 OS
<< " return SelectCodeCommon(N, MatcherTable,sizeof(MatcherTable));\n}\n";
810 // Next up, emit the function for node and pattern predicates:
811 MatcherEmitter
.EmitPredicateFunctions(OS
);