Chromium Code Reviews

Unified Diff: src/runtime/runtime-function.cc

Issue 2684033007: Allow a ParseInfo without a script for %SetCode users (Closed)
Patch Set: Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/runtime/runtime-function.cc
diff --git a/src/runtime/runtime-function.cc b/src/runtime/runtime-function.cc
index 31da4a4535b97186d9154cc0cca3f6743e4a5e24..7bd94bbb29af62d2bac8a7ac108338f269fda996 100644
--- a/src/runtime/runtime-function.cc
+++ b/src/runtime/runtime-function.cc
@@ -170,6 +170,14 @@ RUNTIME_FUNCTION(Runtime_SetCode) {
Handle<SharedFunctionInfo> target_shared(target->shared());
Handle<SharedFunctionInfo> source_shared(source->shared());
+ if (FLAG_mark_shared_functions_for_tier_up) {
+ // During bootstrapping with stress-opt, it can happen that we've
+ // marked some builtin code for optimization. Defeat this, as
+ // that optimization attempt may fail on code without a script
+ // (all the %SetCode usages are like this).
+ source_shared->set_marked_for_tier_up(false);
+ }
Leszek Swirski 2017/02/09 13:22:33 Hm, I'm not sure I like your solution here -- for
+
if (!Compiler::Compile(source, Compiler::KEEP_EXCEPTION)) {
return isolate->heap()->exception();
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine