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

Side by Side Diff: src/mips/code-stubs-mips.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/js/harmony-atomics.js ('k') | src/mips/interface-descriptors-mips.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_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
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
OLDNEW
« no previous file with comments | « src/js/harmony-atomics.js ('k') | src/mips/interface-descriptors-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698