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

Side by Side Diff: src/profiler/sampler.h

Issue 1895603002: [esnext] prototype runtime implementation for async functions (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@AsyncFunction
Patch Set: properly rebase Created 4 years, 7 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
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_PROFILER_SAMPLER_H_ 5 #ifndef V8_PROFILER_SAMPLER_H_
6 #define V8_PROFILER_SAMPLER_H_ 6 #define V8_PROFILER_SAMPLER_H_
7 7
8 #include "include/v8.h" 8 #include "include/v8.h"
9 9
10 #include "src/base/atomicops.h" 10 #include "src/base/atomicops.h"
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 base::Atomic32 active_; 133 base::Atomic32 active_;
134 base::Atomic32 registered_; 134 base::Atomic32 registered_;
135 PlatformData* data_; // Platform specific data. 135 PlatformData* data_; // Platform specific data.
136 // Counts stack samples taken in various VM states. 136 // Counts stack samples taken in various VM states.
137 bool is_counting_samples_; 137 bool is_counting_samples_;
138 unsigned js_sample_count_; 138 unsigned js_sample_count_;
139 unsigned external_sample_count_; 139 unsigned external_sample_count_;
140 DISALLOW_IMPLICIT_CONSTRUCTORS(Sampler); 140 DISALLOW_IMPLICIT_CONSTRUCTORS(Sampler);
141 }; 141 };
142 142
143
Dan Ehrenberg 2016/05/04 22:52:36 Nit: No need to include these whitespace changes.
caitp (gmail) 2016/05/06 18:45:26 Done.
144 #if defined(USE_SIMULATOR) 143 #if defined(USE_SIMULATOR)
145 class SimulatorHelper : AllStatic { 144 class SimulatorHelper : AllStatic {
146 public: 145 public:
147 // Returns true if register values were successfully retrieved 146 // Returns true if register values were successfully retrieved
148 // from the simulator, otherwise returns false. 147 // from the simulator, otherwise returns false.
149 static bool FillRegisters(Isolate* isolate, v8::RegisterState* state); 148 static bool FillRegisters(Isolate* isolate, v8::RegisterState* state);
150 }; 149 };
151 #endif // USE_SIMULATOR 150 #endif // USE_SIMULATOR
152 151
153
154 } // namespace internal 152 } // namespace internal
155 } // namespace v8 153 } // namespace v8
156 154
157 #endif // V8_PROFILER_SAMPLER_H_ 155 #endif // V8_PROFILER_SAMPLER_H_
OLDNEW
« src/parsing/parser.cc ('K') | « src/parsing/preparser.cc ('k') | src/profiler/sampler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698