Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(466)

Side by Side Diff: src/compiler/typer.cc

Issue 2707873002: Collect type profile for DevTools. (Closed)
Patch Set: Add documentation and sprinkle consts around. Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 1255 matching lines...) Expand 10 before | Expand all | Expand 10 after
1266 Type* Typer::Visitor::TypeJSStoreNamedOwn(Node* node) { 1266 Type* Typer::Visitor::TypeJSStoreNamedOwn(Node* node) {
1267 UNREACHABLE(); 1267 UNREACHABLE();
1268 return nullptr; 1268 return nullptr;
1269 } 1269 }
1270 1270
1271 Type* Typer::Visitor::TypeJSStoreDataPropertyInLiteral(Node* node) { 1271 Type* Typer::Visitor::TypeJSStoreDataPropertyInLiteral(Node* node) {
1272 UNREACHABLE(); 1272 UNREACHABLE();
1273 return nullptr; 1273 return nullptr;
1274 } 1274 }
1275 1275
1276 Type* Typer::Visitor::TypeJSCollectTypeProfile(Node* node) {
1277 UNREACHABLE();
1278 return nullptr;
1279 }
1280
1276 Type* Typer::Visitor::TypeJSDeleteProperty(Node* node) { 1281 Type* Typer::Visitor::TypeJSDeleteProperty(Node* node) {
1277 return Type::Boolean(); 1282 return Type::Boolean();
1278 } 1283 }
1279 1284
1280 Type* Typer::Visitor::TypeJSHasProperty(Node* node) { return Type::Boolean(); } 1285 Type* Typer::Visitor::TypeJSHasProperty(Node* node) { return Type::Boolean(); }
1281 1286
1282 // JS instanceof operator. 1287 // JS instanceof operator.
1283 1288
1284 Type* Typer::Visitor::JSInstanceOfTyper(Type* lhs, Type* rhs, Typer* t) { 1289 Type* Typer::Visitor::JSInstanceOfTyper(Type* lhs, Type* rhs, Typer* t) {
1285 return Type::Boolean(); 1290 return Type::Boolean();
(...skipping 697 matching lines...) Expand 10 before | Expand all | Expand 10 after
1983 Type* Typer::Visitor::TypeConstant(Handle<Object> value) { 1988 Type* Typer::Visitor::TypeConstant(Handle<Object> value) {
1984 if (Type::IsInteger(*value)) { 1989 if (Type::IsInteger(*value)) {
1985 return Type::Range(value->Number(), value->Number(), zone()); 1990 return Type::Range(value->Number(), value->Number(), zone());
1986 } 1991 }
1987 return Type::NewConstant(value, zone()); 1992 return Type::NewConstant(value, zone());
1988 } 1993 }
1989 1994
1990 } // namespace compiler 1995 } // namespace compiler
1991 } // namespace internal 1996 } // namespace internal
1992 } // namespace v8 1997 } // namespace v8
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698