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

Unified Diff: runtime/vm/code_generator.cc

Issue 16693006: Initial implementation of on-stack replacement (OSR). (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Clean up for review. Created 7 years, 6 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: runtime/vm/code_generator.cc
diff --git a/runtime/vm/code_generator.cc b/runtime/vm/code_generator.cc
index 86ca5af5052f9e358c9bd82399e90b962a35ebbc..b52cf3f5429e31da595217c517d995adfec2aa29 100644
--- a/runtime/vm/code_generator.cc
+++ b/runtime/vm/code_generator.cc
@@ -54,6 +54,13 @@ DEFINE_FLAG(int, reoptimization_counter_threshold, 2000,
DEFINE_FLAG(int, max_subtype_cache_entries, 100,
"Maximum number of subtype cache entries (number of checks cached).");
+#if defined(TARGET_ARCH_IA32) || defined(TARGET_ARCH_X64)
+DEFINE_FLAG(bool, use_osr, true, "Use on-stack replacement.");
+#else
+DEFINE_FLAG(bool, use_osr, false, "Use on-stack replacement.");
+#endif
+DEFINE_FLAG(bool, trace_osr, false, "Trace attempts at on-stack replacement.");
+
DEFINE_RUNTIME_ENTRY(TraceFunctionEntry, 1) {
ASSERT(arguments.ArgCount() ==
@@ -1265,6 +1272,38 @@ DEFINE_RUNTIME_ENTRY(StackOverflow, 0) {
(*callback)();
}
}
+
+ if (FLAG_use_osr && (interrupt_bits == 0)) {
+ DartFrameIterator iterator;
+ StackFrame* frame = iterator.NextFrame();
+ const Function& function = Function::Handle(frame->LookupDartFunction());
+ ASSERT(!function.IsNull());
+ if (!function.is_optimizable()) return;
+ intptr_t osr_id =
+ Code::Handle(function.unoptimized_code()).GetDeoptIdForOsr(frame->pc());
+ if (FLAG_trace_osr) {
+ OS::Print("Attempting OSR for %s at id=%"Pd"\n",
+ function.ToFullyQualifiedCString(),
+ osr_id);
+ }
+
+ const Error& error =
+ Error::Handle(Compiler::CompileOptimizedFunction(function, osr_id));
+ if (!error.IsNull()) Exceptions::PropagateError(error);
+
+ const Code& optimized_code = Code::Handle(function.CurrentCode());
+ // The current code will still be the unoptimized code in the case that
+ // the compiler bailed out (not an error) during OSR compilation.
+ if (optimized_code.raw() != function.unoptimized_code()) {
srdjan 2013/06/11 17:12:02 You could check 'optimized_code.is_optimized()'
Kevin Millikin (Google) 2013/06/14 10:10:42 Done.
+ // The OSR code does not work for calling the function, so restore the
+ // unoptimized code. Patch the stack frame to return into the OSR
+ // code.
+ intptr_t optimized_entry =
+ Instructions::Handle(optimized_code.instructions()).EntryPoint();
+ function.SetCode(Code::Handle(function.unoptimized_code()));
+ frame->set_pc(optimized_entry);
+ }
+ }
}
@@ -1328,9 +1367,8 @@ DEFINE_RUNTIME_ENTRY(OptimizeInvokedFunction, 1) {
}
const Code& optimized_code = Code::Handle(function.CurrentCode());
ASSERT(!optimized_code.IsNull());
- // Set usage counter for reoptimization.
- function.set_usage_counter(
- function.usage_counter() - FLAG_reoptimization_counter_threshold);
+ // Reset usage counter for reoptimization.
+ function.set_usage_counter(0);
} else {
if (FLAG_trace_failed_optimization_attempts) {
OS::PrintErr("Not Optimizable: %s\n", function.ToFullyQualifiedCString());

Powered by Google App Engine
This is Rietveld 408576698