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

Unified Diff: runtime/vm/code_generator.cc

Issue 1884213004: Fix a crash in debugger, add flag --stress-test-background-compilation, add asserts. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 4 years, 8 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 | runtime/vm/compiler.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/code_generator.cc
diff --git a/runtime/vm/code_generator.cc b/runtime/vm/code_generator.cc
index 1aa9dda95adc1a0809f03127481bf127936ba74a..9511db9a98ceaab7ca3587ba1f22ced085c6fcb2 100644
--- a/runtime/vm/code_generator.cc
+++ b/runtime/vm/code_generator.cc
@@ -31,16 +31,11 @@ DEFINE_FLAG(int, max_subtype_cache_entries, 100,
"Maximum number of subtype cache entries (number of checks cached).");
DEFINE_FLAG(int, regexp_optimization_counter_threshold, 1000,
"RegExp's usage-counter value before it is optimized, -1 means never");
-DEFINE_FLAG(charp, optimization_filter, NULL, "Optimize only named function");
DEFINE_FLAG(int, reoptimization_counter_threshold, 4000,
"Counter threshold before a function gets reoptimized.");
-DEFINE_FLAG(bool, stop_on_excessive_deoptimization, false,
- "Debugging: stops program if deoptimizing same function too often");
DEFINE_FLAG(bool, trace_deoptimization, false, "Trace deoptimization");
DEFINE_FLAG(bool, trace_deoptimization_verbose, false,
"Trace deoptimization verbose");
-DEFINE_FLAG(bool, trace_failed_optimization_attempts, false,
- "Traces all failed optimization attempts");
DEFINE_FLAG(bool, trace_ic, false, "Trace IC handling");
DEFINE_FLAG(bool, trace_ic_miss_in_optimized, false,
"Trace IC miss in optimized code");
@@ -1195,69 +1190,6 @@ DEFINE_RUNTIME_ENTRY(InvokeClosureNoSuchMethod, 3) {
}
-static bool CanOptimizeFunction(const Function& function, Thread* thread) {
- if (FLAG_support_debugger) {
- Isolate* isolate = thread->isolate();
- if (isolate->debugger()->IsStepping() ||
- isolate->debugger()->HasBreakpoint(function, thread->zone())) {
- // We cannot set breakpoints and single step in optimized code,
- // so do not optimize the function.
- function.set_usage_counter(0);
- return false;
- }
- }
- if (function.deoptimization_counter() >=
- FLAG_max_deoptimization_counter_threshold) {
- if (FLAG_trace_failed_optimization_attempts ||
- FLAG_stop_on_excessive_deoptimization) {
- THR_Print("Too many deoptimizations: %s\n",
- function.ToFullyQualifiedCString());
- if (FLAG_stop_on_excessive_deoptimization) {
- FATAL("Stop on excessive deoptimization");
- }
- }
- // The function will not be optimized any longer. This situation can occur
- // mostly with small optimization counter thresholds.
- function.SetIsOptimizable(false);
- function.set_usage_counter(INT_MIN);
- return false;
- }
- if (FLAG_optimization_filter != NULL) {
- // FLAG_optimization_filter is a comma-separated list of strings that are
- // matched against the fully-qualified function name.
- char* save_ptr; // Needed for strtok_r.
- const char* function_name = function.ToFullyQualifiedCString();
- intptr_t len = strlen(FLAG_optimization_filter) + 1; // Length with \0.
- char* filter = new char[len];
- strncpy(filter, FLAG_optimization_filter, len); // strtok modifies arg 1.
- char* token = strtok_r(filter, ",", &save_ptr);
- bool found = false;
- while (token != NULL) {
- if (strstr(function_name, token) != NULL) {
- found = true;
- break;
- }
- token = strtok_r(NULL, ",", &save_ptr);
- }
- delete[] filter;
- if (!found) {
- function.set_usage_counter(INT_MIN);
- return false;
- }
- }
- if (!function.IsOptimizable()) {
- // Huge methods (code size above --huge_method_cutoff_in_code_size) become
- // non-optimizable only after the code has been generated.
- if (FLAG_trace_failed_optimization_attempts) {
- THR_Print("Not optimizable: %s\n", function.ToFullyQualifiedCString());
- }
- function.set_usage_counter(INT_MIN);
- return false;
- }
- return true;
-}
-
-
DEFINE_RUNTIME_ENTRY(StackOverflow, 0) {
#if defined(USING_SIMULATOR)
uword stack_pos = Simulator::Current()->get_register(SPREG);
@@ -1364,7 +1296,8 @@ DEFINE_RUNTIME_ENTRY(StackOverflow, 0) {
ASSERT(function.HasCode());
// Don't do OSR on intrinsified functions: The intrinsic code expects to be
// called like a regular function and can't be entered via OSR.
- if (!CanOptimizeFunction(function, thread) || function.is_intrinsic()) {
+ if (!Compiler::CanOptimizeFunction(thread, function) ||
+ function.is_intrinsic()) {
return;
}
@@ -1434,7 +1367,7 @@ DEFINE_RUNTIME_ENTRY(OptimizeInvokedFunction, 1) {
ASSERT(!function.IsNull());
ASSERT(function.HasCode());
- if (CanOptimizeFunction(function, thread)) {
+ if (Compiler::CanOptimizeFunction(thread, function)) {
if (FLAG_background_compilation) {
Field& field = Field::Handle(zone, isolate->GetDeoptimizingBoxedField());
while (!field.IsNull()) {
« no previous file with comments | « no previous file | runtime/vm/compiler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698