gencode.h 498 B

1234567891011121314151617181920
  1. /*
  2. * The Amsterdam Compiler Kit
  3. * See the copyright notice in the ACK home directory, in the file "Copyright".
  4. */
  5. #ifndef MACH_PROTO_NCG_GENCODE_H
  6. #define MACH_PROTO_NCG_GENCODE_H
  7. /* mach/proto/ncg/gencode.c */
  8. void out_init(char *filename);
  9. void out_finish(void);
  10. void tstoutput(void);
  11. void genstr(int stringno);
  12. string ad2str(addr_t ad);
  13. void praddr(addr_t ad);
  14. void gennl(void);
  15. void prtoken(token_p tp, int leadingchar);
  16. void printlabel(int labnum);
  17. #endif /* MACH_PROTO_NCG_GENCODE_H */