1 //===- DAGISelMatcher.h - Representation of DAG pattern matcher -----------===//
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 #ifndef TBLGEN_DAGISELMATCHER_H
11 #define TBLGEN_DAGISELMATCHER_H
13 #include "llvm/CodeGen/ValueTypes.h"
14 #include "llvm/ADT/OwningPtr.h"
15 #include "llvm/ADT/StringRef.h"
16 #include "llvm/ADT/SmallVector.h"
17 #include "llvm/Support/Casting.h"
20 class CodeGenDAGPatterns
;
28 Matcher
*ConvertPatternToMatcher(const PatternToMatch
&Pattern
,unsigned Variant
,
29 const CodeGenDAGPatterns
&CGP
);
30 Matcher
*OptimizeMatcher(Matcher
*Matcher
, const CodeGenDAGPatterns
&CGP
);
31 void EmitMatcherTable(const Matcher
*Matcher
, const CodeGenDAGPatterns
&CGP
,
35 /// Matcher - Base class for all the the DAG ISel Matcher representation
38 // The next matcher node that is executed after this one. Null if this is the
39 // last stage of a match.
40 OwningPtr
<Matcher
> Next
;
43 // Matcher state manipulation.
44 Scope
, // Push a checking scope.
45 RecordNode
, // Record the current node.
46 RecordChild
, // Record a child of the current node.
47 RecordMemRef
, // Record the memref in the current node.
48 CaptureFlagInput
, // If the current node has an input flag, save it.
49 MoveChild
, // Move current node to specified child.
50 MoveParent
, // Move current node to parent.
52 // Predicate checking.
53 CheckSame
, // Fail if not same as prev match.
54 CheckPatternPredicate
,
55 CheckPredicate
, // Fail if node predicate fails.
56 CheckOpcode
, // Fail if not opcode.
57 SwitchOpcode
, // Dispatch based on opcode.
58 CheckType
, // Fail if not correct type.
59 SwitchType
, // Dispatch based on type.
60 CheckChildType
, // Fail if child has wrong type.
61 CheckInteger
, // Fail if wrong val.
62 CheckCondCode
, // Fail if not condcode.
67 CheckFoldableChainNode
,
69 // Node creation/emisssion.
70 EmitInteger
, // Create a TargetConstant
71 EmitStringInteger
, // Create a TargetConstant from a string.
72 EmitRegister
, // Create a register.
73 EmitConvertToTarget
, // Convert a imm/fpimm to target imm/fpimm
74 EmitMergeInputChains
, // Merge together a chains for an input.
75 EmitCopyToReg
, // Emit a copytoreg into a physreg.
76 EmitNode
, // Create a DAG node
77 EmitNodeXForm
, // Run a SDNodeXForm
78 MarkFlagResults
, // Indicate which interior nodes have flag results.
79 CompleteMatch
, // Finish a match and update the results.
80 MorphNodeTo
// Build a node, finish a match and update results.
85 Matcher(KindTy K
) : Kind(K
) {}
89 KindTy
getKind() const { return Kind
; }
91 Matcher
*getNext() { return Next
.get(); }
92 const Matcher
*getNext() const { return Next
.get(); }
93 void setNext(Matcher
*C
) { Next
.reset(C
); }
94 Matcher
*takeNext() { return Next
.take(); }
96 OwningPtr
<Matcher
> &getNextPtr() { return Next
; }
98 static inline bool classof(const Matcher
*) { return true; }
100 bool isEqual(const Matcher
*M
) const {
101 if (getKind() != M
->getKind()) return false;
102 return isEqualImpl(M
);
105 unsigned getHash() const {
106 // Clear the high bit so we don't conflict with tombstones etc.
107 return ((getHashImpl() << 4) ^ getKind()) & (~0U>>1);
110 /// isSafeToReorderWithPatternPredicate - Return true if it is safe to sink a
111 /// PatternPredicate node past this one.
112 virtual bool isSafeToReorderWithPatternPredicate() const {
116 /// isSimplePredicateNode - Return true if this is a simple predicate that
117 /// operates on the node or its children without potential side effects or a
118 /// change of the current node.
119 bool isSimplePredicateNode() const {
121 default: return false;
123 case CheckPatternPredicate
:
133 case CheckFoldableChainNode
:
138 /// isSimplePredicateOrRecordNode - Return true if this is a record node or
139 /// a simple predicate.
140 bool isSimplePredicateOrRecordNode() const {
141 return isSimplePredicateNode() ||
142 getKind() == RecordNode
|| getKind() == RecordChild
;
145 /// unlinkNode - Unlink the specified node from this chain. If Other == this,
146 /// we unlink the next pointer and return it. Otherwise we unlink Other from
147 /// the list and return this.
148 Matcher
*unlinkNode(Matcher
*Other
);
150 /// canMoveBefore - Return true if this matcher is the same as Other, or if
151 /// we can move this matcher past all of the nodes in-between Other and this
152 /// node. Other must be equal to or before this.
153 bool canMoveBefore(const Matcher
*Other
) const;
155 /// canMoveBefore - Return true if it is safe to move the current matcher
156 /// across the specified one.
157 bool canMoveBeforeNode(const Matcher
*Other
) const;
159 /// isContradictory - Return true of these two matchers could never match on
161 bool isContradictory(const Matcher
*Other
) const {
162 // Since this predicate is reflexive, we canonicalize the ordering so that
163 // we always match a node against nodes with kinds that are greater or equal
164 // to them. For example, we'll pass in a CheckType node as an argument to
165 // the CheckOpcode method, not the other way around.
166 if (getKind() < Other
->getKind())
167 return isContradictoryImpl(Other
);
168 return Other
->isContradictoryImpl(this);
171 void print(raw_ostream
&OS
, unsigned indent
= 0) const;
172 void printOne(raw_ostream
&OS
) const;
175 virtual void printImpl(raw_ostream
&OS
, unsigned indent
) const = 0;
176 virtual bool isEqualImpl(const Matcher
*M
) const = 0;
177 virtual unsigned getHashImpl() const = 0;
178 virtual bool isContradictoryImpl(const Matcher
*M
) const { return false; }
181 /// ScopeMatcher - This attempts to match each of its children to find the first
182 /// one that successfully matches. If one child fails, it tries the next child.
183 /// If none of the children match then this check fails. It never has a 'next'.
184 class ScopeMatcher
: public Matcher
{
185 SmallVector
<Matcher
*, 4> Children
;
187 ScopeMatcher(Matcher
*const *children
, unsigned numchildren
)
188 : Matcher(Scope
), Children(children
, children
+numchildren
) {
190 virtual ~ScopeMatcher();
192 unsigned getNumChildren() const { return Children
.size(); }
194 Matcher
*getChild(unsigned i
) { return Children
[i
]; }
195 const Matcher
*getChild(unsigned i
) const { return Children
[i
]; }
197 void resetChild(unsigned i
, Matcher
*N
) {
202 Matcher
*takeChild(unsigned i
) {
203 Matcher
*Res
= Children
[i
];
208 void setNumChildren(unsigned NC
) {
209 if (NC
< Children
.size()) {
210 // delete any children we're about to lose pointers to.
211 for (unsigned i
= NC
, e
= Children
.size(); i
!= e
; ++i
)
217 static inline bool classof(const Matcher
*N
) {
218 return N
->getKind() == Scope
;
222 virtual void printImpl(raw_ostream
&OS
, unsigned indent
) const;
223 virtual bool isEqualImpl(const Matcher
*M
) const { return false; }
224 virtual unsigned getHashImpl() const { return 12312; }
227 /// RecordMatcher - Save the current node in the operand list.
228 class RecordMatcher
: public Matcher
{
229 /// WhatFor - This is a string indicating why we're recording this. This
230 /// should only be used for comment generation not anything semantic.
233 /// ResultNo - The slot number in the RecordedNodes vector that this will be,
234 /// just printed as a comment.
237 RecordMatcher(const std::string
&whatfor
, unsigned resultNo
)
238 : Matcher(RecordNode
), WhatFor(whatfor
), ResultNo(resultNo
) {}
240 const std::string
&getWhatFor() const { return WhatFor
; }
241 unsigned getResultNo() const { return ResultNo
; }
243 static inline bool classof(const Matcher
*N
) {
244 return N
->getKind() == RecordNode
;
247 virtual bool isSafeToReorderWithPatternPredicate() const { return true; }
249 virtual void printImpl(raw_ostream
&OS
, unsigned indent
) const;
250 virtual bool isEqualImpl(const Matcher
*M
) const { return true; }
251 virtual unsigned getHashImpl() const { return 0; }
254 /// RecordChildMatcher - Save a numbered child of the current node, or fail
255 /// the match if it doesn't exist. This is logically equivalent to:
256 /// MoveChild N + RecordNode + MoveParent.
257 class RecordChildMatcher
: public Matcher
{
260 /// WhatFor - This is a string indicating why we're recording this. This
261 /// should only be used for comment generation not anything semantic.
264 /// ResultNo - The slot number in the RecordedNodes vector that this will be,
265 /// just printed as a comment.
268 RecordChildMatcher(unsigned childno
, const std::string
&whatfor
,
270 : Matcher(RecordChild
), ChildNo(childno
), WhatFor(whatfor
),
271 ResultNo(resultNo
) {}
273 unsigned getChildNo() const { return ChildNo
; }
274 const std::string
&getWhatFor() const { return WhatFor
; }
275 unsigned getResultNo() const { return ResultNo
; }
277 static inline bool classof(const Matcher
*N
) {
278 return N
->getKind() == RecordChild
;
281 virtual bool isSafeToReorderWithPatternPredicate() const { return true; }
284 virtual void printImpl(raw_ostream
&OS
, unsigned indent
) const;
285 virtual bool isEqualImpl(const Matcher
*M
) const {
286 return cast
<RecordChildMatcher
>(M
)->getChildNo() == getChildNo();
288 virtual unsigned getHashImpl() const { return getChildNo(); }
291 /// RecordMemRefMatcher - Save the current node's memref.
292 class RecordMemRefMatcher
: public Matcher
{
294 RecordMemRefMatcher() : Matcher(RecordMemRef
) {}
296 static inline bool classof(const Matcher
*N
) {
297 return N
->getKind() == RecordMemRef
;
300 virtual bool isSafeToReorderWithPatternPredicate() const { return true; }
303 virtual void printImpl(raw_ostream
&OS
, unsigned indent
) const;
304 virtual bool isEqualImpl(const Matcher
*M
) const { return true; }
305 virtual unsigned getHashImpl() const { return 0; }
309 /// CaptureFlagInputMatcher - If the current record has a flag input, record
310 /// it so that it is used as an input to the generated code.
311 class CaptureFlagInputMatcher
: public Matcher
{
313 CaptureFlagInputMatcher() : Matcher(CaptureFlagInput
) {}
315 static inline bool classof(const Matcher
*N
) {
316 return N
->getKind() == CaptureFlagInput
;
319 virtual bool isSafeToReorderWithPatternPredicate() const { return true; }
322 virtual void printImpl(raw_ostream
&OS
, unsigned indent
) const;
323 virtual bool isEqualImpl(const Matcher
*M
) const { return true; }
324 virtual unsigned getHashImpl() const { return 0; }
327 /// MoveChildMatcher - This tells the interpreter to move into the
328 /// specified child node.
329 class MoveChildMatcher
: public Matcher
{
332 MoveChildMatcher(unsigned childNo
) : Matcher(MoveChild
), ChildNo(childNo
) {}
334 unsigned getChildNo() const { return ChildNo
; }
336 static inline bool classof(const Matcher
*N
) {
337 return N
->getKind() == MoveChild
;
340 virtual bool isSafeToReorderWithPatternPredicate() const { return true; }
343 virtual void printImpl(raw_ostream
&OS
, unsigned indent
) const;
344 virtual bool isEqualImpl(const Matcher
*M
) const {
345 return cast
<MoveChildMatcher
>(M
)->getChildNo() == getChildNo();
347 virtual unsigned getHashImpl() const { return getChildNo(); }
350 /// MoveParentMatcher - This tells the interpreter to move to the parent
351 /// of the current node.
352 class MoveParentMatcher
: public Matcher
{
354 MoveParentMatcher() : Matcher(MoveParent
) {}
356 static inline bool classof(const Matcher
*N
) {
357 return N
->getKind() == MoveParent
;
360 virtual bool isSafeToReorderWithPatternPredicate() const { return true; }
363 virtual void printImpl(raw_ostream
&OS
, unsigned indent
) const;
364 virtual bool isEqualImpl(const Matcher
*M
) const { return true; }
365 virtual unsigned getHashImpl() const { return 0; }
368 /// CheckSameMatcher - This checks to see if this node is exactly the same
369 /// node as the specified match that was recorded with 'Record'. This is used
370 /// when patterns have the same name in them, like '(mul GPR:$in, GPR:$in)'.
371 class CheckSameMatcher
: public Matcher
{
372 unsigned MatchNumber
;
374 CheckSameMatcher(unsigned matchnumber
)
375 : Matcher(CheckSame
), MatchNumber(matchnumber
) {}
377 unsigned getMatchNumber() const { return MatchNumber
; }
379 static inline bool classof(const Matcher
*N
) {
380 return N
->getKind() == CheckSame
;
383 virtual bool isSafeToReorderWithPatternPredicate() const { return true; }
386 virtual void printImpl(raw_ostream
&OS
, unsigned indent
) const;
387 virtual bool isEqualImpl(const Matcher
*M
) const {
388 return cast
<CheckSameMatcher
>(M
)->getMatchNumber() == getMatchNumber();
390 virtual unsigned getHashImpl() const { return getMatchNumber(); }
393 /// CheckPatternPredicateMatcher - This checks the target-specific predicate
394 /// to see if the entire pattern is capable of matching. This predicate does
395 /// not take a node as input. This is used for subtarget feature checks etc.
396 class CheckPatternPredicateMatcher
: public Matcher
{
397 std::string Predicate
;
399 CheckPatternPredicateMatcher(StringRef predicate
)
400 : Matcher(CheckPatternPredicate
), Predicate(predicate
) {}
402 StringRef
getPredicate() const { return Predicate
; }
404 static inline bool classof(const Matcher
*N
) {
405 return N
->getKind() == CheckPatternPredicate
;
408 virtual bool isSafeToReorderWithPatternPredicate() const { return true; }
411 virtual void printImpl(raw_ostream
&OS
, unsigned indent
) const;
412 virtual bool isEqualImpl(const Matcher
*M
) const {
413 return cast
<CheckPatternPredicateMatcher
>(M
)->getPredicate() == Predicate
;
415 virtual unsigned getHashImpl() const;
418 /// CheckPredicateMatcher - This checks the target-specific predicate to
419 /// see if the node is acceptable.
420 class CheckPredicateMatcher
: public Matcher
{
423 CheckPredicateMatcher(StringRef predname
)
424 : Matcher(CheckPredicate
), PredName(predname
) {}
426 StringRef
getPredicateName() const { return PredName
; }
428 static inline bool classof(const Matcher
*N
) {
429 return N
->getKind() == CheckPredicate
;
433 //virtual bool isSafeToReorderWithPatternPredicate() const { return true; }
436 virtual void printImpl(raw_ostream
&OS
, unsigned indent
) const;
437 virtual bool isEqualImpl(const Matcher
*M
) const {
438 return cast
<CheckPredicateMatcher
>(M
)->PredName
== PredName
;
440 virtual unsigned getHashImpl() const;
444 /// CheckOpcodeMatcher - This checks to see if the current node has the
445 /// specified opcode, if not it fails to match.
446 class CheckOpcodeMatcher
: public Matcher
{
447 const SDNodeInfo
&Opcode
;
449 CheckOpcodeMatcher(const SDNodeInfo
&opcode
)
450 : Matcher(CheckOpcode
), Opcode(opcode
) {}
452 const SDNodeInfo
&getOpcode() const { return Opcode
; }
454 static inline bool classof(const Matcher
*N
) {
455 return N
->getKind() == CheckOpcode
;
458 virtual bool isSafeToReorderWithPatternPredicate() const { return true; }
461 virtual void printImpl(raw_ostream
&OS
, unsigned indent
) const;
462 virtual bool isEqualImpl(const Matcher
*M
) const;
463 virtual unsigned getHashImpl() const;
464 virtual bool isContradictoryImpl(const Matcher
*M
) const;
467 /// SwitchOpcodeMatcher - Switch based on the current node's opcode, dispatching
468 /// to one matcher per opcode. If the opcode doesn't match any of the cases,
469 /// then the match fails. This is semantically equivalent to a Scope node where
470 /// every child does a CheckOpcode, but is much faster.
471 class SwitchOpcodeMatcher
: public Matcher
{
472 SmallVector
<std::pair
<const SDNodeInfo
*, Matcher
*>, 8> Cases
;
474 SwitchOpcodeMatcher(const std::pair
<const SDNodeInfo
*, Matcher
*> *cases
,
476 : Matcher(SwitchOpcode
), Cases(cases
, cases
+numcases
) {}
478 static inline bool classof(const Matcher
*N
) {
479 return N
->getKind() == SwitchOpcode
;
482 unsigned getNumCases() const { return Cases
.size(); }
484 const SDNodeInfo
&getCaseOpcode(unsigned i
) const { return *Cases
[i
].first
; }
485 Matcher
*getCaseMatcher(unsigned i
) { return Cases
[i
].second
; }
486 const Matcher
*getCaseMatcher(unsigned i
) const { return Cases
[i
].second
; }
489 virtual void printImpl(raw_ostream
&OS
, unsigned indent
) const;
490 virtual bool isEqualImpl(const Matcher
*M
) const { return false; }
491 virtual unsigned getHashImpl() const { return 4123; }
494 /// CheckTypeMatcher - This checks to see if the current node has the
495 /// specified type at the specified result, if not it fails to match.
496 class CheckTypeMatcher
: public Matcher
{
497 MVT::SimpleValueType Type
;
500 CheckTypeMatcher(MVT::SimpleValueType type
, unsigned resno
)
501 : Matcher(CheckType
), Type(type
), ResNo(resno
) {}
503 MVT::SimpleValueType
getType() const { return Type
; }
504 unsigned getResNo() const { return ResNo
; }
506 static inline bool classof(const Matcher
*N
) {
507 return N
->getKind() == CheckType
;
510 virtual bool isSafeToReorderWithPatternPredicate() const { return true; }
513 virtual void printImpl(raw_ostream
&OS
, unsigned indent
) const;
514 virtual bool isEqualImpl(const Matcher
*M
) const {
515 return cast
<CheckTypeMatcher
>(M
)->Type
== Type
;
517 virtual unsigned getHashImpl() const { return Type
; }
518 virtual bool isContradictoryImpl(const Matcher
*M
) const;
521 /// SwitchTypeMatcher - Switch based on the current node's type, dispatching
522 /// to one matcher per case. If the type doesn't match any of the cases,
523 /// then the match fails. This is semantically equivalent to a Scope node where
524 /// every child does a CheckType, but is much faster.
525 class SwitchTypeMatcher
: public Matcher
{
526 SmallVector
<std::pair
<MVT::SimpleValueType
, Matcher
*>, 8> Cases
;
528 SwitchTypeMatcher(const std::pair
<MVT::SimpleValueType
, Matcher
*> *cases
,
530 : Matcher(SwitchType
), Cases(cases
, cases
+numcases
) {}
532 static inline bool classof(const Matcher
*N
) {
533 return N
->getKind() == SwitchType
;
536 unsigned getNumCases() const { return Cases
.size(); }
538 MVT::SimpleValueType
getCaseType(unsigned i
) const { return Cases
[i
].first
; }
539 Matcher
*getCaseMatcher(unsigned i
) { return Cases
[i
].second
; }
540 const Matcher
*getCaseMatcher(unsigned i
) const { return Cases
[i
].second
; }
543 virtual void printImpl(raw_ostream
&OS
, unsigned indent
) const;
544 virtual bool isEqualImpl(const Matcher
*M
) const { return false; }
545 virtual unsigned getHashImpl() const { return 4123; }
549 /// CheckChildTypeMatcher - This checks to see if a child node has the
550 /// specified type, if not it fails to match.
551 class CheckChildTypeMatcher
: public Matcher
{
553 MVT::SimpleValueType Type
;
555 CheckChildTypeMatcher(unsigned childno
, MVT::SimpleValueType type
)
556 : Matcher(CheckChildType
), ChildNo(childno
), Type(type
) {}
558 unsigned getChildNo() const { return ChildNo
; }
559 MVT::SimpleValueType
getType() const { return Type
; }
561 static inline bool classof(const Matcher
*N
) {
562 return N
->getKind() == CheckChildType
;
565 virtual bool isSafeToReorderWithPatternPredicate() const { return true; }
568 virtual void printImpl(raw_ostream
&OS
, unsigned indent
) const;
569 virtual bool isEqualImpl(const Matcher
*M
) const {
570 return cast
<CheckChildTypeMatcher
>(M
)->ChildNo
== ChildNo
&&
571 cast
<CheckChildTypeMatcher
>(M
)->Type
== Type
;
573 virtual unsigned getHashImpl() const { return (Type
<< 3) | ChildNo
; }
574 virtual bool isContradictoryImpl(const Matcher
*M
) const;
578 /// CheckIntegerMatcher - This checks to see if the current node is a
579 /// ConstantSDNode with the specified integer value, if not it fails to match.
580 class CheckIntegerMatcher
: public Matcher
{
583 CheckIntegerMatcher(int64_t value
)
584 : Matcher(CheckInteger
), Value(value
) {}
586 int64_t getValue() const { return Value
; }
588 static inline bool classof(const Matcher
*N
) {
589 return N
->getKind() == CheckInteger
;
592 virtual bool isSafeToReorderWithPatternPredicate() const { return true; }
595 virtual void printImpl(raw_ostream
&OS
, unsigned indent
) const;
596 virtual bool isEqualImpl(const Matcher
*M
) const {
597 return cast
<CheckIntegerMatcher
>(M
)->Value
== Value
;
599 virtual unsigned getHashImpl() const { return Value
; }
600 virtual bool isContradictoryImpl(const Matcher
*M
) const;
603 /// CheckCondCodeMatcher - This checks to see if the current node is a
604 /// CondCodeSDNode with the specified condition, if not it fails to match.
605 class CheckCondCodeMatcher
: public Matcher
{
606 StringRef CondCodeName
;
608 CheckCondCodeMatcher(StringRef condcodename
)
609 : Matcher(CheckCondCode
), CondCodeName(condcodename
) {}
611 StringRef
getCondCodeName() const { return CondCodeName
; }
613 static inline bool classof(const Matcher
*N
) {
614 return N
->getKind() == CheckCondCode
;
617 virtual bool isSafeToReorderWithPatternPredicate() const { return true; }
620 virtual void printImpl(raw_ostream
&OS
, unsigned indent
) const;
621 virtual bool isEqualImpl(const Matcher
*M
) const {
622 return cast
<CheckCondCodeMatcher
>(M
)->CondCodeName
== CondCodeName
;
624 virtual unsigned getHashImpl() const;
627 /// CheckValueTypeMatcher - This checks to see if the current node is a
628 /// VTSDNode with the specified type, if not it fails to match.
629 class CheckValueTypeMatcher
: public Matcher
{
632 CheckValueTypeMatcher(StringRef type_name
)
633 : Matcher(CheckValueType
), TypeName(type_name
) {}
635 StringRef
getTypeName() const { return TypeName
; }
637 static inline bool classof(const Matcher
*N
) {
638 return N
->getKind() == CheckValueType
;
641 virtual bool isSafeToReorderWithPatternPredicate() const { return true; }
644 virtual void printImpl(raw_ostream
&OS
, unsigned indent
) const;
645 virtual bool isEqualImpl(const Matcher
*M
) const {
646 return cast
<CheckValueTypeMatcher
>(M
)->TypeName
== TypeName
;
648 virtual unsigned getHashImpl() const;
649 bool isContradictoryImpl(const Matcher
*M
) const;
654 /// CheckComplexPatMatcher - This node runs the specified ComplexPattern on
655 /// the current node.
656 class CheckComplexPatMatcher
: public Matcher
{
657 const ComplexPattern
&Pattern
;
659 /// MatchNumber - This is the recorded nodes slot that contains the node we want to
661 unsigned MatchNumber
;
663 /// Name - The name of the node we're matching, for comment emission.
666 /// FirstResult - This is the first slot in the RecordedNodes list that the
667 /// result of the match populates.
668 unsigned FirstResult
;
670 CheckComplexPatMatcher(const ComplexPattern
&pattern
, unsigned matchnumber
,
671 const std::string
&name
, unsigned firstresult
)
672 : Matcher(CheckComplexPat
), Pattern(pattern
), MatchNumber(matchnumber
),
673 Name(name
), FirstResult(firstresult
) {}
675 const ComplexPattern
&getPattern() const { return Pattern
; }
676 unsigned getMatchNumber() const { return MatchNumber
; }
678 const std::string
getName() const { return Name
; }
679 unsigned getFirstResult() const { return FirstResult
; }
681 static inline bool classof(const Matcher
*N
) {
682 return N
->getKind() == CheckComplexPat
;
685 // Not safe to move a pattern predicate past a complex pattern.
686 virtual bool isSafeToReorderWithPatternPredicate() const { return false; }
689 virtual void printImpl(raw_ostream
&OS
, unsigned indent
) const;
690 virtual bool isEqualImpl(const Matcher
*M
) const {
691 return &cast
<CheckComplexPatMatcher
>(M
)->Pattern
== &Pattern
&&
692 cast
<CheckComplexPatMatcher
>(M
)->MatchNumber
== MatchNumber
;
694 virtual unsigned getHashImpl() const {
695 return (unsigned)(intptr_t)&Pattern
^ MatchNumber
;
699 /// CheckAndImmMatcher - This checks to see if the current node is an 'and'
700 /// with something equivalent to the specified immediate.
701 class CheckAndImmMatcher
: public Matcher
{
704 CheckAndImmMatcher(int64_t value
)
705 : Matcher(CheckAndImm
), Value(value
) {}
707 int64_t getValue() const { return Value
; }
709 static inline bool classof(const Matcher
*N
) {
710 return N
->getKind() == CheckAndImm
;
713 virtual bool isSafeToReorderWithPatternPredicate() const { return true; }
716 virtual void printImpl(raw_ostream
&OS
, unsigned indent
) const;
717 virtual bool isEqualImpl(const Matcher
*M
) const {
718 return cast
<CheckAndImmMatcher
>(M
)->Value
== Value
;
720 virtual unsigned getHashImpl() const { return Value
; }
723 /// CheckOrImmMatcher - This checks to see if the current node is an 'and'
724 /// with something equivalent to the specified immediate.
725 class CheckOrImmMatcher
: public Matcher
{
728 CheckOrImmMatcher(int64_t value
)
729 : Matcher(CheckOrImm
), Value(value
) {}
731 int64_t getValue() const { return Value
; }
733 static inline bool classof(const Matcher
*N
) {
734 return N
->getKind() == CheckOrImm
;
737 virtual bool isSafeToReorderWithPatternPredicate() const { return true; }
740 virtual void printImpl(raw_ostream
&OS
, unsigned indent
) const;
741 virtual bool isEqualImpl(const Matcher
*M
) const {
742 return cast
<CheckOrImmMatcher
>(M
)->Value
== Value
;
744 virtual unsigned getHashImpl() const { return Value
; }
747 /// CheckFoldableChainNodeMatcher - This checks to see if the current node
748 /// (which defines a chain operand) is safe to fold into a larger pattern.
749 class CheckFoldableChainNodeMatcher
: public Matcher
{
751 CheckFoldableChainNodeMatcher()
752 : Matcher(CheckFoldableChainNode
) {}
754 static inline bool classof(const Matcher
*N
) {
755 return N
->getKind() == CheckFoldableChainNode
;
758 virtual bool isSafeToReorderWithPatternPredicate() const { return true; }
761 virtual void printImpl(raw_ostream
&OS
, unsigned indent
) const;
762 virtual bool isEqualImpl(const Matcher
*M
) const { return true; }
763 virtual unsigned getHashImpl() const { return 0; }
766 /// EmitIntegerMatcher - This creates a new TargetConstant.
767 class EmitIntegerMatcher
: public Matcher
{
769 MVT::SimpleValueType VT
;
771 EmitIntegerMatcher(int64_t val
, MVT::SimpleValueType vt
)
772 : Matcher(EmitInteger
), Val(val
), VT(vt
) {}
774 int64_t getValue() const { return Val
; }
775 MVT::SimpleValueType
getVT() const { return VT
; }
777 static inline bool classof(const Matcher
*N
) {
778 return N
->getKind() == EmitInteger
;
782 virtual void printImpl(raw_ostream
&OS
, unsigned indent
) const;
783 virtual bool isEqualImpl(const Matcher
*M
) const {
784 return cast
<EmitIntegerMatcher
>(M
)->Val
== Val
&&
785 cast
<EmitIntegerMatcher
>(M
)->VT
== VT
;
787 virtual unsigned getHashImpl() const { return (Val
<< 4) | VT
; }
790 /// EmitStringIntegerMatcher - A target constant whose value is represented
792 class EmitStringIntegerMatcher
: public Matcher
{
794 MVT::SimpleValueType VT
;
796 EmitStringIntegerMatcher(const std::string
&val
, MVT::SimpleValueType vt
)
797 : Matcher(EmitStringInteger
), Val(val
), VT(vt
) {}
799 const std::string
&getValue() const { return Val
; }
800 MVT::SimpleValueType
getVT() const { return VT
; }
802 static inline bool classof(const Matcher
*N
) {
803 return N
->getKind() == EmitStringInteger
;
807 virtual void printImpl(raw_ostream
&OS
, unsigned indent
) const;
808 virtual bool isEqualImpl(const Matcher
*M
) const {
809 return cast
<EmitStringIntegerMatcher
>(M
)->Val
== Val
&&
810 cast
<EmitStringIntegerMatcher
>(M
)->VT
== VT
;
812 virtual unsigned getHashImpl() const;
815 /// EmitRegisterMatcher - This creates a new TargetConstant.
816 class EmitRegisterMatcher
: public Matcher
{
817 /// Reg - The def for the register that we're emitting. If this is null, then
818 /// this is a reference to zero_reg.
820 MVT::SimpleValueType VT
;
822 EmitRegisterMatcher(Record
*reg
, MVT::SimpleValueType vt
)
823 : Matcher(EmitRegister
), Reg(reg
), VT(vt
) {}
825 Record
*getReg() const { return Reg
; }
826 MVT::SimpleValueType
getVT() const { return VT
; }
828 static inline bool classof(const Matcher
*N
) {
829 return N
->getKind() == EmitRegister
;
833 virtual void printImpl(raw_ostream
&OS
, unsigned indent
) const;
834 virtual bool isEqualImpl(const Matcher
*M
) const {
835 return cast
<EmitRegisterMatcher
>(M
)->Reg
== Reg
&&
836 cast
<EmitRegisterMatcher
>(M
)->VT
== VT
;
838 virtual unsigned getHashImpl() const {
839 return ((unsigned)(intptr_t)Reg
) << 4 | VT
;
843 /// EmitConvertToTargetMatcher - Emit an operation that reads a specified
844 /// recorded node and converts it from being a ISD::Constant to
845 /// ISD::TargetConstant, likewise for ConstantFP.
846 class EmitConvertToTargetMatcher
: public Matcher
{
849 EmitConvertToTargetMatcher(unsigned slot
)
850 : Matcher(EmitConvertToTarget
), Slot(slot
) {}
852 unsigned getSlot() const { return Slot
; }
854 static inline bool classof(const Matcher
*N
) {
855 return N
->getKind() == EmitConvertToTarget
;
859 virtual void printImpl(raw_ostream
&OS
, unsigned indent
) const;
860 virtual bool isEqualImpl(const Matcher
*M
) const {
861 return cast
<EmitConvertToTargetMatcher
>(M
)->Slot
== Slot
;
863 virtual unsigned getHashImpl() const { return Slot
; }
866 /// EmitMergeInputChainsMatcher - Emit a node that merges a list of input
867 /// chains together with a token factor. The list of nodes are the nodes in the
868 /// matched pattern that have chain input/outputs. This node adds all input
869 /// chains of these nodes if they are not themselves a node in the pattern.
870 class EmitMergeInputChainsMatcher
: public Matcher
{
871 SmallVector
<unsigned, 3> ChainNodes
;
873 EmitMergeInputChainsMatcher(const unsigned *nodes
, unsigned NumNodes
)
874 : Matcher(EmitMergeInputChains
), ChainNodes(nodes
, nodes
+NumNodes
) {}
876 unsigned getNumNodes() const { return ChainNodes
.size(); }
878 unsigned getNode(unsigned i
) const {
879 assert(i
< ChainNodes
.size());
880 return ChainNodes
[i
];
883 static inline bool classof(const Matcher
*N
) {
884 return N
->getKind() == EmitMergeInputChains
;
888 virtual void printImpl(raw_ostream
&OS
, unsigned indent
) const;
889 virtual bool isEqualImpl(const Matcher
*M
) const {
890 return cast
<EmitMergeInputChainsMatcher
>(M
)->ChainNodes
== ChainNodes
;
892 virtual unsigned getHashImpl() const;
895 /// EmitCopyToRegMatcher - Emit a CopyToReg node from a value to a physreg,
896 /// pushing the chain and flag results.
898 class EmitCopyToRegMatcher
: public Matcher
{
899 unsigned SrcSlot
; // Value to copy into the physreg.
902 EmitCopyToRegMatcher(unsigned srcSlot
, Record
*destPhysReg
)
903 : Matcher(EmitCopyToReg
), SrcSlot(srcSlot
), DestPhysReg(destPhysReg
) {}
905 unsigned getSrcSlot() const { return SrcSlot
; }
906 Record
*getDestPhysReg() const { return DestPhysReg
; }
908 static inline bool classof(const Matcher
*N
) {
909 return N
->getKind() == EmitCopyToReg
;
913 virtual void printImpl(raw_ostream
&OS
, unsigned indent
) const;
914 virtual bool isEqualImpl(const Matcher
*M
) const {
915 return cast
<EmitCopyToRegMatcher
>(M
)->SrcSlot
== SrcSlot
&&
916 cast
<EmitCopyToRegMatcher
>(M
)->DestPhysReg
== DestPhysReg
;
918 virtual unsigned getHashImpl() const {
919 return SrcSlot
^ ((unsigned)(intptr_t)DestPhysReg
<< 4);
925 /// EmitNodeXFormMatcher - Emit an operation that runs an SDNodeXForm on a
926 /// recorded node and records the result.
927 class EmitNodeXFormMatcher
: public Matcher
{
931 EmitNodeXFormMatcher(unsigned slot
, Record
*nodeXForm
)
932 : Matcher(EmitNodeXForm
), Slot(slot
), NodeXForm(nodeXForm
) {}
934 unsigned getSlot() const { return Slot
; }
935 Record
*getNodeXForm() const { return NodeXForm
; }
937 static inline bool classof(const Matcher
*N
) {
938 return N
->getKind() == EmitNodeXForm
;
942 virtual void printImpl(raw_ostream
&OS
, unsigned indent
) const;
943 virtual bool isEqualImpl(const Matcher
*M
) const {
944 return cast
<EmitNodeXFormMatcher
>(M
)->Slot
== Slot
&&
945 cast
<EmitNodeXFormMatcher
>(M
)->NodeXForm
== NodeXForm
;
947 virtual unsigned getHashImpl() const {
948 return Slot
^ ((unsigned)(intptr_t)NodeXForm
<< 4);
952 /// EmitNodeMatcherCommon - Common class shared between EmitNode and
954 class EmitNodeMatcherCommon
: public Matcher
{
955 std::string OpcodeName
;
956 const SmallVector
<MVT::SimpleValueType
, 3> VTs
;
957 const SmallVector
<unsigned, 6> Operands
;
958 bool HasChain
, HasInFlag
, HasOutFlag
, HasMemRefs
;
960 /// NumFixedArityOperands - If this is a fixed arity node, this is set to -1.
961 /// If this is a varidic node, this is set to the number of fixed arity
962 /// operands in the root of the pattern. The rest are appended to this node.
963 int NumFixedArityOperands
;
965 EmitNodeMatcherCommon(const std::string
&opcodeName
,
966 const MVT::SimpleValueType
*vts
, unsigned numvts
,
967 const unsigned *operands
, unsigned numops
,
968 bool hasChain
, bool hasInFlag
, bool hasOutFlag
,
970 int numfixedarityoperands
, bool isMorphNodeTo
)
971 : Matcher(isMorphNodeTo
? MorphNodeTo
: EmitNode
), OpcodeName(opcodeName
),
972 VTs(vts
, vts
+numvts
), Operands(operands
, operands
+numops
),
973 HasChain(hasChain
), HasInFlag(hasInFlag
), HasOutFlag(hasOutFlag
),
974 HasMemRefs(hasmemrefs
), NumFixedArityOperands(numfixedarityoperands
) {}
976 const std::string
&getOpcodeName() const { return OpcodeName
; }
978 unsigned getNumVTs() const { return VTs
.size(); }
979 MVT::SimpleValueType
getVT(unsigned i
) const {
980 assert(i
< VTs
.size());
984 unsigned getNumOperands() const { return Operands
.size(); }
985 unsigned getOperand(unsigned i
) const {
986 assert(i
< Operands
.size());
990 const SmallVectorImpl
<MVT::SimpleValueType
> &getVTList() const { return VTs
; }
991 const SmallVectorImpl
<unsigned> &getOperandList() const { return Operands
; }
994 bool hasChain() const { return HasChain
; }
995 bool hasInFlag() const { return HasInFlag
; }
996 bool hasOutFlag() const { return HasOutFlag
; }
997 bool hasMemRefs() const { return HasMemRefs
; }
998 int getNumFixedArityOperands() const { return NumFixedArityOperands
; }
1000 static inline bool classof(const Matcher
*N
) {
1001 return N
->getKind() == EmitNode
|| N
->getKind() == MorphNodeTo
;
1005 virtual void printImpl(raw_ostream
&OS
, unsigned indent
) const;
1006 virtual bool isEqualImpl(const Matcher
*M
) const;
1007 virtual unsigned getHashImpl() const;
1010 /// EmitNodeMatcher - This signals a successful match and generates a node.
1011 class EmitNodeMatcher
: public EmitNodeMatcherCommon
{
1012 unsigned FirstResultSlot
;
1014 EmitNodeMatcher(const std::string
&opcodeName
,
1015 const MVT::SimpleValueType
*vts
, unsigned numvts
,
1016 const unsigned *operands
, unsigned numops
,
1017 bool hasChain
, bool hasInFlag
, bool hasOutFlag
,
1019 int numfixedarityoperands
, unsigned firstresultslot
)
1020 : EmitNodeMatcherCommon(opcodeName
, vts
, numvts
, operands
, numops
, hasChain
,
1021 hasInFlag
, hasOutFlag
, hasmemrefs
,
1022 numfixedarityoperands
, false),
1023 FirstResultSlot(firstresultslot
) {}
1025 unsigned getFirstResultSlot() const { return FirstResultSlot
; }
1027 static inline bool classof(const Matcher
*N
) {
1028 return N
->getKind() == EmitNode
;
1033 class MorphNodeToMatcher
: public EmitNodeMatcherCommon
{
1034 const PatternToMatch
&Pattern
;
1036 MorphNodeToMatcher(const std::string
&opcodeName
,
1037 const MVT::SimpleValueType
*vts
, unsigned numvts
,
1038 const unsigned *operands
, unsigned numops
,
1039 bool hasChain
, bool hasInFlag
, bool hasOutFlag
,
1041 int numfixedarityoperands
, const PatternToMatch
&pattern
)
1042 : EmitNodeMatcherCommon(opcodeName
, vts
, numvts
, operands
, numops
, hasChain
,
1043 hasInFlag
, hasOutFlag
, hasmemrefs
,
1044 numfixedarityoperands
, true),
1048 const PatternToMatch
&getPattern() const { return Pattern
; }
1050 static inline bool classof(const Matcher
*N
) {
1051 return N
->getKind() == MorphNodeTo
;
1055 /// MarkFlagResultsMatcher - This node indicates which non-root nodes in the
1056 /// pattern produce flags. This allows CompleteMatchMatcher to update them
1057 /// with the output flag of the resultant code.
1058 class MarkFlagResultsMatcher
: public Matcher
{
1059 SmallVector
<unsigned, 3> FlagResultNodes
;
1061 MarkFlagResultsMatcher(const unsigned *nodes
, unsigned NumNodes
)
1062 : Matcher(MarkFlagResults
), FlagResultNodes(nodes
, nodes
+NumNodes
) {}
1064 unsigned getNumNodes() const { return FlagResultNodes
.size(); }
1066 unsigned getNode(unsigned i
) const {
1067 assert(i
< FlagResultNodes
.size());
1068 return FlagResultNodes
[i
];
1071 static inline bool classof(const Matcher
*N
) {
1072 return N
->getKind() == MarkFlagResults
;
1076 virtual void printImpl(raw_ostream
&OS
, unsigned indent
) const;
1077 virtual bool isEqualImpl(const Matcher
*M
) const {
1078 return cast
<MarkFlagResultsMatcher
>(M
)->FlagResultNodes
== FlagResultNodes
;
1080 virtual unsigned getHashImpl() const;
1083 /// CompleteMatchMatcher - Complete a match by replacing the results of the
1084 /// pattern with the newly generated nodes. This also prints a comment
1085 /// indicating the source and dest patterns.
1086 class CompleteMatchMatcher
: public Matcher
{
1087 SmallVector
<unsigned, 2> Results
;
1088 const PatternToMatch
&Pattern
;
1090 CompleteMatchMatcher(const unsigned *results
, unsigned numresults
,
1091 const PatternToMatch
&pattern
)
1092 : Matcher(CompleteMatch
), Results(results
, results
+numresults
),
1095 unsigned getNumResults() const { return Results
.size(); }
1096 unsigned getResult(unsigned R
) const { return Results
[R
]; }
1097 const PatternToMatch
&getPattern() const { return Pattern
; }
1099 static inline bool classof(const Matcher
*N
) {
1100 return N
->getKind() == CompleteMatch
;
1104 virtual void printImpl(raw_ostream
&OS
, unsigned indent
) const;
1105 virtual bool isEqualImpl(const Matcher
*M
) const {
1106 return cast
<CompleteMatchMatcher
>(M
)->Results
== Results
&&
1107 &cast
<CompleteMatchMatcher
>(M
)->Pattern
== &Pattern
;
1109 virtual unsigned getHashImpl() const;
1112 } // end namespace llvm