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_IA32 | 5 #if V8_TARGET_ARCH_IA32 |
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/ia32/frames-ia32.h" | 10 #include "src/ia32/frames-ia32.h" |
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
174 intptr_t handler = | 174 intptr_t handler = |
175 reinterpret_cast<intptr_t>(descriptor->deoptimization_handler()); | 175 reinterpret_cast<intptr_t>(descriptor->deoptimization_handler()); |
176 int params = descriptor->GetHandlerParameterCount(); | 176 int params = descriptor->GetHandlerParameterCount(); |
177 output_frame->SetRegister(eax.code(), params); | 177 output_frame->SetRegister(eax.code(), params); |
178 output_frame->SetRegister(ebx.code(), handler); | 178 output_frame->SetRegister(ebx.code(), handler); |
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 < XMMRegister::kMaxNumRegisters; ++i) { | 183 for (int i = 0; i < XMMRegister::kMaxNumRegisters; ++i) { |
184 double double_value = input_->GetDoubleRegister(i); | 184 Float64 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 #define __ masm()-> | 189 #define __ masm()-> |
190 | 190 |
191 void Deoptimizer::TableEntryGenerator::Generate() { | 191 void Deoptimizer::TableEntryGenerator::Generate() { |
192 GeneratePrologue(); | 192 GeneratePrologue(); |
193 | 193 |
194 // Save all general purpose registers before messing with them. | 194 // Save all general purpose registers before messing with them. |
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
386 } | 386 } |
387 | 387 |
388 | 388 |
389 #undef __ | 389 #undef __ |
390 | 390 |
391 | 391 |
392 } // namespace internal | 392 } // namespace internal |
393 } // namespace v8 | 393 } // namespace v8 |
394 | 394 |
395 #endif // V8_TARGET_ARCH_IA32 | 395 #endif // V8_TARGET_ARCH_IA32 |
OLD | NEW |