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 |
(...skipping 577 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
588 | 588 |
589 void CodeGenerator::AssembleArchBoolean(Instruction* instr, | 589 void CodeGenerator::AssembleArchBoolean(Instruction* instr, |
590 FlagsCondition condition) { | 590 FlagsCondition condition) { |
591 UNIMPLEMENTED(); | 591 UNIMPLEMENTED(); |
592 } | 592 } |
593 | 593 |
594 | 594 |
595 void CodeGenerator::AssembleArchJump(RpoNumber target) { UNIMPLEMENTED(); } | 595 void CodeGenerator::AssembleArchJump(RpoNumber target) { UNIMPLEMENTED(); } |
596 | 596 |
597 | 597 |
598 void CodeGenerator::AssembleDeoptimizerCall(int deoptimization_id) { | 598 void CodeGenerator::AssembleDeoptimizerCall( |
| 599 int deoptimization_id, Deoptimizer::BailoutType bailout_type) { |
599 UNIMPLEMENTED(); | 600 UNIMPLEMENTED(); |
600 } | 601 } |
601 | 602 |
602 | 603 |
603 void CodeGenerator::AssemblePrologue() { UNIMPLEMENTED(); } | 604 void CodeGenerator::AssemblePrologue() { UNIMPLEMENTED(); } |
604 | 605 |
605 | 606 |
606 void CodeGenerator::AssembleReturn() { UNIMPLEMENTED(); } | 607 void CodeGenerator::AssembleReturn() { UNIMPLEMENTED(); } |
607 | 608 |
608 | 609 |
(...skipping 23 matching lines...) Expand all Loading... |
632 : masm_(gen->masm()), next_(gen->ools_) { | 633 : masm_(gen->masm()), next_(gen->ools_) { |
633 gen->ools_ = this; | 634 gen->ools_ = this; |
634 } | 635 } |
635 | 636 |
636 | 637 |
637 OutOfLineCode::~OutOfLineCode() {} | 638 OutOfLineCode::~OutOfLineCode() {} |
638 | 639 |
639 } // namespace compiler | 640 } // namespace compiler |
640 } // namespace internal | 641 } // namespace internal |
641 } // namespace v8 | 642 } // namespace v8 |
OLD | NEW |