mirror of
https://github.com/open-goal/jak-project.git
synced 2024-11-23 06:09:57 +00:00
59 lines
1.3 KiB
C++
59 lines
1.3 KiB
C++
#pragma once
|
|
|
|
#include <map>
|
|
#include <optional>
|
|
#include <string>
|
|
#include <utility>
|
|
|
|
#include "AtomicOp.h"
|
|
#include "Env.h"
|
|
|
|
#include "common/goos/Object.h"
|
|
#include "common/util/Assert.h"
|
|
|
|
#include "decompiler/Disasm/Instruction.h"
|
|
#include "decompiler/Disasm/Register.h"
|
|
#include "decompiler/IR2/IR2_common.h"
|
|
|
|
namespace decompiler {
|
|
|
|
struct OpenGOALAsm {
|
|
enum class InstructionModifiers {
|
|
BROADCAST,
|
|
DEST_MASK,
|
|
FTF,
|
|
FSF,
|
|
OFFSET,
|
|
SWAP_FIRST_TWO_SOURCE_ARGS,
|
|
ACC_THIRD_SRC_ARG,
|
|
QWORD_CAST,
|
|
SKIP_IT
|
|
};
|
|
|
|
struct Function {
|
|
std::string funcTemplate = "";
|
|
std::vector<InstructionModifiers> modifiers = {};
|
|
|
|
bool allows_modifier(InstructionModifiers);
|
|
};
|
|
|
|
OpenGOALAsm(Instruction _instr);
|
|
|
|
OpenGOALAsm(Instruction _instr,
|
|
std::optional<RegisterAccess> _dst,
|
|
const std::vector<std::optional<RegisterAccess>>& _src);
|
|
|
|
bool valid = true;
|
|
bool todo = false;
|
|
bool skip = false;
|
|
Instruction m_instr;
|
|
std::optional<RegisterAccess> m_dst;
|
|
std::vector<std::optional<RegisterAccess>> m_src;
|
|
OpenGOALAsm::Function func;
|
|
|
|
std::string full_function_name();
|
|
std::vector<goos::Object> get_args(const std::vector<DecompilerLabel>& labels, const Env& env);
|
|
};
|
|
extern const std::map<InstructionKind, OpenGOALAsm::Function> MIPS_ASM_TO_OPEN_GOAL_FUNCS;
|
|
} // namespace decompiler
|