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

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

Issue 2707873002: Collect type profile for DevTools. (Closed)
Patch Set: Use constructor name if available. Created 3 years, 10 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 1243 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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
OLDNEW
« no previous file with comments | « src/compiler/opcodes.h ('k') | src/compiler/verifier.cc » ('j') | src/feedback-vector-inl.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698