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 494 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
505 } | 505 } |
506 | 506 |
507 #if !V8_TURBOFAN_BACKEND | 507 #if !V8_TURBOFAN_BACKEND |
508 | 508 |
509 void CodeGenerator::AssembleArchInstruction(Instruction* instr) { | 509 void CodeGenerator::AssembleArchInstruction(Instruction* instr) { |
510 UNIMPLEMENTED(); | 510 UNIMPLEMENTED(); |
511 } | 511 } |
512 | 512 |
513 | 513 |
514 void CodeGenerator::AssembleArchBranch(Instruction* instr, | 514 void CodeGenerator::AssembleArchBranch(Instruction* instr, |
515 FlagsCondition condition) { | 515 BranchInfo* branch) { |
516 UNIMPLEMENTED(); | 516 UNIMPLEMENTED(); |
517 } | 517 } |
518 | 518 |
519 | 519 |
520 void CodeGenerator::AssembleArchBoolean(Instruction* instr, | 520 void CodeGenerator::AssembleArchBoolean(Instruction* instr, |
521 FlagsCondition condition) { | 521 FlagsCondition condition) { |
522 UNIMPLEMENTED(); | 522 UNIMPLEMENTED(); |
523 } | 523 } |
524 | 524 |
525 | 525 |
| 526 void CodeGenerator::AssembleArchJump(BasicBlock::RpoNumber target) { |
| 527 UNIMPLEMENTED(); |
| 528 } |
| 529 |
| 530 |
526 void CodeGenerator::AssembleDeoptimizerCall(int deoptimization_id) { | 531 void CodeGenerator::AssembleDeoptimizerCall(int deoptimization_id) { |
527 UNIMPLEMENTED(); | 532 UNIMPLEMENTED(); |
528 } | 533 } |
529 | 534 |
530 | 535 |
531 void CodeGenerator::AssemblePrologue() { UNIMPLEMENTED(); } | 536 void CodeGenerator::AssemblePrologue() { UNIMPLEMENTED(); } |
532 | 537 |
533 | 538 |
534 void CodeGenerator::AssembleReturn() { UNIMPLEMENTED(); } | 539 void CodeGenerator::AssembleReturn() { UNIMPLEMENTED(); } |
535 | 540 |
(...skipping 10 matching lines...) Expand all Loading... |
546 } | 551 } |
547 | 552 |
548 | 553 |
549 void CodeGenerator::AddNopForSmiCodeInlining() { UNIMPLEMENTED(); } | 554 void CodeGenerator::AddNopForSmiCodeInlining() { UNIMPLEMENTED(); } |
550 | 555 |
551 #endif // !V8_TURBOFAN_BACKEND | 556 #endif // !V8_TURBOFAN_BACKEND |
552 | 557 |
553 } // namespace compiler | 558 } // namespace compiler |
554 } // namespace internal | 559 } // namespace internal |
555 } // namespace v8 | 560 } // namespace v8 |
OLD | NEW |