| 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/bootstrapper.h" | 5 #include "src/bootstrapper.h" |
| 6 #include "src/compiler/graph-inl.h" | 6 #include "src/compiler/graph-inl.h" |
| 7 #include "src/compiler/js-operator.h" | 7 #include "src/compiler/js-operator.h" |
| 8 #include "src/compiler/node.h" | 8 #include "src/compiler/node.h" |
| 9 #include "src/compiler/node-properties-inl.h" | 9 #include "src/compiler/node-properties-inl.h" |
| 10 #include "src/compiler/node-properties.h" | 10 #include "src/compiler/node-properties.h" |
| (...skipping 1210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1221 return Bounds(); | 1221 return Bounds(); |
| 1222 } | 1222 } |
| 1223 | 1223 |
| 1224 | 1224 |
| 1225 Bounds Typer::Visitor::TypeStoreElement(Node* node) { | 1225 Bounds Typer::Visitor::TypeStoreElement(Node* node) { |
| 1226 UNREACHABLE(); | 1226 UNREACHABLE(); |
| 1227 return Bounds(); | 1227 return Bounds(); |
| 1228 } | 1228 } |
| 1229 | 1229 |
| 1230 | 1230 |
| 1231 Bounds Typer::Visitor::TypeIsSmi(Node* node) { return Bounds(Type::Boolean()); } |
| 1232 |
| 1233 |
| 1234 Bounds Typer::Visitor::TypeIsNonNegativeSmi(Node* node) { |
| 1235 return Bounds(Type::Boolean()); |
| 1236 } |
| 1237 |
| 1238 |
| 1231 // Machine operators. | 1239 // Machine operators. |
| 1232 | 1240 |
| 1233 Bounds Typer::Visitor::TypeLoad(Node* node) { | 1241 Bounds Typer::Visitor::TypeLoad(Node* node) { |
| 1234 return Bounds::Unbounded(zone()); | 1242 return Bounds::Unbounded(zone()); |
| 1235 } | 1243 } |
| 1236 | 1244 |
| 1237 | 1245 |
| 1238 Bounds Typer::Visitor::TypeStore(Node* node) { | 1246 Bounds Typer::Visitor::TypeStore(Node* node) { |
| 1239 UNREACHABLE(); | 1247 UNREACHABLE(); |
| 1240 return Bounds(); | 1248 return Bounds(); |
| (...skipping 384 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1625 return typer_->float64_array_fun_; | 1633 return typer_->float64_array_fun_; |
| 1626 } | 1634 } |
| 1627 } | 1635 } |
| 1628 } | 1636 } |
| 1629 return Type::Constant(value, zone()); | 1637 return Type::Constant(value, zone()); |
| 1630 } | 1638 } |
| 1631 | 1639 |
| 1632 } | 1640 } |
| 1633 } | 1641 } |
| 1634 } // namespace v8::internal::compiler | 1642 } // namespace v8::internal::compiler |
| OLD | NEW |