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

Side by Side Diff: src/sampler.h

Issue 422593003: Initial GetSample implementation. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Addressed the nits. Created 6 years, 4 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 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_SAMPLER_H_ 5 #ifndef V8_SAMPLER_H_
6 #define V8_SAMPLER_H_ 6 #define V8_SAMPLER_H_
7 7
8 #include "include/v8-sampler.h"
9
8 #include "src/base/atomicops.h" 10 #include "src/base/atomicops.h"
9 #include "src/frames.h" 11 #include "src/frames.h"
10 #include "src/globals.h" 12 #include "src/globals.h"
11 13
12 namespace v8 { 14 namespace v8 {
13 namespace internal { 15 namespace internal {
14 16
15 class Isolate; 17 class Isolate;
16 18
19 class ScopedSemaphore {
20 public:
21 explicit ScopedSemaphore(base::Semaphore* sem) {semaphore_ = sem;}
22 ~ScopedSemaphore() {semaphore_->Signal();}
23 private:
24 base::Semaphore* semaphore_;
25 };
26
27
17 // ---------------------------------------------------------------------------- 28 // ----------------------------------------------------------------------------
18 // Sampler 29 // Sampler
19 // 30 //
20 // A sampler periodically samples the state of the VM and optionally 31 // A sampler periodically samples the state of the VM and optionally
21 // (if used for profiling) the program counter and stack pointer for 32 // (if used for profiling) the program counter and stack pointer for
22 // the thread that created it. 33 // the thread that created it.
23 34
24 struct RegisterState { 35 struct RegisterState {
25 RegisterState() : pc(NULL), sp(NULL), fp(NULL) {} 36 RegisterState() : pc(NULL), sp(NULL), fp(NULL) {}
26 Address pc; // Instruction pointer. 37 Address pc; // Instruction pointer.
27 Address sp; // Stack pointer. 38 Address sp; // Stack pointer.
28 Address fp; // Frame pointer. 39 Address fp; // Frame pointer.
29 }; 40 };
30 41
31 // TickSample captures the information collected for each sample. 42 // TickSample captures the information collected for each sample.
32 struct TickSample { 43 struct TickSample : v8::Sample {
33 TickSample() 44 TickSample()
34 : state(OTHER), 45 : state(OTHER),
35 pc(NULL), 46 pc(NULL),
36 external_callback(NULL), 47 external_callback(NULL),
37 frames_count(0),
38 has_external_callback(false), 48 has_external_callback(false),
39 top_frame_type(StackFrame::NONE) {} 49 top_frame_type(StackFrame::NONE) {}
40 void Init(Isolate* isolate, const RegisterState& state); 50 void Init(Isolate* isolate,
51 const RegisterState& state);
41 StateTag state; // The state of the VM. 52 StateTag state; // The state of the VM.
42 Address pc; // Instruction pointer. 53 Address pc; // Instruction pointer.
43 union { 54 union {
44 Address tos; // Top stack value (*sp). 55 Address tos; // Top stack value (*sp).
45 Address external_callback; 56 Address external_callback;
46 }; 57 };
47 static const unsigned kMaxFramesCountLog2 = 8;
48 static const unsigned kMaxFramesCount = (1 << kMaxFramesCountLog2) - 1;
49 Address stack[kMaxFramesCount]; // Call stack.
50 base::TimeTicks timestamp; 58 base::TimeTicks timestamp;
51 unsigned frames_count : kMaxFramesCountLog2; // Number of captured frames.
52 bool has_external_callback : 1; 59 bool has_external_callback : 1;
53 StackFrame::Type top_frame_type : 4; 60 StackFrame::Type top_frame_type : 4;
54 }; 61 };
55 62
56 class Sampler { 63 class Sampler {
57 public: 64 public:
58 // Initializes the Sampler support. Called once at VM startup. 65 // Initializes the Sampler support. Called once at VM startup.
59 static void SetUp(); 66 static void SetUp();
60 static void TearDown(); 67 static void TearDown();
61 68
(...skipping 16 matching lines...) Expand all
78 return base::NoBarrier_Load(&profiling_) > 0 && 85 return base::NoBarrier_Load(&profiling_) > 0 &&
79 !base::NoBarrier_Load(&has_processing_thread_); 86 !base::NoBarrier_Load(&has_processing_thread_);
80 } 87 }
81 void IncreaseProfilingDepth(); 88 void IncreaseProfilingDepth();
82 void DecreaseProfilingDepth(); 89 void DecreaseProfilingDepth();
83 90
84 // Whether the sampler is running (that is, consumes resources). 91 // Whether the sampler is running (that is, consumes resources).
85 bool IsActive() const { return base::NoBarrier_Load(&active_); } 92 bool IsActive() const { return base::NoBarrier_Load(&active_); }
86 93
87 void DoSample(); 94 void DoSample();
95 v8::Sample* GetSample(v8::Sample* sample);
88 // If true next sample must be initiated on the profiler event processor 96 // If true next sample must be initiated on the profiler event processor
89 // thread right after latest sample is processed. 97 // thread right after latest sample is processed.
90 void SetHasProcessingThread(bool value) { 98 void SetHasProcessingThread(bool value) {
91 base::NoBarrier_Store(&has_processing_thread_, value); 99 base::NoBarrier_Store(&has_processing_thread_, value);
92 } 100 }
93 101
94 // Used in tests to make sure that stack sampling is performed. 102 // Used in tests to make sure that stack sampling is performed.
95 unsigned js_and_external_sample_count() const { 103 unsigned js_and_external_sample_count() const {
96 return js_and_external_sample_count_; 104 return js_and_external_sample_count_;
97 } 105 }
(...skipping 15 matching lines...) Expand all
113 121
114 Isolate* isolate_; 122 Isolate* isolate_;
115 const int interval_; 123 const int interval_;
116 base::Atomic32 profiling_; 124 base::Atomic32 profiling_;
117 base::Atomic32 has_processing_thread_; 125 base::Atomic32 has_processing_thread_;
118 base::Atomic32 active_; 126 base::Atomic32 active_;
119 PlatformData* data_; // Platform specific data. 127 PlatformData* data_; // Platform specific data.
120 bool is_counting_samples_; 128 bool is_counting_samples_;
121 // Counts stack samples taken in JS VM state. 129 // Counts stack samples taken in JS VM state.
122 unsigned js_and_external_sample_count_; 130 unsigned js_and_external_sample_count_;
131 void* GetSampleHelper();
132 static void CopyTickSampleToSample(TickSample* tick_sample,
133 v8::Sample* sample);
123 DISALLOW_IMPLICIT_CONSTRUCTORS(Sampler); 134 DISALLOW_IMPLICIT_CONSTRUCTORS(Sampler);
124 }; 135 };
125 136
126 137
127 } } // namespace v8::internal 138 } } // namespace v8::internal
128 139
129 #endif // V8_SAMPLER_H_ 140 #endif // V8_SAMPLER_H_
OLDNEW
« include/v8-sampler.h ('K') | « src/cpu-profiler.h ('k') | src/sampler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698