| 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/context-slot-cache.h" | 12 #include "src/ast/context-slot-cache.h" |
| 13 #include "src/base/accounting-allocator.h" |
| 14 #include "src/base/hashmap.h" |
| 13 #include "src/base/platform/platform.h" | 15 #include "src/base/platform/platform.h" |
| 14 #include "src/base/sys-info.h" | 16 #include "src/base/sys-info.h" |
| 15 #include "src/base/utils/random-number-generator.h" | 17 #include "src/base/utils/random-number-generator.h" |
| 16 #include "src/basic-block-profiler.h" | 18 #include "src/basic-block-profiler.h" |
| 17 #include "src/bootstrapper.h" | 19 #include "src/bootstrapper.h" |
| 20 #include "src/cancelable-task.h" |
| 18 #include "src/codegen.h" | 21 #include "src/codegen.h" |
| 19 #include "src/compilation-cache.h" | 22 #include "src/compilation-cache.h" |
| 20 #include "src/compilation-statistics.h" | 23 #include "src/compilation-statistics.h" |
| 24 #include "src/compiler-dispatcher/optimizing-compile-dispatcher.h" |
| 21 #include "src/crankshaft/hydrogen.h" | 25 #include "src/crankshaft/hydrogen.h" |
| 22 #include "src/debug/debug.h" | 26 #include "src/debug/debug.h" |
| 23 #include "src/deoptimizer.h" | 27 #include "src/deoptimizer.h" |
| 24 #include "src/external-reference-table.h" | 28 #include "src/external-reference-table.h" |
| 25 #include "src/frames-inl.h" | 29 #include "src/frames-inl.h" |
| 26 #include "src/ic/stub-cache.h" | 30 #include "src/ic/stub-cache.h" |
| 27 #include "src/interpreter/interpreter.h" | 31 #include "src/interpreter/interpreter.h" |
| 28 #include "src/isolate-inl.h" | 32 #include "src/isolate-inl.h" |
| 29 #include "src/libsampler/sampler.h" | 33 #include "src/libsampler/sampler.h" |
| 30 #include "src/log.h" | 34 #include "src/log.h" |
| (...skipping 3172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3203 // Then check whether this scope intercepts. | 3207 // Then check whether this scope intercepts. |
| 3204 if ((flag & intercept_mask_)) { | 3208 if ((flag & intercept_mask_)) { |
| 3205 intercepted_flags_ |= flag; | 3209 intercepted_flags_ |= flag; |
| 3206 return true; | 3210 return true; |
| 3207 } | 3211 } |
| 3208 return false; | 3212 return false; |
| 3209 } | 3213 } |
| 3210 | 3214 |
| 3211 } // namespace internal | 3215 } // namespace internal |
| 3212 } // namespace v8 | 3216 } // namespace v8 |
| OLD | NEW |