ACPI AML decompiler w/ CFG recovery and structured pseudocode
1#ifndef TOBI_CF_H
2#define TOBI_CF_H
3
4#include "dg.h"
5#include "ir.h"
6
7/** Recover and validate structured control flow already delimited by AML packages. */
8int tobi_cf_recover(tobi_ir *root, tobi_diag_list *diag);
9
10/** Emit a deterministic Graphviz DOT view of recovered control flow. */
11char *tobi_cf_dot(const tobi_ir *root);
12
13#endif