blob: 9d734338bb94b3e2a6954ad0f1af9c14a85f1537 [file] [log] [blame]
Ben Murdochb8a8cc12014-11-26 15:28:44 +00001// Copyright 2014 the V8 project authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
Ben Murdochb8a8cc12014-11-26 15:28:44 +00005#if V8_TARGET_ARCH_X64
6
7#include "src/ic/ic.h"
8#include "src/ic/ic-compiler.h"
9
10namespace v8 {
11namespace internal {
12
13#define __ ACCESS_MASM(masm)
14
15
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000016void PropertyICCompiler::GenerateRuntimeSetProperty(
17 MacroAssembler* masm, LanguageMode language_mode) {
Ben Murdochb8a8cc12014-11-26 15:28:44 +000018 // Return address is on the stack.
19 DCHECK(!rbx.is(StoreDescriptor::ReceiverRegister()) &&
20 !rbx.is(StoreDescriptor::NameRegister()) &&
21 !rbx.is(StoreDescriptor::ValueRegister()));
22
23 __ PopReturnAddressTo(rbx);
24 __ Push(StoreDescriptor::ReceiverRegister());
25 __ Push(StoreDescriptor::NameRegister());
26 __ Push(StoreDescriptor::ValueRegister());
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000027 __ Push(Smi::FromInt(language_mode));
Ben Murdochb8a8cc12014-11-26 15:28:44 +000028 __ PushReturnAddressFrom(rbx);
29
30 // Do tail-call to runtime routine.
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000031 __ TailCallRuntime(Runtime::kSetProperty);
Ben Murdochb8a8cc12014-11-26 15:28:44 +000032}
33
34
35#undef __
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000036} // namespace internal
37} // namespace v8
Ben Murdochb8a8cc12014-11-26 15:28:44 +000038
39#endif // V8_TARGET_ARCH_X64