Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(194)

Side by Side Diff: src/compiler/code-generator.cc

Issue 902943005: Add dummy implementation for turbofan unsupported platform. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698