ACPI AML decompiler w/ CFG recovery and structured pseudocode
29

Configure Feed

Select the types of activity you want to include in your feed.

tobi / src / cf.h
177 B 11 lines
1#ifndef TOBI_CF_H 2#define TOBI_CF_H 3 4#include "dg.h" 5#include "ir.h" 6 7int tobi_cf_recover(tobi_ir *root, tobi_diag_list *diag); 8 9char *tobi_cf_dot(const tobi_ir *root); 10 11#endif