OLD | NEW |
1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "test/unittests/compiler/node-test-utils.h" | 5 #include "test/unittests/compiler/node-test-utils.h" |
6 | 6 |
7 #include "src/assembler.h" | 7 #include "src/assembler.h" |
8 #include "src/compiler/node-properties.h" | 8 #include "src/compiler/node-properties.h" |
9 #include "src/compiler/simplified-operator.h" | 9 #include "src/compiler/simplified-operator.h" |
10 #include "src/unique.h" | 10 #include "src/unique.h" |
(...skipping 1225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1236 bool MatchAndExplain(Node* node, MatchResultListener* listener) const FINAL { | 1236 bool MatchAndExplain(Node* node, MatchResultListener* listener) const FINAL { |
1237 return (NodeMatcher::MatchAndExplain(node, listener) && | 1237 return (NodeMatcher::MatchAndExplain(node, listener) && |
1238 PrintMatchAndExplain(NodeProperties::GetValueInput(node, 0), | 1238 PrintMatchAndExplain(NodeProperties::GetValueInput(node, 0), |
1239 "input", input_matcher_, listener)); | 1239 "input", input_matcher_, listener)); |
1240 } | 1240 } |
1241 | 1241 |
1242 private: | 1242 private: |
1243 const Matcher<Node*> input_matcher_; | 1243 const Matcher<Node*> input_matcher_; |
1244 }; | 1244 }; |
1245 | 1245 |
| 1246 |
| 1247 class IsFloat64ExtractWord32Matcher FINAL : public NodeMatcher { |
| 1248 public: |
| 1249 IsFloat64ExtractWord32Matcher(const Matcher<int>& location_matcher, |
| 1250 const Matcher<Node*>& value_matcher) |
| 1251 : NodeMatcher(IrOpcode::kFloat64ExtractWord32), |
| 1252 location_matcher_(location_matcher), |
| 1253 value_matcher_(value_matcher) {} |
| 1254 |
| 1255 void DescribeTo(std::ostream* os) const FINAL { |
| 1256 NodeMatcher::DescribeTo(os); |
| 1257 *os << " whose location ("; |
| 1258 location_matcher_.DescribeTo(os); |
| 1259 *os << ") and value ("; |
| 1260 value_matcher_.DescribeTo(os); |
| 1261 *os << ")"; |
| 1262 } |
| 1263 |
| 1264 bool MatchAndExplain(Node* node, MatchResultListener* listener) const FINAL { |
| 1265 return (NodeMatcher::MatchAndExplain(node, listener) && |
| 1266 PrintMatchAndExplain(OpParameter<int>(node), "location", |
| 1267 location_matcher_, listener) && |
| 1268 PrintMatchAndExplain(NodeProperties::GetValueInput(node, 0), |
| 1269 "value", value_matcher_, listener)); |
| 1270 } |
| 1271 |
| 1272 private: |
| 1273 const Matcher<int> location_matcher_; |
| 1274 const Matcher<Node*> value_matcher_; |
| 1275 }; |
| 1276 |
| 1277 |
| 1278 class IsFloat64InsertWord32Matcher FINAL : public NodeMatcher { |
| 1279 public: |
| 1280 IsFloat64InsertWord32Matcher(const Matcher<int>& location_matcher, |
| 1281 const Matcher<Node*>& lhs_matcher, |
| 1282 const Matcher<Node*>& rhs_matcher) |
| 1283 : NodeMatcher(IrOpcode::kFloat64InsertWord32), |
| 1284 location_matcher_(location_matcher), |
| 1285 lhs_matcher_(lhs_matcher), |
| 1286 rhs_matcher_(rhs_matcher) {} |
| 1287 |
| 1288 void DescribeTo(std::ostream* os) const FINAL { |
| 1289 NodeMatcher::DescribeTo(os); |
| 1290 *os << " whose location ("; |
| 1291 location_matcher_.DescribeTo(os); |
| 1292 *os << "), lhs ("; |
| 1293 lhs_matcher_.DescribeTo(os); |
| 1294 *os << ") and rhs ("; |
| 1295 rhs_matcher_.DescribeTo(os); |
| 1296 *os << ")"; |
| 1297 } |
| 1298 |
| 1299 bool MatchAndExplain(Node* node, MatchResultListener* listener) const FINAL { |
| 1300 return (NodeMatcher::MatchAndExplain(node, listener) && |
| 1301 PrintMatchAndExplain(OpParameter<int>(node), "location", |
| 1302 location_matcher_, listener) && |
| 1303 PrintMatchAndExplain(NodeProperties::GetValueInput(node, 0), "lhs", |
| 1304 lhs_matcher_, listener) && |
| 1305 PrintMatchAndExplain(NodeProperties::GetValueInput(node, 1), "rhs", |
| 1306 rhs_matcher_, listener)); |
| 1307 } |
| 1308 |
| 1309 private: |
| 1310 const Matcher<int> location_matcher_; |
| 1311 const Matcher<Node*> lhs_matcher_; |
| 1312 const Matcher<Node*> rhs_matcher_; |
| 1313 }; |
| 1314 |
1246 } // namespace | 1315 } // namespace |
1247 | 1316 |
1248 | 1317 |
1249 Matcher<Node*> IsAlways() { | 1318 Matcher<Node*> IsAlways() { |
1250 return MakeMatcher(new NodeMatcher(IrOpcode::kAlways)); | 1319 return MakeMatcher(new NodeMatcher(IrOpcode::kAlways)); |
1251 } | 1320 } |
1252 | 1321 |
1253 | 1322 |
1254 Matcher<Node*> IsEnd(const Matcher<Node*>& control_matcher) { | 1323 Matcher<Node*> IsEnd(const Matcher<Node*>& control_matcher) { |
1255 return MakeMatcher(new IsControl1Matcher(IrOpcode::kEnd, control_matcher)); | 1324 return MakeMatcher(new IsControl1Matcher(IrOpcode::kEnd, control_matcher)); |
(...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1555 const Matcher<Node*>& index_matcher, | 1624 const Matcher<Node*>& index_matcher, |
1556 const Matcher<Node*>& value_matcher, | 1625 const Matcher<Node*>& value_matcher, |
1557 const Matcher<Node*>& effect_matcher, | 1626 const Matcher<Node*>& effect_matcher, |
1558 const Matcher<Node*>& control_matcher) { | 1627 const Matcher<Node*>& control_matcher) { |
1559 return MakeMatcher(new IsStoreMatcher(rep_matcher, base_matcher, | 1628 return MakeMatcher(new IsStoreMatcher(rep_matcher, base_matcher, |
1560 index_matcher, value_matcher, | 1629 index_matcher, value_matcher, |
1561 effect_matcher, control_matcher)); | 1630 effect_matcher, control_matcher)); |
1562 } | 1631 } |
1563 | 1632 |
1564 | 1633 |
| 1634 Matcher<Node*> IsFloat64ExtractWord32(const Matcher<int>& location_matcher, |
| 1635 const Matcher<Node*>& value_matcher) { |
| 1636 return MakeMatcher( |
| 1637 new IsFloat64ExtractWord32Matcher(location_matcher, value_matcher)); |
| 1638 } |
| 1639 |
| 1640 |
| 1641 Matcher<Node*> IsFloat64InsertWord32(const Matcher<int>& location_matcher, |
| 1642 const Matcher<Node*>& lhs_matcher, |
| 1643 const Matcher<Node*>& rhs_matcher) { |
| 1644 return MakeMatcher(new IsFloat64InsertWord32Matcher( |
| 1645 location_matcher, lhs_matcher, rhs_matcher)); |
| 1646 } |
| 1647 |
| 1648 |
1565 #define IS_BINOP_MATCHER(Name) \ | 1649 #define IS_BINOP_MATCHER(Name) \ |
1566 Matcher<Node*> Is##Name(const Matcher<Node*>& lhs_matcher, \ | 1650 Matcher<Node*> Is##Name(const Matcher<Node*>& lhs_matcher, \ |
1567 const Matcher<Node*>& rhs_matcher) { \ | 1651 const Matcher<Node*>& rhs_matcher) { \ |
1568 return MakeMatcher( \ | 1652 return MakeMatcher( \ |
1569 new IsBinopMatcher(IrOpcode::k##Name, lhs_matcher, rhs_matcher)); \ | 1653 new IsBinopMatcher(IrOpcode::k##Name, lhs_matcher, rhs_matcher)); \ |
1570 } | 1654 } |
1571 IS_BINOP_MATCHER(NumberEqual) | 1655 IS_BINOP_MATCHER(NumberEqual) |
1572 IS_BINOP_MATCHER(NumberLessThan) | 1656 IS_BINOP_MATCHER(NumberLessThan) |
1573 IS_BINOP_MATCHER(NumberSubtract) | 1657 IS_BINOP_MATCHER(NumberSubtract) |
1574 IS_BINOP_MATCHER(NumberMultiply) | 1658 IS_BINOP_MATCHER(NumberMultiply) |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1616 IS_UNOP_MATCHER(Float64RoundTiesAway) | 1700 IS_UNOP_MATCHER(Float64RoundTiesAway) |
1617 IS_UNOP_MATCHER(NumberToInt32) | 1701 IS_UNOP_MATCHER(NumberToInt32) |
1618 IS_UNOP_MATCHER(NumberToUint32) | 1702 IS_UNOP_MATCHER(NumberToUint32) |
1619 IS_UNOP_MATCHER(ObjectIsSmi) | 1703 IS_UNOP_MATCHER(ObjectIsSmi) |
1620 IS_UNOP_MATCHER(ObjectIsNonNegativeSmi) | 1704 IS_UNOP_MATCHER(ObjectIsNonNegativeSmi) |
1621 #undef IS_UNOP_MATCHER | 1705 #undef IS_UNOP_MATCHER |
1622 | 1706 |
1623 } // namespace compiler | 1707 } // namespace compiler |
1624 } // namespace internal | 1708 } // namespace internal |
1625 } // namespace v8 | 1709 } // namespace v8 |
OLD | NEW |