OLD | NEW |
1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 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/base/bits.h" | 7 #include "src/base/bits.h" |
8 #include "src/code-factory.h" | 8 #include "src/code-factory.h" |
9 #include "src/code-stubs.h" | 9 #include "src/code-stubs.h" |
| 10 #include "src/cpu-profiler.h" |
10 #include "src/hydrogen-osr.h" | 11 #include "src/hydrogen-osr.h" |
11 #include "src/ic/ic.h" | 12 #include "src/ic/ic.h" |
12 #include "src/ic/stub-cache.h" | 13 #include "src/ic/stub-cache.h" |
13 #include "src/ppc/lithium-codegen-ppc.h" | 14 #include "src/ppc/lithium-codegen-ppc.h" |
14 #include "src/ppc/lithium-gap-resolver-ppc.h" | 15 #include "src/ppc/lithium-gap-resolver-ppc.h" |
15 | 16 |
16 namespace v8 { | 17 namespace v8 { |
17 namespace internal { | 18 namespace internal { |
18 | 19 |
19 | 20 |
(...skipping 6222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6242 __ Push(scope_info); | 6243 __ Push(scope_info); |
6243 __ push(ToRegister(instr->function())); | 6244 __ push(ToRegister(instr->function())); |
6244 CallRuntime(Runtime::kPushBlockContext, 2, instr); | 6245 CallRuntime(Runtime::kPushBlockContext, 2, instr); |
6245 RecordSafepoint(Safepoint::kNoLazyDeopt); | 6246 RecordSafepoint(Safepoint::kNoLazyDeopt); |
6246 } | 6247 } |
6247 | 6248 |
6248 | 6249 |
6249 #undef __ | 6250 #undef __ |
6250 } | 6251 } |
6251 } // namespace v8::internal | 6252 } // namespace v8::internal |
OLD | NEW |