blob: fdc50471b4d82c53d3834e768f8de51e5a17bc1e [file] [log] [blame]
Ben Murdoch3ef787d2012-04-12 10:51:47 +01001// Copyright 2012 the V8 project authors. All rights reserved.
Ben Murdochb8a8cc12014-11-26 15:28:44 +00002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
Steve Blocka7e24c12009-10-30 11:49:00 +00004
5#ifndef V8_LOG_H_
6#define V8_LOG_H_
7
Ben Murdochb8a8cc12014-11-26 15:28:44 +00008#include <string>
9
10#include "src/allocation.h"
11#include "src/base/platform/elapsed-timer.h"
12#include "src/base/platform/platform.h"
13#include "src/objects.h"
Steve Blocka7e24c12009-10-30 11:49:00 +000014
15namespace v8 {
Ben Murdochb8a8cc12014-11-26 15:28:44 +000016
17namespace base {
18class Semaphore;
19}
20
Steve Blocka7e24c12009-10-30 11:49:00 +000021namespace internal {
22
23// Logger is used for collecting logging information from V8 during
24// execution. The result is dumped to a file.
25//
26// Available command line flags:
27//
28// --log
29// Minimal logging (no API, code, or GC sample events), default is off.
30//
31// --log-all
32// Log all events to the file, default is off. This is the same as combining
33// --log-api, --log-code, --log-gc, and --log-regexp.
34//
35// --log-api
36// Log API events to the logfile, default is off. --log-api implies --log.
37//
38// --log-code
39// Log code (create, move, and delete) events to the logfile, default is off.
40// --log-code implies --log.
41//
42// --log-gc
43// Log GC heap samples after each GC that can be processed by hp2ps, default
44// is off. --log-gc implies --log.
45//
46// --log-regexp
47// Log creation and use of regular expressions, Default is off.
48// --log-regexp implies --log.
49//
50// --logfile <filename>
51// Specify the name of the logfile, default is "v8.log".
52//
53// --prof
54// Collect statistical profiling information (ticks), default is off. The
55// tick profiler requires code events, so --prof implies --log-code.
56
57// Forward declarations.
Ben Murdochb8a8cc12014-11-26 15:28:44 +000058class CodeEventListener;
59class CompilationInfo;
60class CpuProfiler;
61class Isolate;
62class Log;
63class PositionsRecorder;
Steve Blocka7e24c12009-10-30 11:49:00 +000064class Profiler;
Ben Murdoch257744e2011-11-30 15:57:28 +000065class Ticker;
Ben Murdochb8a8cc12014-11-26 15:28:44 +000066struct TickSample;
Steve Blocka7e24c12009-10-30 11:49:00 +000067
68#undef LOG
Steve Block44f0eee2011-05-26 01:26:41 +010069#define LOG(isolate, Call) \
70 do { \
71 v8::internal::Logger* logger = \
72 (isolate)->logger(); \
73 if (logger->is_logging()) \
74 logger->Call; \
Steve Blocka7e24c12009-10-30 11:49:00 +000075 } while (false)
Steve Blocka7e24c12009-10-30 11:49:00 +000076
Ben Murdochb8a8cc12014-11-26 15:28:44 +000077#define LOG_CODE_EVENT(isolate, Call) \
78 do { \
79 v8::internal::Logger* logger = \
80 (isolate)->logger(); \
81 if (logger->is_logging_code_events()) \
82 logger->Call; \
83 } while (false)
84
Ben Murdochda12d292016-06-02 14:46:10 +010085#define LOG_EVENTS_AND_TAGS_LIST(V) \
86 V(CODE_CREATION_EVENT, "code-creation") \
87 V(CODE_DISABLE_OPT_EVENT, "code-disable-optimization") \
88 V(CODE_MOVE_EVENT, "code-move") \
89 V(CODE_DELETE_EVENT, "code-delete") \
90 V(CODE_MOVING_GC, "code-moving-gc") \
91 V(SHARED_FUNC_MOVE_EVENT, "sfi-move") \
92 V(SNAPSHOT_CODE_NAME_EVENT, "snapshot-code-name") \
93 V(TICK_EVENT, "tick") \
94 V(REPEAT_META_EVENT, "repeat") \
95 V(BUILTIN_TAG, "Builtin") \
96 V(CALL_DEBUG_BREAK_TAG, "CallDebugBreak") \
97 V(CALL_DEBUG_PREPARE_STEP_IN_TAG, "CallDebugPrepareStepIn") \
98 V(CALL_INITIALIZE_TAG, "CallInitialize") \
99 V(CALL_MEGAMORPHIC_TAG, "CallMegamorphic") \
100 V(CALL_MISS_TAG, "CallMiss") \
101 V(CALL_NORMAL_TAG, "CallNormal") \
102 V(CALL_PRE_MONOMORPHIC_TAG, "CallPreMonomorphic") \
103 V(LOAD_INITIALIZE_TAG, "LoadInitialize") \
104 V(LOAD_PREMONOMORPHIC_TAG, "LoadPreMonomorphic") \
105 V(LOAD_MEGAMORPHIC_TAG, "LoadMegamorphic") \
106 V(STORE_INITIALIZE_TAG, "StoreInitialize") \
107 V(STORE_PREMONOMORPHIC_TAG, "StorePreMonomorphic") \
108 V(STORE_GENERIC_TAG, "StoreGeneric") \
109 V(STORE_MEGAMORPHIC_TAG, "StoreMegamorphic") \
110 V(KEYED_CALL_DEBUG_BREAK_TAG, "KeyedCallDebugBreak") \
111 V(KEYED_CALL_DEBUG_PREPARE_STEP_IN_TAG, "KeyedCallDebugPrepareStepIn") \
112 V(KEYED_CALL_INITIALIZE_TAG, "KeyedCallInitialize") \
113 V(KEYED_CALL_MEGAMORPHIC_TAG, "KeyedCallMegamorphic") \
114 V(KEYED_CALL_MISS_TAG, "KeyedCallMiss") \
115 V(KEYED_CALL_NORMAL_TAG, "KeyedCallNormal") \
116 V(KEYED_CALL_PRE_MONOMORPHIC_TAG, "KeyedCallPreMonomorphic") \
117 V(CALLBACK_TAG, "Callback") \
118 V(EVAL_TAG, "Eval") \
119 V(FUNCTION_TAG, "Function") \
120 V(HANDLER_TAG, "Handler") \
121 V(BYTECODE_HANDLER_TAG, "BytecodeHandler") \
122 V(KEYED_LOAD_IC_TAG, "KeyedLoadIC") \
123 V(KEYED_LOAD_POLYMORPHIC_IC_TAG, "KeyedLoadPolymorphicIC") \
124 V(KEYED_EXTERNAL_ARRAY_LOAD_IC_TAG, "KeyedExternalArrayLoadIC") \
125 V(KEYED_STORE_IC_TAG, "KeyedStoreIC") \
126 V(KEYED_STORE_POLYMORPHIC_IC_TAG, "KeyedStorePolymorphicIC") \
127 V(KEYED_EXTERNAL_ARRAY_STORE_IC_TAG, "KeyedExternalArrayStoreIC") \
128 V(LAZY_COMPILE_TAG, "LazyCompile") \
129 V(CALL_IC_TAG, "CallIC") \
130 V(LOAD_IC_TAG, "LoadIC") \
131 V(LOAD_POLYMORPHIC_IC_TAG, "LoadPolymorphicIC") \
132 V(REG_EXP_TAG, "RegExp") \
133 V(SCRIPT_TAG, "Script") \
134 V(STORE_IC_TAG, "StoreIC") \
135 V(STORE_POLYMORPHIC_IC_TAG, "StorePolymorphicIC") \
136 V(STUB_TAG, "Stub") \
137 V(NATIVE_FUNCTION_TAG, "Function") \
138 V(NATIVE_LAZY_COMPILE_TAG, "LazyCompile") \
139 V(NATIVE_SCRIPT_TAG, "Script")
Steve Block6ded16b2010-05-10 14:33:55 +0100140// Note that 'NATIVE_' cases for functions and scripts are mapped onto
141// original tags when writing to the log.
142
Steve Blocka7e24c12009-10-30 11:49:00 +0000143
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000144class JitLogger;
145class PerfBasicLogger;
146class LowLevelLogger;
Ben Murdochda12d292016-06-02 14:46:10 +0100147class PerfJitLogger;
Steve Block44f0eee2011-05-26 01:26:41 +0100148class Sampler;
149
Steve Blocka7e24c12009-10-30 11:49:00 +0000150class Logger {
151 public:
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000152 enum StartEnd { START = 0, END = 1 };
153
Ben Murdochb0fe1622011-05-05 13:52:32 +0100154#define DECLARE_ENUM(enum_item, ignore) enum_item,
Steve Blocka7e24c12009-10-30 11:49:00 +0000155 enum LogEventsAndTags {
156 LOG_EVENTS_AND_TAGS_LIST(DECLARE_ENUM)
157 NUMBER_OF_LOG_EVENTS
158 };
159#undef DECLARE_ENUM
160
161 // Acquires resources for logging if the right flags are set.
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000162 bool SetUp(Isolate* isolate);
Steve Blocka7e24c12009-10-30 11:49:00 +0000163
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000164 // Sets the current code event handler.
165 void SetCodeEventHandler(uint32_t options,
166 JitCodeEventHandler event_handler);
Steve Block44f0eee2011-05-26 01:26:41 +0100167
168 Sampler* sampler();
Ben Murdochb0fe1622011-05-05 13:52:32 +0100169
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100170 // Frees resources acquired in SetUp.
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000171 // When a temporary file is used for the log, returns its stream descriptor,
172 // leaving the file open.
173 FILE* TearDown();
Steve Blocka7e24c12009-10-30 11:49:00 +0000174
Steve Blocka7e24c12009-10-30 11:49:00 +0000175 // Emits an event with a string value -> (name, value).
Steve Block44f0eee2011-05-26 01:26:41 +0100176 void StringEvent(const char* name, const char* value);
Steve Blocka7e24c12009-10-30 11:49:00 +0000177
178 // Emits an event with an int value -> (name, value).
Steve Block44f0eee2011-05-26 01:26:41 +0100179 void IntEvent(const char* name, int value);
180 void IntPtrTEvent(const char* name, intptr_t value);
Steve Blocka7e24c12009-10-30 11:49:00 +0000181
182 // Emits an event with an handle value -> (name, location).
Steve Block44f0eee2011-05-26 01:26:41 +0100183 void HandleEvent(const char* name, Object** location);
Steve Blocka7e24c12009-10-30 11:49:00 +0000184
185 // Emits memory management events for C allocated structures.
Steve Block44f0eee2011-05-26 01:26:41 +0100186 void NewEvent(const char* name, void* object, size_t size);
187 void DeleteEvent(const char* name, void* object);
188
Steve Blocka7e24c12009-10-30 11:49:00 +0000189 // Emits an event with a tag, and some resource usage information.
190 // -> (name, tag, <rusage information>).
191 // Currently, the resource usage information is a process time stamp
192 // and a real time timestamp.
Steve Block44f0eee2011-05-26 01:26:41 +0100193 void ResourceEvent(const char* name, const char* tag);
Steve Blocka7e24c12009-10-30 11:49:00 +0000194
195 // Emits an event that an undefined property was read from an
196 // object.
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000197 void SuspectReadEvent(Name* name, Object* obj);
Steve Blocka7e24c12009-10-30 11:49:00 +0000198
199 // Emits an event when a message is put on or read from a debugging queue.
200 // DebugTag lets us put a call-site specific label on the event.
Steve Block44f0eee2011-05-26 01:26:41 +0100201 void DebugTag(const char* call_site_tag);
202 void DebugEvent(const char* event_type, Vector<uint16_t> parameter);
Steve Blocka7e24c12009-10-30 11:49:00 +0000203
204
205 // ==== Events logged by --log-api. ====
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000206 void ApiSecurityCheck();
Steve Block44f0eee2011-05-26 01:26:41 +0100207 void ApiNamedPropertyAccess(const char* tag, JSObject* holder, Object* name);
208 void ApiIndexedPropertyAccess(const char* tag,
209 JSObject* holder,
210 uint32_t index);
211 void ApiObjectAccess(const char* tag, JSObject* obj);
212 void ApiEntryCall(const char* name);
Steve Blocka7e24c12009-10-30 11:49:00 +0000213
214
215 // ==== Events logged by --log-code. ====
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000216 void addCodeEventListener(CodeEventListener* listener);
217 void removeCodeEventListener(CodeEventListener* listener);
218 bool hasCodeEventListener(CodeEventListener* listener);
219
220
Steve Blockd0582a62009-12-15 09:54:21 +0000221 // Emits a code event for a callback function.
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000222 void CallbackEvent(Name* name, Address entry_point);
223 void GetterCallbackEvent(Name* name, Address entry_point);
224 void SetterCallbackEvent(Name* name, Address entry_point);
Steve Blocka7e24c12009-10-30 11:49:00 +0000225 // Emits a code create event.
Ben Murdochda12d292016-06-02 14:46:10 +0100226 void CodeCreateEvent(LogEventsAndTags tag, AbstractCode* code,
227 const char* source);
228 void CodeCreateEvent(LogEventsAndTags tag, AbstractCode* code, Name* name);
229 void CodeCreateEvent(LogEventsAndTags tag, AbstractCode* code,
230 SharedFunctionInfo* shared, CompilationInfo* info,
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000231 Name* name);
Ben Murdochda12d292016-06-02 14:46:10 +0100232 void CodeCreateEvent(LogEventsAndTags tag, AbstractCode* code,
233 SharedFunctionInfo* shared, CompilationInfo* info,
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000234 Name* source, int line, int column);
Ben Murdochda12d292016-06-02 14:46:10 +0100235 void CodeCreateEvent(LogEventsAndTags tag, AbstractCode* code,
236 int args_count);
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000237 // Emits a code deoptimization event.
Ben Murdochda12d292016-06-02 14:46:10 +0100238 void CodeDisableOptEvent(AbstractCode* code, SharedFunctionInfo* shared);
Steve Block44f0eee2011-05-26 01:26:41 +0100239 void CodeMovingGCEvent();
Steve Blocka7e24c12009-10-30 11:49:00 +0000240 // Emits a code create event for a RegExp.
Ben Murdochda12d292016-06-02 14:46:10 +0100241 void RegExpCodeCreateEvent(AbstractCode* code, String* source);
Steve Blocka7e24c12009-10-30 11:49:00 +0000242 // Emits a code move event.
Ben Murdochda12d292016-06-02 14:46:10 +0100243 void CodeMoveEvent(AbstractCode* from, Address to);
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000244 // Emits a code line info add event with Postion type.
245 void CodeLinePosInfoAddPositionEvent(void* jit_handler_data,
246 int pc_offset,
247 int position);
248 // Emits a code line info add event with StatementPostion type.
249 void CodeLinePosInfoAddStatementPositionEvent(void* jit_handler_data,
250 int pc_offset,
251 int position);
252 // Emits a code line info start to record event
253 void CodeStartLinePosInfoRecordEvent(PositionsRecorder* pos_recorder);
254 // Emits a code line info finish record event.
255 // It's the callee's responsibility to dispose the parameter jit_handler_data.
Ben Murdochda12d292016-06-02 14:46:10 +0100256 void CodeEndLinePosInfoRecordEvent(AbstractCode* code,
257 void* jit_handler_data);
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100258
Steve Block44f0eee2011-05-26 01:26:41 +0100259 void SharedFunctionInfoMoveEvent(Address from, Address to);
Steve Blocka7e24c12009-10-30 11:49:00 +0000260
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000261 void CodeNameEvent(Address addr, int pos, const char* code_name);
Leon Clarkee46be812010-01-19 14:06:41 +0000262
Steve Blocka7e24c12009-10-30 11:49:00 +0000263 // ==== Events logged by --log-gc. ====
264 // Heap sampling events: start, end, and individual types.
Steve Block44f0eee2011-05-26 01:26:41 +0100265 void HeapSampleBeginEvent(const char* space, const char* kind);
266 void HeapSampleEndEvent(const char* space, const char* kind);
267 void HeapSampleItemEvent(const char* type, int number, int bytes);
268 void HeapSampleJSConstructorEvent(const char* constructor,
269 int number, int bytes);
270 void HeapSampleJSRetainersEvent(const char* constructor,
Steve Blocka7e24c12009-10-30 11:49:00 +0000271 const char* event);
Steve Block44f0eee2011-05-26 01:26:41 +0100272 void HeapSampleJSProducerEvent(const char* constructor,
273 Address* stack);
274 void HeapSampleStats(const char* space, const char* kind,
275 intptr_t capacity, intptr_t used);
Steve Blocka7e24c12009-10-30 11:49:00 +0000276
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000277 void SharedLibraryEvent(const std::string& library_path,
Steve Block44f0eee2011-05-26 01:26:41 +0100278 uintptr_t start,
279 uintptr_t end);
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000280
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000281 void CodeDeoptEvent(Code* code, Address pc, int fp_to_sp_delta);
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000282 void CurrentTimeEvent();
283
284 void TimerEvent(StartEnd se, const char* name);
285
286 static void EnterExternal(Isolate* isolate);
287 static void LeaveExternal(Isolate* isolate);
288
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400289 static void DefaultEventLoggerSentinel(const char* name, int event) {}
290
291 INLINE(static void CallEventLogger(Isolate* isolate, const char* name,
292 StartEnd se, bool expose_to_api));
Steve Blocka7e24c12009-10-30 11:49:00 +0000293
294 // ==== Events logged by --log-regexp ====
295 // Regexp compilation and execution events.
296
Steve Block44f0eee2011-05-26 01:26:41 +0100297 void RegExpCompileEvent(Handle<JSRegExp> regexp, bool in_cache);
Steve Blocka7e24c12009-10-30 11:49:00 +0000298
Steve Block44f0eee2011-05-26 01:26:41 +0100299 bool is_logging() {
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000300 return is_logging_;
Steve Blocka7e24c12009-10-30 11:49:00 +0000301 }
302
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000303 bool is_logging_code_events() {
304 return is_logging() || jit_logger_ != NULL;
305 }
306
307 // Stop collection of profiling data.
308 // When data collection is paused, CPU Tick events are discarded.
309 void StopProfiler();
Steve Blocka7e24c12009-10-30 11:49:00 +0000310
Ben Murdoch589d6972011-11-30 16:04:58 +0000311 void LogExistingFunction(Handle<SharedFunctionInfo> shared,
Ben Murdochda12d292016-06-02 14:46:10 +0100312 Handle<AbstractCode> code);
Steve Blocka7e24c12009-10-30 11:49:00 +0000313 // Logs all compiled functions found in the heap.
Steve Block44f0eee2011-05-26 01:26:41 +0100314 void LogCompiledFunctions();
Steve Blockd0582a62009-12-15 09:54:21 +0000315 // Logs all accessor callbacks found in the heap.
Steve Block44f0eee2011-05-26 01:26:41 +0100316 void LogAccessorCallbacks();
Steve Blockd0582a62009-12-15 09:54:21 +0000317 // Used for logging stubs found in the snapshot.
Steve Block44f0eee2011-05-26 01:26:41 +0100318 void LogCodeObjects();
Ben Murdochda12d292016-06-02 14:46:10 +0100319 // Used for logging bytecode handlers found in the snapshot.
320 void LogBytecodeHandlers();
Steve Blocka7e24c12009-10-30 11:49:00 +0000321
Steve Block6ded16b2010-05-10 14:33:55 +0100322 // Converts tag to a corresponding NATIVE_... if the script is native.
323 INLINE(static LogEventsAndTags ToNativeByScript(LogEventsAndTags, Script*));
Steve Blocka7e24c12009-10-30 11:49:00 +0000324
325 // Profiler's sampling interval (in milliseconds).
Ben Murdoch75492482011-12-01 11:18:12 +0000326#if defined(ANDROID)
327 // Phones and tablets have processors that are much slower than desktop
328 // and laptop computers for which current heuristics are tuned.
329 static const int kSamplingIntervalMs = 5;
330#else
Steve Blocka7e24c12009-10-30 11:49:00 +0000331 static const int kSamplingIntervalMs = 1;
Ben Murdoch75492482011-12-01 11:18:12 +0000332#endif
Steve Blocka7e24c12009-10-30 11:49:00 +0000333
Steve Block44f0eee2011-05-26 01:26:41 +0100334 // Callback from Log, stops profiling in case of insufficient resources.
335 void LogFailure();
336
Steve Block6ded16b2010-05-10 14:33:55 +0100337 private:
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000338 explicit Logger(Isolate* isolate);
Steve Block44f0eee2011-05-26 01:26:41 +0100339 ~Logger();
Steve Block6ded16b2010-05-10 14:33:55 +0100340
Steve Blocka7e24c12009-10-30 11:49:00 +0000341 // Emits the profiler's first message.
Steve Block44f0eee2011-05-26 01:26:41 +0100342 void ProfilerBeginEvent();
Steve Blocka7e24c12009-10-30 11:49:00 +0000343
Steve Blockd0582a62009-12-15 09:54:21 +0000344 // Emits callback event messages.
Steve Block44f0eee2011-05-26 01:26:41 +0100345 void CallbackEventInternal(const char* prefix,
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000346 Name* name,
Steve Block44f0eee2011-05-26 01:26:41 +0100347 Address entry_point);
Steve Blockd0582a62009-12-15 09:54:21 +0000348
Leon Clarked91b9f72010-01-27 17:25:45 +0000349 // Internal configurable move event.
Steve Block44f0eee2011-05-26 01:26:41 +0100350 void MoveEventInternal(LogEventsAndTags event, Address from, Address to);
Leon Clarked91b9f72010-01-27 17:25:45 +0000351
Andrei Popescu31002712010-02-23 13:46:05 +0000352 // Used for logging stubs found in the snapshot.
Steve Block44f0eee2011-05-26 01:26:41 +0100353 void LogCodeObject(Object* code_object);
Andrei Popescu31002712010-02-23 13:46:05 +0000354
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000355 // Helper method. It resets name_buffer_ and add tag name into it.
356 void InitNameBuffer(LogEventsAndTags tag);
Ben Murdochf87a2032010-10-22 12:50:53 +0100357
Steve Blocka7e24c12009-10-30 11:49:00 +0000358 // Emits a profiler tick event. Used by the profiler thread.
Steve Block44f0eee2011-05-26 01:26:41 +0100359 void TickEvent(TickSample* sample, bool overflow);
Steve Blocka7e24c12009-10-30 11:49:00 +0000360
Steve Block44f0eee2011-05-26 01:26:41 +0100361 void ApiEvent(const char* name, ...);
Steve Blocka7e24c12009-10-30 11:49:00 +0000362
363 // Logs a StringEvent regardless of whether FLAG_log is true.
Steve Block44f0eee2011-05-26 01:26:41 +0100364 void UncheckedStringEvent(const char* name, const char* value);
Steve Blocka7e24c12009-10-30 11:49:00 +0000365
Steve Block6ded16b2010-05-10 14:33:55 +0100366 // Logs an IntEvent regardless of whether FLAG_log is true.
Steve Block44f0eee2011-05-26 01:26:41 +0100367 void UncheckedIntEvent(const char* name, int value);
368 void UncheckedIntPtrTEvent(const char* name, intptr_t value);
Steve Blocka7e24c12009-10-30 11:49:00 +0000369
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000370 Isolate* isolate_;
Steve Blocka7e24c12009-10-30 11:49:00 +0000371
372 // The sampler used by the profiler and the sliding state window.
Steve Block44f0eee2011-05-26 01:26:41 +0100373 Ticker* ticker_;
Steve Blocka7e24c12009-10-30 11:49:00 +0000374
375 // When the statistical profile is active, profiler_
376 // points to a Profiler, that handles collection
377 // of samples.
Steve Block44f0eee2011-05-26 01:26:41 +0100378 Profiler* profiler_;
Steve Blocka7e24c12009-10-30 11:49:00 +0000379
Steve Block44f0eee2011-05-26 01:26:41 +0100380 // An array of log events names.
381 const char* const* log_events_;
Steve Blocka7e24c12009-10-30 11:49:00 +0000382
Steve Blocka7e24c12009-10-30 11:49:00 +0000383 // Internal implementation classes with access to
384 // private members.
Steve Blocka7e24c12009-10-30 11:49:00 +0000385 friend class EventLog;
Steve Block44f0eee2011-05-26 01:26:41 +0100386 friend class Isolate;
Steve Blocka7e24c12009-10-30 11:49:00 +0000387 friend class TimeLog;
388 friend class Profiler;
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000389 template <StateTag Tag> friend class VMState;
Steve Blocka7e24c12009-10-30 11:49:00 +0000390 friend class LoggerTestHelper;
391
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000392 bool is_logging_;
Steve Block44f0eee2011-05-26 01:26:41 +0100393 Log* log_;
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000394 PerfBasicLogger* perf_basic_logger_;
Ben Murdochda12d292016-06-02 14:46:10 +0100395 PerfJitLogger* perf_jit_logger_;
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000396 LowLevelLogger* ll_logger_;
397 JitLogger* jit_logger_;
398 List<CodeEventListener*> listeners_;
Ben Murdoch257744e2011-11-30 15:57:28 +0000399
Steve Block44f0eee2011-05-26 01:26:41 +0100400 // Guards against multiple calls to TearDown() that can happen in some tests.
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100401 // 'true' between SetUp() and TearDown().
Steve Block44f0eee2011-05-26 01:26:41 +0100402 bool is_initialized_;
403
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000404 base::ElapsedTimer timer_;
Steve Block6ded16b2010-05-10 14:33:55 +0100405
406 friend class CpuProfiler;
Steve Blocka7e24c12009-10-30 11:49:00 +0000407};
408
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000409#define TIMER_EVENTS_LIST(V) \
410 V(RecompileSynchronous, true) \
411 V(RecompileConcurrent, true) \
Ben Murdochda12d292016-06-02 14:46:10 +0100412 V(CompileIgnition, true) \
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000413 V(CompileFullCode, true) \
Ben Murdoch097c5b22016-05-18 11:27:45 +0100414 V(OptimizeCode, true) \
415 V(CompileCode, true) \
416 V(DeoptimizeCode, true) \
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000417 V(Execute, true) \
418 V(External, true) \
419 V(IcMiss, false)
420
421#define V(TimerName, expose) \
422 class TimerEvent##TimerName : public AllStatic { \
423 public: \
424 static const char* name(void* unused = NULL) { return "V8." #TimerName; } \
425 static bool expose_to_api() { return expose; } \
Steve Block44f0eee2011-05-26 01:26:41 +0100426 };
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000427TIMER_EVENTS_LIST(V)
428#undef V
Steve Block44f0eee2011-05-26 01:26:41 +0100429
Steve Block44f0eee2011-05-26 01:26:41 +0100430
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000431template <class TimerEvent>
432class TimerEventScope {
433 public:
434 explicit TimerEventScope(Isolate* isolate) : isolate_(isolate) {
435 LogTimerEvent(Logger::START);
Steve Block44f0eee2011-05-26 01:26:41 +0100436 }
437
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000438 ~TimerEventScope() { LogTimerEvent(Logger::END); }
Steve Block44f0eee2011-05-26 01:26:41 +0100439
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000440 void LogTimerEvent(Logger::StartEnd se);
441
442 private:
443 Isolate* isolate_;
Steve Block44f0eee2011-05-26 01:26:41 +0100444};
445
Ben Murdochda12d292016-06-02 14:46:10 +0100446class PositionsRecorder BASE_EMBEDDED {
447 public:
448 PositionsRecorder() { jit_handler_data_ = NULL; }
449
450 void AttachJITHandlerData(void* user_data) { jit_handler_data_ = user_data; }
451
452 void* DetachJITHandlerData() {
453 void* old_data = jit_handler_data_;
454 jit_handler_data_ = NULL;
455 return old_data;
456 }
457
458 protected:
459 // Currently jit_handler_data_ is used to store JITHandler-specific data
460 // over the lifetime of a PositionsRecorder
461 void* jit_handler_data_;
462
463 private:
464 DISALLOW_COPY_AND_ASSIGN(PositionsRecorder);
465};
Steve Block44f0eee2011-05-26 01:26:41 +0100466
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000467class CodeEventListener {
Steve Blocka7e24c12009-10-30 11:49:00 +0000468 public:
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000469 virtual ~CodeEventListener() {}
470
Ben Murdochda12d292016-06-02 14:46:10 +0100471 virtual void CodeCreateEvent(Logger::LogEventsAndTags tag, AbstractCode* code,
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000472 const char* comment) = 0;
Ben Murdochda12d292016-06-02 14:46:10 +0100473 virtual void CodeCreateEvent(Logger::LogEventsAndTags tag, AbstractCode* code,
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000474 Name* name) = 0;
Ben Murdochda12d292016-06-02 14:46:10 +0100475 virtual void CodeCreateEvent(Logger::LogEventsAndTags tag, AbstractCode* code,
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000476 SharedFunctionInfo* shared,
Ben Murdochda12d292016-06-02 14:46:10 +0100477 CompilationInfo* info, Name* name) = 0;
478 virtual void CodeCreateEvent(Logger::LogEventsAndTags tag, AbstractCode* code,
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000479 SharedFunctionInfo* shared,
Ben Murdochda12d292016-06-02 14:46:10 +0100480 CompilationInfo* info, Name* source, int line,
481 int column) = 0;
482 virtual void CodeCreateEvent(Logger::LogEventsAndTags tag, AbstractCode* code,
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000483 int args_count) = 0;
484 virtual void CallbackEvent(Name* name, Address entry_point) = 0;
485 virtual void GetterCallbackEvent(Name* name, Address entry_point) = 0;
486 virtual void SetterCallbackEvent(Name* name, Address entry_point) = 0;
Ben Murdochda12d292016-06-02 14:46:10 +0100487 virtual void RegExpCodeCreateEvent(AbstractCode* code, String* source) = 0;
488 virtual void CodeMoveEvent(AbstractCode* from, Address to) = 0;
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000489 virtual void SharedFunctionInfoMoveEvent(Address from, Address to) = 0;
490 virtual void CodeMovingGCEvent() = 0;
Ben Murdochda12d292016-06-02 14:46:10 +0100491 virtual void CodeDisableOptEvent(AbstractCode* code,
492 SharedFunctionInfo* shared) = 0;
Steve Blocka7e24c12009-10-30 11:49:00 +0000493};
494
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000495
496class CodeEventLogger : public CodeEventListener {
497 public:
498 CodeEventLogger();
Ben Murdochda12d292016-06-02 14:46:10 +0100499 ~CodeEventLogger() override;
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000500
Ben Murdochda12d292016-06-02 14:46:10 +0100501 void CodeCreateEvent(Logger::LogEventsAndTags tag, AbstractCode* code,
502 const char* comment) override;
503 void CodeCreateEvent(Logger::LogEventsAndTags tag, AbstractCode* code,
504 Name* name) override;
505 void CodeCreateEvent(Logger::LogEventsAndTags tag, AbstractCode* code,
506 int args_count) override;
507 void CodeCreateEvent(Logger::LogEventsAndTags tag, AbstractCode* code,
508 SharedFunctionInfo* shared, CompilationInfo* info,
509 Name* name) override;
510 void CodeCreateEvent(Logger::LogEventsAndTags tag, AbstractCode* code,
511 SharedFunctionInfo* shared, CompilationInfo* info,
512 Name* source, int line, int column) override;
513 void RegExpCodeCreateEvent(AbstractCode* code, String* source) override;
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000514
Ben Murdochda12d292016-06-02 14:46:10 +0100515 void CallbackEvent(Name* name, Address entry_point) override {}
516 void GetterCallbackEvent(Name* name, Address entry_point) override {}
517 void SetterCallbackEvent(Name* name, Address entry_point) override {}
518 void SharedFunctionInfoMoveEvent(Address from, Address to) override {}
519 void CodeMovingGCEvent() override {}
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000520
521 private:
522 class NameBuffer;
523
Ben Murdochda12d292016-06-02 14:46:10 +0100524 virtual void LogRecordedBuffer(AbstractCode* code, SharedFunctionInfo* shared,
525 const char* name, int length) = 0;
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000526
527 NameBuffer* name_buffer_;
528};
529
530
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000531} // namespace internal
532} // namespace v8
Steve Blocka7e24c12009-10-30 11:49:00 +0000533
Steve Block6ded16b2010-05-10 14:33:55 +0100534
Steve Blocka7e24c12009-10-30 11:49:00 +0000535#endif // V8_LOG_H_