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

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

Issue 2151563003: Revert of [Turbofan] Change AlignSavedCalleeRegisterSlots to AlignFrame. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 5 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 | « src/compiler/s390/code-generator-s390.cc ('k') | 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/ast/scopes.h" 7 #include "src/ast/scopes.h"
8 #include "src/compiler/code-generator-impl.h" 8 #include "src/compiler/code-generator-impl.h"
9 #include "src/compiler/gap-resolver.h" 9 #include "src/compiler/gap-resolver.h"
10 #include "src/compiler/node-matchers.h" 10 #include "src/compiler/node-matchers.h"
(...skipping 2106 matching lines...) Expand 10 before | Expand all | Expand 10 after
2117 namespace { 2117 namespace {
2118 2118
2119 static const int kQuadWordSize = 16; 2119 static const int kQuadWordSize = 16;
2120 2120
2121 } // namespace 2121 } // namespace
2122 2122
2123 void CodeGenerator::FinishFrame(Frame* frame) { 2123 void CodeGenerator::FinishFrame(Frame* frame) {
2124 CallDescriptor* descriptor = linkage()->GetIncomingDescriptor(); 2124 CallDescriptor* descriptor = linkage()->GetIncomingDescriptor();
2125 2125
2126 const RegList saves_fp = descriptor->CalleeSavedFPRegisters(); 2126 const RegList saves_fp = descriptor->CalleeSavedFPRegisters();
2127 if (saves_fp != 0) { // Save callee-saved XMM registers. 2127 if (saves_fp != 0) {
2128 frame->AlignFrame(); 2128 frame->AlignSavedCalleeRegisterSlots();
2129 uint32_t count = base::bits::CountPopulation32(saves_fp); 2129 if (saves_fp != 0) { // Save callee-saved XMM registers.
2130 frame->AllocateSavedCalleeRegisterSlots(count * 2130 const uint32_t saves_fp_count = base::bits::CountPopulation32(saves_fp);
2131 (kQuadWordSize / kPointerSize)); 2131 frame->AllocateSavedCalleeRegisterSlots(saves_fp_count *
2132 (kQuadWordSize / kPointerSize));
2133 }
2132 } 2134 }
2133 const RegList saves = descriptor->CalleeSavedRegisters(); 2135 const RegList saves = descriptor->CalleeSavedRegisters();
2134 if (saves != 0) { // Save callee-saved registers. 2136 if (saves != 0) { // Save callee-saved registers.
2135 uint32_t count = base::bits::CountPopulation32(saves); 2137 int count = 0;
2138 for (int i = Register::kNumRegisters - 1; i >= 0; i--) {
2139 if (((1 << i) & saves)) {
2140 ++count;
2141 }
2142 }
2136 frame->AllocateSavedCalleeRegisterSlots(count); 2143 frame->AllocateSavedCalleeRegisterSlots(count);
2137 } 2144 }
2138 } 2145 }
2139 2146
2140 void CodeGenerator::AssembleConstructFrame() { 2147 void CodeGenerator::AssembleConstructFrame() {
2141 CallDescriptor* descriptor = linkage()->GetIncomingDescriptor(); 2148 CallDescriptor* descriptor = linkage()->GetIncomingDescriptor();
2142 if (frame_access_state()->has_frame()) { 2149 if (frame_access_state()->has_frame()) {
2143 if (descriptor->IsCFunctionCall()) { 2150 if (descriptor->IsCFunctionCall()) {
2144 __ pushq(rbp); 2151 __ pushq(rbp);
2145 __ movq(rbp, rsp); 2152 __ movq(rbp, rsp);
(...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after
2453 int padding_size = last_lazy_deopt_pc_ + space_needed - current_pc; 2460 int padding_size = last_lazy_deopt_pc_ + space_needed - current_pc;
2454 __ Nop(padding_size); 2461 __ Nop(padding_size);
2455 } 2462 }
2456 } 2463 }
2457 2464
2458 #undef __ 2465 #undef __
2459 2466
2460 } // namespace compiler 2467 } // namespace compiler
2461 } // namespace internal 2468 } // namespace internal
2462 } // namespace v8 2469 } // namespace v8
OLDNEW
« no previous file with comments | « src/compiler/s390/code-generator-s390.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698