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 2425 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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(); } | 2444 Type* Typer::Visitor::TypeInt32PairAdd(Node* node) { return Type::Internal(); } |
2445 | 2445 |
| 2446 Type* Typer::Visitor::TypeInt32PairSub(Node* node) { return Type::Internal(); } |
| 2447 |
2446 Type* Typer::Visitor::TypeWord32PairShl(Node* node) { return Type::Internal(); } | 2448 Type* Typer::Visitor::TypeWord32PairShl(Node* node) { return Type::Internal(); } |
2447 | 2449 |
2448 Type* Typer::Visitor::TypeWord32PairShr(Node* node) { return Type::Internal(); } | 2450 Type* Typer::Visitor::TypeWord32PairShr(Node* node) { return Type::Internal(); } |
2449 | 2451 |
2450 Type* Typer::Visitor::TypeWord32PairSar(Node* node) { return Type::Internal(); } | 2452 Type* Typer::Visitor::TypeWord32PairSar(Node* node) { return Type::Internal(); } |
2451 | 2453 |
2452 // Heap constants. | 2454 // Heap constants. |
2453 | 2455 |
2454 | 2456 |
2455 Type* Typer::Visitor::TypeConstant(Handle<Object> value) { | 2457 Type* Typer::Visitor::TypeConstant(Handle<Object> value) { |
2456 if (value->IsJSTypedArray()) { | 2458 if (value->IsJSTypedArray()) { |
2457 switch (JSTypedArray::cast(*value)->type()) { | 2459 switch (JSTypedArray::cast(*value)->type()) { |
2458 #define TYPED_ARRAY_CASE(Type, type, TYPE, ctype, size) \ | 2460 #define TYPED_ARRAY_CASE(Type, type, TYPE, ctype, size) \ |
2459 case kExternal##Type##Array: \ | 2461 case kExternal##Type##Array: \ |
2460 return typer_->cache_.k##Type##Array; | 2462 return typer_->cache_.k##Type##Array; |
2461 TYPED_ARRAYS(TYPED_ARRAY_CASE) | 2463 TYPED_ARRAYS(TYPED_ARRAY_CASE) |
2462 #undef TYPED_ARRAY_CASE | 2464 #undef TYPED_ARRAY_CASE |
2463 } | 2465 } |
2464 } | 2466 } |
2465 if (Type::IsInteger(*value)) { | 2467 if (Type::IsInteger(*value)) { |
2466 return Type::Range(value->Number(), value->Number(), zone()); | 2468 return Type::Range(value->Number(), value->Number(), zone()); |
2467 } | 2469 } |
2468 return Type::Constant(value, zone()); | 2470 return Type::Constant(value, zone()); |
2469 } | 2471 } |
2470 | 2472 |
2471 } // namespace compiler | 2473 } // namespace compiler |
2472 } // namespace internal | 2474 } // namespace internal |
2473 } // namespace v8 | 2475 } // namespace v8 |
OLD | NEW |