| 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/compiler/code-generator-impl.h" | 7 #include "src/compiler/code-generator-impl.h" |
| 8 #include "src/compiler/linkage.h" | 8 #include "src/compiler/linkage.h" |
| 9 #include "src/compiler/pipeline.h" | 9 #include "src/compiler/pipeline.h" |
| 10 | 10 |
| 11 namespace v8 { | 11 namespace v8 { |
| 12 namespace internal { | 12 namespace internal { |
| 13 namespace compiler { | 13 namespace compiler { |
| 14 | 14 |
| 15 CodeGenerator::CodeGenerator(Frame* frame, Linkage* linkage, | 15 CodeGenerator::CodeGenerator(Frame* frame, Linkage* linkage, |
| 16 InstructionSequence* code, CompilationInfo* info) | 16 InstructionSequence* code, CompilationInfo* info) |
| 17 : frame_(frame), | 17 : frame_(frame), |
| 18 linkage_(linkage), | 18 linkage_(linkage), |
| 19 code_(code), | 19 code_(code), |
| 20 info_(info), | 20 info_(info), |
| 21 labels_(zone()->NewArray<Label>(code->InstructionBlockCount())), | 21 labels_(zone()->NewArray<Label>(code->InstructionBlockCount())), |
| 22 current_block_(BasicBlock::RpoNumber::Invalid()), | 22 current_block_(BasicBlock::RpoNumber::Invalid()), |
| 23 current_source_position_(SourcePosition::Invalid()), | 23 current_source_position_(SourcePosition::Invalid()), |
| 24 masm_(code->zone()->isolate(), NULL, 0), | 24 masm_(info->isolate(), NULL, 0), |
| 25 resolver_(this), | 25 resolver_(this), |
| 26 safepoints_(code->zone()), | 26 safepoints_(code->zone()), |
| 27 deoptimization_states_(code->zone()), | 27 deoptimization_states_(code->zone()), |
| 28 deoptimization_literals_(code->zone()), | 28 deoptimization_literals_(code->zone()), |
| 29 translations_(code->zone()), | 29 translations_(code->zone()), |
| 30 last_lazy_deopt_pc_(0), | 30 last_lazy_deopt_pc_(0), |
| 31 ools_(nullptr), | 31 ools_(nullptr), |
| 32 osr_pc_offset_(-1) { | 32 osr_pc_offset_(-1) { |
| 33 for (int i = 0; i < code->InstructionBlockCount(); ++i) { | 33 for (int i = 0; i < code->InstructionBlockCount(); ++i) { |
| 34 new (&labels_[i]) Label; | 34 new (&labels_[i]) Label; |
| (...skipping 549 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 584 : masm_(gen->masm()), next_(gen->ools_) { | 584 : masm_(gen->masm()), next_(gen->ools_) { |
| 585 gen->ools_ = this; | 585 gen->ools_ = this; |
| 586 } | 586 } |
| 587 | 587 |
| 588 | 588 |
| 589 OutOfLineCode::~OutOfLineCode() {} | 589 OutOfLineCode::~OutOfLineCode() {} |
| 590 | 590 |
| 591 } // namespace compiler | 591 } // namespace compiler |
| 592 } // namespace internal | 592 } // namespace internal |
| 593 } // namespace v8 | 593 } // namespace v8 |
| OLD | NEW |