OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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/isolate.h" | 5 #include "src/isolate.h" |
6 | 6 |
7 #include <stdlib.h> | 7 #include <stdlib.h> |
8 | 8 |
9 #include <fstream> // NOLINT(readability/streams) | 9 #include <fstream> // NOLINT(readability/streams) |
10 #include <sstream> | 10 #include <sstream> |
11 | 11 |
12 #include "src/ast.h" | 12 #include "src/ast.h" |
13 #include "src/base/platform/platform.h" | 13 #include "src/base/platform/platform.h" |
14 #include "src/base/sys-info.h" | 14 #include "src/base/sys-info.h" |
15 #include "src/base/utils/random-number-generator.h" | 15 #include "src/base/utils/random-number-generator.h" |
16 #include "src/basic-block-profiler.h" | 16 #include "src/basic-block-profiler.h" |
17 #include "src/bootstrapper.h" | 17 #include "src/bootstrapper.h" |
18 #include "src/codegen.h" | 18 #include "src/codegen.h" |
19 #include "src/compilation-cache.h" | 19 #include "src/compilation-cache.h" |
20 #include "src/compilation-statistics.h" | 20 #include "src/compilation-statistics.h" |
21 #include "src/cpu-profiler.h" | |
22 #include "src/debug/debug.h" | 21 #include "src/debug/debug.h" |
23 #include "src/deoptimizer.h" | 22 #include "src/deoptimizer.h" |
24 #include "src/frames-inl.h" | 23 #include "src/frames-inl.h" |
25 #include "src/heap-profiler.h" | |
26 #include "src/hydrogen.h" | 24 #include "src/hydrogen.h" |
27 #include "src/ic/stub-cache.h" | 25 #include "src/ic/stub-cache.h" |
28 #include "src/interpreter/interpreter.h" | 26 #include "src/interpreter/interpreter.h" |
29 #include "src/isolate-inl.h" | 27 #include "src/isolate-inl.h" |
30 #include "src/lithium-allocator.h" | 28 #include "src/lithium-allocator.h" |
31 #include "src/log.h" | 29 #include "src/log.h" |
32 #include "src/messages.h" | 30 #include "src/messages.h" |
| 31 #include "src/profiler/cpu-profiler.h" |
| 32 #include "src/profiler/sampler.h" |
33 #include "src/prototype.h" | 33 #include "src/prototype.h" |
34 #include "src/regexp/regexp-stack.h" | 34 #include "src/regexp/regexp-stack.h" |
35 #include "src/runtime-profiler.h" | 35 #include "src/runtime-profiler.h" |
36 #include "src/sampler.h" | |
37 #include "src/scopeinfo.h" | 36 #include "src/scopeinfo.h" |
38 #include "src/simulator.h" | 37 #include "src/simulator.h" |
39 #include "src/snapshot/serialize.h" | 38 #include "src/snapshot/serialize.h" |
40 #include "src/v8.h" | 39 #include "src/v8.h" |
41 #include "src/version.h" | 40 #include "src/version.h" |
42 #include "src/vm-state-inl.h" | 41 #include "src/vm-state-inl.h" |
43 | 42 |
44 | 43 |
45 namespace v8 { | 44 namespace v8 { |
46 namespace internal { | 45 namespace internal { |
(...skipping 2776 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2823 // Then check whether this scope intercepts. | 2822 // Then check whether this scope intercepts. |
2824 if ((flag & intercept_mask_)) { | 2823 if ((flag & intercept_mask_)) { |
2825 intercepted_flags_ |= flag; | 2824 intercepted_flags_ |= flag; |
2826 return true; | 2825 return true; |
2827 } | 2826 } |
2828 return false; | 2827 return false; |
2829 } | 2828 } |
2830 | 2829 |
2831 } // namespace internal | 2830 } // namespace internal |
2832 } // namespace v8 | 2831 } // namespace v8 |
OLD | NEW |