2022-09-26 11:15:28 -03:00
|
|
|
/* SPDX-FileCopyrightText: © 2022 Decompollaborate */
|
|
|
|
/* SPDX-License-Identifier: MIT */
|
|
|
|
|
2022-09-26 11:00:45 -03:00
|
|
|
#ifndef RABBITIZER_H
|
|
|
|
#define RABBITIZER_H
|
2022-10-09 17:51:47 -03:00
|
|
|
#pragma once
|
2022-09-26 11:00:45 -03:00
|
|
|
|
|
|
|
#include "common/Utils.h"
|
2022-09-26 11:15:28 -03:00
|
|
|
#include "common/RabbitizerVersion.h"
|
2022-09-26 11:00:45 -03: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 17:07:32 -03:00
|
|
|
#include "instructions/RabbitizerRegisterDescriptor.h"
|
2022-09-26 11:00:45 -03:00
|
|
|
#include "instructions/RabbitizerInstruction.h"
|
|
|
|
#include "instructions/RabbitizerInstructionRsp.h"
|
|
|
|
#include "instructions/RabbitizerInstructionR5900.h"
|
|
|
|
|
|
|
|
#include "analysis/RabbitizerTrackedRegisterState.h"
|
|
|
|
#include "analysis/RabbitizerLoPairingInfo.h"
|
|
|
|
#include "analysis/RabbitizerRegistersTracker.h"
|
|
|
|
|
|
|
|
#endif
|