Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(852)

Side by Side Diff: src/mips64/code-stubs-mips64.cc

Issue 1881383003: [Atomics] code stubs for atomic operations (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: fix unused function Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/mips/interface-descriptors-mips.cc ('k') | src/mips64/interface-descriptors-mips64.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
5758 5761
5759 #undef __ 5762 #undef __
5760 5763
5761 } // namespace internal 5764 } // namespace internal
5762 } // namespace v8 5765 } // namespace v8
5763 5766
5764 #endif // V8_TARGET_ARCH_MIPS64 5767 #endif // V8_TARGET_ARCH_MIPS64
OLDNEW
« no previous file with comments | « src/mips/interface-descriptors-mips.cc ('k') | src/mips64/interface-descriptors-mips64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698