OLD | NEW |
1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 4878 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4889 __ bind(&done); | 4889 __ bind(&done); |
4890 __ Addu(sp, sp, Operand(3 * kPointerSize)); | 4890 __ Addu(sp, sp, Operand(3 * kPointerSize)); |
4891 __ Ret(); | 4891 __ Ret(); |
4892 | 4892 |
4893 __ bind(&slowcase); | 4893 __ bind(&slowcase); |
4894 __ TailCallRuntime(Runtime::kRegExpConstructResult, 3, 1); | 4894 __ TailCallRuntime(Runtime::kRegExpConstructResult, 3, 1); |
4895 } | 4895 } |
4896 | 4896 |
4897 | 4897 |
4898 void CallFunctionStub::Generate(MacroAssembler* masm) { | 4898 void CallFunctionStub::Generate(MacroAssembler* masm) { |
4899 Label slow; | 4899 Label slow, non_function; |
4900 | 4900 |
4901 // The receiver might implicitly be the global object. This is | 4901 // The receiver might implicitly be the global object. This is |
4902 // indicated by passing the hole as the receiver to the call | 4902 // indicated by passing the hole as the receiver to the call |
4903 // function stub. | 4903 // function stub. |
4904 if (ReceiverMightBeImplicit()) { | 4904 if (ReceiverMightBeImplicit()) { |
4905 Label call; | 4905 Label call; |
4906 // Get the receiver from the stack. | 4906 // Get the receiver from the stack. |
4907 // function, receiver [, arguments] | 4907 // function, receiver [, arguments] |
4908 __ lw(t0, MemOperand(sp, argc_ * kPointerSize)); | 4908 __ lw(t0, MemOperand(sp, argc_ * kPointerSize)); |
4909 // Call as function is indicated with the hole. | 4909 // Call as function is indicated with the hole. |
4910 __ LoadRoot(at, Heap::kTheHoleValueRootIndex); | 4910 __ LoadRoot(at, Heap::kTheHoleValueRootIndex); |
4911 __ Branch(&call, ne, t0, Operand(at)); | 4911 __ Branch(&call, ne, t0, Operand(at)); |
4912 // Patch the receiver on the stack with the global receiver object. | 4912 // Patch the receiver on the stack with the global receiver object. |
4913 __ lw(a1, MemOperand(cp, Context::SlotOffset(Context::GLOBAL_INDEX))); | 4913 __ lw(a1, MemOperand(cp, Context::SlotOffset(Context::GLOBAL_INDEX))); |
4914 __ lw(a1, FieldMemOperand(a1, GlobalObject::kGlobalReceiverOffset)); | 4914 __ lw(a1, FieldMemOperand(a1, GlobalObject::kGlobalReceiverOffset)); |
4915 __ sw(a1, MemOperand(sp, argc_ * kPointerSize)); | 4915 __ sw(a1, MemOperand(sp, argc_ * kPointerSize)); |
4916 __ bind(&call); | 4916 __ bind(&call); |
4917 } | 4917 } |
4918 | 4918 |
4919 // Get the function to call from the stack. | 4919 // Get the function to call from the stack. |
4920 // function, receiver [, arguments] | 4920 // function, receiver [, arguments] |
4921 __ lw(a1, MemOperand(sp, (argc_ + 1) * kPointerSize)); | 4921 __ lw(a1, MemOperand(sp, (argc_ + 1) * kPointerSize)); |
4922 | 4922 |
4923 // Check that the function is really a JavaScript function. | 4923 // Check that the function is really a JavaScript function. |
4924 // a1: pushed function (to be verified) | 4924 // a1: pushed function (to be verified) |
4925 __ JumpIfSmi(a1, &slow); | 4925 __ JumpIfSmi(a1, &non_function); |
4926 // Get the map of the function object. | 4926 // Get the map of the function object. |
4927 __ GetObjectType(a1, a2, a2); | 4927 __ GetObjectType(a1, a2, a2); |
4928 __ Branch(&slow, ne, a2, Operand(JS_FUNCTION_TYPE)); | 4928 __ Branch(&slow, ne, a2, Operand(JS_FUNCTION_TYPE)); |
4929 | 4929 |
4930 // Fast-case: Invoke the function now. | 4930 // Fast-case: Invoke the function now. |
4931 // a1: pushed function | 4931 // a1: pushed function |
4932 ParameterCount actual(argc_); | 4932 ParameterCount actual(argc_); |
4933 | 4933 |
4934 if (ReceiverMightBeImplicit()) { | 4934 if (ReceiverMightBeImplicit()) { |
4935 Label call_as_function; | 4935 Label call_as_function; |
4936 __ LoadRoot(at, Heap::kTheHoleValueRootIndex); | 4936 __ LoadRoot(at, Heap::kTheHoleValueRootIndex); |
4937 __ Branch(&call_as_function, eq, t0, Operand(at)); | 4937 __ Branch(&call_as_function, eq, t0, Operand(at)); |
4938 __ InvokeFunction(a1, | 4938 __ InvokeFunction(a1, |
4939 actual, | 4939 actual, |
4940 JUMP_FUNCTION, | 4940 JUMP_FUNCTION, |
4941 NullCallWrapper(), | 4941 NullCallWrapper(), |
4942 CALL_AS_METHOD); | 4942 CALL_AS_METHOD); |
4943 __ bind(&call_as_function); | 4943 __ bind(&call_as_function); |
4944 } | 4944 } |
4945 __ InvokeFunction(a1, | 4945 __ InvokeFunction(a1, |
4946 actual, | 4946 actual, |
4947 JUMP_FUNCTION, | 4947 JUMP_FUNCTION, |
4948 NullCallWrapper(), | 4948 NullCallWrapper(), |
4949 CALL_AS_FUNCTION); | 4949 CALL_AS_FUNCTION); |
4950 | 4950 |
4951 // Slow-case: Non-function called. | 4951 // Slow-case: Non-function called. |
4952 __ bind(&slow); | 4952 __ bind(&slow); |
| 4953 // Check for function proxy. |
| 4954 __ Branch(&non_function, ne, a2, Operand(JS_FUNCTION_PROXY_TYPE)); |
| 4955 __ push(a1); // Put proxy as additional argument. |
| 4956 __ li(a0, Operand(argc_ + 1, RelocInfo::NONE)); |
| 4957 __ li(a2, Operand(0, RelocInfo::NONE)); |
| 4958 __ GetBuiltinEntry(a3, Builtins::CALL_FUNCTION_PROXY); |
| 4959 __ SetCallKind(t1, CALL_AS_FUNCTION); |
| 4960 { |
| 4961 Handle<Code> adaptor = |
| 4962 masm->isolate()->builtins()->ArgumentsAdaptorTrampoline(); |
| 4963 __ Jump(adaptor, RelocInfo::CODE_TARGET); |
| 4964 } |
| 4965 |
4953 // CALL_NON_FUNCTION expects the non-function callee as receiver (instead | 4966 // CALL_NON_FUNCTION expects the non-function callee as receiver (instead |
4954 // of the original receiver from the call site). | 4967 // of the original receiver from the call site). |
| 4968 __ bind(&non_function); |
4955 __ sw(a1, MemOperand(sp, argc_ * kPointerSize)); | 4969 __ sw(a1, MemOperand(sp, argc_ * kPointerSize)); |
4956 __ li(a0, Operand(argc_)); // Setup the number of arguments. | 4970 __ li(a0, Operand(argc_)); // Setup the number of arguments. |
4957 __ mov(a2, zero_reg); | 4971 __ mov(a2, zero_reg); |
4958 __ GetBuiltinEntry(a3, Builtins::CALL_NON_FUNCTION); | 4972 __ GetBuiltinEntry(a3, Builtins::CALL_NON_FUNCTION); |
4959 __ SetCallKind(t1, CALL_AS_METHOD); | 4973 __ SetCallKind(t1, CALL_AS_METHOD); |
4960 __ Jump(masm->isolate()->builtins()->ArgumentsAdaptorTrampoline(), | 4974 __ Jump(masm->isolate()->builtins()->ArgumentsAdaptorTrampoline(), |
4961 RelocInfo::CODE_TARGET); | 4975 RelocInfo::CODE_TARGET); |
4962 } | 4976 } |
4963 | 4977 |
4964 | 4978 |
(...skipping 1993 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6958 __ mov(result, zero_reg); | 6972 __ mov(result, zero_reg); |
6959 __ Ret(); | 6973 __ Ret(); |
6960 } | 6974 } |
6961 | 6975 |
6962 | 6976 |
6963 #undef __ | 6977 #undef __ |
6964 | 6978 |
6965 } } // namespace v8::internal | 6979 } } // namespace v8::internal |
6966 | 6980 |
6967 #endif // V8_TARGET_ARCH_MIPS | 6981 #endif // V8_TARGET_ARCH_MIPS |
OLD | NEW |