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 #include "src/v8.h" | 5 #include "src/v8.h" |
6 | 6 |
7 #if V8_TARGET_ARCH_IA32 | 7 #if V8_TARGET_ARCH_IA32 |
8 | 8 |
9 #include "src/base/bits.h" | 9 #include "src/base/bits.h" |
10 #include "src/code-factory.h" | 10 #include "src/code-factory.h" |
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
134 #ifdef DEBUG | 134 #ifdef DEBUG |
135 if (strlen(FLAG_stop_at) > 0 && | 135 if (strlen(FLAG_stop_at) > 0 && |
136 info_->function()->name()->IsUtf8EqualTo(CStrVector(FLAG_stop_at))) { | 136 info_->function()->name()->IsUtf8EqualTo(CStrVector(FLAG_stop_at))) { |
137 __ int3(); | 137 __ int3(); |
138 } | 138 } |
139 #endif | 139 #endif |
140 | 140 |
141 // Sloppy mode functions and builtins need to replace the receiver with the | 141 // Sloppy mode functions and builtins need to replace the receiver with the |
142 // global proxy when called as functions (without an explicit receiver | 142 // global proxy when called as functions (without an explicit receiver |
143 // object). | 143 // object). |
144 if (is_sloppy(info()->language_mode()) && info()->MayUseThis() && | 144 if (is_sloppy(info_->language_mode()) && info()->MayUseThis() && |
145 !info()->is_native() && info()->scope()->has_this_declaration()) { | 145 !info_->is_native()) { |
146 Label ok; | 146 Label ok; |
147 // +1 for return address. | 147 // +1 for return address. |
148 int receiver_offset = (scope()->num_parameters() + 1) * kPointerSize; | 148 int receiver_offset = (scope()->num_parameters() + 1) * kPointerSize; |
149 __ mov(ecx, Operand(esp, receiver_offset)); | 149 __ mov(ecx, Operand(esp, receiver_offset)); |
150 | 150 |
151 __ cmp(ecx, isolate()->factory()->undefined_value()); | 151 __ cmp(ecx, isolate()->factory()->undefined_value()); |
152 __ j(not_equal, &ok, Label::kNear); | 152 __ j(not_equal, &ok, Label::kNear); |
153 | 153 |
154 __ mov(ecx, GlobalObjectOperand()); | 154 __ mov(ecx, GlobalObjectOperand()); |
155 __ mov(ecx, FieldOperand(ecx, GlobalObject::kGlobalProxyOffset)); | 155 __ mov(ecx, FieldOperand(ecx, GlobalObject::kGlobalProxyOffset)); |
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
268 __ CallRuntime(Runtime::kNewFunctionContext, 1); | 268 __ CallRuntime(Runtime::kNewFunctionContext, 1); |
269 } | 269 } |
270 RecordSafepoint(Safepoint::kNoLazyDeopt); | 270 RecordSafepoint(Safepoint::kNoLazyDeopt); |
271 // Context is returned in eax. It replaces the context passed to us. | 271 // Context is returned in eax. It replaces the context passed to us. |
272 // It's saved in the stack and kept live in esi. | 272 // It's saved in the stack and kept live in esi. |
273 __ mov(esi, eax); | 273 __ mov(esi, eax); |
274 __ mov(Operand(ebp, StandardFrameConstants::kContextOffset), eax); | 274 __ mov(Operand(ebp, StandardFrameConstants::kContextOffset), eax); |
275 | 275 |
276 // Copy parameters into context if necessary. | 276 // Copy parameters into context if necessary. |
277 int num_parameters = scope()->num_parameters(); | 277 int num_parameters = scope()->num_parameters(); |
278 int first_parameter = scope()->has_this_declaration() ? -1 : 0; | 278 for (int i = 0; i < num_parameters; i++) { |
279 for (int i = first_parameter; i < num_parameters; i++) { | 279 Variable* var = scope()->parameter(i); |
280 Variable* var = (i == -1) ? scope()->receiver() : scope()->parameter(i); | |
281 if (var->IsContextSlot()) { | 280 if (var->IsContextSlot()) { |
282 int parameter_offset = StandardFrameConstants::kCallerSPOffset + | 281 int parameter_offset = StandardFrameConstants::kCallerSPOffset + |
283 (num_parameters - 1 - i) * kPointerSize; | 282 (num_parameters - 1 - i) * kPointerSize; |
284 // Load parameter from stack. | 283 // Load parameter from stack. |
285 __ mov(eax, Operand(ebp, parameter_offset)); | 284 __ mov(eax, Operand(ebp, parameter_offset)); |
286 // Store it in the context. | 285 // Store it in the context. |
287 int context_offset = Context::SlotOffset(var->index()); | 286 int context_offset = Context::SlotOffset(var->index()); |
288 __ mov(Operand(esi, context_offset), eax); | 287 __ mov(Operand(esi, context_offset), eax); |
289 // Update the write barrier. This clobbers eax and ebx. | 288 // Update the write barrier. This clobbers eax and ebx. |
290 if (need_write_barrier) { | 289 if (need_write_barrier) { |
(...skipping 5574 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5865 CallRuntime(Runtime::kPushBlockContext, 2, instr); | 5864 CallRuntime(Runtime::kPushBlockContext, 2, instr); |
5866 RecordSafepoint(Safepoint::kNoLazyDeopt); | 5865 RecordSafepoint(Safepoint::kNoLazyDeopt); |
5867 } | 5866 } |
5868 | 5867 |
5869 | 5868 |
5870 #undef __ | 5869 #undef __ |
5871 | 5870 |
5872 } } // namespace v8::internal | 5871 } } // namespace v8::internal |
5873 | 5872 |
5874 #endif // V8_TARGET_ARCH_IA32 | 5873 #endif // V8_TARGET_ARCH_IA32 |
OLD | NEW |