OLD | NEW |
1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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/log.h" | 5 #include "src/log.h" |
6 | 6 |
7 #include <cstdarg> | 7 #include <cstdarg> |
8 #include <sstream> | 8 #include <sstream> |
9 | 9 |
10 #include "src/bailout-reason.h" | 10 #include "src/bailout-reason.h" |
11 #include "src/base/platform/platform.h" | 11 #include "src/base/platform/platform.h" |
12 #include "src/bootstrapper.h" | 12 #include "src/bootstrapper.h" |
13 #include "src/code-stubs.h" | 13 #include "src/code-stubs.h" |
14 #include "src/counters.h" | 14 #include "src/counters.h" |
15 #include "src/deoptimizer.h" | 15 #include "src/deoptimizer.h" |
16 #include "src/global-handles.h" | 16 #include "src/global-handles.h" |
17 #include "src/interpreter/bytecodes.h" | 17 #include "src/interpreter/bytecodes.h" |
18 #include "src/interpreter/interpreter.h" | 18 #include "src/interpreter/interpreter.h" |
19 #include "src/libsampler/v8-sampler.h" | 19 #include "src/libsampler/sampler.h" |
20 #include "src/log-inl.h" | 20 #include "src/log-inl.h" |
21 #include "src/log-utils.h" | 21 #include "src/log-utils.h" |
22 #include "src/macro-assembler.h" | 22 #include "src/macro-assembler.h" |
23 #include "src/perf-jit.h" | 23 #include "src/perf-jit.h" |
24 #include "src/profiler/cpu-profiler-inl.h" | 24 #include "src/profiler/cpu-profiler-inl.h" |
25 #include "src/profiler/profiler-listener.h" | 25 #include "src/profiler/profiler-listener.h" |
26 #include "src/profiler/tick-sample.h" | 26 #include "src/profiler/tick-sample.h" |
27 #include "src/runtime-profiler.h" | 27 #include "src/runtime-profiler.h" |
28 #include "src/string-stream.h" | 28 #include "src/string-stream.h" |
29 #include "src/vm-state-inl.h" | 29 #include "src/vm-state-inl.h" |
(...skipping 1841 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1871 | 1871 |
1872 if (profiler_listener_.get() != nullptr) { | 1872 if (profiler_listener_.get() != nullptr) { |
1873 removeCodeEventListener(profiler_listener_.get()); | 1873 removeCodeEventListener(profiler_listener_.get()); |
1874 } | 1874 } |
1875 | 1875 |
1876 return log_->Close(); | 1876 return log_->Close(); |
1877 } | 1877 } |
1878 | 1878 |
1879 } // namespace internal | 1879 } // namespace internal |
1880 } // namespace v8 | 1880 } // namespace v8 |
OLD | NEW |