Index: src/mips/deoptimizer-mips.cc |
diff --git a/src/mips/deoptimizer-mips.cc b/src/mips/deoptimizer-mips.cc |
index 371d120887c3a06748533d04d61bca6d339cf05b..9fd815bb428dbdfb4179fbeed5267046b50e723f 100644 |
--- a/src/mips/deoptimizer-mips.cc |
+++ b/src/mips/deoptimizer-mips.cc |
@@ -100,19 +100,7 @@ void Deoptimizer::DeoptimizeFunction(JSFunction* function) { |
// ignore all slots that might have been recorded on it. |
isolate->heap()->mark_compact_collector()->InvalidateCode(code); |
- // Iterate over all the functions which share the same code object |
- // and make them use unoptimized version. |
- Context* context = function->context()->native_context(); |
- Object* element = context->get(Context::OPTIMIZED_FUNCTIONS_LIST); |
- SharedFunctionInfo* shared = function->shared(); |
- while (!element->IsUndefined()) { |
- JSFunction* func = JSFunction::cast(element); |
- // Grab element before code replacement as ReplaceCode alters the list. |
- element = func->next_function_link(); |
- if (func->code() == code) { |
- func->ReplaceCode(shared->code()); |
- } |
- } |
+ ReplaceCodeForRelatedFunctions(function, code); |
if (FLAG_trace_deopt) { |
PrintF("[forced deoptimization: "); |