2024-01-28 15:16:11 +00:00
|
|
|
/* SPDX-FileCopyrightText: © 2022-2024 Decompollaborate */
|
2022-09-26 14:15:28 +00:00
|
|
|
/* SPDX-License-Identifier: MIT */
|
|
|
|
|
2022-09-26 14:00:45 +00:00
|
|
|
#ifndef RABBITIZER_H
|
|
|
|
#define RABBITIZER_H
|
2022-10-09 20:51:47 +00:00
|
|
|
#pragma once
|
2022-09-26 14:00:45 +00:00
|
|
|
|
|
|
|
#include "common/Utils.h"
|
2022-09-26 14:15:28 +00:00
|
|
|
#include "common/RabbitizerVersion.h"
|
2022-09-26 14:00:45 +00:00
|
|
|
#include "common/RabbitizerConfig.h"
|
|
|
|
|
|
|
|
#include "instructions/RabbitizerOperandType.h"
|
|
|
|
#include "instructions/RabbitizerInstrId.h"
|
|
|
|
#include "instructions/RabbitizerInstrSuffix.h"
|
|
|
|
#include "instructions/RabbitizerInstrDescriptor.h"
|
|
|
|
#include "instructions/RabbitizerRegister.h"
|
2022-12-19 20:07:32 +00:00
|
|
|
#include "instructions/RabbitizerRegisterDescriptor.h"
|
2022-09-26 14:00:45 +00:00
|
|
|
#include "instructions/RabbitizerInstruction.h"
|
|
|
|
#include "instructions/RabbitizerInstructionRsp.h"
|
2023-04-30 03:07:07 +00:00
|
|
|
#include "instructions/RabbitizerInstructionR3000GTE.h"
|
2022-09-26 14:00:45 +00:00
|
|
|
#include "instructions/RabbitizerInstructionR5900.h"
|
|
|
|
|
|
|
|
#include "analysis/RabbitizerTrackedRegisterState.h"
|
|
|
|
#include "analysis/RabbitizerLoPairingInfo.h"
|
|
|
|
#include "analysis/RabbitizerRegistersTracker.h"
|
|
|
|
|
|
|
|
#endif
|