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_ARM | 7 #if V8_TARGET_ARCH_ARM |
8 | 8 |
9 #include "src/code-factory.h" | 9 #include "src/code-factory.h" |
10 #include "src/code-stubs.h" | 10 #include "src/code-stubs.h" |
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
120 if (strlen(FLAG_stop_at) > 0 && | 120 if (strlen(FLAG_stop_at) > 0 && |
121 info->function()->name()->IsUtf8EqualTo(CStrVector(FLAG_stop_at))) { | 121 info->function()->name()->IsUtf8EqualTo(CStrVector(FLAG_stop_at))) { |
122 __ stop("stop-at"); | 122 __ stop("stop-at"); |
123 } | 123 } |
124 #endif | 124 #endif |
125 | 125 |
126 // Sloppy mode functions and builtins need to replace the receiver with the | 126 // Sloppy mode functions and builtins need to replace the receiver with the |
127 // global proxy when called as functions (without an explicit receiver | 127 // global proxy when called as functions (without an explicit receiver |
128 // object). | 128 // object). |
129 if (is_sloppy(info->language_mode()) && !info->is_native() && | 129 if (is_sloppy(info->language_mode()) && !info->is_native() && |
130 info->MayUseThis()) { | 130 info->MayUseThis() && info->scope()->has_this_declaration()) { |
131 Label ok; | 131 Label ok; |
132 int receiver_offset = info->scope()->num_parameters() * kPointerSize; | 132 int receiver_offset = info->scope()->num_parameters() * kPointerSize; |
133 __ ldr(r2, MemOperand(sp, receiver_offset)); | 133 __ ldr(r2, MemOperand(sp, receiver_offset)); |
134 __ CompareRoot(r2, Heap::kUndefinedValueRootIndex); | 134 __ CompareRoot(r2, Heap::kUndefinedValueRootIndex); |
135 __ b(ne, &ok); | 135 __ b(ne, &ok); |
136 | 136 |
137 __ ldr(r2, GlobalObjectOperand()); | 137 __ ldr(r2, GlobalObjectOperand()); |
138 __ ldr(r2, FieldMemOperand(r2, GlobalObject::kGlobalProxyOffset)); | 138 __ ldr(r2, FieldMemOperand(r2, GlobalObject::kGlobalProxyOffset)); |
139 | 139 |
140 __ str(r2, MemOperand(sp, receiver_offset)); | 140 __ str(r2, MemOperand(sp, receiver_offset)); |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
209 __ push(r1); | 209 __ push(r1); |
210 __ CallRuntime(Runtime::kNewFunctionContext, 1); | 210 __ CallRuntime(Runtime::kNewFunctionContext, 1); |
211 } | 211 } |
212 function_in_register = false; | 212 function_in_register = false; |
213 // Context is returned in r0. It replaces the context passed to us. | 213 // Context is returned in r0. It replaces the context passed to us. |
214 // It's saved in the stack and kept live in cp. | 214 // It's saved in the stack and kept live in cp. |
215 __ mov(cp, r0); | 215 __ mov(cp, r0); |
216 __ str(r0, MemOperand(fp, StandardFrameConstants::kContextOffset)); | 216 __ str(r0, MemOperand(fp, StandardFrameConstants::kContextOffset)); |
217 // Copy any necessary parameters into the context. | 217 // Copy any necessary parameters into the context. |
218 int num_parameters = info->scope()->num_parameters(); | 218 int num_parameters = info->scope()->num_parameters(); |
219 for (int i = 0; i < num_parameters; i++) { | 219 int first_parameter = info->scope()->has_this_declaration() ? -1 : 0; |
220 Variable* var = scope()->parameter(i); | 220 for (int i = first_parameter; i < num_parameters; i++) { |
| 221 Variable* var = (i == -1) ? scope()->receiver() : scope()->parameter(i); |
221 if (var->IsContextSlot()) { | 222 if (var->IsContextSlot()) { |
222 int parameter_offset = StandardFrameConstants::kCallerSPOffset + | 223 int parameter_offset = StandardFrameConstants::kCallerSPOffset + |
223 (num_parameters - 1 - i) * kPointerSize; | 224 (num_parameters - 1 - i) * kPointerSize; |
224 // Load parameter from stack. | 225 // Load parameter from stack. |
225 __ ldr(r0, MemOperand(fp, parameter_offset)); | 226 __ ldr(r0, MemOperand(fp, parameter_offset)); |
226 // Store it in the context. | 227 // Store it in the context. |
227 MemOperand target = ContextOperand(cp, var->index()); | 228 MemOperand target = ContextOperand(cp, var->index()); |
228 __ str(r0, target); | 229 __ str(r0, target); |
229 | 230 |
230 // Update the write barrier. | 231 // Update the write barrier. |
(...skipping 2807 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3038 if (arg_count > 0) { | 3039 if (arg_count > 0) { |
3039 __ ldr(r5, MemOperand(sp, arg_count * kPointerSize)); | 3040 __ ldr(r5, MemOperand(sp, arg_count * kPointerSize)); |
3040 } else { | 3041 } else { |
3041 __ LoadRoot(r5, Heap::kUndefinedValueRootIndex); | 3042 __ LoadRoot(r5, Heap::kUndefinedValueRootIndex); |
3042 } | 3043 } |
3043 | 3044 |
3044 // r4: the receiver of the enclosing function. | 3045 // r4: the receiver of the enclosing function. |
3045 __ ldr(r4, MemOperand(fp, JavaScriptFrameConstants::kFunctionOffset)); | 3046 __ ldr(r4, MemOperand(fp, JavaScriptFrameConstants::kFunctionOffset)); |
3046 | 3047 |
3047 // r3: the receiver of the enclosing function. | 3048 // r3: the receiver of the enclosing function. |
3048 int receiver_offset = 2 + info_->scope()->num_parameters(); | 3049 Variable* this_var = scope()->LookupThis(); |
3049 __ ldr(r3, MemOperand(fp, receiver_offset * kPointerSize)); | 3050 DCHECK_NOT_NULL(this_var); |
| 3051 __ ldr(r3, VarOperand(this_var, r3)); |
3050 | 3052 |
3051 // r2: language mode. | 3053 // r2: language mode. |
3052 __ mov(r2, Operand(Smi::FromInt(language_mode()))); | 3054 __ mov(r2, Operand(Smi::FromInt(language_mode()))); |
3053 | 3055 |
3054 // r1: the start position of the scope the calls resides in. | 3056 // r1: the start position of the scope the calls resides in. |
3055 __ mov(r1, Operand(Smi::FromInt(scope()->start_position()))); | 3057 __ mov(r1, Operand(Smi::FromInt(scope()->start_position()))); |
3056 | 3058 |
3057 // Do the runtime call. | 3059 // Do the runtime call. |
3058 __ Push(r5); | 3060 __ Push(r5); |
3059 __ Push(r4, r3, r2, r1); | 3061 __ Push(r4, r3, r2, r1); |
(...skipping 2422 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5482 | 5484 |
5483 DCHECK(interrupt_address == | 5485 DCHECK(interrupt_address == |
5484 isolate->builtins()->OsrAfterStackCheck()->entry()); | 5486 isolate->builtins()->OsrAfterStackCheck()->entry()); |
5485 return OSR_AFTER_STACK_CHECK; | 5487 return OSR_AFTER_STACK_CHECK; |
5486 } | 5488 } |
5487 | 5489 |
5488 | 5490 |
5489 } } // namespace v8::internal | 5491 } } // namespace v8::internal |
5490 | 5492 |
5491 #endif // V8_TARGET_ARCH_ARM | 5493 #endif // V8_TARGET_ARCH_ARM |
OLD | NEW |