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

Unified Diff: src/compiler.h

Issue 21340002: Generate a custom OSR entrypoint for OSR compiles on all platforms, and transition to optimized cod… (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 5 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.h
diff --git a/src/compiler.h b/src/compiler.h
index d36e488b174f9fbed7204ced0d5d6836c5afce1b..d2f464a3266791013e3bf5f6a33d87c7800580d5 100644
--- a/src/compiler.h
+++ b/src/compiler.h
@@ -589,7 +589,8 @@ class Compiler : public AllStatic {
// Compile from function info (used for lazy compilation). Returns true on
// success and false if the compilation resulted in a stack overflow.
- static bool CompileLazy(CompilationInfo* info);
+ // If {install} is set to {true}, installs the code into the function.
+ static bool CompileLazy(CompilationInfo* info, bool install = true);
Michael Starzinger 2013/07/31 14:55:50 The boolean flag is obsolete, see commment in comp
static void RecompileParallel(Handle<JSFunction> function);

Powered by Google App Engine
This is Rietveld 408576698