OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 #if V8_TARGET_ARCH_X87 | 5 #if V8_TARGET_ARCH_X87 |
6 | 6 |
7 #include "src/codegen.h" | 7 #include "src/codegen.h" |
8 #include "src/deoptimizer.h" | 8 #include "src/deoptimizer.h" |
9 #include "src/full-codegen/full-codegen.h" | 9 #include "src/full-codegen/full-codegen.h" |
10 #include "src/register-configuration.h" | 10 #include "src/register-configuration.h" |
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
179 } | 179 } |
180 | 180 |
181 | 181 |
182 void Deoptimizer::CopyDoubleRegisters(FrameDescription* output_frame) { | 182 void Deoptimizer::CopyDoubleRegisters(FrameDescription* output_frame) { |
183 for (int i = 0; i < X87Register::kMaxNumRegisters; ++i) { | 183 for (int i = 0; i < X87Register::kMaxNumRegisters; ++i) { |
184 double double_value = input_->GetDoubleRegister(i); | 184 double double_value = input_->GetDoubleRegister(i); |
185 output_frame->SetDoubleRegister(i, double_value); | 185 output_frame->SetDoubleRegister(i, double_value); |
186 } | 186 } |
187 } | 187 } |
188 | 188 |
189 bool Deoptimizer::HasAlignmentPadding(SharedFunctionInfo* shared) { | |
190 // There is no dynamic alignment padding on x87 in the input frame. | |
191 return false; | |
192 } | |
193 | |
194 | |
195 #define __ masm()-> | 189 #define __ masm()-> |
196 | 190 |
197 void Deoptimizer::TableEntryGenerator::Generate() { | 191 void Deoptimizer::TableEntryGenerator::Generate() { |
198 GeneratePrologue(); | 192 GeneratePrologue(); |
199 | 193 |
200 // Save all general purpose registers before messing with them. | 194 // Save all general purpose registers before messing with them. |
201 const int kNumberOfRegisters = Register::kNumRegisters; | 195 const int kNumberOfRegisters = Register::kNumRegisters; |
202 | 196 |
203 const int kDoubleRegsSize = kDoubleSize * X87Register::kMaxNumRegisters; | 197 const int kDoubleRegsSize = kDoubleSize * X87Register::kMaxNumRegisters; |
204 | 198 |
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
423 } | 417 } |
424 | 418 |
425 | 419 |
426 #undef __ | 420 #undef __ |
427 | 421 |
428 | 422 |
429 } // namespace internal | 423 } // namespace internal |
430 } // namespace v8 | 424 } // namespace v8 |
431 | 425 |
432 #endif // V8_TARGET_ARCH_X87 | 426 #endif // V8_TARGET_ARCH_X87 |
OLD | NEW |