blob: 7d9962e5df13277c502f4febce5725c434541352 [file]
/*
* Copyright (C) 2010-2022 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*/
#pragma once
#include <JavaScriptCore/BytecodeConventions.h>
#include <JavaScriptCore/CCallHelpers.h>
#include <JavaScriptCore/FPRInfo.h>
#include <JavaScriptCore/GPRInfo.h>
#include <JavaScriptCore/JSCJSValue.h>
#include <JavaScriptCore/JSString.h>
#include <JavaScriptCore/MacroAssembler.h>
#include <wtf/TZoneMalloc.h>
#if ENABLE(JIT)
namespace JSC {
class JSInterfaceJIT : public CCallHelpers, public GPRInfo, public FPRInfo {
WTF_MAKE_TZONE_NON_HEAP_ALLOCATABLE(JSInterfaceJIT);
public:
JSInterfaceJIT(VM* vm = nullptr, CodeBlock* codeBlock = nullptr)
: CCallHelpers(codeBlock)
, m_vm(vm)
{
}
inline Jump emitLoadJSCell(VirtualRegister, RegisterID payload);
inline Jump emitLoadInt32(VirtualRegister, RegisterID dst);
inline Jump emitLoadDouble(VirtualRegister, FPRegisterID dst, RegisterID scratch);
inline void emitLoadJSValue(VirtualRegister, GPRReg dst);
VM* vm() const { return m_vm; }
VM* const m_vm;
};
inline JSInterfaceJIT::Jump JSInterfaceJIT::emitLoadJSCell(VirtualRegister virtualRegister, RegisterID dst)
{
load64(addressFor(virtualRegister), dst);
return branchIfNotCell(dst);
}
inline JSInterfaceJIT::Jump JSInterfaceJIT::emitLoadInt32(VirtualRegister virtualRegister, RegisterID dst)
{
load64(addressFor(virtualRegister), dst);
Jump notInt32 = branchIfNotInt32(dst);
zeroExtend32ToWord(dst, dst);
return notInt32;
}
inline JSInterfaceJIT::Jump JSInterfaceJIT::emitLoadDouble(VirtualRegister virtualRegister, FPRegisterID dst, RegisterID scratch)
{
load64(addressFor(virtualRegister), scratch);
Jump notNumber = branchIfNotNumber(scratch);
Jump notInt = branchIfNotInt32(scratch);
convertInt32ToDouble(scratch, dst);
Jump done = jump();
notInt.link(this);
unboxDouble(scratch, scratch, dst);
done.link(this);
return notNumber;
}
inline void JSInterfaceJIT::emitLoadJSValue(VirtualRegister virtualRegister, GPRReg dst)
{
loadValue(addressFor(virtualRegister), dst);
}
} // namespace JSC
#endif // ENABLE(JIT)