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/code-stubs.h" | 7 #include "src/code-stubs.h" |
8 #include "src/api-arguments.h" | 8 #include "src/api-arguments.h" |
9 #include "src/bootstrapper.h" | 9 #include "src/bootstrapper.h" |
10 #include "src/codegen.h" | 10 #include "src/codegen.h" |
(...skipping 5737 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5748 ExternalReference::invoke_accessor_getter_callback(isolate()); | 5748 ExternalReference::invoke_accessor_getter_callback(isolate()); |
5749 | 5749 |
5750 // +3 is to skip prolog, return address and name handle. | 5750 // +3 is to skip prolog, return address and name handle. |
5751 MemOperand return_value_operand( | 5751 MemOperand return_value_operand( |
5752 fp, (PropertyCallbackArguments::kReturnValueOffset + 3) * kPointerSize); | 5752 fp, (PropertyCallbackArguments::kReturnValueOffset + 3) * kPointerSize); |
5753 CallApiFunctionAndReturn(masm, api_function_address, thunk_ref, | 5753 CallApiFunctionAndReturn(masm, api_function_address, thunk_ref, |
5754 kStackUnwindSpace, kInvalidStackOffset, | 5754 kStackUnwindSpace, kInvalidStackOffset, |
5755 return_value_operand, NULL); | 5755 return_value_operand, NULL); |
5756 } | 5756 } |
5757 | 5757 |
5758 void AtomicsLoadStub::Generate(MacroAssembler* masm) { | |
5759 // TODO(binji) | |
5760 } | |
5761 | |
5762 #undef __ | 5758 #undef __ |
5763 | 5759 |
5764 } // namespace internal | 5760 } // namespace internal |
5765 } // namespace v8 | 5761 } // namespace v8 |
5766 | 5762 |
5767 #endif // V8_TARGET_ARCH_MIPS64 | 5763 #endif // V8_TARGET_ARCH_MIPS64 |
OLD | NEW |