mirror of
https://github.com/open-goal/jak-project
synced 2026-09-07 03:30:01 -04:00
5093b97cda
* wip decompiler ir * add AtomicOp stuff * fix windows build and warnings * add instruction parser * include * make minilzo shared * odr fix * a * fix merge conflicts * move decompiler into namespace * update the code coverage to include the decompiler * add demo test * add register use test to example test
12 lines
258 B
C++
12 lines
258 B
C++
#pragma once
|
|
|
|
#include <memory>
|
|
|
|
namespace decompiler {
|
|
class IR;
|
|
class Function;
|
|
class LinkedObjectFile;
|
|
class ControlFlowGraph;
|
|
|
|
std::shared_ptr<IR> build_cfg_ir(Function& function, ControlFlowGraph& cfg, LinkedObjectFile& file);
|
|
} // namespace decompiler
|