OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CheckChildIntegerMatcher
(Results
1 - 4
of
4
) sorted by null
/external/llvm/utils/TableGen/
DAGISelMatcher.cpp
197
void
CheckChildIntegerMatcher
::printImpl(raw_ostream &OS,
428
bool
CheckChildIntegerMatcher
::isContradictoryImpl(const Matcher *M) const {
429
if (const
CheckChildIntegerMatcher
*CCIM = dyn_cast<
CheckChildIntegerMatcher
>(M)) {
DAGISelMatcher.h
637
///
CheckChildIntegerMatcher
- This checks to see if the child node is a
639
class
CheckChildIntegerMatcher
: public Matcher {
643
CheckChildIntegerMatcher
(unsigned childno, int64_t value)
658
return cast<
CheckChildIntegerMatcher
>(M)->ChildNo == ChildNo &&
659
cast<
CheckChildIntegerMatcher
>(M)->Value == Value;
[
all
...]
DAGISelMatcherOpt.cpp
62
New = new
CheckChildIntegerMatcher
(MC->getChildNo(), CS->getValue());
DAGISelMatcherEmitter.cpp
400
OS << "OPC_CheckChild" << cast<
CheckChildIntegerMatcher
>(N)->getChildNo()
402
unsigned Bytes=1+EmitVBRValue(cast<
CheckChildIntegerMatcher
>(N)->getValue(),
Completed in 174 milliseconds