mirror of
https://github.com/open-goal/jak-project.git
synced 2024-11-23 14:20:07 +00:00
f9d8fcd6e4
* mips 2 c basic version, not yet tested * calling works without crashing, but the function doesn't * it works * add test * cleanup and actually add the test * dont use mips2c by default for font * clean up formatting
20 lines
478 B
C++
20 lines
478 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <unordered_map>
|
|
#include <vector>
|
|
|
|
namespace decompiler {
|
|
class Form;
|
|
class Function;
|
|
class FormPool;
|
|
class DecompilerTypeSystem;
|
|
struct LocalVarOverride;
|
|
bool convert_to_expressions(
|
|
Form* top_level_form,
|
|
FormPool& pool,
|
|
Function& f,
|
|
const std::vector<std::string>& arg_names,
|
|
const std::unordered_map<std::string, LocalVarOverride>& var_override_map,
|
|
const DecompilerTypeSystem& dts);
|
|
} // namespace decompiler
|