Searched refs:CheckChildIntegerMatcher (Results 1 – 4 of 4) sorted by relevance
206 void CheckChildIntegerMatcher::printImpl(raw_ostream &OS, in printImpl()383 bool CheckChildIntegerMatcher::isContradictoryImpl(const Matcher *M) const { in isContradictoryImpl()384 if (const CheckChildIntegerMatcher *CCIM = dyn_cast<CheckChildIntegerMatcher>(M)) { in isContradictoryImpl()
585 class CheckChildIntegerMatcher : public Matcher {589 CheckChildIntegerMatcher(unsigned childno, int64_t value) in CheckChildIntegerMatcher() function602 return cast<CheckChildIntegerMatcher>(M)->ChildNo == ChildNo && in isEqualImpl()603 cast<CheckChildIntegerMatcher>(M)->Value == Value; in isEqualImpl()
546 OS << "OPC_CheckChild" << cast<CheckChildIntegerMatcher>(N)->getChildNo() in EmitMatcher()548 unsigned Bytes=1+EmitVBRValue(cast<CheckChildIntegerMatcher>(N)->getValue(), in EmitMatcher()
61 New = new CheckChildIntegerMatcher(MC->getChildNo(), CS->getValue()); in ContractNodes()