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

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

Issue 1414183006: [turbofan] Avoid unnecessary write barriers and improve code generation. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix typo. Created 5 years, 1 month 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
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/address-map.h" 7 #include "src/address-map.h"
8 #include "src/compiler/code-generator-impl.h" 8 #include "src/compiler/code-generator-impl.h"
9 #include "src/compiler/linkage.h" 9 #include "src/compiler/linkage.h"
10 #include "src/compiler/pipeline.h" 10 #include "src/compiler/pipeline.h"
(...skipping 646 matching lines...) Expand 10 before | Expand all | Expand 10 after
657 } 657 }
658 } 658 }
659 659
660 660
661 void CodeGenerator::MarkLazyDeoptSite() { 661 void CodeGenerator::MarkLazyDeoptSite() {
662 last_lazy_deopt_pc_ = masm()->pc_offset(); 662 last_lazy_deopt_pc_ = masm()->pc_offset();
663 } 663 }
664 664
665 665
666 OutOfLineCode::OutOfLineCode(CodeGenerator* gen) 666 OutOfLineCode::OutOfLineCode(CodeGenerator* gen)
667 : masm_(gen->masm()), next_(gen->ools_) { 667 : frame_(gen->frame()), masm_(gen->masm()), next_(gen->ools_) {
668 gen->ools_ = this; 668 gen->ools_ = this;
669 } 669 }
670 670
671 671
672 OutOfLineCode::~OutOfLineCode() {} 672 OutOfLineCode::~OutOfLineCode() {}
673 673
674 } // namespace compiler 674 } // namespace compiler
675 } // namespace internal 675 } // namespace internal
676 } // namespace v8 676 } // namespace v8
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698