mirror of
https://github.com/Decompollaborate/rabbitizer.git
synced 2024-12-27 12:16:07 +00:00
25 lines
608 B
Plaintext
25 lines
608 B
Plaintext
/* SPDX-FileCopyrightText: © 2023-2024 Decompollaborate */
|
|
/* SPDX-License-Identifier: MIT */
|
|
|
|
from __future__ import annotations
|
|
|
|
from .Enum import Enum
|
|
|
|
#define RABBITIZER_DEF_INSTR_ID(prefix, caseBits, name, ...) \
|
|
prefix##_##name: Enum
|
|
|
|
#define RABBITIZER_DEF_INSTR_ID_ALTNAME(prefix, caseBits, name, altname, ...) \
|
|
RABBITIZER_DEF_INSTR_ID(prefix, caseBits, name, __VA_ARGS__)
|
|
|
|
#define INSTRID_AVOID_USERDEF
|
|
|
|
class InstrId:
|
|
#include "InstrIds.inc"
|
|
|
|
RABBITIZER_DEF_INSTR_ID(ALL, , MAX)
|
|
|
|
#undef INSTRID_AVOID_USERDEF
|
|
|
|
#undef RABBITIZER_DEF_INSTR_ID
|
|
#undef RABBITIZER_DEF_INSTR_ID_ALTNAME
|