Home
last modified time | relevance | path

Searched refs:input_matcher (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/compiler/
Dgraph-unittest.h126 Matcher<Node*> IsChangeFloat64ToInt32(const Matcher<Node*>& input_matcher);
127 Matcher<Node*> IsChangeFloat64ToUint32(const Matcher<Node*>& input_matcher);
128 Matcher<Node*> IsChangeInt32ToFloat64(const Matcher<Node*>& input_matcher);
129 Matcher<Node*> IsChangeInt32ToInt64(const Matcher<Node*>& input_matcher);
130 Matcher<Node*> IsChangeUint32ToFloat64(const Matcher<Node*>& input_matcher);
131 Matcher<Node*> IsChangeUint32ToUint64(const Matcher<Node*>& input_matcher);
132 Matcher<Node*> IsTruncateFloat64ToInt32(const Matcher<Node*>& input_matcher);
133 Matcher<Node*> IsTruncateInt64ToInt32(const Matcher<Node*>& input_matcher);
134 Matcher<Node*> IsFloat64Sqrt(const Matcher<Node*>& input_matcher);
Dgraph-unittest.cc583 IsUnopMatcher(IrOpcode::Value opcode, const Matcher<Node*>& input_matcher) in IsUnopMatcher() argument
584 : NodeMatcher(opcode), input_matcher_(input_matcher) {} in IsUnopMatcher()
763 Matcher<Node*> Is##Name(const Matcher<Node*>& input_matcher) { \
764 return MakeMatcher(new IsUnopMatcher(IrOpcode::k##Name, input_matcher)); \