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 <stdlib.h> | 5 #include <stdlib.h> |
6 | 6 |
7 #include <fstream> // NOLINT(readability/streams) | 7 #include <fstream> // NOLINT(readability/streams) |
8 #include <sstream> | 8 #include <sstream> |
9 | 9 |
10 #include "src/v8.h" | 10 #include "src/v8.h" |
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" | 21 #include "src/cpu-profiler.h" |
22 #include "src/debug.h" | 22 #include "src/debug/debug.h" |
23 #include "src/deoptimizer.h" | 23 #include "src/deoptimizer.h" |
24 #include "src/heap/spaces.h" | 24 #include "src/heap/spaces.h" |
25 #include "src/heap-profiler.h" | 25 #include "src/heap-profiler.h" |
26 #include "src/hydrogen.h" | 26 #include "src/hydrogen.h" |
27 #include "src/ic/stub-cache.h" | 27 #include "src/ic/stub-cache.h" |
28 #include "src/interpreter/interpreter.h" | 28 #include "src/interpreter/interpreter.h" |
29 #include "src/lithium-allocator.h" | 29 #include "src/lithium-allocator.h" |
30 #include "src/log.h" | 30 #include "src/log.h" |
31 #include "src/messages.h" | 31 #include "src/messages.h" |
32 #include "src/prototype.h" | 32 #include "src/prototype.h" |
(...skipping 2798 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2831 // Then check whether this scope intercepts. | 2831 // Then check whether this scope intercepts. |
2832 if ((flag & intercept_mask_)) { | 2832 if ((flag & intercept_mask_)) { |
2833 intercepted_flags_ |= flag; | 2833 intercepted_flags_ |= flag; |
2834 return true; | 2834 return true; |
2835 } | 2835 } |
2836 return false; | 2836 return false; |
2837 } | 2837 } |
2838 | 2838 |
2839 } // namespace internal | 2839 } // namespace internal |
2840 } // namespace v8 | 2840 } // namespace v8 |
OLD | NEW |