Sha256: 356a0190bf6bdb51c6c9b10caebdcc7897a39f1611ab682d1ec918d96dfd99e2
Contents?: true
Size: 791 Bytes
Versions: 5
Compression:
Stored size: 791 Bytes
Contents
// Copyright 2014 the V8 project authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #if V8_TARGET_ARCH_ARM #include "src/ic/ic.h" #include "src/ic/ic-compiler.h" namespace v8 { namespace internal { #define __ ACCESS_MASM(masm) void PropertyICCompiler::GenerateRuntimeSetProperty( MacroAssembler* masm, LanguageMode language_mode) { __ Push(StoreDescriptor::ReceiverRegister(), StoreDescriptor::NameRegister(), StoreDescriptor::ValueRegister()); __ mov(r0, Operand(Smi::FromInt(language_mode))); __ Push(r0); // Do tail-call to runtime routine. __ TailCallRuntime(Runtime::kSetProperty); } #undef __ } // namespace internal } // namespace v8 #endif // V8_TARGET_ARCH_ARM
Version data entries
5 entries across 4 versions & 1 rubygems