OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
295 static void AddHistogramSample(void* histogram, int sample); | 295 static void AddHistogramSample(void* histogram, int sample); |
296 static void MapCounters(const char* name); | 296 static void MapCounters(const char* name); |
297 | 297 |
298 #ifdef ENABLE_DEBUGGER_SUPPORT | 298 #ifdef ENABLE_DEBUGGER_SUPPORT |
299 static Handle<Object> DebugMessageDetails(Isolate* isolate, | 299 static Handle<Object> DebugMessageDetails(Isolate* isolate, |
300 Handle<String> message); | 300 Handle<String> message); |
301 static Handle<Value> DebugCommandToJSONRequest(Isolate* isolate, | 301 static Handle<Value> DebugCommandToJSONRequest(Isolate* isolate, |
302 Handle<String> command); | 302 Handle<String> command); |
303 static void DispatchDebugMessages(); | 303 static void DispatchDebugMessages(); |
304 #endif // ENABLE_DEBUGGER_SUPPORT | 304 #endif // ENABLE_DEBUGGER_SUPPORT |
305 | |
306 static void PerformanceNow(const v8::FunctionCallbackInfo<v8::Value>& args); | |
307 #endif // V8_SHARED | 305 #endif // V8_SHARED |
308 | 306 |
309 static void RealmCurrent(const v8::FunctionCallbackInfo<v8::Value>& args); | 307 static void RealmCurrent(const v8::FunctionCallbackInfo<v8::Value>& args); |
310 static void RealmOwner(const v8::FunctionCallbackInfo<v8::Value>& args); | 308 static void RealmOwner(const v8::FunctionCallbackInfo<v8::Value>& args); |
311 static void RealmGlobal(const v8::FunctionCallbackInfo<v8::Value>& args); | 309 static void RealmGlobal(const v8::FunctionCallbackInfo<v8::Value>& args); |
312 static void RealmCreate(const v8::FunctionCallbackInfo<v8::Value>& args); | 310 static void RealmCreate(const v8::FunctionCallbackInfo<v8::Value>& args); |
313 static void RealmDispose(const v8::FunctionCallbackInfo<v8::Value>& args); | 311 static void RealmDispose(const v8::FunctionCallbackInfo<v8::Value>& args); |
314 static void RealmSwitch(const v8::FunctionCallbackInfo<v8::Value>& args); | 312 static void RealmSwitch(const v8::FunctionCallbackInfo<v8::Value>& args); |
315 static void RealmEval(const v8::FunctionCallbackInfo<v8::Value>& args); | 313 static void RealmEval(const v8::FunctionCallbackInfo<v8::Value>& args); |
316 static void RealmSharedGet(Local<String> property, | 314 static void RealmSharedGet(Local<String> property, |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
388 static Persistent<Context> evaluation_context_; | 386 static Persistent<Context> evaluation_context_; |
389 #ifndef V8_SHARED | 387 #ifndef V8_SHARED |
390 static Persistent<Context> utility_context_; | 388 static Persistent<Context> utility_context_; |
391 static CounterMap* counter_map_; | 389 static CounterMap* counter_map_; |
392 // We statically allocate a set of local counters to be used if we | 390 // We statically allocate a set of local counters to be used if we |
393 // don't want to store the stats in a memory-mapped file | 391 // don't want to store the stats in a memory-mapped file |
394 static CounterCollection local_counters_; | 392 static CounterCollection local_counters_; |
395 static CounterCollection* counters_; | 393 static CounterCollection* counters_; |
396 static i::OS::MemoryMappedFile* counters_file_; | 394 static i::OS::MemoryMappedFile* counters_file_; |
397 static i::Mutex context_mutex_; | 395 static i::Mutex context_mutex_; |
398 static const i::TimeTicks kInitialTicks; | |
399 | 396 |
400 static Counter* GetCounter(const char* name, bool is_histogram); | 397 static Counter* GetCounter(const char* name, bool is_histogram); |
401 static void InstallUtilityScript(Isolate* isolate); | 398 static void InstallUtilityScript(Isolate* isolate); |
402 #endif // V8_SHARED | 399 #endif // V8_SHARED |
403 static void Initialize(Isolate* isolate); | 400 static void Initialize(Isolate* isolate); |
404 static void InitializeDebugger(Isolate* isolate); | 401 static void InitializeDebugger(Isolate* isolate); |
405 static void RunShell(Isolate* isolate); | 402 static void RunShell(Isolate* isolate); |
406 static bool SetOptions(int argc, char* argv[]); | 403 static bool SetOptions(int argc, char* argv[]); |
407 static Handle<ObjectTemplate> CreateGlobalTemplate(Isolate* isolate); | 404 static Handle<ObjectTemplate> CreateGlobalTemplate(Isolate* isolate); |
408 static Handle<FunctionTemplate> CreateArrayBufferTemplate(FunctionCallback); | 405 static Handle<FunctionTemplate> CreateArrayBufferTemplate(FunctionCallback); |
(...skipping 16 matching lines...) Expand all Loading... |
425 static void ExternalArrayWeakCallback(Isolate* isolate, | 422 static void ExternalArrayWeakCallback(Isolate* isolate, |
426 Persistent<Object>* object, | 423 Persistent<Object>* object, |
427 uint8_t* data); | 424 uint8_t* data); |
428 }; | 425 }; |
429 | 426 |
430 | 427 |
431 } // namespace v8 | 428 } // namespace v8 |
432 | 429 |
433 | 430 |
434 #endif // V8_D8_H_ | 431 #endif // V8_D8_H_ |
OLD | NEW |