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

Side by Side Diff: src/d8.h

Issue 753483002: dump compiler stats from d8 on direct exit from js (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 6 years, 1 month 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
« no previous file with comments | « no previous file | src/d8.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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_D8_H_ 5 #ifndef V8_D8_H_
6 #define V8_D8_H_ 6 #define V8_D8_H_
7 7
8 #ifndef V8_SHARED 8 #ifndef V8_SHARED
9 #include "src/allocation.h" 9 #include "src/allocation.h"
10 #include "src/hashmap.h" 10 #include "src/hashmap.h"
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
256 Handle<Value> name, 256 Handle<Value> name,
257 bool print_result, 257 bool print_result,
258 bool report_exceptions); 258 bool report_exceptions);
259 static const char* ToCString(const v8::String::Utf8Value& value); 259 static const char* ToCString(const v8::String::Utf8Value& value);
260 static void ReportException(Isolate* isolate, TryCatch* try_catch); 260 static void ReportException(Isolate* isolate, TryCatch* try_catch);
261 static Handle<String> ReadFile(Isolate* isolate, const char* name); 261 static Handle<String> ReadFile(Isolate* isolate, const char* name);
262 static Local<Context> CreateEvaluationContext(Isolate* isolate); 262 static Local<Context> CreateEvaluationContext(Isolate* isolate);
263 static int RunMain(Isolate* isolate, int argc, char* argv[]); 263 static int RunMain(Isolate* isolate, int argc, char* argv[]);
264 static int Main(int argc, char* argv[]); 264 static int Main(int argc, char* argv[]);
265 static void Exit(int exit_code); 265 static void Exit(int exit_code);
266 static void OnExit(); 266 static void OnExit(Isolate* isolate);
267 267
268 #ifndef V8_SHARED 268 #ifndef V8_SHARED
269 static Handle<Array> GetCompletions(Isolate* isolate, 269 static Handle<Array> GetCompletions(Isolate* isolate,
270 Handle<String> text, 270 Handle<String> text,
271 Handle<String> full); 271 Handle<String> full);
272 static int* LookupCounter(const char* name); 272 static int* LookupCounter(const char* name);
273 static void* CreateHistogram(const char* name, 273 static void* CreateHistogram(const char* name,
274 int min, 274 int min,
275 int max, 275 int max,
276 size_t buckets); 276 size_t buckets);
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
405 static void ExternalArrayWeakCallback(Isolate* isolate, 405 static void ExternalArrayWeakCallback(Isolate* isolate,
406 Persistent<Object>* object, 406 Persistent<Object>* object,
407 uint8_t* data); 407 uint8_t* data);
408 }; 408 };
409 409
410 410
411 } // namespace v8 411 } // namespace v8
412 412
413 413
414 #endif // V8_D8_H_ 414 #endif // V8_D8_H_
OLDNEW
« no previous file with comments | « no previous file | src/d8.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698