Searched refs:input_matcher (Results 1 – 2 of 2) sorted by relevance
309 Matcher<Node*> IsChangeFloat64ToInt32(const Matcher<Node*>& input_matcher);310 Matcher<Node*> IsChangeFloat64ToUint32(const Matcher<Node*>& input_matcher);311 Matcher<Node*> IsChangeInt32ToFloat64(const Matcher<Node*>& input_matcher);312 Matcher<Node*> IsChangeInt32ToInt64(const Matcher<Node*>& input_matcher);313 Matcher<Node*> IsChangeUint32ToFloat64(const Matcher<Node*>& input_matcher);314 Matcher<Node*> IsChangeUint32ToUint64(const Matcher<Node*>& input_matcher);315 Matcher<Node*> IsTruncateFloat64ToFloat32(const Matcher<Node*>& input_matcher);316 Matcher<Node*> IsTruncateFloat64ToInt32(const Matcher<Node*>& input_matcher);317 Matcher<Node*> IsTruncateInt64ToInt32(const Matcher<Node*>& input_matcher);322 Matcher<Node*> IsFloat32Abs(const Matcher<Node*>& input_matcher);[all …]
1421 IsUnopMatcher(IrOpcode::Value opcode, const Matcher<Node*>& input_matcher) in IsUnopMatcher() argument1422 : NodeMatcher(opcode), input_matcher_(input_matcher) {} in IsUnopMatcher()2086 Matcher<Node*> Is##Name(const Matcher<Node*>& input_matcher) { \2087 return MakeMatcher(new IsUnopMatcher(IrOpcode::k##Name, input_matcher)); \