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

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

Issue 960973003: Add the code change for turbofan unsupported port. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 9 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 577 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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
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