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 "src/base/flags.h" | 5 #include "src/base/flags.h" |
6 #include "src/bootstrapper.h" | 6 #include "src/bootstrapper.h" |
7 #include "src/compiler/graph-reducer.h" | 7 #include "src/compiler/graph-reducer.h" |
8 #include "src/compiler/js-operator.h" | 8 #include "src/compiler/js-operator.h" |
9 #include "src/compiler/node.h" | 9 #include "src/compiler/node.h" |
10 #include "src/compiler/node-properties.h" | 10 #include "src/compiler/node-properties.h" |
(...skipping 1501 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1512 case Runtime::kInlineConstructDouble: | 1512 case Runtime::kInlineConstructDouble: |
1513 return Bounds(Type::None(zone()), Type::Number()); | 1513 return Bounds(Type::None(zone()), Type::Number()); |
1514 default: | 1514 default: |
1515 break; | 1515 break; |
1516 } | 1516 } |
1517 return Bounds::Unbounded(zone()); | 1517 return Bounds::Unbounded(zone()); |
1518 } | 1518 } |
1519 | 1519 |
1520 | 1520 |
1521 Bounds Typer::Visitor::TypeJSDebugger(Node* node) { | 1521 Bounds Typer::Visitor::TypeJSDebugger(Node* node) { |
| 1522 UNREACHABLE(); |
| 1523 return Bounds(); |
| 1524 } |
| 1525 |
| 1526 |
| 1527 Bounds Typer::Visitor::TypeJSStackCheck(Node* node) { |
1522 return Bounds::Unbounded(zone()); | 1528 return Bounds::Unbounded(zone()); |
1523 } | 1529 } |
1524 | 1530 |
1525 | 1531 |
1526 // Simplified operators. | 1532 // Simplified operators. |
1527 | 1533 |
1528 | 1534 |
1529 Bounds Typer::Visitor::TypeAnyToBoolean(Node* node) { | 1535 Bounds Typer::Visitor::TypeAnyToBoolean(Node* node) { |
1530 return TypeUnaryOp(node, ToBoolean); | 1536 return TypeUnaryOp(node, ToBoolean); |
1531 } | 1537 } |
(...skipping 679 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2211 TYPED_ARRAYS(TYPED_ARRAY_CASE) | 2217 TYPED_ARRAYS(TYPED_ARRAY_CASE) |
2212 #undef TYPED_ARRAY_CASE | 2218 #undef TYPED_ARRAY_CASE |
2213 } | 2219 } |
2214 } | 2220 } |
2215 return Type::Constant(value, zone()); | 2221 return Type::Constant(value, zone()); |
2216 } | 2222 } |
2217 | 2223 |
2218 } // namespace compiler | 2224 } // namespace compiler |
2219 } // namespace internal | 2225 } // namespace internal |
2220 } // namespace v8 | 2226 } // namespace v8 |
OLD | NEW |