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_MIPS64 | 5 #if V8_TARGET_ARCH_MIPS64 |
6 | 6 |
7 #include "src/codegen.h" | 7 #include "src/codegen.h" |
8 #include "src/debug/debug.h" | 8 #include "src/debug/debug.h" |
9 #include "src/deoptimizer.h" | 9 #include "src/deoptimizer.h" |
10 #include "src/full-codegen/full-codegen.h" | 10 #include "src/full-codegen/full-codegen.h" |
11 #include "src/runtime/runtime.h" | 11 #include "src/runtime/runtime.h" |
12 | 12 |
13 namespace v8 { | 13 namespace v8 { |
14 namespace internal { | 14 namespace internal { |
15 | 15 |
16 | 16 |
17 #define __ ACCESS_MASM(masm) | 17 #define __ ACCESS_MASM(masm) |
18 | 18 |
19 | 19 |
20 void Builtins::Generate_Adaptor(MacroAssembler* masm, | 20 void Builtins::Generate_Adaptor(MacroAssembler* masm, |
21 CFunctionId id, | 21 CFunctionId id, |
22 BuiltinExtraArguments extra_args) { | 22 BuiltinExtraArguments extra_args) { |
23 // ----------- S t a t e ------------- | 23 // ----------- S t a t e ------------- |
24 // -- a0 : number of arguments excluding receiver | 24 // -- a0 : number of arguments excluding receiver |
25 // -- a1 : called function (only guaranteed when | 25 // (only guaranteed when the called function |
26 // -- extra_args requires it) | 26 // is not marked as DontAdaptArguments) |
| 27 // -- a1 : called function |
27 // -- sp[0] : last argument | 28 // -- sp[0] : last argument |
28 // -- ... | 29 // -- ... |
29 // -- sp[8 * (argc - 1)] : first argument | 30 // -- sp[8 * (argc - 1)] : first argument |
30 // -- sp[8 * agrc] : receiver | 31 // -- sp[8 * agrc] : receiver |
31 // ----------------------------------- | 32 // ----------------------------------- |
32 __ AssertFunction(a1); | 33 __ AssertFunction(a1); |
33 | 34 |
34 // Make sure we operate in the context of the called function (for example | 35 // Make sure we operate in the context of the called function (for example |
35 // ConstructStubs implemented in C++ will be run in the context of the caller | 36 // ConstructStubs implemented in C++ will be run in the context of the caller |
36 // instead of the callee, due to the way that [[Construct]] is defined for | 37 // instead of the callee, due to the way that [[Construct]] is defined for |
37 // ordinary functions). | 38 // ordinary functions). |
38 // TODO(bmeurer): Can we make this more robust? | 39 // TODO(bmeurer): Can we make this more robust? |
39 __ ld(cp, FieldMemOperand(a1, JSFunction::kContextOffset)); | 40 __ ld(cp, FieldMemOperand(a1, JSFunction::kContextOffset)); |
40 | 41 |
41 // Insert extra arguments. | 42 // Insert extra arguments. |
42 int num_extra_args = 0; | 43 int num_extra_args = 0; |
43 if (extra_args == NEEDS_CALLED_FUNCTION) { | 44 if (extra_args == NEEDS_CALLED_FUNCTION) { |
44 num_extra_args = 1; | 45 num_extra_args = 1; |
45 __ push(a1); | 46 __ push(a1); |
46 } else { | 47 } else { |
47 DCHECK(extra_args == NO_EXTRA_ARGUMENTS); | 48 DCHECK(extra_args == NO_EXTRA_ARGUMENTS); |
48 } | 49 } |
49 | 50 |
50 // JumpToExternalReference expects a0 to contain the number of arguments | 51 // JumpToExternalReference expects a0 to contain the number of arguments |
51 // including the receiver and the extra arguments. | 52 // including the receiver and the extra arguments. But a0 is only valid |
| 53 // if the called function is marked as DontAdaptArguments, otherwise we |
| 54 // need to load the argument count from the SharedFunctionInfo. |
| 55 Label argc, done_argc; |
| 56 __ ld(a2, FieldMemOperand(a1, JSFunction::kSharedFunctionInfoOffset)); |
| 57 __ lw(a2, |
| 58 FieldMemOperand(a2, SharedFunctionInfo::kFormalParameterCountOffset)); |
| 59 __ Branch(&argc, ne, a2, |
| 60 Operand(SharedFunctionInfo::kDontAdaptArgumentsSentinel)); |
| 61 __ Daddu(a0, a2, num_extra_args + 1); |
| 62 __ jmp(&done_argc); |
| 63 __ bind(&argc); |
52 __ Daddu(a0, a0, num_extra_args + 1); | 64 __ Daddu(a0, a0, num_extra_args + 1); |
| 65 __ bind(&done_argc); |
| 66 |
53 __ JumpToExternalReference(ExternalReference(id, masm->isolate())); | 67 __ JumpToExternalReference(ExternalReference(id, masm->isolate())); |
54 } | 68 } |
55 | 69 |
56 | 70 |
57 // Load the built-in InternalArray function from the current context. | 71 // Load the built-in InternalArray function from the current context. |
58 static void GenerateLoadInternalArrayFunction(MacroAssembler* masm, | 72 static void GenerateLoadInternalArrayFunction(MacroAssembler* masm, |
59 Register result) { | 73 Register result) { |
60 // Load the native context. | 74 // Load the native context. |
61 | 75 |
62 __ ld(result, | 76 __ ld(result, |
(...skipping 1824 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1887 } | 1901 } |
1888 } | 1902 } |
1889 | 1903 |
1890 | 1904 |
1891 #undef __ | 1905 #undef __ |
1892 | 1906 |
1893 } // namespace internal | 1907 } // namespace internal |
1894 } // namespace v8 | 1908 } // namespace v8 |
1895 | 1909 |
1896 #endif // V8_TARGET_ARCH_MIPS64 | 1910 #endif // V8_TARGET_ARCH_MIPS64 |
OLD | NEW |