zydis/include/Zydis/Register.h

232 lines
7.1 KiB
C
Raw Normal View History

2016-05-26 03:25:48 +08:00
/***************************************************************************************************
Zyan Disassembler Library (Zydis)
2016-05-26 03:25:48 +08:00
Original Author : Florian Bernd
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
***************************************************************************************************/
2017-07-25 07:04:25 +08:00
/**
* @file
* @brief Utility functions and constants for registers.
*/
2016-05-26 03:25:48 +08:00
#ifndef ZYDIS_REGISTER_H
#define ZYDIS_REGISTER_H
#include <Zydis/Defines.h>
#include <Zydis/CommonTypes.h>
2017-12-03 06:46:05 +08:00
#include <Zydis/String.h>
2016-05-26 03:25:48 +08:00
#ifdef __cplusplus
extern "C" {
#endif
/* ============================================================================================== */
/* Enums and types */
/* ============================================================================================== */
/* ---------------------------------------------------------------------------------------------- */
/* Registers */
/* ---------------------------------------------------------------------------------------------- */
#include <Zydis/Generated/EnumRegister.h>
2016-05-26 03:25:48 +08:00
/* ---------------------------------------------------------------------------------------------- */
/* Register classes */
2016-05-26 03:25:48 +08:00
/* ---------------------------------------------------------------------------------------------- */
/**
* @brief Defines the @c ZydisRegisterClass datatype.
*/
2017-11-25 08:35:22 +08:00
typedef ZydisU8 ZydisRegisterClass;
2016-05-26 03:25:48 +08:00
/**
* @brief Values that represent zydis register-classes.
*/
enum ZydisRegisterClasses
{
ZYDIS_REGCLASS_INVALID,
/**
* @brief 8-bit general-purpose registers.
*/
ZYDIS_REGCLASS_GPR8,
/**
* @brief 16-bit general-purpose registers.
*/
ZYDIS_REGCLASS_GPR16,
/**
* @brief 32-bit general-purpose registers.
*/
ZYDIS_REGCLASS_GPR32,
/**
* @brief 64-bit general-purpose registers.
*/
ZYDIS_REGCLASS_GPR64,
/**
* @brief Floating point legacy registers.
*/
ZYDIS_REGCLASS_X87,
/**
* @brief Floating point multimedia registers.
*/
ZYDIS_REGCLASS_MMX,
/**
* @brief 128-bit vector registers.
*/
ZYDIS_REGCLASS_XMM,
/**
* @brief 256-bit vector registers.
*/
ZYDIS_REGCLASS_YMM,
/**
* @brief 512-bit vector registers.
*/
ZYDIS_REGCLASS_ZMM,
/**
* @brief Flags registers.
*/
ZYDIS_REGCLASS_FLAGS,
/**
* @brief Instruction-pointer registers.
*/
ZYDIS_REGCLASS_IP,
/**
* @brief Segment registers.
*/
ZYDIS_REGCLASS_SEGMENT,
/**
* @brief Test registers.
*/
ZYDIS_REGCLASS_TEST,
/**
* @brief Control registers.
*/
ZYDIS_REGCLASS_CONTROL,
/**
* @brief Debug registers.
*/
ZYDIS_REGCLASS_DEBUG,
/**
* @brief Mask registers.
*/
ZYDIS_REGCLASS_MASK,
/**
* @brief Bound registers.
*/
ZYDIS_REGCLASS_BOUND,
2018-02-27 04:57:53 +08:00
/**
* @brief Maximum value of this enum.
*/
ZYDIS_REGCLASS_MAX_VALUE = ZYDIS_REGCLASS_BOUND
2016-05-26 03:25:48 +08:00
};
/* ---------------------------------------------------------------------------------------------- */
/* Register width */
/* ---------------------------------------------------------------------------------------------- */
2018-03-01 01:15:18 +08:00
2016-11-21 21:55:17 +08:00
/**
2018-03-01 01:15:18 +08:00
* @brief Defines the @c ZydisRegisterWidth datatype.
2016-11-21 21:55:17 +08:00
*/
2017-11-25 08:35:22 +08:00
typedef ZydisU16 ZydisRegisterWidth;
2016-11-21 21:55:17 +08:00
/* ---------------------------------------------------------------------------------------------- */
2016-05-26 03:25:48 +08:00
/* ============================================================================================== */
/* Exported functions */
/* ============================================================================================== */
2016-05-26 03:25:48 +08:00
/**
* @brief Returns the register specified by the @c registerClass and the @c id.
2016-05-26 03:25:48 +08:00
*
* @param registerClass The register class.
* @param id The register id.
2016-05-26 03:25:48 +08:00
*
* @return The register specified by the @c registerClass and the @c id or @c ZYDIS_REGISTER_NONE,
* if an invalid parameter was passed.
2016-05-26 03:25:48 +08:00
*/
2017-11-25 08:35:22 +08:00
ZYDIS_EXPORT ZydisRegister ZydisRegisterEncode(ZydisRegisterClass registerClass, ZydisU8 id);
/**
* @brief Returns the id of the specified register.
*
* @param reg The register.
*
* @return The id of the specified register, or -1 if an invalid parameter was passed.
*/
2017-11-25 08:35:22 +08:00
ZYDIS_EXPORT ZydisI16 ZydisRegisterGetId(ZydisRegister reg);
2016-05-26 03:25:48 +08:00
/**
* @brief Returns the register-class of the specified register.
2016-05-26 03:25:48 +08:00
*
* @param reg The register.
*
* @return The register-class of the specified register.
2016-05-26 03:25:48 +08:00
*/
ZYDIS_EXPORT ZydisRegisterClass ZydisRegisterGetClass(ZydisRegister reg);
2016-05-26 03:25:48 +08:00
/**
2017-06-22 00:25:53 +08:00
* @brief Returns the width of the specified register.
*
* @param reg The register.
*
* @return The width of the specified register.
*/
ZYDIS_EXPORT ZydisRegisterWidth ZydisRegisterGetWidth(ZydisRegister reg);
/**
* @brief Returns the width of the specified register in 64-bit mode.
2016-05-26 03:25:48 +08:00
*
* @param reg The register.
*
* @return The width of the specified register.
2016-05-26 03:25:48 +08:00
*/
ZYDIS_EXPORT ZydisRegisterWidth ZydisRegisterGetWidth64(ZydisRegister reg);
2016-05-26 03:25:48 +08:00
/**
* @brief Returns the specified register string.
2016-05-26 03:25:48 +08:00
*
* @param reg The register.
*
* @return The register string or @c NULL, if an invalid register was passed.
2016-05-26 03:25:48 +08:00
*/
ZYDIS_EXPORT const char* ZydisRegisterGetString(ZydisRegister reg);
2016-05-26 03:25:48 +08:00
2017-12-03 06:46:05 +08:00
/**
* @brief Returns the specified register string as `ZydisStaticString`.
*
* @param reg The register.
*
* @return The register string or @c NULL, if an invalid register was passed.
2018-03-01 01:15:18 +08:00
*
2017-12-03 06:46:05 +08:00
* The `buffer` of the returned struct is guaranteed to be zero-terminated in this special case.
*/
ZYDIS_EXPORT const ZydisStaticString* ZydisRegisterGetStaticString(ZydisRegister reg);
2016-05-26 03:25:48 +08:00
/* ============================================================================================== */
#ifdef __cplusplus
}
#endif
#endif /* ZYDIS_REGISTER_H */