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

Side by Side Diff: src/runtime.cc

Issue 10103035: Share optimized code for closures. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: rebased on r11394 Created 8 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 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 8172 matching lines...) Expand 10 before | Expand all | Expand 10 after
8183 has_other_activations = activations_finder.has_activations(); 8183 has_other_activations = activations_finder.has_activations();
8184 } 8184 }
8185 8185
8186 if (!has_other_activations) { 8186 if (!has_other_activations) {
8187 if (FLAG_trace_deopt) { 8187 if (FLAG_trace_deopt) {
8188 PrintF("[removing optimized code for: "); 8188 PrintF("[removing optimized code for: ");
8189 function->PrintName(); 8189 function->PrintName();
8190 PrintF("]\n"); 8190 PrintF("]\n");
8191 } 8191 }
8192 function->ReplaceCode(function->shared()->code()); 8192 function->ReplaceCode(function->shared()->code());
8193 // Flush optimized code cache for this function.
8194 function->shared()->set_optimized_code_map(Smi::FromInt(0));
8193 } else { 8195 } else {
8194 Deoptimizer::DeoptimizeFunction(*function); 8196 Deoptimizer::DeoptimizeFunction(*function);
8197 // Flush optimized code cache for this function.
8198 function->shared()->set_optimized_code_map(Smi::FromInt(0));
8195 } 8199 }
8196 return isolate->heap()->undefined_value(); 8200 return isolate->heap()->undefined_value();
8197 } 8201 }
8198 8202
8199 8203
8200 RUNTIME_FUNCTION(MaybeObject*, Runtime_NotifyOSR) { 8204 RUNTIME_FUNCTION(MaybeObject*, Runtime_NotifyOSR) {
8201 Deoptimizer* deoptimizer = Deoptimizer::Grab(isolate); 8205 Deoptimizer* deoptimizer = Deoptimizer::Grab(isolate);
8202 delete deoptimizer; 8206 delete deoptimizer;
8203 return isolate->heap()->undefined_value(); 8207 return isolate->heap()->undefined_value();
8204 } 8208 }
(...skipping 5161 matching lines...) Expand 10 before | Expand all | Expand 10 after
13366 // Handle last resort GC and make sure to allow future allocations 13370 // Handle last resort GC and make sure to allow future allocations
13367 // to grow the heap without causing GCs (if possible). 13371 // to grow the heap without causing GCs (if possible).
13368 isolate->counters()->gc_last_resort_from_js()->Increment(); 13372 isolate->counters()->gc_last_resort_from_js()->Increment();
13369 isolate->heap()->CollectAllGarbage(Heap::kNoGCFlags, 13373 isolate->heap()->CollectAllGarbage(Heap::kNoGCFlags,
13370 "Runtime::PerformGC"); 13374 "Runtime::PerformGC");
13371 } 13375 }
13372 } 13376 }
13373 13377
13374 13378
13375 } } // namespace v8::internal 13379 } } // namespace v8::internal
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698