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

Unified Diff: src/compiler.cc

Issue 1021713005: [turbofan]: Integrate basic type feedback for property accesses. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 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 side-by-side diff with in-line comments
Download patch
Index: src/compiler.cc
diff --git a/src/compiler.cc b/src/compiler.cc
index 96edf2d3b92478545674cb920dc2e4dde18ee9da..8665bcd1451a15ea6edd62d8fc68abad1d7b778e 100644
--- a/src/compiler.cc
+++ b/src/compiler.cc
@@ -418,6 +418,8 @@ OptimizedCompileJob::Status OptimizedCompileJob::CreateGraph() {
if (info()->shared_info()->asm_function()) {
info()->MarkAsContextSpecializing();
+ } else if (FLAG_turbo_type_feedback) {
Michael Starzinger 2015/03/24 09:06:39 Can we please move this into the CompilationInfo c
titzer 2015/03/24 10:49:31 As discussed in person, we only want to enable typ
Michael Starzinger 2015/03/24 12:11:17 Acknowledged.
+ info()->MarkAsTypeFeedbackEnabled();
}
Timer t(this, &time_taken_to_create_graph_);

Powered by Google App Engine
This is Rietveld 408576698