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 <iomanip> | 7 #include <iomanip> |
8 | 8 |
9 #include "src/base/flags.h" | 9 #include "src/base/flags.h" |
10 #include "src/bootstrapper.h" | 10 #include "src/bootstrapper.h" |
(...skipping 1243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1254 Type* Typer::Visitor::TypeJSStoreNamedOwn(Node* node) { | 1254 Type* Typer::Visitor::TypeJSStoreNamedOwn(Node* node) { |
1255 UNREACHABLE(); | 1255 UNREACHABLE(); |
1256 return nullptr; | 1256 return nullptr; |
1257 } | 1257 } |
1258 | 1258 |
1259 Type* Typer::Visitor::TypeJSStoreDataPropertyInLiteral(Node* node) { | 1259 Type* Typer::Visitor::TypeJSStoreDataPropertyInLiteral(Node* node) { |
1260 UNREACHABLE(); | 1260 UNREACHABLE(); |
1261 return nullptr; | 1261 return nullptr; |
1262 } | 1262 } |
1263 | 1263 |
| 1264 Type* Typer::Visitor::TypeJSCollectTypeProfile(Node* node) { |
| 1265 UNREACHABLE(); |
| 1266 return nullptr; |
| 1267 } |
| 1268 |
1264 Type* Typer::Visitor::TypeJSDeleteProperty(Node* node) { | 1269 Type* Typer::Visitor::TypeJSDeleteProperty(Node* node) { |
1265 return Type::Boolean(); | 1270 return Type::Boolean(); |
1266 } | 1271 } |
1267 | 1272 |
1268 Type* Typer::Visitor::TypeJSHasProperty(Node* node) { return Type::Boolean(); } | 1273 Type* Typer::Visitor::TypeJSHasProperty(Node* node) { return Type::Boolean(); } |
1269 | 1274 |
1270 // JS instanceof operator. | 1275 // JS instanceof operator. |
1271 | 1276 |
1272 Type* Typer::Visitor::JSInstanceOfTyper(Type* lhs, Type* rhs, Typer* t) { | 1277 Type* Typer::Visitor::JSInstanceOfTyper(Type* lhs, Type* rhs, Typer* t) { |
1273 return Type::Boolean(); | 1278 return Type::Boolean(); |
(...skipping 674 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1948 Type* Typer::Visitor::TypeConstant(Handle<Object> value) { | 1953 Type* Typer::Visitor::TypeConstant(Handle<Object> value) { |
1949 if (Type::IsInteger(*value)) { | 1954 if (Type::IsInteger(*value)) { |
1950 return Type::Range(value->Number(), value->Number(), zone()); | 1955 return Type::Range(value->Number(), value->Number(), zone()); |
1951 } | 1956 } |
1952 return Type::NewConstant(value, zone()); | 1957 return Type::NewConstant(value, zone()); |
1953 } | 1958 } |
1954 | 1959 |
1955 } // namespace compiler | 1960 } // namespace compiler |
1956 } // namespace internal | 1961 } // namespace internal |
1957 } // namespace v8 | 1962 } // namespace v8 |
OLD | NEW |