42 lines
1.3 KiB
C++
42 lines
1.3 KiB
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_ARM_A64INSTAPI_P_H_INCLUDED
|
|
#define ASMJIT_ARM_A64INSTAPI_P_H_INCLUDED
|
|
|
|
#include "../core/inst.h"
|
|
#include "../core/operand.h"
|
|
|
|
ASMJIT_BEGIN_SUB_NAMESPACE(a64)
|
|
|
|
//! \cond INTERNAL
|
|
//! \addtogroup asmjit_a64
|
|
//! \{
|
|
|
|
namespace InstInternal {
|
|
|
|
#ifndef ASMJIT_NO_TEXT
|
|
Error ASMJIT_CDECL instIdToString(Arch arch, InstId instId, String& output) noexcept;
|
|
InstId ASMJIT_CDECL stringToInstId(Arch arch, const char* s, size_t len) noexcept;
|
|
#endif // !ASMJIT_NO_TEXT
|
|
|
|
#ifndef ASMJIT_NO_VALIDATION
|
|
Error ASMJIT_CDECL validate(Arch arch, const BaseInst& inst, const Operand_* operands, size_t opCount, ValidationFlags validationFlags) noexcept;
|
|
#endif // !ASMJIT_NO_VALIDATION
|
|
|
|
#ifndef ASMJIT_NO_INTROSPECTION
|
|
Error ASMJIT_CDECL queryRWInfo(Arch arch, const BaseInst& inst, const Operand_* operands, size_t opCount, InstRWInfo* out) noexcept;
|
|
Error ASMJIT_CDECL queryFeatures(Arch arch, const BaseInst& inst, const Operand_* operands, size_t opCount, CpuFeatures* out) noexcept;
|
|
#endif // !ASMJIT_NO_INTROSPECTION
|
|
|
|
} // {InstInternal}
|
|
|
|
//! \}
|
|
//! \endcond
|
|
|
|
ASMJIT_END_SUB_NAMESPACE
|
|
|
|
#endif // ASMJIT_ARM_A64INSTAPI_P_H_INCLUDED
|