V8 Project
log-utils.h
Go to the documentation of this file.
1 // Copyright 2006-2009 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #ifndef V8_LOG_UTILS_H_
6 #define V8_LOG_UTILS_H_
7 
8 #include "src/allocation.h"
9 
10 namespace v8 {
11 namespace internal {
12 
13 class Logger;
14 
15 // Functions and data for performing output of log messages.
16 class Log {
17  public:
18  // Performs process-wide initialization.
19  void Initialize(const char* log_file_name);
20 
21  // Disables logging, but preserves acquired resources.
22  void stop() { is_stopped_ = true; }
23 
24  static bool InitLogAtStart() {
25  return FLAG_log || FLAG_log_api || FLAG_log_code || FLAG_log_gc
26  || FLAG_log_handles || FLAG_log_suspect || FLAG_log_regexp
27  || FLAG_ll_prof || FLAG_perf_basic_prof || FLAG_perf_jit_prof
28  || FLAG_log_internal_timer_events;
29  }
30 
31  // Frees all resources acquired in Initialize and Open... functions.
32  // When a temporary file is used for the log, returns its stream descriptor,
33  // leaving the file open.
34  FILE* Close();
35 
36  // Returns whether logging is enabled.
37  bool IsEnabled() {
38  return !is_stopped_ && output_handle_ != NULL;
39  }
40 
41  // Size of buffer used for formatting log messages.
42  static const int kMessageBufferSize = 2048;
43 
44  // This mode is only used in tests, as temporary files are automatically
45  // deleted on close and thus can't be accessed afterwards.
46  static const char* const kLogToTemporaryFile;
47  static const char* const kLogToConsole;
48 
49  // Utility class for formatting log messages. It fills the message into the
50  // static buffer in Log.
51  class MessageBuilder BASE_EMBEDDED {
52  public:
53  // Create a message builder starting from position 0.
54  // This acquires the mutex in the log as well.
55  explicit MessageBuilder(Log* log);
57 
58  // Append string data to the log message.
59  void Append(const char* format, ...);
60 
61  // Append string data to the log message.
62  void AppendVA(const char* format, va_list args);
63 
64  // Append a character to the log message.
65  void Append(const char c);
66 
67  // Append double quoted string to the log message.
68  void AppendDoubleQuotedString(const char* string);
69 
70  // Append a heap string.
71  void Append(String* str);
72 
73  // Appends an address.
74  void AppendAddress(Address addr);
75 
76  void AppendSymbolName(Symbol* symbol);
77 
78  void AppendDetailed(String* str, bool show_impl_info);
79 
80  // Append a portion of a string.
81  void AppendStringPart(const char* str, int len);
82 
83  // Write the log message to the log file currently opened.
85 
86  private:
88  base::LockGuard<base::Mutex> lock_guard_;
89  int pos_;
90  };
91 
92  private:
93  explicit Log(Logger* logger);
94 
95  // Opens stdout for logging.
96  void OpenStdout();
97 
98  // Opens file for logging.
99  void OpenFile(const char* name);
100 
101  // Opens a temporary file for logging.
102  void OpenTemporaryFile();
103 
104  // Implementation of writing to a log file.
105  int WriteToFile(const char* msg, int length) {
107  size_t rv = fwrite(msg, 1, length, output_handle_);
108  DCHECK(static_cast<size_t>(length) == rv);
109  USE(rv);
110  fflush(output_handle_);
111  return length;
112  }
113 
114  // Whether logging is stopped (e.g. due to insufficient resources).
116 
117  // When logging is active output_handle_ is used to store a pointer to log
118  // destination. mutex_ should be acquired before using output_handle_.
120 
121  // mutex_ is a Mutex used for enforcing exclusive
122  // access to the formatting buffer and the log file or log memory buffer.
123  base::Mutex mutex_;
124 
125  // Buffer used for formatting log messages. This is a singleton buffer and
126  // mutex_ should be acquired before using it.
128 
130 
131  friend class Logger;
132 };
133 
134 
135 } } // namespace v8::internal
136 
137 #endif // V8_LOG_UTILS_H_
void AppendAddress(Address addr)
void AppendDoubleQuotedString(const char *string)
void AppendVA(const char *format, va_list args)
void AppendDetailed(String *str, bool show_impl_info)
void Append(const char *format,...)
void AppendStringPart(const char *str, int len)
base::LockGuard< base::Mutex > lock_guard_
Definition: log-utils.h:88
void AppendSymbolName(Symbol *symbol)
bool IsEnabled()
Definition: log-utils.h:37
void OpenTemporaryFile()
Definition: log-utils.cc:62
Logger * logger_
Definition: log-utils.h:129
void Initialize(const char *log_file_name)
Definition: log-utils.cc:26
FILE * output_handle_
Definition: log-utils.h:119
static const int kMessageBufferSize
Definition: log-utils.h:42
FILE * Close()
Definition: log-utils.cc:74
void OpenFile(const char *name)
Definition: log-utils.cc:68
int WriteToFile(const char *msg, int length)
Definition: log-utils.h:105
static bool InitLogAtStart()
Definition: log-utils.h:24
static const char *const kLogToTemporaryFile
Definition: log-utils.h:46
Log(Logger *logger)
Definition: log-utils.cc:18
char * message_buffer_
Definition: log-utils.h:127
static const char *const kLogToConsole
Definition: log-utils.h:47
base::Mutex mutex_
Definition: log-utils.h:123
enable harmony numeric enable harmony object literal extensions Optimize object Array DOM strings and string trace pretenuring decisions of HAllocate instructions Enables optimizations which favor memory size over execution speed maximum source size in bytes considered for a single inlining maximum cumulative number of AST nodes considered for inlining trace the tracking of allocation sites deoptimize every n garbage collections perform array bounds checks elimination analyze liveness of environment slots and zap dead values flushes the cache of optimized code for closures on every GC allow uint32 values on optimize frames if they are used only in safe operations track concurrent recompilation artificial compilation delay in ms do not emit check maps for constant values that have a leaf deoptimize the optimized code if the layout of the maps changes enable context specialization in TurboFan execution budget before interrupt is triggered max percentage of megamorphic generic ICs to allow optimization enable use of SAHF instruction if enable use of VFP3 instructions if available enable use of NEON instructions if enable use of SDIV and UDIV instructions if enable use of MLS instructions if enable loading bit constant by means of movw movt instruction enable unaligned accesses for enable use of d16 d31 registers on ARM this requires VFP3 force all emitted branches to be in long enable alignment of csp to bytes on platforms which prefer the register to always be expose gc extension under the specified name show built in functions in stack traces use random jit cookie to mask large constants minimum length for automatic enable preparsing CPU profiler sampling interval in microseconds trace out of bounds accesses to external arrays default size of stack region v8 is allowed to maximum length of function source code printed in a stack trace min size of a semi the new space consists of two semi spaces print one trace line following each garbage collection do not print trace line after scavenger collection print cumulative GC statistics in name
enable harmony numeric enable harmony object literal extensions Optimize object Array DOM strings and string trace pretenuring decisions of HAllocate instructions Enables optimizations which favor memory size over execution speed maximum source size in bytes considered for a single inlining maximum cumulative number of AST nodes considered for inlining trace the tracking of allocation sites deoptimize every n garbage collections perform array bounds checks elimination analyze liveness of environment slots and zap dead values flushes the cache of optimized code for closures on every GC allow uint32 values on optimize frames if they are used only in safe operations track concurrent recompilation artificial compilation delay in ms do not emit check maps for constant values that have a leaf deoptimize the optimized code if the layout of the maps changes enable context specialization in TurboFan execution budget before interrupt is triggered max percentage of megamorphic generic ICs to allow optimization enable use of SAHF instruction if enable use of VFP3 instructions if available enable use of NEON instructions if enable use of SDIV and UDIV instructions if enable use of MLS instructions if enable loading bit constant by means of movw movt instruction enable unaligned accesses for enable use of d16 d31 registers on ARM this requires VFP3 force all emitted branches to be in long enable alignment of csp to bytes on platforms which prefer the register to always be NULL
#define DCHECK(condition)
Definition: logging.h:205
void USE(T)
Definition: macros.h:322
byte * Address
Definition: globals.h:101
Debugger support for the V8 JavaScript engine.
Definition: accessors.cc:20