goflat.h 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. /*
  2. * Copyright 2004-2006 Adrian Thurston <thurston@complang.org>
  3. * 2004 Erich Ocean <eric.ocean@ampede.com>
  4. * 2005 Alan West <alan@alanz.com>
  5. */
  6. /* This file is part of Ragel.
  7. *
  8. * Ragel is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation; either version 2 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * Ragel is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with Ragel; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  21. */
  22. #ifndef _GOFLAT_H
  23. #define _GOFLAT_H
  24. #include <iostream>
  25. #include "gotablish.h"
  26. /* Forwards. */
  27. struct CodeGenData;
  28. struct NameInst;
  29. struct RedTransAp;
  30. struct RedStateAp;
  31. /*
  32. * GoFlatCodeGen
  33. */
  34. class GoFlatCodeGen
  35. : public GoTablishCodeGen
  36. {
  37. public:
  38. GoFlatCodeGen( ostream &out )
  39. : GoTablishCodeGen(out) {}
  40. virtual ~GoFlatCodeGen() { }
  41. protected:
  42. std::ostream &TO_STATE_ACTION_SWITCH( int level );
  43. std::ostream &FROM_STATE_ACTION_SWITCH( int level );
  44. std::ostream &EOF_ACTION_SWITCH( int level );
  45. std::ostream &ACTION_SWITCH( int level );
  46. std::ostream &KEYS();
  47. std::ostream &INDICIES();
  48. std::ostream &FLAT_INDEX_OFFSET();
  49. std::ostream &KEY_SPANS();
  50. std::ostream &TO_STATE_ACTIONS();
  51. std::ostream &FROM_STATE_ACTIONS();
  52. std::ostream &EOF_ACTIONS();
  53. std::ostream &EOF_TRANS();
  54. std::ostream &TRANS_TARGS();
  55. std::ostream &TRANS_ACTIONS();
  56. void LOCATE_TRANS();
  57. std::ostream &COND_INDEX_OFFSET();
  58. void COND_TRANSLATE();
  59. std::ostream &CONDS();
  60. std::ostream &COND_KEYS();
  61. std::ostream &COND_KEY_SPANS();
  62. virtual std::ostream &TO_STATE_ACTION( RedStateAp *state );
  63. virtual std::ostream &FROM_STATE_ACTION( RedStateAp *state );
  64. virtual std::ostream &EOF_ACTION( RedStateAp *state );
  65. virtual std::ostream &TRANS_ACTION( RedTransAp *trans );
  66. virtual void writeData();
  67. virtual void writeExec();
  68. };
  69. #endif