blob: 9f12a686e4cf874cc198140ae8a35de6dfbe746a [file] [log] [blame]
Chris Lattnerda272d12010-02-15 08:04:42 +00001//===- DAGISelMatcher.cpp - Representation of DAG pattern matcher ---------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#include "DAGISelMatcher.h"
11#include "CodeGenDAGPatterns.h"
12#include "CodeGenTarget.h"
Chris Lattner845c0422010-02-18 22:03:03 +000013#include "Record.h"
Chris Lattnerda272d12010-02-15 08:04:42 +000014#include "llvm/Support/raw_ostream.h"
Chris Lattner58aa8342010-02-25 06:49:58 +000015#include "llvm/ADT/StringExtras.h"
Chris Lattnerda272d12010-02-15 08:04:42 +000016using namespace llvm;
17
Chris Lattnerb21ba712010-02-25 02:04:40 +000018void Matcher::dump() const {
Chris Lattnera5028a62010-02-25 06:53:39 +000019 print(errs(), 0);
Chris Lattnerda272d12010-02-15 08:04:42 +000020}
21
Chris Lattnera5028a62010-02-25 06:53:39 +000022void Matcher::print(raw_ostream &OS, unsigned indent) const {
23 printImpl(OS, indent);
Chris Lattnerbd8227f2010-02-18 02:53:41 +000024 if (Next)
25 return Next->print(OS, indent);
Chris Lattnerda272d12010-02-15 08:04:42 +000026}
27
Chris Lattner82781b92010-02-27 07:49:13 +000028void Matcher::printOne(raw_ostream &OS) const {
29 printImpl(OS, 0);
30}
31
Chris Lattner48aa5752010-03-07 06:29:26 +000032/// unlinkNode - Unlink the specified node from this chain. If Other == this,
33/// we unlink the next pointer and return it. Otherwise we unlink Other from
34/// the list and return this.
35Matcher *Matcher::unlinkNode(Matcher *Other) {
36 if (this == Other)
37 return takeNext();
38
39 // Scan until we find the predecessor of Other.
40 Matcher *Cur = this;
41 for (; Cur && Cur->getNext() != Other; Cur = Cur->getNext())
42 /*empty*/;
43
44 if (Cur == 0) return 0;
45 Cur->takeNext();
46 Cur->setNext(Other->takeNext());
47 return this;
48}
49
50/// canMoveBefore - Return true if this matcher is the same as Other, or if
51/// we can move this matcher past all of the nodes in-between Other and this
52/// node. Other must be equal to or before this.
53bool Matcher::canMoveBefore(const Matcher *Other) const {
54 for (;; Other = Other->getNext()) {
55 assert(Other && "Other didn't come before 'this'?");
56 if (this == Other) return true;
57
58 // We have to be able to move this node across the Other node.
59 if (!canMoveBeforeNode(Other))
60 return false;
61 }
62}
63
64/// canMoveBefore - Return true if it is safe to move the current matcher
65/// across the specified one.
66bool Matcher::canMoveBeforeNode(const Matcher *Other) const {
67 // We can move simple predicates before record nodes.
68 if (isSimplePredicateNode())
69 return Other->isSimplePredicateOrRecordNode();
70
71 // We can move record nodes across simple predicates.
72 if (isSimplePredicateOrRecordNode())
73 return isSimplePredicateNode();
74
75 // We can't move record nodes across each other etc.
76 return false;
77}
78
79
Chris Lattnerd6c84722010-02-25 19:00:39 +000080ScopeMatcher::~ScopeMatcher() {
81 for (unsigned i = 0, e = Children.size(); i != e; ++i)
82 delete Children[i];
83}
84
85
86// printImpl methods.
87
Chris Lattnera5028a62010-02-25 06:53:39 +000088void ScopeMatcher::printImpl(raw_ostream &OS, unsigned indent) const {
Chris Lattner60df53e2010-02-25 01:56:48 +000089 OS.indent(indent) << "Scope\n";
Chris Lattnerc78f2a32010-02-28 20:49:53 +000090 for (unsigned i = 0, e = getNumChildren(); i != e; ++i) {
91 if (getChild(i) == 0)
92 OS.indent(indent+1) << "NULL POINTER\n";
93 else
94 getChild(i)->print(OS, indent+2);
95 }
Chris Lattnerda272d12010-02-15 08:04:42 +000096}
97
Chris Lattnera5028a62010-02-25 06:53:39 +000098void RecordMatcher::printImpl(raw_ostream &OS, unsigned indent) const {
Chris Lattnerda272d12010-02-15 08:04:42 +000099 OS.indent(indent) << "Record\n";
Chris Lattnerda272d12010-02-15 08:04:42 +0000100}
101
Chris Lattnera5028a62010-02-25 06:53:39 +0000102void RecordChildMatcher::printImpl(raw_ostream &OS, unsigned indent) const {
Chris Lattner19b5a752010-02-24 07:31:45 +0000103 OS.indent(indent) << "RecordChild: " << ChildNo << '\n';
Chris Lattner19b5a752010-02-24 07:31:45 +0000104}
105
Chris Lattnera5028a62010-02-25 06:53:39 +0000106void RecordMemRefMatcher::printImpl(raw_ostream &OS, unsigned indent) const {
Chris Lattner8e946be2010-02-21 03:22:59 +0000107 OS.indent(indent) << "RecordMemRef\n";
Chris Lattner8e946be2010-02-21 03:22:59 +0000108}
109
Chris Lattnera5028a62010-02-25 06:53:39 +0000110void CaptureFlagInputMatcher::printImpl(raw_ostream &OS, unsigned indent) const{
Chris Lattner8e946be2010-02-21 03:22:59 +0000111 OS.indent(indent) << "CaptureFlagInput\n";
Chris Lattner8e946be2010-02-21 03:22:59 +0000112}
113
Chris Lattnera5028a62010-02-25 06:53:39 +0000114void MoveChildMatcher::printImpl(raw_ostream &OS, unsigned indent) const {
Chris Lattnerda272d12010-02-15 08:04:42 +0000115 OS.indent(indent) << "MoveChild " << ChildNo << '\n';
Chris Lattnerda272d12010-02-15 08:04:42 +0000116}
117
Chris Lattnera5028a62010-02-25 06:53:39 +0000118void MoveParentMatcher::printImpl(raw_ostream &OS, unsigned indent) const {
Chris Lattnerda272d12010-02-15 08:04:42 +0000119 OS.indent(indent) << "MoveParent\n";
Chris Lattnerda272d12010-02-15 08:04:42 +0000120}
121
Chris Lattnera5028a62010-02-25 06:53:39 +0000122void CheckSameMatcher::printImpl(raw_ostream &OS, unsigned indent) const {
Chris Lattnerda272d12010-02-15 08:04:42 +0000123 OS.indent(indent) << "CheckSame " << MatchNumber << '\n';
Chris Lattnerda272d12010-02-15 08:04:42 +0000124}
125
Chris Lattnerb21ba712010-02-25 02:04:40 +0000126void CheckPatternPredicateMatcher::
Chris Lattnera5028a62010-02-25 06:53:39 +0000127printImpl(raw_ostream &OS, unsigned indent) const {
Chris Lattnerda272d12010-02-15 08:04:42 +0000128 OS.indent(indent) << "CheckPatternPredicate " << Predicate << '\n';
Chris Lattnerda272d12010-02-15 08:04:42 +0000129}
130
Chris Lattnera5028a62010-02-25 06:53:39 +0000131void CheckPredicateMatcher::printImpl(raw_ostream &OS, unsigned indent) const {
Chris Lattnerda272d12010-02-15 08:04:42 +0000132 OS.indent(indent) << "CheckPredicate " << PredName << '\n';
Chris Lattnerda272d12010-02-15 08:04:42 +0000133}
134
Chris Lattnera5028a62010-02-25 06:53:39 +0000135void CheckOpcodeMatcher::printImpl(raw_ostream &OS, unsigned indent) const {
Chris Lattnera230f962010-02-27 21:48:43 +0000136 OS.indent(indent) << "CheckOpcode " << Opcode.getEnumName() << '\n';
Chris Lattnerda272d12010-02-15 08:04:42 +0000137}
138
Chris Lattnereb669212010-03-01 06:59:22 +0000139void SwitchOpcodeMatcher::printImpl(raw_ostream &OS, unsigned indent) const {
140 OS.indent(indent) << "SwitchOpcode: {\n";
141 for (unsigned i = 0, e = Cases.size(); i != e; ++i) {
142 OS.indent(indent) << "case " << Cases[i].first->getEnumName() << ":\n";
143 Cases[i].second->print(OS, indent+2);
144 }
145 OS.indent(indent) << "}\n";
146}
147
148
Chris Lattnera5028a62010-02-25 06:53:39 +0000149void CheckTypeMatcher::printImpl(raw_ostream &OS, unsigned indent) const {
Chris Lattner084df622010-03-24 00:41:19 +0000150 OS.indent(indent) << "CheckType " << getEnumName(Type) << ", ResNo="
151 << ResNo << '\n';
Chris Lattnerda272d12010-02-15 08:04:42 +0000152}
153
Chris Lattnercfe2eab2010-03-03 06:28:15 +0000154void SwitchTypeMatcher::printImpl(raw_ostream &OS, unsigned indent) const {
155 OS.indent(indent) << "SwitchType: {\n";
156 for (unsigned i = 0, e = Cases.size(); i != e; ++i) {
157 OS.indent(indent) << "case " << getEnumName(Cases[i].first) << ":\n";
158 Cases[i].second->print(OS, indent+2);
159 }
160 OS.indent(indent) << "}\n";
161}
162
Chris Lattnera5028a62010-02-25 06:53:39 +0000163void CheckChildTypeMatcher::printImpl(raw_ostream &OS, unsigned indent) const {
Chris Lattner23cfda72010-02-24 20:15:25 +0000164 OS.indent(indent) << "CheckChildType " << ChildNo << " "
165 << getEnumName(Type) << '\n';
Chris Lattner23cfda72010-02-24 20:15:25 +0000166}
167
168
Chris Lattnera5028a62010-02-25 06:53:39 +0000169void CheckIntegerMatcher::printImpl(raw_ostream &OS, unsigned indent) const {
Chris Lattnerda272d12010-02-15 08:04:42 +0000170 OS.indent(indent) << "CheckInteger " << Value << '\n';
Chris Lattnerda272d12010-02-15 08:04:42 +0000171}
172
Chris Lattnera5028a62010-02-25 06:53:39 +0000173void CheckCondCodeMatcher::printImpl(raw_ostream &OS, unsigned indent) const {
Chris Lattnerda272d12010-02-15 08:04:42 +0000174 OS.indent(indent) << "CheckCondCode ISD::" << CondCodeName << '\n';
Chris Lattnerda272d12010-02-15 08:04:42 +0000175}
176
Chris Lattnera5028a62010-02-25 06:53:39 +0000177void CheckValueTypeMatcher::printImpl(raw_ostream &OS, unsigned indent) const {
Chris Lattnerda272d12010-02-15 08:04:42 +0000178 OS.indent(indent) << "CheckValueType MVT::" << TypeName << '\n';
Chris Lattnerda272d12010-02-15 08:04:42 +0000179}
180
Chris Lattnera5028a62010-02-25 06:53:39 +0000181void CheckComplexPatMatcher::printImpl(raw_ostream &OS, unsigned indent) const {
Chris Lattnerda272d12010-02-15 08:04:42 +0000182 OS.indent(indent) << "CheckComplexPat " << Pattern.getSelectFunc() << '\n';
Chris Lattnerda272d12010-02-15 08:04:42 +0000183}
184
Chris Lattnera5028a62010-02-25 06:53:39 +0000185void CheckAndImmMatcher::printImpl(raw_ostream &OS, unsigned indent) const {
Chris Lattnerda272d12010-02-15 08:04:42 +0000186 OS.indent(indent) << "CheckAndImm " << Value << '\n';
Chris Lattnerda272d12010-02-15 08:04:42 +0000187}
188
Chris Lattnera5028a62010-02-25 06:53:39 +0000189void CheckOrImmMatcher::printImpl(raw_ostream &OS, unsigned indent) const {
Chris Lattnerda272d12010-02-15 08:04:42 +0000190 OS.indent(indent) << "CheckOrImm " << Value << '\n';
Chris Lattnerda272d12010-02-15 08:04:42 +0000191}
192
Chris Lattnera5028a62010-02-25 06:53:39 +0000193void CheckFoldableChainNodeMatcher::printImpl(raw_ostream &OS,
Chris Lattner21390d72010-02-16 19:15:55 +0000194 unsigned indent) const {
195 OS.indent(indent) << "CheckFoldableChainNode\n";
Chris Lattnere39650a2010-02-16 06:10:58 +0000196}
Chris Lattner9a747f12010-02-17 06:23:39 +0000197
Chris Lattnera5028a62010-02-25 06:53:39 +0000198void EmitIntegerMatcher::printImpl(raw_ostream &OS, unsigned indent) const {
Chris Lattner8e946be2010-02-21 03:22:59 +0000199 OS.indent(indent) << "EmitInteger " << Val << " VT=" << VT << '\n';
Chris Lattner8e946be2010-02-21 03:22:59 +0000200}
201
Chris Lattnerb21ba712010-02-25 02:04:40 +0000202void EmitStringIntegerMatcher::
Chris Lattnera5028a62010-02-25 06:53:39 +0000203printImpl(raw_ostream &OS, unsigned indent) const {
Chris Lattner8e946be2010-02-21 03:22:59 +0000204 OS.indent(indent) << "EmitStringInteger " << Val << " VT=" << VT << '\n';
Chris Lattner845c0422010-02-18 22:03:03 +0000205}
206
Chris Lattnera5028a62010-02-25 06:53:39 +0000207void EmitRegisterMatcher::printImpl(raw_ostream &OS, unsigned indent) const {
Chris Lattner8e946be2010-02-21 03:22:59 +0000208 OS.indent(indent) << "EmitRegister ";
Chris Lattner845c0422010-02-18 22:03:03 +0000209 if (Reg)
210 OS << Reg->getName();
211 else
212 OS << "zero_reg";
213 OS << " VT=" << VT << '\n';
Chris Lattner845c0422010-02-18 22:03:03 +0000214}
215
Chris Lattnerb21ba712010-02-25 02:04:40 +0000216void EmitConvertToTargetMatcher::
Chris Lattnera5028a62010-02-25 06:53:39 +0000217printImpl(raw_ostream &OS, unsigned indent) const {
Chris Lattner8e946be2010-02-21 03:22:59 +0000218 OS.indent(indent) << "EmitConvertToTarget " << Slot << '\n';
Chris Lattner8e946be2010-02-21 03:22:59 +0000219}
220
Chris Lattnerb21ba712010-02-25 02:04:40 +0000221void EmitMergeInputChainsMatcher::
Chris Lattnera5028a62010-02-25 06:53:39 +0000222printImpl(raw_ostream &OS, unsigned indent) const {
Chris Lattner8e946be2010-02-21 03:22:59 +0000223 OS.indent(indent) << "EmitMergeInputChains <todo: args>\n";
Chris Lattner8e946be2010-02-21 03:22:59 +0000224}
225
Chris Lattnera5028a62010-02-25 06:53:39 +0000226void EmitCopyToRegMatcher::printImpl(raw_ostream &OS, unsigned indent) const {
Chris Lattner8e946be2010-02-21 03:22:59 +0000227 OS.indent(indent) << "EmitCopyToReg <todo: args>\n";
Chris Lattner8e946be2010-02-21 03:22:59 +0000228}
229
Chris Lattnera5028a62010-02-25 06:53:39 +0000230void EmitNodeXFormMatcher::printImpl(raw_ostream &OS, unsigned indent) const {
Chris Lattner8e946be2010-02-21 03:22:59 +0000231 OS.indent(indent) << "EmitNodeXForm " << NodeXForm->getName()
232 << " Slot=" << Slot << '\n';
Chris Lattner8e946be2010-02-21 03:22:59 +0000233}
234
235
Chris Lattnere86097a2010-02-28 02:31:26 +0000236void EmitNodeMatcherCommon::printImpl(raw_ostream &OS, unsigned indent) const {
237 OS.indent(indent);
Chris Lattner9a215002010-02-28 20:55:18 +0000238 OS << (isa<MorphNodeToMatcher>(this) ? "MorphNodeTo: " : "EmitNode: ")
Chris Lattnere86097a2010-02-28 02:31:26 +0000239 << OpcodeName << ": <todo flags> ";
Chris Lattner8e946be2010-02-21 03:22:59 +0000240
241 for (unsigned i = 0, e = VTs.size(); i != e; ++i)
242 OS << ' ' << getEnumName(VTs[i]);
243 OS << '(';
244 for (unsigned i = 0, e = Operands.size(); i != e; ++i)
245 OS << Operands[i] << ' ';
246 OS << ")\n";
Chris Lattner8e946be2010-02-21 03:22:59 +0000247}
248
Chris Lattnera5028a62010-02-25 06:53:39 +0000249void MarkFlagResultsMatcher::printImpl(raw_ostream &OS, unsigned indent) const {
Chris Lattner02f73582010-02-24 05:33:42 +0000250 OS.indent(indent) << "MarkFlagResults <todo: args>\n";
Chris Lattner02f73582010-02-24 05:33:42 +0000251}
252
Chris Lattnera5028a62010-02-25 06:53:39 +0000253void CompleteMatchMatcher::printImpl(raw_ostream &OS, unsigned indent) const {
Chris Lattner77f2e272010-02-21 06:03:07 +0000254 OS.indent(indent) << "CompleteMatch <todo args>\n";
Chris Lattner8e946be2010-02-21 03:22:59 +0000255 OS.indent(indent) << "Src = " << *Pattern.getSrcPattern() << "\n";
256 OS.indent(indent) << "Dst = " << *Pattern.getDstPattern() << "\n";
Chris Lattner8e946be2010-02-21 03:22:59 +0000257}
258
Chris Lattner58aa8342010-02-25 06:49:58 +0000259// getHashImpl Implementation.
260
261unsigned CheckPatternPredicateMatcher::getHashImpl() const {
262 return HashString(Predicate);
263}
264
265unsigned CheckPredicateMatcher::getHashImpl() const {
266 return HashString(PredName);
267}
268
269unsigned CheckOpcodeMatcher::getHashImpl() const {
Chris Lattnera230f962010-02-27 21:48:43 +0000270 return HashString(Opcode.getEnumName());
Chris Lattner58aa8342010-02-25 06:49:58 +0000271}
272
Chris Lattner58aa8342010-02-25 06:49:58 +0000273unsigned CheckCondCodeMatcher::getHashImpl() const {
274 return HashString(CondCodeName);
275}
276
277unsigned CheckValueTypeMatcher::getHashImpl() const {
278 return HashString(TypeName);
279}
280
281unsigned EmitStringIntegerMatcher::getHashImpl() const {
282 return HashString(Val) ^ VT;
283}
284
285template<typename It>
286static unsigned HashUnsigneds(It I, It E) {
287 unsigned Result = 0;
288 for (; I != E; ++I)
289 Result = (Result<<3) ^ *I;
290 return Result;
291}
292
293unsigned EmitMergeInputChainsMatcher::getHashImpl() const {
294 return HashUnsigneds(ChainNodes.begin(), ChainNodes.end());
295}
296
Chris Lattnereb669212010-03-01 06:59:22 +0000297bool CheckOpcodeMatcher::isEqualImpl(const Matcher *M) const {
298 // Note: pointer equality isn't enough here, we have to check the enum names
299 // to ensure that the nodes are for the same opcode.
300 return cast<CheckOpcodeMatcher>(M)->Opcode.getEnumName() ==
301 Opcode.getEnumName();
302}
303
304
Chris Lattnere86097a2010-02-28 02:31:26 +0000305bool EmitNodeMatcherCommon::isEqualImpl(const Matcher *m) const {
306 const EmitNodeMatcherCommon *M = cast<EmitNodeMatcherCommon>(m);
Chris Lattner58aa8342010-02-25 06:49:58 +0000307 return M->OpcodeName == OpcodeName && M->VTs == VTs &&
308 M->Operands == Operands && M->HasChain == HasChain &&
Chris Lattnerff7fb602010-02-28 21:53:42 +0000309 M->HasInFlag == HasInFlag && M->HasOutFlag == HasOutFlag &&
310 M->HasMemRefs == HasMemRefs &&
Chris Lattner58aa8342010-02-25 06:49:58 +0000311 M->NumFixedArityOperands == NumFixedArityOperands;
312}
313
Chris Lattnere86097a2010-02-28 02:31:26 +0000314unsigned EmitNodeMatcherCommon::getHashImpl() const {
Chris Lattner58aa8342010-02-25 06:49:58 +0000315 return (HashString(OpcodeName) << 4) | Operands.size();
316}
317
318
319unsigned MarkFlagResultsMatcher::getHashImpl() const {
320 return HashUnsigneds(FlagResultNodes.begin(), FlagResultNodes.end());
321}
322
323unsigned CompleteMatchMatcher::getHashImpl() const {
324 return HashUnsigneds(Results.begin(), Results.end()) ^
325 ((unsigned)(intptr_t)&Pattern << 8);
326}
Chris Lattner82781b92010-02-27 07:49:13 +0000327
328// isContradictoryImpl Implementations.
329
Chris Lattner82781b92010-02-27 07:49:13 +0000330static bool TypesAreContradictory(MVT::SimpleValueType T1,
331 MVT::SimpleValueType T2) {
332 // If the two types are the same, then they are the same, so they don't
333 // contradict.
334 if (T1 == T2) return false;
335
336 // If either type is about iPtr, then they don't conflict unless the other
337 // one is not a scalar integer type.
338 if (T1 == MVT::iPTR)
339 return !MVT(T2).isInteger() || MVT(T2).isVector();
340
341 if (T2 == MVT::iPTR)
342 return !MVT(T1).isInteger() || MVT(T1).isVector();
343
344 // Otherwise, they are two different non-iPTR types, they conflict.
345 return true;
346}
347
Chris Lattner22579812010-02-28 00:22:30 +0000348bool CheckOpcodeMatcher::isContradictoryImpl(const Matcher *M) const {
349 if (const CheckOpcodeMatcher *COM = dyn_cast<CheckOpcodeMatcher>(M)) {
350 // One node can't have two different opcodes!
Chris Lattnereb669212010-03-01 06:59:22 +0000351 // Note: pointer equality isn't enough here, we have to check the enum names
352 // to ensure that the nodes are for the same opcode.
353 return COM->getOpcode().getEnumName() != getOpcode().getEnumName();
Chris Lattner22579812010-02-28 00:22:30 +0000354 }
355
Chris Lattner22579812010-02-28 00:22:30 +0000356 // If the node has a known type, and if the type we're checking for is
357 // different, then we know they contradict. For example, a check for
358 // ISD::STORE will never be true at the same time a check for Type i32 is.
359 if (const CheckTypeMatcher *CT = dyn_cast<CheckTypeMatcher>(M)) {
Chris Lattner084df622010-03-24 00:41:19 +0000360 // If checking for a result the opcode doesn't have, it can't match.
361 if (CT->getResNo() >= getOpcode().getNumResults())
362 return true;
363
364 MVT::SimpleValueType NodeType = getOpcode().getKnownType(CT->getResNo());
Chris Lattneraac5b5b2010-03-19 01:14:27 +0000365 if (NodeType != MVT::Other)
366 return TypesAreContradictory(NodeType, CT->getType());
Chris Lattner22579812010-02-28 00:22:30 +0000367 }
368
369 return false;
370}
371
Chris Lattner82781b92010-02-27 07:49:13 +0000372bool CheckTypeMatcher::isContradictoryImpl(const Matcher *M) const {
373 if (const CheckTypeMatcher *CT = dyn_cast<CheckTypeMatcher>(M))
374 return TypesAreContradictory(getType(), CT->getType());
375 return false;
376}
377
378bool CheckChildTypeMatcher::isContradictoryImpl(const Matcher *M) const {
379 if (const CheckChildTypeMatcher *CC = dyn_cast<CheckChildTypeMatcher>(M)) {
380 // If the two checks are about different nodes, we don't know if they
381 // conflict!
382 if (CC->getChildNo() != getChildNo())
383 return false;
384
385 return TypesAreContradictory(getType(), CC->getType());
386 }
387 return false;
388}
389
Chris Lattner24789622010-02-27 08:11:15 +0000390bool CheckIntegerMatcher::isContradictoryImpl(const Matcher *M) const {
391 if (const CheckIntegerMatcher *CIM = dyn_cast<CheckIntegerMatcher>(M))
392 return CIM->getValue() != getValue();
393 return false;
394}
Chris Lattner48aa5752010-03-07 06:29:26 +0000395
396bool CheckValueTypeMatcher::isContradictoryImpl(const Matcher *M) const {
397 if (const CheckValueTypeMatcher *CVT = dyn_cast<CheckValueTypeMatcher>(M))
398 return CVT->getTypeName() != getTypeName();
399 return false;
400}
401