v8  3.14.5(node0.10.28)
V8 is Google's open source JavaScript engine
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
preparse-data.h
Go to the documentation of this file.
1 // Copyright 2011 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are
4 // met:
5 //
6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided
11 // with the distribution.
12 // * Neither the name of Google Inc. nor the names of its
13 // contributors may be used to endorse or promote products derived
14 // from this software without specific prior written permission.
15 //
16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 
28 #ifndef V8_PREPARSE_DATA_H_
29 #define V8_PREPARSE_DATA_H_
30 
31 #include "allocation.h"
32 #include "hashmap.h"
33 #include "utils-inl.h"
34 
35 namespace v8 {
36 namespace internal {
37 
38 // ----------------------------------------------------------------------------
39 // ParserRecorder - Logging of preparser data.
40 
41 // Abstract interface for preparse data recorder.
43  public:
45  virtual ~ParserRecorder() { }
46 
47  // Logs the scope and some details of a function literal in the source.
48  virtual void LogFunction(int start,
49  int end,
50  int literals,
51  int properties,
52  LanguageMode language_mode) = 0;
53 
54  // Logs a symbol creation of a literal or identifier.
55  virtual void LogAsciiSymbol(int start, Vector<const char> literal) { }
56  virtual void LogUtf16Symbol(int start, Vector<const uc16> literal) { }
57 
58  // Logs an error message and marks the log as containing an error.
59  // Further logging will be ignored, and ExtractData will return a vector
60  // representing the error only.
61  virtual void LogMessage(int start,
62  int end,
63  const char* message,
64  const char* argument_opt) = 0;
65 
66  virtual int function_position() = 0;
67 
68  virtual int symbol_position() = 0;
69 
70  virtual int symbol_ids() = 0;
71 
72  virtual Vector<unsigned> ExtractData() = 0;
73 
74  virtual void PauseRecording() = 0;
75 
76  virtual void ResumeRecording() = 0;
77 };
78 
79 
80 // ----------------------------------------------------------------------------
81 // FunctionLoggingParserRecorder - Record only function entries
82 
84  public:
87 
88  virtual void LogFunction(int start,
89  int end,
90  int literals,
91  int properties,
92  LanguageMode language_mode) {
93  function_store_.Add(start);
94  function_store_.Add(end);
95  function_store_.Add(literals);
96  function_store_.Add(properties);
97  function_store_.Add(language_mode);
98  }
99 
100  // Logs an error message and marks the log as containing an error.
101  // Further logging will be ignored, and ExtractData will return a vector
102  // representing the error only.
103  virtual void LogMessage(int start,
104  int end,
105  const char* message,
106  const char* argument_opt);
107 
108  virtual int function_position() { return function_store_.size(); }
109 
110 
111  virtual Vector<unsigned> ExtractData() = 0;
112 
113  virtual void PauseRecording() {
114  pause_count_++;
115  is_recording_ = false;
116  }
117 
118  virtual void ResumeRecording() {
119  ASSERT(pause_count_ > 0);
120  if (--pause_count_ == 0) is_recording_ = !has_error();
121  }
122 
123  protected:
124  bool has_error() {
125  return static_cast<bool>(preamble_[PreparseDataConstants::kHasErrorOffset]);
126  }
127 
128  bool is_recording() {
129  return is_recording_;
130  }
131 
133 
138 
139 #ifdef DEBUG
140  int prev_start_;
141 #endif
142 };
143 
144 
145 // ----------------------------------------------------------------------------
146 // PartialParserRecorder - Record only function entries
147 
149  public:
151  virtual void LogAsciiSymbol(int start, Vector<const char> literal) { }
152  virtual void LogUtf16Symbol(int start, Vector<const uc16> literal) { }
154  virtual Vector<unsigned> ExtractData();
155  virtual int symbol_position() { return 0; }
156  virtual int symbol_ids() { return 0; }
157 };
158 
159 
160 // ----------------------------------------------------------------------------
161 // CompleteParserRecorder - Record both function entries and symbols.
162 
164  public:
167 
168  virtual void LogAsciiSymbol(int start, Vector<const char> literal) {
169  if (!is_recording_) return;
170  int hash = vector_hash(literal);
171  LogSymbol(start, hash, true, Vector<const byte>::cast(literal));
172  }
173 
174  virtual void LogUtf16Symbol(int start, Vector<const uc16> literal) {
175  if (!is_recording_) return;
176  int hash = vector_hash(literal);
177  LogSymbol(start, hash, false, Vector<const byte>::cast(literal));
178  }
179 
180  virtual Vector<unsigned> ExtractData();
181 
182  virtual int symbol_position() { return symbol_store_.size(); }
183  virtual int symbol_ids() { return symbol_id_; }
184 
185  private:
186  struct Key {
187  bool is_ascii;
188  Vector<const byte> literal_bytes;
189  };
190 
191  virtual void LogSymbol(int start,
192  int hash,
193  bool is_ascii,
194  Vector<const byte> literal);
195 
196  template <typename Char>
197  static int vector_hash(Vector<const Char> string) {
198  int hash = 0;
199  for (int i = 0; i < string.length(); i++) {
200  int c = static_cast<int>(string[i]);
201  hash += c;
202  hash += (hash << 10);
203  hash ^= (hash >> 6);
204  }
205  return hash;
206  }
207 
208  static bool vector_compare(void* a, void* b) {
209  Key* string1 = reinterpret_cast<Key*>(a);
210  Key* string2 = reinterpret_cast<Key*>(b);
211  if (string1->is_ascii != string2->is_ascii) return false;
212  int length = string1->literal_bytes.length();
213  if (string2->literal_bytes.length() != length) return false;
214  return memcmp(string1->literal_bytes.start(),
215  string2->literal_bytes.start(), length) == 0;
216  }
217 
218  // Write a non-negative number to the symbol store.
219  void WriteNumber(int number);
220 
221  Collector<byte> literal_chars_;
222  Collector<byte> symbol_store_;
223  Collector<Key> symbol_keys_;
224  HashMap symbol_table_;
225  int symbol_id_;
226 };
227 
228 
229 } } // namespace v8::internal.
230 
231 #endif // V8_PREPARSE_DATA_H_
virtual void LogUtf16Symbol(int start, Vector< const uc16 > literal)
virtual Vector< unsigned > ExtractData()=0
void Add(T value)
Definition: utils.h:566
#define ASSERT(condition)
Definition: checks.h:270
virtual int function_position()=0
virtual Vector< unsigned > ExtractData()
virtual void LogMessage(int start, int end, const char *message, const char *argument_opt)
virtual void LogFunction(int start, int end, int literals, int properties, LanguageMode language_mode)=0
virtual void LogAsciiSymbol(int start, Vector< const char > literal)
virtual int symbol_position()=0
void WriteString(Vector< const char > str)
virtual void LogAsciiSymbol(int start, Vector< const char > literal)
Definition: preparse-data.h:55
virtual void ResumeRecording()=0
virtual void LogAsciiSymbol(int start, Vector< const char > literal)
unsigned preamble_[PreparseDataConstants::kHeaderSize]
virtual Vector< unsigned > ExtractData()
virtual void PauseRecording()=0
virtual void LogUtf16Symbol(int start, Vector< const uc16 > literal)
Definition: preparse-data.h:56
TemplateHashMapImpl< FreeStoreAllocationPolicy > HashMap
Definition: hashmap.h:113
virtual Vector< unsigned > ExtractData()=0
activate correct semantics for inheriting readonliness enable harmony semantics for typeof enable harmony enable harmony proxies enable all harmony harmony_scoping harmony_proxies harmony_scoping tracks arrays with only smi values automatically unbox arrays of doubles use crankshaft use hydrogen range analysis use hydrogen global value numbering use function inlining maximum number of AST nodes considered for a single inlining loop invariant code motion print statistics for hydrogen trace generated IR for specified phases trace register allocator trace range analysis trace representation types environment for every instruction put a break point before deoptimizing polymorphic inlining perform array bounds checks elimination use dead code elimination trace on stack replacement optimize closures cache optimized code for closures functions with arguments object loop weight for representation inference allow uint32 values on optimize frames if they are used only in safe operations track parallel recompilation enable all profiler experiments number of stack frames inspected by the profiler call recompile stub directly when self optimizing trigger profiler ticks based on counting instead of timing weight back edges by jump distance for interrupt triggering percentage of ICs that must have type info to allow optimization watch_ic_patching retry_self_opt interrupt_at_exit extra verbose compilation tracing generate extra emit comments in code disassembly enable use of SSE3 instructions if available enable use of CMOV instruction if available enable use of SAHF instruction if enable use of VFP3 instructions if available this implies enabling ARMv7 and VFP2 enable use of VFP2 instructions if available enable use of SDIV and UDIV instructions if enable loading bit constant by means of movw movt instruction enable unaligned accesses for enable use of MIPS FPU instructions if expose natives in global object expose gc extension number of stack frames to capture disable builtin natives files print a stack trace if an assertion failure occurs use random jit cookie to mask large constants trace lazy optimization use adaptive optimizations prepare for turning on always opt minimum length for automatic enable preparsing maximum number of optimization attempts before giving up cache prototype transitions automatically set the debug break flag when debugger commands are in the queue always cause a debug break before aborting maximum length of function source code printed in a stack trace max size of the new max size of the old max size of executable always perform global GCs print one trace line following each garbage collection do not print trace line after scavenger collection print more details following each garbage collection print amount of external allocated memory after each time it is adjusted flush code that we expect not to use again before full gc do incremental marking steps track object counts and memory usage use caching Perform compaction on every full GC Never perform compaction on full GC testing only Compact code space on full incremental collections Default seed for initializing random allows verbose printing trace parsing and preparsing Check icache flushes in ARM and MIPS simulator Stack alingment in bytes in print stack trace when throwing exceptions randomize hashes to avoid predictable hash Fixed seed to use to hash property activate a timer that switches between V8 threads testing_bool_flag float flag Seed used for threading test randomness A filename with extra code to be included in the Print usage message
Definition: flags.cc:495
virtual void LogFunction(int start, int end, int literals, int properties, LanguageMode language_mode)
Definition: preparse-data.h:88
virtual void LogMessage(int start, int end, const char *message, const char *argument_opt)=0
virtual void LogUtf16Symbol(int start, Vector< const uc16 > literal)