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 / dc.h
209 B 10 lines
1#ifndef TOBI_DC_H 2#define TOBI_DC_H 3 4#include "dg.h" 5#include "ir.h" 6 7/** Emit deterministic readable pseudocode for an IR tree. */ 8char *tobi_dc_emit(const tobi_ir *root, const tobi_diag_list *diag); 9 10#endif