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 14 matching lines...) Expand all Loading... |
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
27 | 27 |
28 #include "v8.h" | 28 #include "v8.h" |
29 | 29 |
30 #include "accessors.h" | 30 #include "accessors.h" |
31 #include "api.h" | 31 #include "api.h" |
32 #include "bootstrapper.h" | 32 #include "bootstrapper.h" |
33 #include "codegen.h" | 33 #include "codegen.h" |
34 #include "compilation-cache.h" | 34 #include "compilation-cache.h" |
| 35 #include "cpu-profiler.h" |
35 #include "debug.h" | 36 #include "debug.h" |
36 #include "deoptimizer.h" | 37 #include "deoptimizer.h" |
37 #include "global-handles.h" | 38 #include "global-handles.h" |
38 #include "heap-profiler.h" | 39 #include "heap-profiler.h" |
39 #include "incremental-marking.h" | 40 #include "incremental-marking.h" |
40 #include "mark-compact.h" | 41 #include "mark-compact.h" |
41 #include "natives.h" | 42 #include "natives.h" |
42 #include "objects-visiting.h" | 43 #include "objects-visiting.h" |
43 #include "objects-visiting-inl.h" | 44 #include "objects-visiting-inl.h" |
44 #include "once.h" | 45 #include "once.h" |
(...skipping 8070 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
8115 if (FLAG_parallel_recompilation) { | 8116 if (FLAG_parallel_recompilation) { |
8116 heap_->relocation_mutex_->Lock(); | 8117 heap_->relocation_mutex_->Lock(); |
8117 #ifdef DEBUG | 8118 #ifdef DEBUG |
8118 heap_->relocation_mutex_locked_by_optimizer_thread_ = | 8119 heap_->relocation_mutex_locked_by_optimizer_thread_ = |
8119 heap_->isolate()->optimizing_compiler_thread()->IsOptimizerThread(); | 8120 heap_->isolate()->optimizing_compiler_thread()->IsOptimizerThread(); |
8120 #endif // DEBUG | 8121 #endif // DEBUG |
8121 } | 8122 } |
8122 } | 8123 } |
8123 | 8124 |
8124 } } // namespace v8::internal | 8125 } } // namespace v8::internal |
OLD | NEW |