| OLD | NEW |
| 1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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_ARM64 | 5 #if V8_TARGET_ARCH_ARM64 |
| 6 | 6 |
| 7 #include "src/ast/scopes.h" | 7 #include "src/ast/scopes.h" |
| 8 #include "src/code-factory.h" | 8 #include "src/code-factory.h" |
| 9 #include "src/code-stubs.h" | 9 #include "src/code-stubs.h" |
| 10 #include "src/codegen.h" | 10 #include "src/codegen.h" |
| (...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 274 if (arguments != NULL) { | 274 if (arguments != NULL) { |
| 275 // Function uses arguments object. | 275 // Function uses arguments object. |
| 276 Comment cmnt(masm_, "[ Allocate arguments object"); | 276 Comment cmnt(masm_, "[ Allocate arguments object"); |
| 277 if (!function_in_register_x1) { | 277 if (!function_in_register_x1) { |
| 278 // Load this again, if it's used by the local context below. | 278 // Load this again, if it's used by the local context below. |
| 279 __ Ldr(x1, MemOperand(fp, JavaScriptFrameConstants::kFunctionOffset)); | 279 __ Ldr(x1, MemOperand(fp, JavaScriptFrameConstants::kFunctionOffset)); |
| 280 } | 280 } |
| 281 if (is_strict(language_mode()) || !has_simple_parameters()) { | 281 if (is_strict(language_mode()) || !has_simple_parameters()) { |
| 282 FastNewStrictArgumentsStub stub(isolate()); | 282 FastNewStrictArgumentsStub stub(isolate()); |
| 283 __ CallStub(&stub); | 283 __ CallStub(&stub); |
| 284 } else if (literal()->has_duplicate_parameters()) { | |
| 285 __ Push(x1); | |
| 286 __ CallRuntime(Runtime::kNewSloppyArguments_Generic); | |
| 287 } else { | 284 } else { |
| 288 FastNewSloppyArgumentsStub stub(isolate()); | 285 DCHECK(x1.is(ArgumentsAccessNewDescriptor::function())); |
| 286 // Receiver is just before the parameters on the caller's stack. |
| 287 int num_parameters = info->scope()->num_parameters(); |
| 288 int offset = num_parameters * kPointerSize; |
| 289 __ Mov(ArgumentsAccessNewDescriptor::parameter_count(), |
| 290 Smi::FromInt(num_parameters)); |
| 291 __ Add(ArgumentsAccessNewDescriptor::parameter_pointer(), fp, |
| 292 StandardFrameConstants::kCallerSPOffset + offset); |
| 293 |
| 294 // Arguments to ArgumentsAccessStub: |
| 295 // function, parameter pointer, parameter count. |
| 296 // The stub will rewrite parameter pointer and parameter count if the |
| 297 // previous stack frame was an arguments adapter frame. |
| 298 ArgumentsAccessStub::Type type = ArgumentsAccessStub::ComputeType( |
| 299 literal()->has_duplicate_parameters()); |
| 300 ArgumentsAccessStub stub(isolate(), type); |
| 289 __ CallStub(&stub); | 301 __ CallStub(&stub); |
| 290 } | 302 } |
| 291 | 303 |
| 292 SetVar(arguments, x0, x1, x2); | 304 SetVar(arguments, x0, x1, x2); |
| 293 } | 305 } |
| 294 | 306 |
| 295 if (FLAG_trace) { | 307 if (FLAG_trace) { |
| 296 __ CallRuntime(Runtime::kTraceEnter); | 308 __ CallRuntime(Runtime::kTraceEnter); |
| 297 } | 309 } |
| 298 | 310 |
| (...skipping 4324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4623 } | 4635 } |
| 4624 | 4636 |
| 4625 return INTERRUPT; | 4637 return INTERRUPT; |
| 4626 } | 4638 } |
| 4627 | 4639 |
| 4628 | 4640 |
| 4629 } // namespace internal | 4641 } // namespace internal |
| 4630 } // namespace v8 | 4642 } // namespace v8 |
| 4631 | 4643 |
| 4632 #endif // V8_TARGET_ARCH_ARM64 | 4644 #endif // V8_TARGET_ARCH_ARM64 |
| OLD | NEW |