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/ieee754.h" | 9 #include "src/base/ieee754.h" |
10 #include "src/code-stubs.h" | 10 #include "src/code-stubs.h" |
| 11 #include "src/compiler.h" |
11 #include "src/extensions/externalize-string-extension.h" | 12 #include "src/extensions/externalize-string-extension.h" |
12 #include "src/extensions/free-buffer-extension.h" | 13 #include "src/extensions/free-buffer-extension.h" |
13 #include "src/extensions/gc-extension.h" | 14 #include "src/extensions/gc-extension.h" |
14 #include "src/extensions/ignition-statistics-extension.h" | 15 #include "src/extensions/ignition-statistics-extension.h" |
15 #include "src/extensions/statistics-extension.h" | 16 #include "src/extensions/statistics-extension.h" |
16 #include "src/extensions/trigger-failure-extension.h" | 17 #include "src/extensions/trigger-failure-extension.h" |
17 #include "src/heap/heap.h" | 18 #include "src/heap/heap.h" |
18 #include "src/isolate-inl.h" | 19 #include "src/isolate-inl.h" |
19 #include "src/snapshot/natives.h" | 20 #include "src/snapshot/natives.h" |
20 #include "src/snapshot/snapshot.h" | 21 #include "src/snapshot/snapshot.h" |
(...skipping 4073 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4094 } | 4095 } |
4095 | 4096 |
4096 | 4097 |
4097 // Called when the top-level V8 mutex is destroyed. | 4098 // Called when the top-level V8 mutex is destroyed. |
4098 void Bootstrapper::FreeThreadResources() { | 4099 void Bootstrapper::FreeThreadResources() { |
4099 DCHECK(!IsActive()); | 4100 DCHECK(!IsActive()); |
4100 } | 4101 } |
4101 | 4102 |
4102 } // namespace internal | 4103 } // namespace internal |
4103 } // namespace v8 | 4104 } // namespace v8 |
OLD | NEW |