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_MIPS | 5 #if V8_TARGET_ARCH_MIPS |
6 | 6 |
7 #include "src/code-stubs.h" | 7 #include "src/code-stubs.h" |
8 #include "src/api-arguments.h" | 8 #include "src/api-arguments.h" |
9 #include "src/base/bits.h" | 9 #include "src/base/bits.h" |
10 #include "src/bootstrapper.h" | 10 #include "src/bootstrapper.h" |
(...skipping 5709 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5720 ExternalReference::invoke_accessor_getter_callback(isolate()); | 5720 ExternalReference::invoke_accessor_getter_callback(isolate()); |
5721 | 5721 |
5722 // +3 is to skip prolog, return address and name handle. | 5722 // +3 is to skip prolog, return address and name handle. |
5723 MemOperand return_value_operand( | 5723 MemOperand return_value_operand( |
5724 fp, (PropertyCallbackArguments::kReturnValueOffset + 3) * kPointerSize); | 5724 fp, (PropertyCallbackArguments::kReturnValueOffset + 3) * kPointerSize); |
5725 CallApiFunctionAndReturn(masm, api_function_address, thunk_ref, | 5725 CallApiFunctionAndReturn(masm, api_function_address, thunk_ref, |
5726 kStackUnwindSpace, kInvalidStackOffset, | 5726 kStackUnwindSpace, kInvalidStackOffset, |
5727 return_value_operand, NULL); | 5727 return_value_operand, NULL); |
5728 } | 5728 } |
5729 | 5729 |
| 5730 void AtomicsLoadStub::Generate(MacroAssembler* masm) { |
| 5731 // TODO(binji) |
| 5732 } |
5730 | 5733 |
5731 #undef __ | 5734 #undef __ |
5732 | 5735 |
5733 } // namespace internal | 5736 } // namespace internal |
5734 } // namespace v8 | 5737 } // namespace v8 |
5735 | 5738 |
5736 #endif // V8_TARGET_ARCH_MIPS | 5739 #endif // V8_TARGET_ARCH_MIPS |
OLD | NEW |