home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / gnat-2.06-src.tgz / tar.out / fsf / gnat / ada / a-misc.h < prev    next >
C/C++ Source or Header  |  1996-09-28  |  5KB  |  104 lines

  1. /****************************************************************************/
  2. /*                                                                          */
  3. /*                         GNAT COMPILER COMPONENTS                         */
  4. /*                                                                          */
  5. /*                               A - M I S C                                */
  6. /*                                                                          */
  7. /*                              C Header File                               */
  8. /*                                                                          */
  9. /*                            $Revision: 1.19 $                             */
  10. /*                                                                          */
  11. /*           Copyright (c) 1992,1993,1994 NYU, All Rights Reserved          */
  12. /*                                                                          */
  13. /* GNAT is free software;  you can  redistribute it  and/or modify it under */
  14. /* terms of the  GNU General Public License as published  by the Free Soft- */
  15. /* ware  Foundation;  either version 2,  or (at your option) any later ver- */
  16. /* sion.  GNAT is distributed in the hope that it will be useful, but WITH- */
  17. /* OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY */
  18. /* or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License */
  19. /* for  more details.  You should have  received  a copy of the GNU General */
  20. /* Public License  distributed with GNAT;  see file COPYING.  If not, write */
  21. /* to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
  22. /*                                                                          */
  23. /****************************************************************************/
  24.  
  25. /* Definitions to access the front-end's character translation tables.  */
  26. extern char csets__fold_lower[], csets__fold_upper[];
  27. #define Fold_Lower(C) csets__fold_lower[C]
  28. #define Fold_Upper(C) csets__fold_upper[C]
  29.  
  30. /* Variables expected by the gcc back-end for reference or merely linking
  31.    purposes:  */
  32.  
  33. /* A string identifing the compiler.  */
  34. extern char *language_string;
  35.  
  36. /* The gcc back-end sets this in jump.c.  */
  37. extern int current_function_returns_null;
  38.  
  39. /* Ada language-specific GC tree codes.  */
  40. #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) SYM,
  41. enum gnat_tree_code {
  42.   __DUMMY = LAST_AND_UNUSED_TREE_CODE,
  43. #include "a-tree.def"
  44.   LAST_GNAT_TREE_CODE
  45. };
  46. #undef DEFTREECODE
  47.  
  48. /* Routines expected by the gcc back-end for call-back or merely linking
  49.    purposes. They must have exactly the same prototype and name as expected
  50.    by GCC.  */
  51.  
  52. /* Decode all the language specific options that cannot be decoded by GCC. The
  53.    option decoding phase of GCC calls this routine on the flags that it cannot
  54.    decode. This routine returns 1 if it is successful, otherwise it
  55.    returns 0. */
  56. extern int lang_decode_option    PROTO((char *));
  57.  
  58. /* Perform all the initialization steps that are language-specific.  */
  59. extern void lang_init        PROTO((void));
  60.  
  61. /* Perform all the finalization steps that are language-specific.  */
  62. extern void lang_finish        PROTO((void));
  63.  
  64. /* Print any language-specific compilation statistics.  */
  65. extern void print_lang_statistics    PROTO((void));
  66.  
  67. /* Return a short string identifying this language to the debugger.  */
  68. extern char *lang_identify    PROTO((void));
  69.  
  70. #ifdef BUFSIZ
  71. /* Hooks for `print_node'.  */
  72. extern void print_lang_decl    PROTO((FILE *, tree, int));
  73. extern void print_lang_type    PROTO((FILE *, tree, int));
  74. extern void print_lang_identifier PROTO((FILE *, tree, int));
  75. #endif
  76.  
  77. /* Record the current code position in GNAT_NODE.  */
  78. extern void record_code_position PROTO((Node_Id));
  79.  
  80. /* Insert the code for GNAT_NODE at the position saved for that node.  */
  81. extern void insert_code_for    PROTO((Node_Id));
  82.  
  83. /* Performs whatever initialization steps needed by the language-dependent
  84.    lexical analyzer.  */
  85. extern void init_lex        PROTO((void));
  86.  
  87. /* Sets some debug flags for the parser. It does nothing here.  */
  88. extern void set_yydebug        PROTO((int));
  89.  
  90. /* Utility routines created for the tree translator's sake. Their prototypes
  91.    can be changed as desired.  */
  92.  
  93. /* Make a TRANSFORM_EXPR to later expand GNAT_NODE into an object
  94.    of GNU_TYPE.  */
  95. extern tree make_transform_expr PROTO((Node_Id, tree));
  96.  
  97. /* GNU_TYPE is the type of a subprogram parameter.  Determine from the type if
  98.    it should be passed by reference.  */
  99. extern int pass_by_ref        PROTO((tree));
  100.  
  101.  
  102. /* elaboration routines for the front end */
  103. extern   void elab_all_gnat          PROTO((void));
  104.