as_analyzer.h 297 B

12345678910111213141516
  1. #ifndef FVM_AS_ANALYZER_H_
  2. #define FVM_AS_ANALYZER_H_
  3. #include "as_parser.h"
  4. #include "utils.h"
  5. struct sym_table_entry;
  6. struct sym_table {
  7. int size;
  8. int cap;
  9. struct sym_table_entry *buf;
  10. };
  11. struct sym_table analyze_prog(allocator_t alct, prog_t prog);
  12. #endif // FVM_AS_ANALYZER_H_