6
0
mirror of https://github.com/JKornev/hidden synced 2024-06-25 16:38:05 +00:00

Fixed an issue where Zydis breaks a project language determination algo on github

This commit is contained in:
JKornev 2021-08-24 23:53:10 +03:00
parent 5a678ce3c4
commit f47f5439da
20 changed files with 13 additions and 13 deletions

@ -34,7 +34,7 @@
/* Physical instruction encodings */
/* ---------------------------------------------------------------------------------------------- */
#include <Generated/InstructionEncodings.inc>
#include <Generated/InstructionEncodings.inc.h>
/* ---------------------------------------------------------------------------------------------- */
/* Decoder tree */
@ -47,7 +47,7 @@
#define ZYDIS_DEFINITION(encoding_id, id) \
{ ZYDIS_NODETYPE_DEFINITION_MASK | encoding_id, id }
#include <Generated/DecoderTables.inc>
#include <Generated/DecoderTables.inc.h>
#undef ZYDIS_INVALID
#undef ZYDIS_FILTER

@ -30,7 +30,7 @@
/* Constants */
/* ============================================================================================== */
#include <Generated/FormatterStrings.inc>
#include <Generated/FormatterStrings.inc.h>
/* ============================================================================================== */
/* Formatter functions */

@ -31,7 +31,7 @@
/* Constants */
/* ============================================================================================== */
#include <Generated/FormatterStrings.inc>
#include <Generated/FormatterStrings.inc.h>
static const ZydisShortString* const STR_PREF_REX[16] =
{

@ -32,7 +32,7 @@
/* Constants */
/* ============================================================================================== */
#include <Generated/FormatterStrings.inc>
#include <Generated/FormatterStrings.inc.h>
/* ============================================================================================== */
/* Formatter functions */

@ -30,9 +30,9 @@
/* Enum strings */
/* ============================================================================================== */
#include <Generated/EnumInstructionCategory.inc>
#include <Generated/EnumISASet.inc>
#include <Generated/EnumISAExt.inc>
#include <Generated/EnumInstructionCategory.inc.h>
#include <Generated/EnumISASet.inc.h>
#include <Generated/EnumISAExt.inc.h>
/* ============================================================================================== */
/* Exported functions */

@ -25,7 +25,7 @@
***************************************************************************************************/
#include <Zydis/Mnemonic.h>
#include <Generated/EnumMnemonic.inc>
#include <Generated/EnumMnemonic.inc.h>
/* ============================================================================================== */
/* Exported functions */

@ -30,7 +30,7 @@
/* Register strings */
/* ============================================================================================== */
#include <Generated/EnumRegister.inc>
#include <Generated/EnumRegister.inc.h>
/* ============================================================================================== */
/* Register-class mapping */

@ -40,7 +40,7 @@
# define ZYDIS_NOTMIN(x) , x
#endif
#include <Generated/InstructionDefinitions.inc>
#include <Generated/InstructionDefinitions.inc.h>
#undef ZYDIS_NOTMIN
@ -51,7 +51,7 @@
#define ZYDIS_OPERAND_DEFINITION(type, encoding, access) \
{ type, encoding, access }
#include <Generated/OperandDefinitions.inc>
#include <Generated/OperandDefinitions.inc.h>
#undef ZYDIS_OPERAND_DEFINITION
@ -59,7 +59,7 @@
/* Accessed CPU flags */
/* ---------------------------------------------------------------------------------------------- */
#include <Generated/AccessedFlags.inc>
#include <Generated/AccessedFlags.inc.h>
/* ---------------------------------------------------------------------------------------------- */