blob: 7bfbf5c57cb897f0ab7cf5b978f9285aab9e9cb5 [file] [log] [blame]
whesse@chromium.orgcec079d2010-03-22 14:44:04 +00001// Copyright 2010 the V8 project authors. All rights reserved.
2// 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#ifndef V8_CPU_PROFILER_INL_H_
29#define V8_CPU_PROFILER_INL_H_
30
lrn@chromium.org25156de2010-04-06 13:10:27 +000031#include "cpu-profiler.h"
32
ager@chromium.org04921a82011-06-27 13:21:41 +000033#include <new>
mmassi@chromium.org49a44672012-12-04 13:52:03 +000034#include "circular-queue-inl.h"
whesse@chromium.orgcec079d2010-03-22 14:44:04 +000035#include "profile-generator-inl.h"
kmillikin@chromium.org9155e252010-05-26 13:27:57 +000036#include "unbound-queue-inl.h"
whesse@chromium.orgcec079d2010-03-22 14:44:04 +000037
whesse@chromium.orgcec079d2010-03-22 14:44:04 +000038namespace v8 {
39namespace internal {
40
lrn@chromium.org25156de2010-04-06 13:10:27 +000041void CodeCreateEventRecord::UpdateCodeMap(CodeMap* code_map) {
ager@chromium.org357bf652010-04-12 11:30:10 +000042 code_map->AddCode(start, entry, size);
whesse@chromium.orgb08986c2011-03-14 16:13:42 +000043 if (shared != NULL) {
44 entry->set_shared_id(code_map->GetSharedId(shared));
fschneider@chromium.org3a5fd782011-02-24 10:10:44 +000045 }
lrn@chromium.org25156de2010-04-06 13:10:27 +000046}
47
48
49void CodeMoveEventRecord::UpdateCodeMap(CodeMap* code_map) {
ager@chromium.org357bf652010-04-12 11:30:10 +000050 code_map->MoveCode(from, to);
lrn@chromium.org25156de2010-04-06 13:10:27 +000051}
52
53
whesse@chromium.orgb08986c2011-03-14 16:13:42 +000054void SharedFunctionInfoMoveEventRecord::UpdateCodeMap(CodeMap* code_map) {
fschneider@chromium.org3a5fd782011-02-24 10:10:44 +000055 code_map->MoveCode(from, to);
ager@chromium.org357bf652010-04-12 11:30:10 +000056}
57
58
jkummerow@chromium.org93a47f42013-07-02 14:43:41 +000059void ReportBuiltinEventRecord::UpdateCodeMap(CodeMap* code_map) {
60 CodeEntry* entry = code_map->FindEntry(start);
61 if (!entry) {
62 // Code objects for builtins should already have been added to the map but
63 // some of them have been filtered out by CpuProfiler.
64 return;
65 }
66 entry->SetBuiltinId(builtin_id);
67}
68
69
rossberg@chromium.org92597162013-08-23 13:28:00 +000070TickSample* CpuProfiler::StartTickSample() {
71 if (is_profiling_) return processor_->StartTickSample();
72 return NULL;
73}
74
75
76void CpuProfiler::FinishTickSample() {
77 processor_->FinishTickSample();
78}
79
80
81TickSample* ProfilerEventsProcessor::StartTickSample() {
82 void* address = ticks_buffer_.StartEnqueue();
83 if (address == NULL) return NULL;
mmassi@chromium.org49a44672012-12-04 13:52:03 +000084 TickSampleEventRecord* evt =
rossberg@chromium.org92597162013-08-23 13:28:00 +000085 new(address) TickSampleEventRecord(last_code_event_id_);
mmassi@chromium.org49a44672012-12-04 13:52:03 +000086 return &evt->sample;
whesse@chromium.orgcec079d2010-03-22 14:44:04 +000087}
88
ager@chromium.org357bf652010-04-12 11:30:10 +000089
rossberg@chromium.org92597162013-08-23 13:28:00 +000090void ProfilerEventsProcessor::FinishTickSample() {
91 ticks_buffer_.FinishEnqueue();
92}
93
whesse@chromium.orgcec079d2010-03-22 14:44:04 +000094} } // namespace v8::internal
95
whesse@chromium.orgcec079d2010-03-22 14:44:04 +000096#endif // V8_CPU_PROFILER_INL_H_