OLD | NEW |
1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 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 #include "src/bootstrapper.h" | 5 #include "src/bootstrapper.h" |
6 | 6 |
7 #include "src/accessors.h" | 7 #include "src/accessors.h" |
8 #include "src/api-natives.h" | 8 #include "src/api-natives.h" |
9 #include "src/base/utils/random-number-generator.h" | 9 #include "src/base/utils/random-number-generator.h" |
10 #include "src/code-stubs.h" | 10 #include "src/code-stubs.h" |
11 #include "src/extensions/externalize-string-extension.h" | 11 #include "src/extensions/externalize-string-extension.h" |
12 #include "src/extensions/free-buffer-extension.h" | 12 #include "src/extensions/free-buffer-extension.h" |
13 #include "src/extensions/gc-extension.h" | 13 #include "src/extensions/gc-extension.h" |
14 #include "src/extensions/statistics-extension.h" | 14 #include "src/extensions/statistics-extension.h" |
15 #include "src/extensions/trigger-failure-extension.h" | 15 #include "src/extensions/trigger-failure-extension.h" |
16 #include "src/heap/heap.h" | 16 #include "src/heap/heap.h" |
| 17 #include "src/isolate-inl.h" |
17 #include "src/snapshot/natives.h" | 18 #include "src/snapshot/natives.h" |
18 #include "src/snapshot/snapshot.h" | 19 #include "src/snapshot/snapshot.h" |
19 #include "third_party/fdlibm/fdlibm.h" | 20 #include "third_party/fdlibm/fdlibm.h" |
20 | 21 |
21 #if defined(V8_WASM) | 22 #if defined(V8_WASM) |
22 #include "src/wasm/wasm-js.h" | 23 #include "src/wasm/wasm-js.h" |
23 #endif | 24 #endif |
24 | 25 |
25 namespace v8 { | 26 namespace v8 { |
26 namespace internal { | 27 namespace internal { |
(...skipping 3165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3192 } | 3193 } |
3193 | 3194 |
3194 | 3195 |
3195 // Called when the top-level V8 mutex is destroyed. | 3196 // Called when the top-level V8 mutex is destroyed. |
3196 void Bootstrapper::FreeThreadResources() { | 3197 void Bootstrapper::FreeThreadResources() { |
3197 DCHECK(!IsActive()); | 3198 DCHECK(!IsActive()); |
3198 } | 3199 } |
3199 | 3200 |
3200 } // namespace internal | 3201 } // namespace internal |
3201 } // namespace v8 | 3202 } // namespace v8 |
OLD | NEW |