34 lines
863 B
C
34 lines
863 B
C
|
// This file is part of AsmJit project <https://asmjit.com>
|
||
|
//
|
||
|
// See asmjit.h or LICENSE.md for license and copyright information
|
||
|
// SPDX-License-Identifier: Zlib
|
||
|
|
||
|
#ifndef ASMJIT_X86_X86FUNC_P_H_INCLUDED
|
||
|
#define ASMJIT_X86_X86FUNC_P_H_INCLUDED
|
||
|
|
||
|
#include "../core/func.h"
|
||
|
|
||
|
ASMJIT_BEGIN_SUB_NAMESPACE(x86)
|
||
|
|
||
|
//! \cond INTERNAL
|
||
|
//! \addtogroup asmjit_x86
|
||
|
//! \{
|
||
|
|
||
|
//! X86-specific function API (calling conventions and other utilities).
|
||
|
namespace FuncInternal {
|
||
|
|
||
|
//! Initialize `CallConv` structure (X86 specific).
|
||
|
Error initCallConv(CallConv& cc, CallConvId ccId, const Environment& environment) noexcept;
|
||
|
|
||
|
//! Initialize `FuncDetail` (X86 specific).
|
||
|
Error initFuncDetail(FuncDetail& func, const FuncSignature& signature, uint32_t registerSize) noexcept;
|
||
|
|
||
|
} // {FuncInternal}
|
||
|
|
||
|
//! \}
|
||
|
//! \endcond
|
||
|
|
||
|
ASMJIT_END_SUB_NAMESPACE
|
||
|
|
||
|
#endif // ASMJIT_X86_X86FUNC_P_H_INCLUDED
|