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

Unified Diff: src/compiler/js-inlining-heuristic.h

Issue 1418823005: [turbofan] Disable general purpose inlining with asm.js code. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 2 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
« no previous file with comments | « no previous file | src/compiler/js-inlining-heuristic.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/js-inlining-heuristic.h
diff --git a/src/compiler/js-inlining-heuristic.h b/src/compiler/js-inlining-heuristic.h
index aa7ab811f53d16516d097d3bfbcc444550a01b1c..a4a0ec3b75855a1c197cf27771b943f0800eadb6 100644
--- a/src/compiler/js-inlining-heuristic.h
+++ b/src/compiler/js-inlining-heuristic.h
@@ -21,7 +21,8 @@ class JSInliningHeuristic final : public AdvancedReducer {
local_zone_(local_zone),
jsgraph_(jsgraph),
inliner_(editor, local_zone, info, jsgraph),
- candidates_(local_zone) {}
+ candidates_(local_zone),
+ info_(info) {}
Reduction Reduce(Node* node) final;
@@ -44,6 +45,7 @@ class JSInliningHeuristic final : public AdvancedReducer {
JSGraph* jsgraph_;
JSInliner inliner_;
ZoneVector<Candidate> candidates_;
+ CompilationInfo* info_;
};
} // namespace compiler
« no previous file with comments | « no previous file | src/compiler/js-inlining-heuristic.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698