Home
last modified time | relevance | path

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

/external/v8/test/unittests/compiler/
Dnode-test-utils.h309 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 …]
Dnode-test-utils.cc1421 IsUnopMatcher(IrOpcode::Value opcode, const Matcher<Node*>& input_matcher) in IsUnopMatcher() argument
1422 : 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)); \