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/ast.h" | |
13 #include "src/ast/context-slot-cache.h" | 12 #include "src/ast/context-slot-cache.h" |
14 #include "src/base/platform/platform.h" | 13 #include "src/base/platform/platform.h" |
15 #include "src/base/sys-info.h" | 14 #include "src/base/sys-info.h" |
16 #include "src/base/utils/random-number-generator.h" | 15 #include "src/base/utils/random-number-generator.h" |
17 #include "src/basic-block-profiler.h" | 16 #include "src/basic-block-profiler.h" |
18 #include "src/bootstrapper.h" | 17 #include "src/bootstrapper.h" |
19 #include "src/codegen.h" | 18 #include "src/codegen.h" |
20 #include "src/compilation-cache.h" | 19 #include "src/compilation-cache.h" |
21 #include "src/compilation-statistics.h" | 20 #include "src/compilation-statistics.h" |
22 #include "src/crankshaft/hydrogen.h" | 21 #include "src/crankshaft/hydrogen.h" |
(...skipping 3173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3196 // Then check whether this scope intercepts. | 3195 // Then check whether this scope intercepts. |
3197 if ((flag & intercept_mask_)) { | 3196 if ((flag & intercept_mask_)) { |
3198 intercepted_flags_ |= flag; | 3197 intercepted_flags_ |= flag; |
3199 return true; | 3198 return true; |
3200 } | 3199 } |
3201 return false; | 3200 return false; |
3202 } | 3201 } |
3203 | 3202 |
3204 } // namespace internal | 3203 } // namespace internal |
3205 } // namespace v8 | 3204 } // namespace v8 |
OLD | NEW |