cgdebug.h 572 B

1234567891011121314151617181920
  1. #ifndef CGDEBUG_H
  2. #define CGDEBUG_H
  3. #include "cgflow.h"
  4. bool cgVerify( std::ostream &o,CGExp *exp );
  5. bool cgVerify( std::ostream &o,CGStm *stm );
  6. bool cgVerify( std::ostream &o,CGFun *fun );
  7. std::ostream &operator<<( std::ostream &out,CGStm *stm );
  8. std::ostream &operator<<( std::ostream &out,CGExp *exp );
  9. std::ostream &operator<<( std::ostream &out,CGFun *fun );
  10. std::ostream &operator<<( std::ostream &out,CGFlow *flow );
  11. std::ostream &operator<<( std::ostream &out,const CGStmSeq &seq );
  12. std::ostream &operator<<( std::ostream &out,const CGAsmSeq &seq );
  13. #endif