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

Side by Side Diff: src/ia32/deoptimizer-ia32.cc

Issue 184923002: Clear optimized code cache in shared function info when code gets deoptimized (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 9 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 // For each LLazyBailout instruction insert a call to the corresponding 148 // For each LLazyBailout instruction insert a call to the corresponding
149 // deoptimization entry. 149 // deoptimization entry.
150 150
151 // Since the call is a relative encoding, write new 151 // Since the call is a relative encoding, write new
152 // reloc info. We do not need any of the existing reloc info because the 152 // reloc info. We do not need any of the existing reloc info because the
153 // existing code will not be used again (we zap it in debug builds). 153 // existing code will not be used again (we zap it in debug builds).
154 // 154 //
155 // Emit call to lazy deoptimization at all lazy deopt points. 155 // Emit call to lazy deoptimization at all lazy deopt points.
156 DeoptimizationInputData* deopt_data = 156 DeoptimizationInputData* deopt_data =
157 DeoptimizationInputData::cast(code->deoptimization_data()); 157 DeoptimizationInputData::cast(code->deoptimization_data());
158 SharedFunctionInfo* shared =
159 SharedFunctionInfo::cast(deopt_data->SharedFunctionInfo());
160 shared->EvictFromOptimizedCodeMap(code, "deoptimized code");
158 #ifdef DEBUG 161 #ifdef DEBUG
159 Address prev_call_address = NULL; 162 Address prev_call_address = NULL;
160 #endif 163 #endif
161 for (int i = 0; i < deopt_data->DeoptCount(); i++) { 164 for (int i = 0; i < deopt_data->DeoptCount(); i++) {
162 if (deopt_data->Pc(i)->value() == -1) continue; 165 if (deopt_data->Pc(i)->value() == -1) continue;
163 // Patch lazy deoptimization entry. 166 // Patch lazy deoptimization entry.
164 Address call_address = code_start_address + deopt_data->Pc(i)->value(); 167 Address call_address = code_start_address + deopt_data->Pc(i)->value();
165 CodePatcher patcher(call_address, patch_size()); 168 CodePatcher patcher(call_address, patch_size());
166 Address deopt_entry = GetDeoptimizationEntry(isolate, i, LAZY); 169 Address deopt_entry = GetDeoptimizationEntry(isolate, i, LAZY);
167 patcher.masm()->call(deopt_entry, RelocInfo::NONE32); 170 patcher.masm()->call(deopt_entry, RelocInfo::NONE32);
(...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after
460 SetFrameSlot(offset, value); 463 SetFrameSlot(offset, value);
461 } 464 }
462 465
463 466
464 #undef __ 467 #undef __
465 468
466 469
467 } } // namespace v8::internal 470 } } // namespace v8::internal
468 471
469 #endif // V8_TARGET_ARCH_IA32 472 #endif // V8_TARGET_ARCH_IA32
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698