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

Side by Side Diff: src/ia32/deoptimizer-ia32.cc

Issue 23537067: Add support for keyed-call on arrays of fast elements (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Addressed comments Created 7 years, 2 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 | Annotate | Revision Log
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 input_->SetFrameSlot(i, Memory::uint32_at(tos + i)); 196 input_->SetFrameSlot(i, Memory::uint32_at(tos + i));
197 } 197 }
198 } 198 }
199 199
200 200
201 void Deoptimizer::SetPlatformCompiledStubRegisters( 201 void Deoptimizer::SetPlatformCompiledStubRegisters(
202 FrameDescription* output_frame, CodeStubInterfaceDescriptor* descriptor) { 202 FrameDescription* output_frame, CodeStubInterfaceDescriptor* descriptor) {
203 intptr_t handler = 203 intptr_t handler =
204 reinterpret_cast<intptr_t>(descriptor->deoptimization_handler_); 204 reinterpret_cast<intptr_t>(descriptor->deoptimization_handler_);
205 int params = descriptor->register_param_count_; 205 int params = descriptor->register_param_count_;
206 if (descriptor->stack_parameter_count_ != NULL) { 206 if (descriptor->PassCallerArguments()) params++;
207 params++;
208 }
209 output_frame->SetRegister(eax.code(), params); 207 output_frame->SetRegister(eax.code(), params);
210 output_frame->SetRegister(ebx.code(), handler); 208 output_frame->SetRegister(ebx.code(), handler);
211 } 209 }
212 210
213 211
214 void Deoptimizer::CopyDoubleRegisters(FrameDescription* output_frame) { 212 void Deoptimizer::CopyDoubleRegisters(FrameDescription* output_frame) {
215 for (int i = 0; i < XMMRegister::kNumAllocatableRegisters; ++i) { 213 for (int i = 0; i < XMMRegister::kNumAllocatableRegisters; ++i) {
216 double double_value = input_->GetDoubleRegister(i); 214 double double_value = input_->GetDoubleRegister(i);
217 output_frame->SetDoubleRegister(i, double_value); 215 output_frame->SetDoubleRegister(i, double_value);
218 } 216 }
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
434 SetFrameSlot(offset, value); 432 SetFrameSlot(offset, value);
435 } 433 }
436 434
437 435
438 #undef __ 436 #undef __
439 437
440 438
441 } } // namespace v8::internal 439 } } // namespace v8::internal
442 440
443 #endif // V8_TARGET_ARCH_IA32 441 #endif // V8_TARGET_ARCH_IA32
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698