blob: 26d8846107cbe4f8ddf03ec33c9eee49ac49b179 [file] [log] [blame]
danno@chromium.org160a7b02011-04-18 15:51:38 +00001// Copyright 2011 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"
33#include "code-stubs.h"
34#include "compilation-cache.h"
35#include "deoptimizer.h"
36#include "execution.h"
37#include "global-handles.h"
ager@chromium.org9ee27ae2011-03-02 13:43:26 +000038#include "mark-compact.h"
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000039#include "platform.h"
kasperl@chromium.orga5551262010-12-07 12:49:48 +000040#include "scopeinfo.h"
kasperl@chromium.orga5551262010-12-07 12:49:48 +000041
42namespace v8 {
43namespace internal {
44
45
kasperl@chromium.orga5551262010-12-07 12:49:48 +000046// Optimization sampler constants.
47static const int kSamplerFrameCount = 2;
48static const int kSamplerFrameWeight[kSamplerFrameCount] = { 2, 1 };
kasperl@chromium.orga5551262010-12-07 12:49:48 +000049
ager@chromium.org5f0c45f2010-12-17 08:51:21 +000050static const int kSamplerTicksBetweenThresholdAdjustment = 32;
kasperl@chromium.orga5551262010-12-07 12:49:48 +000051
52static const int kSamplerThresholdInit = 3;
53static const int kSamplerThresholdMin = 1;
54static const int kSamplerThresholdDelta = 1;
55
56static const int kSamplerThresholdSizeFactorInit = 3;
kasperl@chromium.orga5551262010-12-07 12:49:48 +000057
58static const int kSizeLimit = 1500;
59
kasperl@chromium.orga5551262010-12-07 12:49:48 +000060
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000061Atomic32 RuntimeProfiler::state_ = 0;
62// TODO(isolates): Create the semaphore lazily and clean it up when no
63// longer required.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000064Semaphore* RuntimeProfiler::semaphore_ = OS::CreateSemaphore(0);
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000065
ager@chromium.orga9aa5fa2011-04-13 08:46:07 +000066#ifdef DEBUG
67bool RuntimeProfiler::has_been_globally_setup_ = false;
68#endif
69bool RuntimeProfiler::enabled_ = false;
70
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000071
72RuntimeProfiler::RuntimeProfiler(Isolate* isolate)
73 : isolate_(isolate),
74 sampler_threshold_(kSamplerThresholdInit),
75 sampler_threshold_size_factor_(kSamplerThresholdSizeFactorInit),
76 sampler_ticks_until_threshold_adjustment_(
ricow@chromium.org4f693d62011-07-04 14:01:31 +000077 kSamplerTicksBetweenThresholdAdjustment),
78 sampler_window_position_(0) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000079 ClearSampleBuffer();
80}
81
82
ager@chromium.orga9aa5fa2011-04-13 08:46:07 +000083void RuntimeProfiler::GlobalSetup() {
84 ASSERT(!has_been_globally_setup_);
85 enabled_ = V8::UseCrankshaft() && FLAG_opt;
86#ifdef DEBUG
87 has_been_globally_setup_ = true;
88#endif
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +000089}
90
91
ricow@chromium.org4f693d62011-07-04 14:01:31 +000092void RuntimeProfiler::Optimize(JSFunction* function) {
ager@chromium.orga9aa5fa2011-04-13 08:46:07 +000093 ASSERT(function->IsOptimizable());
kasperl@chromium.orga5551262010-12-07 12:49:48 +000094 if (FLAG_trace_opt) {
ricow@chromium.org4f693d62011-07-04 14:01:31 +000095 PrintF("[marking ");
kasperl@chromium.orga5551262010-12-07 12:49:48 +000096 function->PrintName();
danno@chromium.org160a7b02011-04-18 15:51:38 +000097 PrintF(" 0x%" V8PRIxPTR, reinterpret_cast<intptr_t>(function->address()));
kasperl@chromium.orga5551262010-12-07 12:49:48 +000098 PrintF(" for recompilation");
kasperl@chromium.orga5551262010-12-07 12:49:48 +000099 PrintF("]\n");
100 }
101
102 // The next call to the function will trigger optimization.
103 function->MarkForLazyRecompilation();
104}
105
106
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000107void RuntimeProfiler::AttemptOnStackReplacement(JSFunction* function) {
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000108 // See AlwaysFullCompiler (in compiler.cc) comment on why we need
109 // Debug::has_break_points().
110 ASSERT(function->IsMarkedForLazyRecompilation());
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000111 if (!FLAG_use_osr ||
erik.corry@gmail.com3847bd52011-04-27 10:38:56 +0000112 isolate_->DebuggerHasBreakPoints() ||
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000113 function->IsBuiltin()) {
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000114 return;
115 }
116
117 SharedFunctionInfo* shared = function->shared();
fschneider@chromium.org1805e212011-09-05 10:49:12 +0000118 // If the code is not optimizable, don't try OSR.
119 if (!shared->code()->optimizable()) return;
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000120
121 // We are not prepared to do OSR for a function that already has an
122 // allocated arguments object. The optimized code would bypass it for
123 // arguments accesses, which is unsound. Don't try OSR.
whesse@chromium.org7b260152011-06-20 15:33:18 +0000124 if (shared->uses_arguments()) return;
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000125
126 // We're using on-stack replacement: patch the unoptimized code so that
127 // any back edge in any unoptimized frame will trigger on-stack
128 // replacement for that frame.
129 if (FLAG_trace_osr) {
130 PrintF("[patching stack checks in ");
131 function->PrintName();
132 PrintF(" for on-stack replacement]\n");
133 }
134
135 // Get the stack check stub code object to match against. We aren't
136 // prepared to generate it, but we don't expect to have to.
137 StackCheckStub check_stub;
138 Object* check_code;
139 MaybeObject* maybe_check_code = check_stub.TryGetCode();
140 if (maybe_check_code->ToObject(&check_code)) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000141 Code* replacement_code =
fschneider@chromium.org7979bbb2011-03-28 10:47:03 +0000142 isolate_->builtins()->builtin(Builtins::kOnStackReplacement);
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000143 Code* unoptimized_code = shared->code();
ager@chromium.org0ee099b2011-01-25 14:06:47 +0000144 Deoptimizer::PatchStackCheckCode(unoptimized_code,
145 Code::cast(check_code),
146 replacement_code);
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000147 }
148}
149
150
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000151void RuntimeProfiler::ClearSampleBuffer() {
152 memset(sampler_window_, 0, sizeof(sampler_window_));
153 memset(sampler_window_weight_, 0, sizeof(sampler_window_weight_));
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000154}
155
156
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000157int RuntimeProfiler::LookupSample(JSFunction* function) {
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000158 int weight = 0;
159 for (int i = 0; i < kSamplerWindowSize; i++) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000160 Object* sample = sampler_window_[i];
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000161 if (sample != NULL) {
162 if (function == sample) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000163 weight += sampler_window_weight_[i];
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000164 }
165 }
166 }
167 return weight;
168}
169
170
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000171void RuntimeProfiler::AddSample(JSFunction* function, int weight) {
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000172 ASSERT(IsPowerOf2(kSamplerWindowSize));
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000173 sampler_window_[sampler_window_position_] = function;
174 sampler_window_weight_[sampler_window_position_] = weight;
175 sampler_window_position_ = (sampler_window_position_ + 1) &
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000176 (kSamplerWindowSize - 1);
177}
178
179
180void RuntimeProfiler::OptimizeNow() {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000181 HandleScope scope(isolate_);
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000182
183 // Run through the JavaScript frames and collect them. If we already
184 // have a sample of the function, we mark it for optimizations
185 // (eagerly or lazily).
186 JSFunction* samples[kSamplerFrameCount];
ager@chromium.org5f0c45f2010-12-17 08:51:21 +0000187 int sample_count = 0;
188 int frame_count = 0;
vegorov@chromium.org74f333b2011-04-06 11:17:46 +0000189 for (JavaScriptFrameIterator it(isolate_);
ager@chromium.org5f0c45f2010-12-17 08:51:21 +0000190 frame_count++ < kSamplerFrameCount && !it.done();
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000191 it.Advance()) {
192 JavaScriptFrame* frame = it.frame();
193 JSFunction* function = JSFunction::cast(frame->function());
ager@chromium.org5f0c45f2010-12-17 08:51:21 +0000194
195 // Adjust threshold each time we have processed
196 // a certain number of ticks.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000197 if (sampler_ticks_until_threshold_adjustment_ > 0) {
198 sampler_ticks_until_threshold_adjustment_--;
199 if (sampler_ticks_until_threshold_adjustment_ <= 0) {
ager@chromium.org5f0c45f2010-12-17 08:51:21 +0000200 // If the threshold is not already at the minimum
201 // modify and reset the ticks until next adjustment.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000202 if (sampler_threshold_ > kSamplerThresholdMin) {
203 sampler_threshold_ -= kSamplerThresholdDelta;
204 sampler_ticks_until_threshold_adjustment_ =
ager@chromium.org5f0c45f2010-12-17 08:51:21 +0000205 kSamplerTicksBetweenThresholdAdjustment;
206 }
207 }
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000208 }
209
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000210 if (function->IsMarkedForLazyRecompilation()) {
211 Code* unoptimized = function->shared()->code();
212 int nesting = unoptimized->allow_osr_at_loop_nesting_level();
213 if (nesting == 0) AttemptOnStackReplacement(function);
214 int new_nesting = Min(nesting + 1, Code::kMaxLoopNestingMarker);
215 unoptimized->set_allow_osr_at_loop_nesting_level(new_nesting);
ager@chromium.org5f0c45f2010-12-17 08:51:21 +0000216 }
217
218 // Do not record non-optimizable functions.
ager@chromium.orga9aa5fa2011-04-13 08:46:07 +0000219 if (!function->IsOptimizable()) continue;
ager@chromium.org5f0c45f2010-12-17 08:51:21 +0000220 samples[sample_count++] = function;
221
222 int function_size = function->shared()->SourceSize();
223 int threshold_size_factor = (function_size > kSizeLimit)
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000224 ? sampler_threshold_size_factor_
ager@chromium.org5f0c45f2010-12-17 08:51:21 +0000225 : 1;
226
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000227 int threshold = sampler_threshold_ * threshold_size_factor;
ager@chromium.org5f0c45f2010-12-17 08:51:21 +0000228
229 if (LookupSample(function) >= threshold) {
ricow@chromium.org4f693d62011-07-04 14:01:31 +0000230 Optimize(function);
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000231 }
232 }
233
234 // Add the collected functions as samples. It's important not to do
235 // this as part of collecting them because this will interfere with
236 // the sample lookup in case of recursive functions.
ager@chromium.org5f0c45f2010-12-17 08:51:21 +0000237 for (int i = 0; i < sample_count; i++) {
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000238 AddSample(samples[i], kSamplerFrameWeight[i]);
239 }
240}
241
242
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000243void RuntimeProfiler::NotifyTick() {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000244 isolate_->stack_guard()->RequestRuntimeProfilerTick();
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000245}
246
247
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000248void RuntimeProfiler::Setup() {
ager@chromium.orga9aa5fa2011-04-13 08:46:07 +0000249 ASSERT(has_been_globally_setup_);
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000250 ClearSampleBuffer();
251 // If the ticker hasn't already started, make sure to do so to get
252 // the ticks for the runtime profiler.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000253 if (IsEnabled()) isolate_->logger()->EnsureTickerStarted();
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000254}
255
256
257void RuntimeProfiler::Reset() {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000258 sampler_threshold_ = kSamplerThresholdInit;
259 sampler_threshold_size_factor_ = kSamplerThresholdSizeFactorInit;
260 sampler_ticks_until_threshold_adjustment_ =
ager@chromium.org5f0c45f2010-12-17 08:51:21 +0000261 kSamplerTicksBetweenThresholdAdjustment;
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000262}
263
264
265void RuntimeProfiler::TearDown() {
266 // Nothing to do.
267}
268
269
ager@chromium.org9ee27ae2011-03-02 13:43:26 +0000270int RuntimeProfiler::SamplerWindowSize() {
271 return kSamplerWindowSize;
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000272}
273
274
ager@chromium.org9ee27ae2011-03-02 13:43:26 +0000275// Update the pointers in the sampler window after a GC.
276void RuntimeProfiler::UpdateSamplesAfterScavenge() {
277 for (int i = 0; i < kSamplerWindowSize; i++) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000278 Object* function = sampler_window_[i];
279 if (function != NULL && isolate_->heap()->InNewSpace(function)) {
ager@chromium.org9ee27ae2011-03-02 13:43:26 +0000280 MapWord map_word = HeapObject::cast(function)->map_word();
281 if (map_word.IsForwardingAddress()) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000282 sampler_window_[i] = map_word.ToForwardingAddress();
ager@chromium.org9ee27ae2011-03-02 13:43:26 +0000283 } else {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000284 sampler_window_[i] = NULL;
ager@chromium.org9ee27ae2011-03-02 13:43:26 +0000285 }
286 }
287 }
288}
289
290
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000291void RuntimeProfiler::HandleWakeUp(Isolate* isolate) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000292 // The profiler thread must still be waiting.
293 ASSERT(NoBarrier_Load(&state_) >= 0);
294 // In IsolateEnteredJS we have already incremented the counter and
295 // undid the decrement done by the profiler thread. Increment again
296 // to get the right count of active isolates.
297 NoBarrier_AtomicIncrement(&state_, 1);
298 semaphore_->Signal();
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000299}
300
301
302bool RuntimeProfiler::IsSomeIsolateInJS() {
303 return NoBarrier_Load(&state_) > 0;
304}
305
306
307bool RuntimeProfiler::WaitForSomeIsolateToEnterJS() {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000308 Atomic32 old_state = NoBarrier_CompareAndSwap(&state_, 0, -1);
309 ASSERT(old_state >= -1);
310 if (old_state != 0) return false;
311 semaphore_->Wait();
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000312 return true;
313}
314
315
jkummerow@chromium.orgddda9e82011-07-06 11:27:02 +0000316void RuntimeProfiler::StopRuntimeProfilerThreadBeforeShutdown(Thread* thread) {
jkummerow@chromium.orgddda9e82011-07-06 11:27:02 +0000317 // Do a fake increment. If the profiler is waiting on the semaphore,
318 // the returned state is 0, which can be left as an initial state in
319 // case profiling is restarted later. If the profiler is not
320 // waiting, the increment will prevent it from waiting, but has to
321 // be undone after the profiler is stopped.
322 Atomic32 new_state = NoBarrier_AtomicIncrement(&state_, 1);
323 ASSERT(new_state >= 0);
324 if (new_state == 0) {
325 // The profiler thread is waiting. Wake it up. It must check for
326 // stop conditions before attempting to wait again.
327 semaphore_->Signal();
328 }
329 thread->Join();
330 // The profiler thread is now stopped. Undo the increment in case it
331 // was not waiting.
332 if (new_state != 0) {
333 NoBarrier_AtomicIncrement(&state_, -1);
334 }
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000335}
336
337
ager@chromium.org9ee27ae2011-03-02 13:43:26 +0000338void RuntimeProfiler::RemoveDeadSamples() {
339 for (int i = 0; i < kSamplerWindowSize; i++) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000340 Object* function = sampler_window_[i];
ager@chromium.org9ee27ae2011-03-02 13:43:26 +0000341 if (function != NULL && !HeapObject::cast(function)->IsMarked()) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000342 sampler_window_[i] = NULL;
ager@chromium.org9ee27ae2011-03-02 13:43:26 +0000343 }
344 }
345}
346
347
348void RuntimeProfiler::UpdateSamplesAfterCompact(ObjectVisitor* visitor) {
349 for (int i = 0; i < kSamplerWindowSize; i++) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000350 visitor->VisitPointer(&sampler_window_[i]);
ager@chromium.org9ee27ae2011-03-02 13:43:26 +0000351 }
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000352}
353
354
355bool RuntimeProfilerRateLimiter::SuspendIfNecessary() {
ricow@chromium.org4f693d62011-07-04 14:01:31 +0000356 if (!RuntimeProfiler::IsSomeIsolateInJS()) {
357 return RuntimeProfiler::WaitForSomeIsolateToEnterJS();
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000358 }
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000359 return false;
360}
361
362
363} } // namespace v8::internal