| 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 593 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 604 | 604 |
| 605 | 605 |
| 606 void CodeGenerator::AssembleSwap(InstructionOperand* source, | 606 void CodeGenerator::AssembleSwap(InstructionOperand* source, |
| 607 InstructionOperand* destination) { | 607 InstructionOperand* destination) { |
| 608 UNIMPLEMENTED(); | 608 UNIMPLEMENTED(); |
| 609 } | 609 } |
| 610 | 610 |
| 611 | 611 |
| 612 void CodeGenerator::AddNopForSmiCodeInlining() { UNIMPLEMENTED(); } | 612 void CodeGenerator::AddNopForSmiCodeInlining() { UNIMPLEMENTED(); } |
| 613 | 613 |
| 614 |
| 615 void CodeGenerator::AssembleJumpTable(Label** targets, size_t target_count) { |
| 616 UNIMPLEMENTED(); |
| 617 } |
| 618 |
| 614 #endif // !V8_TURBOFAN_BACKEND | 619 #endif // !V8_TURBOFAN_BACKEND |
| 615 | 620 |
| 616 | 621 |
| 617 OutOfLineCode::OutOfLineCode(CodeGenerator* gen) | 622 OutOfLineCode::OutOfLineCode(CodeGenerator* gen) |
| 618 : masm_(gen->masm()), next_(gen->ools_) { | 623 : masm_(gen->masm()), next_(gen->ools_) { |
| 619 gen->ools_ = this; | 624 gen->ools_ = this; |
| 620 } | 625 } |
| 621 | 626 |
| 622 | 627 |
| 623 OutOfLineCode::~OutOfLineCode() {} | 628 OutOfLineCode::~OutOfLineCode() {} |
| 624 | 629 |
| 625 } // namespace compiler | 630 } // namespace compiler |
| 626 } // namespace internal | 631 } // namespace internal |
| 627 } // namespace v8 | 632 } // namespace v8 |
| OLD | NEW |