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/compiler/typer.h" | 5 #include "src/compiler/typer.h" |
6 | 6 |
7 #include "src/base/flags.h" | 7 #include "src/base/flags.h" |
8 #include "src/bootstrapper.h" | 8 #include "src/bootstrapper.h" |
9 #include "src/compilation-dependencies.h" | 9 #include "src/compilation-dependencies.h" |
10 #include "src/compiler/common-operator.h" | 10 #include "src/compiler/common-operator.h" |
(...skipping 2423 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2434 } | 2434 } |
2435 | 2435 |
2436 Type* Typer::Visitor::TypeCheckedLoad(Node* node) { return Type::Any(); } | 2436 Type* Typer::Visitor::TypeCheckedLoad(Node* node) { return Type::Any(); } |
2437 | 2437 |
2438 | 2438 |
2439 Type* Typer::Visitor::TypeCheckedStore(Node* node) { | 2439 Type* Typer::Visitor::TypeCheckedStore(Node* node) { |
2440 UNREACHABLE(); | 2440 UNREACHABLE(); |
2441 return nullptr; | 2441 return nullptr; |
2442 } | 2442 } |
2443 | 2443 |
| 2444 Type* Typer::Visitor::TypeInt32PairAdd(Node* node) { return Type::Internal(); } |
| 2445 |
2444 Type* Typer::Visitor::TypeWord32PairShl(Node* node) { return Type::Internal(); } | 2446 Type* Typer::Visitor::TypeWord32PairShl(Node* node) { return Type::Internal(); } |
2445 | 2447 |
2446 Type* Typer::Visitor::TypeWord32PairShr(Node* node) { return Type::Internal(); } | 2448 Type* Typer::Visitor::TypeWord32PairShr(Node* node) { return Type::Internal(); } |
2447 | 2449 |
2448 Type* Typer::Visitor::TypeWord32PairSar(Node* node) { return Type::Internal(); } | 2450 Type* Typer::Visitor::TypeWord32PairSar(Node* node) { return Type::Internal(); } |
2449 | 2451 |
2450 // Heap constants. | 2452 // Heap constants. |
2451 | 2453 |
2452 | 2454 |
2453 Type* Typer::Visitor::TypeConstant(Handle<Object> value) { | 2455 Type* Typer::Visitor::TypeConstant(Handle<Object> value) { |
2454 if (value->IsJSTypedArray()) { | 2456 if (value->IsJSTypedArray()) { |
2455 switch (JSTypedArray::cast(*value)->type()) { | 2457 switch (JSTypedArray::cast(*value)->type()) { |
2456 #define TYPED_ARRAY_CASE(Type, type, TYPE, ctype, size) \ | 2458 #define TYPED_ARRAY_CASE(Type, type, TYPE, ctype, size) \ |
2457 case kExternal##Type##Array: \ | 2459 case kExternal##Type##Array: \ |
2458 return typer_->cache_.k##Type##Array; | 2460 return typer_->cache_.k##Type##Array; |
2459 TYPED_ARRAYS(TYPED_ARRAY_CASE) | 2461 TYPED_ARRAYS(TYPED_ARRAY_CASE) |
2460 #undef TYPED_ARRAY_CASE | 2462 #undef TYPED_ARRAY_CASE |
2461 } | 2463 } |
2462 } | 2464 } |
2463 if (Type::IsInteger(*value)) { | 2465 if (Type::IsInteger(*value)) { |
2464 return Type::Range(value->Number(), value->Number(), zone()); | 2466 return Type::Range(value->Number(), value->Number(), zone()); |
2465 } | 2467 } |
2466 return Type::Constant(value, zone()); | 2468 return Type::Constant(value, zone()); |
2467 } | 2469 } |
2468 | 2470 |
2469 } // namespace compiler | 2471 } // namespace compiler |
2470 } // namespace internal | 2472 } // namespace internal |
2471 } // namespace v8 | 2473 } // namespace v8 |
OLD | NEW |