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/v8.h" | 5 #include "src/v8.h" |
6 | 6 |
7 #include "src/arm/lithium-codegen-arm.h" | 7 #include "src/arm/lithium-codegen-arm.h" |
8 #include "src/arm/lithium-gap-resolver-arm.h" | 8 #include "src/arm/lithium-gap-resolver-arm.h" |
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 | 16 |
16 namespace v8 { | 17 namespace v8 { |
17 namespace internal { | 18 namespace internal { |
18 | 19 |
19 | 20 |
20 class SafepointGenerator FINAL : public CallWrapper { | 21 class SafepointGenerator FINAL : public CallWrapper { |
21 public: | 22 public: |
(...skipping 5955 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5977 __ Push(scope_info); | 5978 __ Push(scope_info); |
5978 __ push(ToRegister(instr->function())); | 5979 __ push(ToRegister(instr->function())); |
5979 CallRuntime(Runtime::kPushBlockContext, 2, instr); | 5980 CallRuntime(Runtime::kPushBlockContext, 2, instr); |
5980 RecordSafepoint(Safepoint::kNoLazyDeopt); | 5981 RecordSafepoint(Safepoint::kNoLazyDeopt); |
5981 } | 5982 } |
5982 | 5983 |
5983 | 5984 |
5984 #undef __ | 5985 #undef __ |
5985 | 5986 |
5986 } } // namespace v8::internal | 5987 } } // namespace v8::internal |
OLD | NEW |