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

Unified Diff: src/log.cc

Issue 2128613004: Move SimulatorHelper into V8 out of profiler clients. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: src/log.cc
diff --git a/src/log.cc b/src/log.cc
index 07a078f418e97e0b149b8827f0110fe0c782755e..a97f17c08c23ed0d092ae8e675d0b2af36b7e5ad 100644
--- a/src/log.cc
+++ b/src/log.cc
@@ -619,10 +619,10 @@ class Profiler: public base::Thread {
//
class Ticker: public sampler::Sampler {
public:
- Ticker(Isolate* isolate, int interval):
- sampler::Sampler(reinterpret_cast<v8::Isolate*>(isolate)),
- profiler_(NULL),
- sampling_thread_(new SamplingThread(this, interval)) {}
+ Ticker(Isolate* isolate, int interval)
+ : sampler::Sampler(reinterpret_cast<v8::Isolate*>(isolate)),
+ profiler_(nullptr),
+ sampling_thread_(new SamplingThread(this, interval)) {}
~Ticker() {
if (IsActive()) Stop();
@@ -630,7 +630,7 @@ class Ticker: public sampler::Sampler {
}
void SetProfiler(Profiler* profiler) {
- DCHECK(profiler_ == NULL);
+ DCHECK(profiler_ == nullptr);
profiler_ = profiler;
IncreaseProfilingDepth();
if (!IsActive()) Start();
@@ -638,7 +638,7 @@ class Ticker: public sampler::Sampler {
}
void ClearProfiler() {
- profiler_ = NULL;
+ profiler_ = nullptr;
if (IsActive()) Stop();
DecreaseProfilingDepth();
sampling_thread_->Join();
@@ -646,15 +646,9 @@ class Ticker: public sampler::Sampler {
void SampleStack(const v8::RegisterState& state) override {
if (!profiler_) return;
- v8::Isolate* v8_isolate = isolate();
- Isolate* i_isolate = reinterpret_cast<Isolate*>(v8_isolate);
-#if defined(USE_SIMULATOR)
- if (!SimulatorHelper::FillRegisters(i_isolate,
- const_cast<v8::RegisterState*>(&state)))
- return;
-#endif
+ Isolate* isolate = reinterpret_cast<Isolate*>(this->isolate());
lpy 2016/07/07 17:57:56 Since sampler has a method called isolate(), shoul
alph 2016/07/07 18:05:29 What's wrong with it? I'm not aware of a policy/ru
Yang 2016/07/08 08:40:47 I think this is fine. We do this elsewhere too.
TickSample sample;
- sample.Init(i_isolate, state, TickSample::kIncludeCEntryFrame, true);
+ sample.Init(isolate, state, TickSample::kIncludeCEntryFrame, true);
profiler_->Insert(&sample);
}

Powered by Google App Engine
This is Rietveld 408576698