| 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 2294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2305 Bounds Typer::Visitor::TypeFloat64InsertHighWord32(Node* node) { | 2305 Bounds Typer::Visitor::TypeFloat64InsertHighWord32(Node* node) { |
| 2306 return Bounds(Type::Number()); | 2306 return Bounds(Type::Number()); |
| 2307 } | 2307 } |
| 2308 | 2308 |
| 2309 | 2309 |
| 2310 Bounds Typer::Visitor::TypeLoadStackPointer(Node* node) { | 2310 Bounds Typer::Visitor::TypeLoadStackPointer(Node* node) { |
| 2311 return Bounds(Type::Internal()); | 2311 return Bounds(Type::Internal()); |
| 2312 } | 2312 } |
| 2313 | 2313 |
| 2314 | 2314 |
| 2315 Bounds Typer::Visitor::TypeLoadFramePointer(Node* node) { |
| 2316 return Bounds(Type::Internal()); |
| 2317 } |
| 2318 |
| 2319 |
| 2315 Bounds Typer::Visitor::TypeCheckedLoad(Node* node) { | 2320 Bounds Typer::Visitor::TypeCheckedLoad(Node* node) { |
| 2316 return Bounds::Unbounded(zone()); | 2321 return Bounds::Unbounded(zone()); |
| 2317 } | 2322 } |
| 2318 | 2323 |
| 2319 | 2324 |
| 2320 Bounds Typer::Visitor::TypeCheckedStore(Node* node) { | 2325 Bounds Typer::Visitor::TypeCheckedStore(Node* node) { |
| 2321 UNREACHABLE(); | 2326 UNREACHABLE(); |
| 2322 return Bounds(); | 2327 return Bounds(); |
| 2323 } | 2328 } |
| 2324 | 2329 |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2395 TYPED_ARRAYS(TYPED_ARRAY_CASE) | 2400 TYPED_ARRAYS(TYPED_ARRAY_CASE) |
| 2396 #undef TYPED_ARRAY_CASE | 2401 #undef TYPED_ARRAY_CASE |
| 2397 } | 2402 } |
| 2398 } | 2403 } |
| 2399 return Type::Constant(value, zone()); | 2404 return Type::Constant(value, zone()); |
| 2400 } | 2405 } |
| 2401 | 2406 |
| 2402 } // namespace compiler | 2407 } // namespace compiler |
| 2403 } // namespace internal | 2408 } // namespace internal |
| 2404 } // namespace v8 | 2409 } // namespace v8 |
| OLD | NEW |