| 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/compiler/code-generator.h" | 5 #include "src/compiler/code-generator.h" |
| 6 | 6 |
| 7 #include "src/address-map.h" | 7 #include "src/address-map.h" |
| 8 #include "src/compiler/code-generator-impl.h" | 8 #include "src/compiler/code-generator-impl.h" |
| 9 #include "src/compiler/linkage.h" | 9 #include "src/compiler/linkage.h" |
| 10 #include "src/compiler/pipeline.h" | 10 #include "src/compiler/pipeline.h" |
| (...skipping 646 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 657 } | 657 } |
| 658 } | 658 } |
| 659 | 659 |
| 660 | 660 |
| 661 void CodeGenerator::MarkLazyDeoptSite() { | 661 void CodeGenerator::MarkLazyDeoptSite() { |
| 662 last_lazy_deopt_pc_ = masm()->pc_offset(); | 662 last_lazy_deopt_pc_ = masm()->pc_offset(); |
| 663 } | 663 } |
| 664 | 664 |
| 665 | 665 |
| 666 OutOfLineCode::OutOfLineCode(CodeGenerator* gen) | 666 OutOfLineCode::OutOfLineCode(CodeGenerator* gen) |
| 667 : masm_(gen->masm()), next_(gen->ools_) { | 667 : frame_(gen->frame()), masm_(gen->masm()), next_(gen->ools_) { |
| 668 gen->ools_ = this; | 668 gen->ools_ = this; |
| 669 } | 669 } |
| 670 | 670 |
| 671 | 671 |
| 672 OutOfLineCode::~OutOfLineCode() {} | 672 OutOfLineCode::~OutOfLineCode() {} |
| 673 | 673 |
| 674 } // namespace compiler | 674 } // namespace compiler |
| 675 } // namespace internal | 675 } // namespace internal |
| 676 } // namespace v8 | 676 } // namespace v8 |
| OLD | NEW |