| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 namespace internal { | 49 namespace internal { |
| 50 | 50 |
| 51 V8_DECLARE_ONCE(init_once); | 51 V8_DECLARE_ONCE(init_once); |
| 52 | 52 |
| 53 bool V8::is_running_ = false; | 53 bool V8::is_running_ = false; |
| 54 bool V8::has_been_set_up_ = false; | 54 bool V8::has_been_set_up_ = false; |
| 55 bool V8::has_been_disposed_ = false; | 55 bool V8::has_been_disposed_ = false; |
| 56 bool V8::has_fatal_error_ = false; | 56 bool V8::has_fatal_error_ = false; |
| 57 bool V8::use_crankshaft_ = true; | 57 bool V8::use_crankshaft_ = true; |
| 58 List<CallCompletedCallback>* V8::call_completed_callbacks_ = NULL; | 58 List<CallCompletedCallback>* V8::call_completed_callbacks_ = NULL; |
| 59 v8::ArrayBuffer::Allocator* V8::array_buffer_allocator_ = NULL; |
| 59 | 60 |
| 60 static LazyMutex entropy_mutex = LAZY_MUTEX_INITIALIZER; | 61 static LazyMutex entropy_mutex = LAZY_MUTEX_INITIALIZER; |
| 61 | 62 |
| 62 static EntropySource entropy_source; | 63 static EntropySource entropy_source; |
| 63 | 64 |
| 64 | 65 |
| 65 bool V8::Initialize(Deserializer* des) { | 66 bool V8::Initialize(Deserializer* des) { |
| 66 InitializeOncePerProcess(); | 67 InitializeOncePerProcess(); |
| 67 | 68 |
| 68 // The current thread may not yet had entered an isolate to run. | 69 // The current thread may not yet had entered an isolate to run. |
| (...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 282 SetUpJSCallerSavedCodeData(); | 283 SetUpJSCallerSavedCodeData(); |
| 283 ExternalReference::SetUp(); | 284 ExternalReference::SetUp(); |
| 284 Bootstrapper::InitializeOncePerProcess(); | 285 Bootstrapper::InitializeOncePerProcess(); |
| 285 } | 286 } |
| 286 | 287 |
| 287 void V8::InitializeOncePerProcess() { | 288 void V8::InitializeOncePerProcess() { |
| 288 CallOnce(&init_once, &InitializeOncePerProcessImpl); | 289 CallOnce(&init_once, &InitializeOncePerProcessImpl); |
| 289 } | 290 } |
| 290 | 291 |
| 291 } } // namespace v8::internal | 292 } } // namespace v8::internal |
| OLD | NEW |