OLD | NEW |
1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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/v8.h" | 5 #include "src/v8.h" |
6 | 6 |
7 #if V8_TARGET_ARCH_X64 | 7 #if V8_TARGET_ARCH_X64 |
8 | 8 |
9 #include "src/base/bits.h" | 9 #include "src/base/bits.h" |
10 #include "src/code-factory.h" | 10 #include "src/code-factory.h" |
11 #include "src/code-stubs.h" | 11 #include "src/code-stubs.h" |
| 12 #include "src/cpu-profiler.h" |
12 #include "src/hydrogen-osr.h" | 13 #include "src/hydrogen-osr.h" |
13 #include "src/ic/ic.h" | 14 #include "src/ic/ic.h" |
14 #include "src/ic/stub-cache.h" | 15 #include "src/ic/stub-cache.h" |
15 #include "src/x64/lithium-codegen-x64.h" | 16 #include "src/x64/lithium-codegen-x64.h" |
16 | 17 |
17 namespace v8 { | 18 namespace v8 { |
18 namespace internal { | 19 namespace internal { |
19 | 20 |
20 | 21 |
21 // When invoking builtins, we need to record the safepoint in the middle of | 22 // When invoking builtins, we need to record the safepoint in the middle of |
(...skipping 5909 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5931 CallRuntime(Runtime::kPushBlockContext, 2, instr); | 5932 CallRuntime(Runtime::kPushBlockContext, 2, instr); |
5932 RecordSafepoint(Safepoint::kNoLazyDeopt); | 5933 RecordSafepoint(Safepoint::kNoLazyDeopt); |
5933 } | 5934 } |
5934 | 5935 |
5935 | 5936 |
5936 #undef __ | 5937 #undef __ |
5937 | 5938 |
5938 } } // namespace v8::internal | 5939 } } // namespace v8::internal |
5939 | 5940 |
5940 #endif // V8_TARGET_ARCH_X64 | 5941 #endif // V8_TARGET_ARCH_X64 |
OLD | NEW |