mirror of
https://github.com/open-goal/jak-project
synced 2026-07-11 15:28:58 -04:00
add support for non virtual states (#764)
* add support for non virtual states * typecheck go * start on virtual states * more support for virtual states * offline passes * fix tests * use behavior shortcut instead of lambda * final cleanup of virtual go * unused var warnings and fix inconsistent enum decompile order on win vs linux * fix thread safety bug with goal symbol table and vif1 interrupt handler * fix type mistake
This commit is contained in:
@@ -39,6 +39,9 @@ class LinkedObjectFile {
|
||||
LinkedWord::Kind kind);
|
||||
void symbol_link_offset(int source_segment, int source_offset, const char* name);
|
||||
Function& get_function_at_label(int label_id);
|
||||
Function* try_get_function_at_label(int label_id);
|
||||
Function* try_get_function_at_label(const DecompilerLabel& label);
|
||||
|
||||
const Function* try_get_function_at_label(int label_id) const;
|
||||
const Function* try_get_function_at_label(const DecompilerLabel& label) const;
|
||||
std::string get_label_name(int label_id) const;
|
||||
|
||||
Reference in New Issue
Block a user