blob: 9edf63b7224acf247d69d08f5ae29d306599929f [file] [log] [blame]
Ben Murdochb8a8cc12014-11-26 15:28:44 +00001// 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
3// found in the LICENSE file.
4
Ben Murdochb8a8cc12014-11-26 15:28:44 +00005#if V8_TARGET_ARCH_X87
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(!ebx.is(StoreDescriptor::ReceiverRegister()) &&
20 !ebx.is(StoreDescriptor::NameRegister()) &&
21 !ebx.is(StoreDescriptor::ValueRegister()));
22 __ pop(ebx);
23 __ push(StoreDescriptor::ReceiverRegister());
24 __ push(StoreDescriptor::NameRegister());
25 __ push(StoreDescriptor::ValueRegister());
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000026 __ push(Immediate(Smi::FromInt(language_mode)));
Ben Murdochb8a8cc12014-11-26 15:28:44 +000027 __ push(ebx); // return address
28
29 // Do tail-call to runtime routine.
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000030 __ TailCallRuntime(Runtime::kSetProperty);
Ben Murdochb8a8cc12014-11-26 15:28:44 +000031}
32
33
34#undef __
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000035} // namespace internal
36} // namespace v8
Ben Murdochb8a8cc12014-11-26 15:28:44 +000037
38#endif // V8_TARGET_ARCH_X87