Home
last modified time | relevance | path

Searched refs:CheckIntegerMatcher (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/
H A DDAGISelMatcher.cpp201 void CheckIntegerMatcher::printImpl(raw_ostream &OS, indent Indent) const { in printImpl()
385 bool CheckIntegerMatcher::isContradictoryImpl(const Matcher *M) const { in isContradictoryImpl()
386 if (const CheckIntegerMatcher *CIM = dyn_cast<CheckIntegerMatcher>(M)) in isContradictoryImpl()
H A DDAGISelMatcher.h594 class CheckIntegerMatcher : public Matcher {
598 CheckIntegerMatcher(int64_t value) : Matcher(CheckInteger), Value(value) {} in CheckIntegerMatcher() function
607 return cast<CheckIntegerMatcher>(M)->Value == Value; in isEqualImpl()
/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DDAGISelMatcherOpt.cpp60 if (CheckIntegerMatcher *CI = in ContractNodes()
61 dyn_cast<CheckIntegerMatcher>(MC->getNext())) in ContractNodes()
145 if (auto *CI = dyn_cast<CheckIntegerMatcher>(MS->getNext())) { in ContractNodes()
H A DDAGISelMatcherGen.cpp213 return AddMatcher(new CheckIntegerMatcher(II->getValue())); in EmitLeafMatchCode()
H A DDAGISelMatcherEmitter.cpp700 1 + EmitSignedVBRValue(cast<CheckIntegerMatcher>(N)->getValue(), OS); in EmitMatcher()