| 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/code-factory.h" | 5 #include "src/code-factory.h" |
| 6 #include "src/code-stubs.h" | 6 #include "src/code-stubs.h" |
| 7 #include "src/cpu-profiler.h" | |
| 8 #include "src/hydrogen-osr.h" | 7 #include "src/hydrogen-osr.h" |
| 9 #include "src/ic/ic.h" | 8 #include "src/ic/ic.h" |
| 10 #include "src/ic/stub-cache.h" | 9 #include "src/ic/stub-cache.h" |
| 11 #include "src/mips64/lithium-codegen-mips64.h" | 10 #include "src/mips64/lithium-codegen-mips64.h" |
| 12 #include "src/mips64/lithium-gap-resolver-mips64.h" | 11 #include "src/mips64/lithium-gap-resolver-mips64.h" |
| 12 #include "src/profiler/cpu-profiler.h" |
| 13 | 13 |
| 14 namespace v8 { | 14 namespace v8 { |
| 15 namespace internal { | 15 namespace internal { |
| 16 | 16 |
| 17 | 17 |
| 18 class SafepointGenerator final : public CallWrapper { | 18 class SafepointGenerator final : public CallWrapper { |
| 19 public: | 19 public: |
| 20 SafepointGenerator(LCodeGen* codegen, | 20 SafepointGenerator(LCodeGen* codegen, |
| 21 LPointerMap* pointers, | 21 LPointerMap* pointers, |
| 22 Safepoint::DeoptMode mode) | 22 Safepoint::DeoptMode mode) |
| (...skipping 6062 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6085 __ Push(at, ToRegister(instr->function())); | 6085 __ Push(at, ToRegister(instr->function())); |
| 6086 CallRuntime(Runtime::kPushBlockContext, 2, instr); | 6086 CallRuntime(Runtime::kPushBlockContext, 2, instr); |
| 6087 RecordSafepoint(Safepoint::kNoLazyDeopt); | 6087 RecordSafepoint(Safepoint::kNoLazyDeopt); |
| 6088 } | 6088 } |
| 6089 | 6089 |
| 6090 | 6090 |
| 6091 #undef __ | 6091 #undef __ |
| 6092 | 6092 |
| 6093 } // namespace internal | 6093 } // namespace internal |
| 6094 } // namespace v8 | 6094 } // namespace v8 |
| OLD | NEW |