blob: 691fc6664196b9072d47c1c8eecb66fd6edc6ce7 [file] [log] [blame]
yangguo@chromium.org78d1ad42012-02-09 13:53:47 +00001// Copyright 2012 the V8 project authors. All rights reserved.
kasperl@chromium.orga5551262010-12-07 12:49:48 +00002// Redistribution and use in source and binary forms, with or without
3// modification, are permitted provided that the following conditions are
4// met:
5//
6// * Redistributions of source code must retain the above copyright
7// notice, this list of conditions and the following disclaimer.
8// * Redistributions in binary form must reproduce the above
9// copyright notice, this list of conditions and the following
10// disclaimer in the documentation and/or other materials provided
11// with the distribution.
12// * Neither the name of Google Inc. nor the names of its
13// contributors may be used to endorse or promote products derived
14// from this software without specific prior written permission.
15//
16// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
28#include "v8.h"
29
30#include "runtime-profiler.h"
31
32#include "assembler.h"
mstarzinger@chromium.orgb228be02013-04-18 14:56:59 +000033#include "bootstrapper.h"
kasperl@chromium.orga5551262010-12-07 12:49:48 +000034#include "code-stubs.h"
35#include "compilation-cache.h"
kasperl@chromium.orga5551262010-12-07 12:49:48 +000036#include "execution.h"
danno@chromium.org129d3982012-07-25 15:01:47 +000037#include "full-codegen.h"
kasperl@chromium.orga5551262010-12-07 12:49:48 +000038#include "global-handles.h"
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +000039#include "isolate-inl.h"
ager@chromium.org9ee27ae2011-03-02 13:43:26 +000040#include "mark-compact.h"
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000041#include "platform.h"
kasperl@chromium.orga5551262010-12-07 12:49:48 +000042#include "scopeinfo.h"
kasperl@chromium.orga5551262010-12-07 12:49:48 +000043
44namespace v8 {
45namespace internal {
46
47
kasperl@chromium.orga5551262010-12-07 12:49:48 +000048// Optimization sampler constants.
49static const int kSamplerFrameCount = 2;
yangguo@chromium.org78d1ad42012-02-09 13:53:47 +000050
51// Constants for statistical profiler.
kasperl@chromium.orga5551262010-12-07 12:49:48 +000052static const int kSamplerFrameWeight[kSamplerFrameCount] = { 2, 1 };
kasperl@chromium.orga5551262010-12-07 12:49:48 +000053
ager@chromium.org5f0c45f2010-12-17 08:51:21 +000054static const int kSamplerTicksBetweenThresholdAdjustment = 32;
kasperl@chromium.orga5551262010-12-07 12:49:48 +000055
56static const int kSamplerThresholdInit = 3;
57static const int kSamplerThresholdMin = 1;
58static const int kSamplerThresholdDelta = 1;
59
60static const int kSamplerThresholdSizeFactorInit = 3;
kasperl@chromium.orga5551262010-12-07 12:49:48 +000061
62static const int kSizeLimit = 1500;
63
yangguo@chromium.org78d1ad42012-02-09 13:53:47 +000064// Constants for counter based profiler.
65
66// Number of times a function has to be seen on the stack before it is
67// optimized.
68static const int kProfilerTicksBeforeOptimization = 2;
mmassi@chromium.org7028c052012-06-13 11:51:58 +000069// If the function optimization was disabled due to high deoptimization count,
70// but the function is hot and has been seen on the stack this number of times,
71// then we try to reenable optimization for this function.
72static const int kProfilerTicksBeforeReenablingOptimization = 250;
jkummerow@chromium.org1456e702012-03-30 08:38:13 +000073// If a function does not have enough type info (according to
74// FLAG_type_info_threshold), but has seen a huge number of ticks,
75// optimize it as it is.
76static const int kTicksWhenNotEnoughTypeInfo = 100;
77// We only have one byte to store the number of ticks.
mmassi@chromium.org7028c052012-06-13 11:51:58 +000078STATIC_ASSERT(kProfilerTicksBeforeOptimization < 256);
79STATIC_ASSERT(kProfilerTicksBeforeReenablingOptimization < 256);
jkummerow@chromium.org1456e702012-03-30 08:38:13 +000080STATIC_ASSERT(kTicksWhenNotEnoughTypeInfo < 256);
yangguo@chromium.org78d1ad42012-02-09 13:53:47 +000081
dslomov@chromium.orgb752d402013-06-18 11:54:54 +000082// Maximum size in bytes of generate code for a function to allow OSR.
83static const int kOSRCodeSizeAllowanceBase =
84 100 * FullCodeGenerator::kCodeSizeMultiplier;
85
86static const int kOSRCodeSizeAllowancePerTick =
87 3 * FullCodeGenerator::kCodeSizeMultiplier;
mmassi@chromium.org7028c052012-06-13 11:51:58 +000088
yangguo@chromium.org78d1ad42012-02-09 13:53:47 +000089// Maximum size in bytes of generated code for a function to be optimized
90// the very first time it is seen on the stack.
danno@chromium.org129d3982012-07-25 15:01:47 +000091static const int kMaxSizeEarlyOpt =
dslomov@chromium.orgb752d402013-06-18 11:54:54 +000092 5 * FullCodeGenerator::kCodeSizeMultiplier;
yangguo@chromium.org78d1ad42012-02-09 13:53:47 +000093
kasperl@chromium.orga5551262010-12-07 12:49:48 +000094
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000095RuntimeProfiler::RuntimeProfiler(Isolate* isolate)
96 : isolate_(isolate),
97 sampler_threshold_(kSamplerThresholdInit),
98 sampler_threshold_size_factor_(kSamplerThresholdSizeFactorInit),
99 sampler_ticks_until_threshold_adjustment_(
ricow@chromium.org4f693d62011-07-04 14:01:31 +0000100 kSamplerTicksBetweenThresholdAdjustment),
jkummerow@chromium.org1456e702012-03-30 08:38:13 +0000101 sampler_window_position_(0),
102 any_ic_changed_(false),
103 code_generated_(false) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000104 ClearSampleBuffer();
105}
106
107
dslomov@chromium.orgb752d402013-06-18 11:54:54 +0000108static void GetICCounts(Code* shared_code,
jkummerow@chromium.org1456e702012-03-30 08:38:13 +0000109 int* ic_with_type_info_count,
jkummerow@chromium.orgf7a58842012-02-21 10:08:21 +0000110 int* ic_total_count,
111 int* percentage) {
112 *ic_total_count = 0;
jkummerow@chromium.org1456e702012-03-30 08:38:13 +0000113 *ic_with_type_info_count = 0;
dslomov@chromium.orgb752d402013-06-18 11:54:54 +0000114 Object* raw_info = shared_code->type_feedback_info();
jkummerow@chromium.orgf7a58842012-02-21 10:08:21 +0000115 if (raw_info->IsTypeFeedbackInfo()) {
116 TypeFeedbackInfo* info = TypeFeedbackInfo::cast(raw_info);
jkummerow@chromium.org1456e702012-03-30 08:38:13 +0000117 *ic_with_type_info_count = info->ic_with_type_info_count();
jkummerow@chromium.orgf7a58842012-02-21 10:08:21 +0000118 *ic_total_count = info->ic_total_count();
119 }
120 *percentage = *ic_total_count > 0
jkummerow@chromium.org1456e702012-03-30 08:38:13 +0000121 ? 100 * *ic_with_type_info_count / *ic_total_count
jkummerow@chromium.orgf7a58842012-02-21 10:08:21 +0000122 : 100;
123}
124
125
yangguo@chromium.org78d1ad42012-02-09 13:53:47 +0000126void RuntimeProfiler::Optimize(JSFunction* function, const char* reason) {
ager@chromium.orga9aa5fa2011-04-13 08:46:07 +0000127 ASSERT(function->IsOptimizable());
yangguo@chromium.orgfb377212012-11-16 14:43:43 +0000128
jkummerow@chromium.org1e8da742013-08-26 17:13:35 +0000129 if (FLAG_trace_opt && function->PassesFilter(FLAG_hydrogen_filter)) {
ricow@chromium.org4f693d62011-07-04 14:01:31 +0000130 PrintF("[marking ");
ulan@chromium.org906e2fb2013-05-14 08:14:38 +0000131 function->ShortPrint();
yangguo@chromium.org78d1ad42012-02-09 13:53:47 +0000132 PrintF(" for recompilation, reason: %s", reason);
jkummerow@chromium.orgf7a58842012-02-21 10:08:21 +0000133 if (FLAG_type_info_threshold > 0) {
134 int typeinfo, total, percentage;
dslomov@chromium.orgb752d402013-06-18 11:54:54 +0000135 GetICCounts(function->shared()->code(), &typeinfo, &total, &percentage);
jkummerow@chromium.orgf7a58842012-02-21 10:08:21 +0000136 PrintF(", ICs with typeinfo: %d/%d (%d%%)", typeinfo, total, percentage);
137 }
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000138 PrintF("]\n");
139 }
140
dslomov@chromium.orge97852d2013-09-12 09:02:59 +0000141
machenbach@chromium.org9af454f2013-11-20 09:25:57 +0000142 if (isolate_->concurrent_recompilation_enabled() &&
143 !isolate_->bootstrapper()->IsActive()) {
144 if (isolate_->concurrent_osr_enabled() &&
dslomov@chromium.orge97852d2013-09-12 09:02:59 +0000145 isolate_->optimizing_compiler_thread()->IsQueuedForOSR(function)) {
146 // Do not attempt regular recompilation if we already queued this for OSR.
147 // TODO(yangguo): This is necessary so that we don't install optimized
148 // code on a function that is already optimized, since OSR and regular
149 // recompilation race. This goes away as soon as OSR becomes one-shot.
150 return;
151 }
ulan@chromium.org6e196bf2013-03-13 09:38:22 +0000152 ASSERT(!function->IsInRecompileQueue());
rossberg@chromium.org92597162013-08-23 13:28:00 +0000153 function->MarkForConcurrentRecompilation();
yangguo@chromium.org304cc332012-07-24 07:59:48 +0000154 } else {
155 // The next call to the function will trigger optimization.
156 function->MarkForLazyRecompilation();
157 }
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000158}
159
160
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000161void RuntimeProfiler::AttemptOnStackReplacement(JSFunction* function) {
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000162 // See AlwaysFullCompiler (in compiler.cc) comment on why we need
163 // Debug::has_break_points().
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000164 if (!FLAG_use_osr ||
erik.corry@gmail.com3847bd52011-04-27 10:38:56 +0000165 isolate_->DebuggerHasBreakPoints() ||
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000166 function->IsBuiltin()) {
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000167 return;
168 }
169
170 SharedFunctionInfo* shared = function->shared();
fschneider@chromium.org1805e212011-09-05 10:49:12 +0000171 // If the code is not optimizable, don't try OSR.
172 if (!shared->code()->optimizable()) return;
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000173
174 // We are not prepared to do OSR for a function that already has an
175 // allocated arguments object. The optimized code would bypass it for
176 // arguments accesses, which is unsound. Don't try OSR.
whesse@chromium.org7b260152011-06-20 15:33:18 +0000177 if (shared->uses_arguments()) return;
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000178
179 // We're using on-stack replacement: patch the unoptimized code so that
180 // any back edge in any unoptimized frame will trigger on-stack
181 // replacement for that frame.
182 if (FLAG_trace_osr) {
jkummerow@chromium.org3d00d0a2013-09-04 13:57:32 +0000183 PrintF("[OSR - patching back edges in ");
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000184 function->PrintName();
jkummerow@chromium.org3d00d0a2013-09-04 13:57:32 +0000185 PrintF("]\n");
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000186 }
187
machenbach@chromium.org528ce022013-09-23 14:09:36 +0000188 BackEdgeTable::Patch(isolate_, shared->code());
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000189}
190
191
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000192void RuntimeProfiler::ClearSampleBuffer() {
193 memset(sampler_window_, 0, sizeof(sampler_window_));
194 memset(sampler_window_weight_, 0, sizeof(sampler_window_weight_));
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000195}
196
197
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000198int RuntimeProfiler::LookupSample(JSFunction* function) {
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000199 int weight = 0;
200 for (int i = 0; i < kSamplerWindowSize; i++) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000201 Object* sample = sampler_window_[i];
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000202 if (sample != NULL) {
yangguo@chromium.org5a11aaf2012-06-20 11:29:00 +0000203 bool fits = FLAG_lookup_sample_by_shared
204 ? (function->shared() == JSFunction::cast(sample)->shared())
205 : (function == JSFunction::cast(sample));
206 if (fits) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000207 weight += sampler_window_weight_[i];
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000208 }
209 }
210 }
211 return weight;
212}
213
214
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000215void RuntimeProfiler::AddSample(JSFunction* function, int weight) {
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000216 ASSERT(IsPowerOf2(kSamplerWindowSize));
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000217 sampler_window_[sampler_window_position_] = function;
218 sampler_window_weight_[sampler_window_position_] = weight;
219 sampler_window_position_ = (sampler_window_position_ + 1) &
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000220 (kSamplerWindowSize - 1);
221}
222
223
224void RuntimeProfiler::OptimizeNow() {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000225 HandleScope scope(isolate_);
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000226
machenbach@chromium.orgc1789ee2013-07-05 07:09:57 +0000227 if (isolate_->DebuggerHasBreakPoints()) return;
228
dslomov@chromium.orge97852d2013-09-12 09:02:59 +0000229 DisallowHeapAllocation no_gc;
230
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000231 // Run through the JavaScript frames and collect them. If we already
232 // have a sample of the function, we mark it for optimizations
233 // (eagerly or lazily).
234 JSFunction* samples[kSamplerFrameCount];
ager@chromium.org5f0c45f2010-12-17 08:51:21 +0000235 int sample_count = 0;
236 int frame_count = 0;
yangguo@chromium.org56454712012-02-16 15:33:53 +0000237 int frame_count_limit = FLAG_watch_ic_patching ? FLAG_frame_count
238 : kSamplerFrameCount;
vegorov@chromium.org74f333b2011-04-06 11:17:46 +0000239 for (JavaScriptFrameIterator it(isolate_);
yangguo@chromium.org56454712012-02-16 15:33:53 +0000240 frame_count++ < frame_count_limit && !it.done();
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000241 it.Advance()) {
242 JavaScriptFrame* frame = it.frame();
danno@chromium.org169691d2013-07-15 08:01:13 +0000243 JSFunction* function = frame->function();
ager@chromium.org5f0c45f2010-12-17 08:51:21 +0000244
yangguo@chromium.org78d1ad42012-02-09 13:53:47 +0000245 if (!FLAG_watch_ic_patching) {
246 // Adjust threshold each time we have processed
247 // a certain number of ticks.
248 if (sampler_ticks_until_threshold_adjustment_ > 0) {
249 sampler_ticks_until_threshold_adjustment_--;
250 if (sampler_ticks_until_threshold_adjustment_ <= 0) {
251 // If the threshold is not already at the minimum
252 // modify and reset the ticks until next adjustment.
253 if (sampler_threshold_ > kSamplerThresholdMin) {
254 sampler_threshold_ -= kSamplerThresholdDelta;
255 sampler_ticks_until_threshold_adjustment_ =
256 kSamplerTicksBetweenThresholdAdjustment;
257 }
ager@chromium.org5f0c45f2010-12-17 08:51:21 +0000258 }
259 }
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000260 }
261
mmassi@chromium.org7028c052012-06-13 11:51:58 +0000262 SharedFunctionInfo* shared = function->shared();
263 Code* shared_code = shared->code();
264
jkummerow@chromium.org1456e702012-03-30 08:38:13 +0000265 if (shared_code->kind() != Code::FUNCTION) continue;
ulan@chromium.org6e196bf2013-03-13 09:38:22 +0000266 if (function->IsInRecompileQueue()) continue;
jkummerow@chromium.org1456e702012-03-30 08:38:13 +0000267
mstarzinger@chromium.org1510d582013-06-28 14:00:48 +0000268 if (FLAG_always_osr &&
269 shared_code->allow_osr_at_loop_nesting_level() == 0) {
270 // Testing mode: always try an OSR compile for every function.
271 for (int i = 0; i < Code::kMaxLoopNestingMarker; i++) {
272 // TODO(titzer): fix AttemptOnStackReplacement to avoid this dumb loop.
273 shared_code->set_allow_osr_at_loop_nesting_level(i);
274 AttemptOnStackReplacement(function);
275 }
276 // Fall through and do a normal optimized compile as well.
277 } else if (!frame->is_optimized() &&
ulan@chromium.org6e196bf2013-03-13 09:38:22 +0000278 (function->IsMarkedForLazyRecompilation() ||
rossberg@chromium.org92597162013-08-23 13:28:00 +0000279 function->IsMarkedForConcurrentRecompilation() ||
ulan@chromium.org6e196bf2013-03-13 09:38:22 +0000280 function->IsOptimized())) {
mstarzinger@chromium.org1510d582013-06-28 14:00:48 +0000281 // Attempt OSR if we are still running unoptimized code even though the
282 // the function has long been marked or even already been optimized.
dslomov@chromium.orgb752d402013-06-18 11:54:54 +0000283 int ticks = shared_code->profiler_ticks();
284 int allowance = kOSRCodeSizeAllowanceBase +
285 ticks * kOSRCodeSizeAllowancePerTick;
286 if (shared_code->CodeSize() > allowance) {
287 if (ticks < 255) shared_code->set_profiler_ticks(ticks + 1);
288 } else {
289 int nesting = shared_code->allow_osr_at_loop_nesting_level();
290 if (nesting < Code::kMaxLoopNestingMarker) {
291 int new_nesting = nesting + 1;
292 shared_code->set_allow_osr_at_loop_nesting_level(new_nesting);
293 AttemptOnStackReplacement(function);
294 }
mstarzinger@chromium.orge27d6172013-04-17 11:51:44 +0000295 }
dslomov@chromium.orgb752d402013-06-18 11:54:54 +0000296 continue;
ager@chromium.org5f0c45f2010-12-17 08:51:21 +0000297 }
298
yangguo@chromium.org56454712012-02-16 15:33:53 +0000299 // Only record top-level code on top of the execution stack and
300 // avoid optimizing excessively large scripts since top-level code
301 // will be executed only once.
302 const int kMaxToplevelSourceSize = 10 * 1024;
mmassi@chromium.org7028c052012-06-13 11:51:58 +0000303 if (shared->is_toplevel() &&
304 (frame_count > 1 || shared->SourceSize() > kMaxToplevelSourceSize)) {
yangguo@chromium.org56454712012-02-16 15:33:53 +0000305 continue;
306 }
307
mmassi@chromium.org7028c052012-06-13 11:51:58 +0000308 // Do not record non-optimizable functions.
309 if (shared->optimization_disabled()) {
verwaest@chromium.orgde64f722012-08-16 15:44:54 +0000310 if (shared->deopt_count() >= FLAG_max_opt_count) {
mmassi@chromium.org7028c052012-06-13 11:51:58 +0000311 // If optimization was disabled due to many deoptimizations,
312 // then check if the function is hot and try to reenable optimization.
313 int ticks = shared_code->profiler_ticks();
314 if (ticks >= kProfilerTicksBeforeReenablingOptimization) {
315 shared_code->set_profiler_ticks(0);
316 shared->TryReenableOptimization();
317 } else {
318 shared_code->set_profiler_ticks(ticks + 1);
319 }
320 }
321 continue;
322 }
323 if (!function->IsOptimizable()) continue;
324
yangguo@chromium.org78d1ad42012-02-09 13:53:47 +0000325 if (FLAG_watch_ic_patching) {
jkummerow@chromium.org1456e702012-03-30 08:38:13 +0000326 int ticks = shared_code->profiler_ticks();
ager@chromium.org5f0c45f2010-12-17 08:51:21 +0000327
yangguo@chromium.org78d1ad42012-02-09 13:53:47 +0000328 if (ticks >= kProfilerTicksBeforeOptimization) {
jkummerow@chromium.orgf7a58842012-02-21 10:08:21 +0000329 int typeinfo, total, percentage;
dslomov@chromium.orgb752d402013-06-18 11:54:54 +0000330 GetICCounts(shared_code, &typeinfo, &total, &percentage);
jkummerow@chromium.orgf7a58842012-02-21 10:08:21 +0000331 if (percentage >= FLAG_type_info_threshold) {
332 // If this particular function hasn't had any ICs patched for enough
333 // ticks, optimize it now.
334 Optimize(function, "hot and stable");
jkummerow@chromium.org1456e702012-03-30 08:38:13 +0000335 } else if (ticks >= kTicksWhenNotEnoughTypeInfo) {
danno@chromium.org88aa0582012-03-23 15:11:57 +0000336 Optimize(function, "not much type info but very hot");
jkummerow@chromium.orgf7a58842012-02-21 10:08:21 +0000337 } else {
jkummerow@chromium.org1456e702012-03-30 08:38:13 +0000338 shared_code->set_profiler_ticks(ticks + 1);
jkummerow@chromium.orgf7a58842012-02-21 10:08:21 +0000339 if (FLAG_trace_opt_verbose) {
340 PrintF("[not yet optimizing ");
341 function->PrintName();
342 PrintF(", not enough type info: %d/%d (%d%%)]\n",
343 typeinfo, total, percentage);
344 }
345 }
yangguo@chromium.org78d1ad42012-02-09 13:53:47 +0000346 } else if (!any_ic_changed_ &&
danno@chromium.org129d3982012-07-25 15:01:47 +0000347 shared_code->instruction_size() < kMaxSizeEarlyOpt) {
yangguo@chromium.org78d1ad42012-02-09 13:53:47 +0000348 // If no IC was patched since the last tick and this function is very
349 // small, optimistically optimize it now.
350 Optimize(function, "small function");
yangguo@chromium.org78d1ad42012-02-09 13:53:47 +0000351 } else {
jkummerow@chromium.org1456e702012-03-30 08:38:13 +0000352 shared_code->set_profiler_ticks(ticks + 1);
yangguo@chromium.org78d1ad42012-02-09 13:53:47 +0000353 }
yangguo@chromium.org56454712012-02-16 15:33:53 +0000354 } else { // !FLAG_watch_ic_patching
yangguo@chromium.org78d1ad42012-02-09 13:53:47 +0000355 samples[sample_count++] = function;
ager@chromium.org5f0c45f2010-12-17 08:51:21 +0000356
danno@chromium.org1044a4d2012-04-30 12:34:39 +0000357 int function_size = function->shared()->SourceSize();
yangguo@chromium.org78d1ad42012-02-09 13:53:47 +0000358 int threshold_size_factor = (function_size > kSizeLimit)
359 ? sampler_threshold_size_factor_
360 : 1;
361
362 int threshold = sampler_threshold_ * threshold_size_factor;
363
364 if (LookupSample(function) >= threshold) {
365 Optimize(function, "sampler window lookup");
366 }
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000367 }
368 }
yangguo@chromium.org78d1ad42012-02-09 13:53:47 +0000369 if (FLAG_watch_ic_patching) {
370 any_ic_changed_ = false;
yangguo@chromium.org56454712012-02-16 15:33:53 +0000371 } else { // !FLAG_watch_ic_patching
yangguo@chromium.org78d1ad42012-02-09 13:53:47 +0000372 // Add the collected functions as samples. It's important not to do
373 // this as part of collecting them because this will interfere with
374 // the sample lookup in case of recursive functions.
375 for (int i = 0; i < sample_count; i++) {
376 AddSample(samples[i], kSamplerFrameWeight[i]);
377 }
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000378 }
379}
380
381
erik.corry@gmail.comf2038fb2012-01-16 11:42:08 +0000382void RuntimeProfiler::SetUp() {
yangguo@chromium.org78d1ad42012-02-09 13:53:47 +0000383 if (!FLAG_watch_ic_patching) {
384 ClearSampleBuffer();
385 }
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000386}
387
388
389void RuntimeProfiler::Reset() {
jkummerow@chromium.org1456e702012-03-30 08:38:13 +0000390 if (!FLAG_watch_ic_patching) {
yangguo@chromium.org78d1ad42012-02-09 13:53:47 +0000391 sampler_threshold_ = kSamplerThresholdInit;
392 sampler_threshold_size_factor_ = kSamplerThresholdSizeFactorInit;
393 sampler_ticks_until_threshold_adjustment_ =
394 kSamplerTicksBetweenThresholdAdjustment;
395 }
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000396}
397
398
399void RuntimeProfiler::TearDown() {
400 // Nothing to do.
401}
402
403
ager@chromium.org9ee27ae2011-03-02 13:43:26 +0000404// Update the pointers in the sampler window after a GC.
405void RuntimeProfiler::UpdateSamplesAfterScavenge() {
406 for (int i = 0; i < kSamplerWindowSize; i++) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000407 Object* function = sampler_window_[i];
408 if (function != NULL && isolate_->heap()->InNewSpace(function)) {
ager@chromium.org9ee27ae2011-03-02 13:43:26 +0000409 MapWord map_word = HeapObject::cast(function)->map_word();
410 if (map_word.IsForwardingAddress()) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000411 sampler_window_[i] = map_word.ToForwardingAddress();
ager@chromium.org9ee27ae2011-03-02 13:43:26 +0000412 } else {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000413 sampler_window_[i] = NULL;
ager@chromium.org9ee27ae2011-03-02 13:43:26 +0000414 }
415 }
416 }
417}
418
419
420void RuntimeProfiler::RemoveDeadSamples() {
421 for (int i = 0; i < kSamplerWindowSize; i++) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000422 Object* function = sampler_window_[i];
erik.corry@gmail.comc3b670f2011-10-05 21:44:48 +0000423 if (function != NULL &&
424 !Marking::MarkBitFrom(HeapObject::cast(function)).Get()) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000425 sampler_window_[i] = NULL;
ager@chromium.org9ee27ae2011-03-02 13:43:26 +0000426 }
427 }
428}
429
430
431void RuntimeProfiler::UpdateSamplesAfterCompact(ObjectVisitor* visitor) {
432 for (int i = 0; i < kSamplerWindowSize; i++) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000433 visitor->VisitPointer(&sampler_window_[i]);
ager@chromium.org9ee27ae2011-03-02 13:43:26 +0000434 }
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000435}
436
437
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000438} } // namespace v8::internal