LCOV - code coverage report
Current view: top level - gcc/m2/gm2-gcc - m2pp.cc (source / functions) Coverage Total Hit
Test: gcc.info Lines: 0.3 % 1589 4
Test Date: 2024-12-21 13:15:12 Functions: 0.8 % 120 1
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: - 0 0

             Branch data     Line data    Source code
       1                 :             : /* m2pp.c pretty print trees, output in Modula-2 where possible.
       2                 :             : 
       3                 :             : Copyright (C) 2007-2024 Free Software Foundation, Inc.
       4                 :             : Contributed by Gaius Mulley <gaius@glam.ac.uk>.
       5                 :             : 
       6                 :             : This file is part of GNU Modula-2.
       7                 :             : 
       8                 :             : GNU Modula-2 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 3, or (at your option)
      11                 :             : any later version.
      12                 :             : 
      13                 :             : GNU Modula-2 is distributed in the hope that it will be useful, but
      14                 :             : WITHOUT ANY WARRANTY; without even the implied warranty of
      15                 :             : MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
      16                 :             : General Public License for more details.
      17                 :             : 
      18                 :             : You should have received a copy of the GNU General Public License
      19                 :             : along with GNU Modula-2; see the file COPYING3.  If not see
      20                 :             : <http://www.gnu.org/licenses/>.  */
      21                 :             : 
      22                 :             : #include "gcc-consolidation.h"
      23                 :             : 
      24                 :             : #include "../m2-tree.h"
      25                 :             : #include "../gm2-lang.h"
      26                 :             : 
      27                 :             : #include "m2tree.h"
      28                 :             : #include "m2expr.h"
      29                 :             : #include "m2type.h"
      30                 :             : #include "m2decl.h"
      31                 :             : #include "m2options.h"
      32                 :             : #include "m2langdump.h"
      33                 :             : 
      34                 :             : #define M2PP_C
      35                 :             : #include "m2pp.h"
      36                 :             : 
      37                 :             : #define GM2
      38                 :             : /* VERBOSE_TYPE_DESC enables type descriptions to be generated in the
      39                 :             :    assignment and during variable declarations.  It generates
      40                 :             :    moderately ugly output, although the assignment type information
      41                 :             :    can be useful when tracking down non gimple complient trees (during
      42                 :             :    assignment).  */
      43                 :             : #undef VERBOSE_TYPE_DESC
      44                 :             : 
      45                 :             : const char *m2pp_dump_description[M2PP_DUMP_END] =
      46                 :             : {
      47                 :             :   "interactive user invoked output",
      48                 :             :   "modula-2 gimple trees pre genercize",
      49                 :             :   "modula-2 gimple trees post genercize",
      50                 :             : };
      51                 :             : 
      52                 :             : namespace modula2 {
      53                 :             : 
      54                 :             : #undef DEBUGGING
      55                 :             : 
      56                 :             : typedef struct pretty_t
      57                 :             : {
      58                 :             :   m2pp_dump_kind output;
      59                 :             :   bool needs_space;
      60                 :             :   bool needs_indent;
      61                 :             :   int curpos;
      62                 :             :   int indent;
      63                 :             :   bool issued_begin;
      64                 :             :   bool in_vars;
      65                 :             :   bool in_types;
      66                 :             :   tree block;
      67                 :             :   int bits;
      68                 :             : } pretty;
      69                 :             : 
      70                 :             : typedef struct m2stack_t
      71                 :             : {
      72                 :             :   tree value;
      73                 :             :   struct m2stack_t *next;
      74                 :             : } stack;
      75                 :             : 
      76                 :             : /* Prototypes.  */
      77                 :             : 
      78                 :             : static pretty *initPretty (m2pp_dump_kind kind, int bits);
      79                 :             : static pretty *dupPretty (pretty *s);
      80                 :             : static int getindent (pretty *s);
      81                 :             : static void setindent (pretty *s, int n);
      82                 :             : static int getcurpos (pretty *s);
      83                 :             : static void m2pp_identifier (pretty *s, tree t);
      84                 :             : static void m2pp_needspace (pretty *s);
      85                 :             : static void m2pp_function (pretty *s, tree t);
      86                 :             : static void m2pp_function_header (pretty *s, tree t);
      87                 :             : static void m2pp_function_vars (pretty *s, tree t);
      88                 :             : static void m2pp_statement_sequence (pretty *s, tree t);
      89                 :             : static void m2pp_print (pretty *s, const char *p);
      90                 :             : static void m2pp_print_char (pretty *s, char ch);
      91                 :             : static void m2pp_parameter (pretty *s, tree t);
      92                 :             : static void m2pp_type (pretty *s, tree t);
      93                 :             : static void m2pp_ident_pointer (pretty *s, tree t);
      94                 :             : static void m2pp_set_type (pretty *s, tree t);
      95                 :             : static void m2pp_enum (pretty *s, tree t);
      96                 :             : static void m2pp_array (pretty *s, tree t);
      97                 :             : static void m2pp_subrange (pretty *s, tree t);
      98                 :             : static void m2pp_gimpified (pretty *s, tree t);
      99                 :             : static void m2pp_pointer_type (pretty *s, tree t);
     100                 :             : static void m2pp_record_type (pretty *s, tree t);
     101                 :             : static void m2pp_union_type (pretty *s, tree t);
     102                 :             : static void m2pp_simple_type (pretty *s, tree t);
     103                 :             : static void m2pp_expression (pretty *s, tree t);
     104                 :             : static void m2pp_relop (pretty *s, tree t, const char *p);
     105                 :             : static void m2pp_simple_expression (pretty *s, tree t);
     106                 :             : static void m2pp_statement_sequence (pretty *s, tree t);
     107                 :             : static void m2pp_unknown (pretty *s, const char *s1, const char *s2);
     108                 :             : static void m2pp_statement (pretty *s, tree t);
     109                 :             : static void m2pp_assignment (pretty *s, tree t);
     110                 :             : static void m2pp_designator (pretty *s, tree t);
     111                 :             : static void m2pp_conditional (pretty *s, tree t);
     112                 :             : static void m2pp_label_expr (pretty *s, tree t);
     113                 :             : static void m2pp_label_decl (pretty *s, tree t);
     114                 :             : static void m2pp_goto (pretty *s, tree t);
     115                 :             : static void m2pp_list (pretty *s, tree t);
     116                 :             : static void m2pp_offset (pretty *s, tree t);
     117                 :             : static void m2pp_indirect_ref (pretty *s, tree t);
     118                 :             : static void m2pp_integer_cst (pretty *s, tree t);
     119                 :             : static void m2pp_real_cst (pretty *s, tree t);
     120                 :             : static void m2pp_string_cst (pretty *s, tree t);
     121                 :             : static void m2pp_integer (pretty *s, tree t);
     122                 :             : static void m2pp_addr_expr (pretty *s, tree t);
     123                 :             : static void m2pp_nop (pretty *s, tree t);
     124                 :             : static void m2pp_convert (pretty *s, tree t);
     125                 :             : static void m2pp_var_decl (pretty *s, tree t);
     126                 :             : static void m2pp_binary (pretty *s, tree t, const char *p);
     127                 :             : static void m2pp_unary (pretty *s, tree t, const char *p);
     128                 :             : static void m2pp_call_expr (pretty *s, tree t);
     129                 :             : static void m2pp_procedure_call (pretty *s, tree t);
     130                 :             : static void m2pp_ssa (pretty *s, tree t);
     131                 :             : static void m2pp_block (pretty *s, tree t);
     132                 :             : static void m2pp_block_list (pretty *s, tree t);
     133                 :             : static void m2pp_var_list (pretty *s, tree t);
     134                 :             : static void m2pp_bind_expr (pretty *s, tree t);
     135                 :             : static void m2pp_return_expr (pretty *s, tree t);
     136                 :             : static void m2pp_result_decl (pretty *s, tree t);
     137                 :             : static void m2pp_try_block (pretty *s, tree t);
     138                 :             : static void m2pp_cleanup_point_expr (pretty *s, tree t);
     139                 :             : static void m2pp_handler (pretty *s, tree t);
     140                 :             : static void m2pp_component_ref (pretty *s, tree t);
     141                 :             : static void m2pp_array_ref (pretty *s, tree t);
     142                 :             : static void m2pp_begin (pretty *s);
     143                 :             : static void m2pp_var (pretty *s);
     144                 :             : static void m2pp_types (pretty *s);
     145                 :             : static void m2pp_decl_expr (pretty *s, tree t);
     146                 :             : static void m2pp_var_type_decl (pretty *s, tree t);
     147                 :             : static void m2pp_non_lvalue_expr (pretty *s, tree t);
     148                 :             : static void m2pp_procedure_type (pretty *s, tree t);
     149                 :             : static void m2pp_param_type (pretty *s, tree t);
     150                 :             : static void m2pp_type_lowlevel (pretty *s, tree t);
     151                 :             : static void m2pp_try_catch_expr (pretty *s, tree t);
     152                 :             : static void m2pp_throw (pretty *s, tree t);
     153                 :             : static void m2pp_catch_expr (pretty *s, tree t);
     154                 :             : static void m2pp_try_finally_expr (pretty *s, tree t);
     155                 :             : static void m2pp_complex (pretty *s, tree t);
     156                 :             : static void killPretty (pretty *s);
     157                 :             : static void m2pp_compound_expression (pretty *s, tree t);
     158                 :             : static void m2pp_target_expression (pretty *s, tree t);
     159                 :             : static void m2pp_constructor (pretty *s, tree t);
     160                 :             : static void m2pp_translation (pretty *s, tree t);
     161                 :             : static void m2pp_module_block (pretty *s, tree t);
     162                 :             : static void push (tree t);
     163                 :             : static void pop (void);
     164                 :             : static bool begin_printed (tree t);
     165                 :             : static void m2pp_decl_list (pretty *s, tree t);
     166                 :             : static void m2pp_loc (pretty *s, tree t);
     167                 :             : static FILE *getoutput (pretty *s);
     168                 :             : 
     169                 :             : 
     170                 :             : void pet (tree t);
     171                 :             : void m2pp_integer (pretty *s, tree t);
     172                 :             : 
     173                 :             : extern void stop (void);
     174                 :             : 
     175                 :             : static stack *stackPtr = NULL;
     176                 :             : static FILE *m2pp_output_file[M2PP_DUMP_END];
     177                 :             : 
     178                 :             : /* do_pf helper function for pf.  */
     179                 :             : 
     180                 :             : void
     181                 :           0 : do_pf (tree t, int bits)
     182                 :             : {
     183                 :           0 :   pretty *state = initPretty (M2PP_DUMP_STDOUT, bits);
     184                 :             : 
     185                 :           0 :   if (TREE_CODE (t) == TRANSLATION_UNIT_DECL)
     186                 :           0 :     m2pp_translation (state, t);
     187                 :           0 :   else if (TREE_CODE (t) == BLOCK)
     188                 :           0 :     m2pp_module_block (state, t);
     189                 :           0 :   else if (TREE_CODE (t) == FUNCTION_DECL)
     190                 :           0 :     m2pp_function (state, t);
     191                 :             :   else
     192                 :           0 :     m2pp_statement_sequence (state, t);
     193                 :           0 :   killPretty (state);
     194                 :           0 : }
     195                 :             : 
     196                 :             : /* pf print function.  Expected to be printed interactively from
     197                 :             :    the debugger: print modula2::pf(func), or to be called from code.  */
     198                 :             : 
     199                 :             : void
     200                 :           0 : pf (tree t)
     201                 :             : {
     202                 :           0 :   do_pf (t, false);
     203                 :           0 : }
     204                 :             : 
     205                 :             : /* pe print expression.  Expected to be printed interactively from
     206                 :             :    the debugger: print modula2::pe(expr), or to be called from code.  */
     207                 :             : 
     208                 :             : void
     209                 :           0 : pe (tree t)
     210                 :             : {
     211                 :           0 :   pretty *state = initPretty (M2PP_DUMP_STDOUT, 0);
     212                 :             : 
     213                 :           0 :   m2pp_expression (state, t);
     214                 :           0 :   m2pp_needspace (state);
     215                 :           0 :   m2pp_print (state, ";\n");
     216                 :           0 :   killPretty (state);
     217                 :           0 : }
     218                 :             : 
     219                 :             : /* pet print expression and its type.  Expected to be printed
     220                 :             :    interactively from the debugger: print modula2::pet(expr), or to
     221                 :             :    be called from code.  */
     222                 :             : 
     223                 :             : void
     224                 :           0 : pet (tree t)
     225                 :             : {
     226                 :           0 :   pretty *state = initPretty (M2PP_DUMP_STDOUT, 0);
     227                 :             : 
     228                 :           0 :   m2pp_expression (state, t);
     229                 :           0 :   m2pp_needspace (state);
     230                 :           0 :   m2pp_print (state, ":");
     231                 :           0 :   m2pp_type (state, TREE_TYPE (t));
     232                 :           0 :   m2pp_print (state, ";\n");
     233                 :           0 :   killPretty (state);
     234                 :           0 : }
     235                 :             : 
     236                 :             : /* pt print type.  Expected to be printed interactively from the
     237                 :             :    debugger: print pt(expr), or to be called from code.  */
     238                 :             : 
     239                 :             : void
     240                 :           0 : pt (tree t)
     241                 :             : {
     242                 :           0 :   pretty *state = initPretty (M2PP_DUMP_STDOUT, 0);
     243                 :           0 :   m2pp_type (state, t);
     244                 :           0 :   m2pp_needspace (state);
     245                 :           0 :   m2pp_print (state, ";\n");
     246                 :           0 :   killPretty (state);
     247                 :           0 : }
     248                 :             : 
     249                 :             : /* ptl print type low level.  Expected to be printed interactively
     250                 :             :    from the debugger: print ptl(type), or to be called from code.  */
     251                 :             : 
     252                 :             : void
     253                 :           0 : ptl (tree t)
     254                 :             : {
     255                 :           0 :   pretty *state = initPretty (M2PP_DUMP_STDOUT, 0);
     256                 :           0 :   m2pp_type_lowlevel (state, t);
     257                 :           0 :   m2pp_needspace (state);
     258                 :           0 :   m2pp_print (state, ";\n");
     259                 :           0 :   killPretty (state);
     260                 :           0 : }
     261                 :             : 
     262                 :             : /* ptcl print TREE_CHAINed list.  */
     263                 :             : 
     264                 :             : void
     265                 :           0 : ptcl (tree t)
     266                 :             : {
     267                 :           0 :   pretty *state = initPretty (M2PP_DUMP_STDOUT, 0);
     268                 :             : 
     269                 :           0 :   m2pp_decl_list (state, t);
     270                 :           0 :   m2pp_print (state, "\n");
     271                 :           0 :   killPretty (state);
     272                 :           0 : }
     273                 :             : 
     274                 :             : /* loc if tree has a location then display it within a comment.  */
     275                 :             : 
     276                 :             : static void
     277                 :           0 : m2pp_loc (pretty *s, tree t)
     278                 :             : {
     279                 :           0 :   if (CAN_HAVE_LOCATION_P (t))
     280                 :             :     {
     281                 :           0 :       if (EXPR_HAS_LOCATION (t))
     282                 :             :         {
     283                 :           0 :           if (EXPR_LOCATION (t) == UNKNOWN_LOCATION)
     284                 :           0 :             m2pp_print (s, "(* missing location1 *)\n");
     285                 :             :           else
     286                 :             :             {
     287                 :           0 :               expanded_location l = expand_location (EXPR_LOCATION (t));
     288                 :             : 
     289                 :           0 :               m2pp_print (s, "(* ");
     290                 :           0 :               m2pp_print (s, l.file);
     291                 :           0 :               m2pp_print (s, ":");
     292                 :           0 :               fprintf (getoutput (s), "%d", l.line);
     293                 :           0 :               m2pp_print (s, " *)");
     294                 :           0 :               m2pp_print (s, "\n");
     295                 :             :             }
     296                 :             :         }
     297                 :             :       else
     298                 :             :         {
     299                 :           0 :           m2pp_print (s, "(* missing location2 *)\n");
     300                 :             :         }
     301                 :             :     }
     302                 :           0 : }
     303                 :             : 
     304                 :             : /* m2pp_decl_list prints a TREE_CHAINed list for a decl node.  */
     305                 :             : 
     306                 :             : static void
     307                 :           0 : m2pp_decl_list (pretty *s, tree t)
     308                 :             : {
     309                 :           0 :   tree u = t;
     310                 :             : 
     311                 :           0 :   m2pp_print (s, "(");
     312                 :           0 :   m2pp_needspace (s);
     313                 :           0 :   while (t != NULL_TREE)
     314                 :             :     {
     315                 :           0 :       m2pp_identifier (s, t);
     316                 :           0 :       t = TREE_CHAIN (t);
     317                 :           0 :       if (t == u || t == NULL_TREE)
     318                 :             :         break;
     319                 :           0 :       m2pp_print (s, ",");
     320                 :           0 :       m2pp_needspace (s);
     321                 :             :     }
     322                 :           0 :   m2pp_needspace (s);
     323                 :           0 :   m2pp_print (s, ")");
     324                 :           0 : }
     325                 :             : 
     326                 :             : static void
     327                 :           0 : m2pp_decl_bool (pretty *s, tree t)
     328                 :             : {
     329                 :           0 :   if (TREE_STATIC (t))
     330                 :           0 :     m2pp_print (s, "static, ");
     331                 :           0 :   if (DECL_EXTERNAL (t))
     332                 :           0 :     m2pp_print (s, "external, ");
     333                 :           0 :   if (DECL_SEEN_IN_BIND_EXPR_P (t))
     334                 :           0 :     m2pp_print (s, "in bind expr, ");
     335                 :           0 : }
     336                 :             : 
     337                 :             : void
     338                 :           0 : pv (tree t)
     339                 :             : {
     340                 :           0 :   if (t)
     341                 :             :     {
     342                 :           0 :       enum tree_code code = TREE_CODE (t);
     343                 :             : 
     344                 :           0 :       if (code == PARM_DECL)
     345                 :             :         {
     346                 :           0 :           pretty *state = initPretty (M2PP_DUMP_STDOUT, 0);
     347                 :           0 :           m2pp_identifier (state, t);
     348                 :           0 :           m2pp_needspace (state);
     349                 :           0 :           m2pp_print (state, "<parm_decl context = ");
     350                 :           0 :           m2pp_identifier (state, DECL_CONTEXT (t));
     351                 :           0 :           if (DECL_ABSTRACT_ORIGIN (t) == t)
     352                 :           0 :             m2pp_print (state, ">\n");
     353                 :             :           else
     354                 :             :             {
     355                 :           0 :               m2pp_print (state, ", abstract origin = ");
     356                 :           0 :               m2pp_identifier (state, DECL_ABSTRACT_ORIGIN (t));
     357                 :           0 :               m2pp_print (state, ">\n");
     358                 :           0 :               modula2::pv (DECL_ABSTRACT_ORIGIN (t));
     359                 :             :             }
     360                 :           0 :           killPretty (state);
     361                 :             :         }
     362                 :           0 :       if (code == VAR_DECL)
     363                 :             :         {
     364                 :           0 :           pretty *state = initPretty (M2PP_DUMP_STDOUT, 0);
     365                 :           0 :           m2pp_identifier (state, t);
     366                 :           0 :           m2pp_needspace (state);
     367                 :           0 :           m2pp_print (state, "(* <var_decl context = ");
     368                 :           0 :           m2pp_identifier (state, DECL_CONTEXT (t));
     369                 :           0 :           m2pp_decl_bool (state, t);
     370                 :           0 :           if (DECL_ABSTRACT_ORIGIN (t) == t)
     371                 :           0 :             m2pp_print (state, "> *)\n");
     372                 :             :           else
     373                 :             :             {
     374                 :           0 :               m2pp_print (state, ", abstract origin = ");
     375                 :           0 :               m2pp_identifier (state, DECL_ABSTRACT_ORIGIN (t));
     376                 :           0 :               m2pp_print (state, "> *)\n");
     377                 :           0 :               modula2::pv (DECL_ABSTRACT_ORIGIN (t));
     378                 :             :             }
     379                 :           0 :           killPretty (state);
     380                 :             :         }
     381                 :             :     }
     382                 :           0 : }
     383                 :             : 
     384                 :             : #if defined(GM2_MAINTAINER)
     385                 :             : 
     386                 :             : /* remember an internal debugging hook. */
     387                 :             : static tree rememberF = NULL;
     388                 :             : 
     389                 :             : static void
     390                 :             : remember (tree t)
     391                 :             : {
     392                 :             :   rememberF = t;
     393                 :             :   printf ("type:  watch *((tree *) %p) != %p\n", (void *)&DECL_SAVED_TREE (t),
     394                 :             :           (void *)DECL_SAVED_TREE (t));
     395                 :             : }
     396                 :             : #endif
     397                 :             : 
     398                 :             : /* push pushes tree t onto stack.  */
     399                 :             : 
     400                 :             : static void
     401                 :           0 : push (tree t)
     402                 :             : {
     403                 :           0 :   stack *s = (stack *)xmalloc (sizeof (stack));
     404                 :             : 
     405                 :           0 :   s->value = t;
     406                 :           0 :   s->next = stackPtr;
     407                 :           0 :   stackPtr = s;
     408                 :           0 : }
     409                 :             : 
     410                 :             : /* pop pops a tree, from the stack.  */
     411                 :             : 
     412                 :             : static void
     413                 :           0 : pop (void)
     414                 :             : {
     415                 :           0 :   stack *s = stackPtr;
     416                 :             : 
     417                 :           0 :   stackPtr = stackPtr->next;
     418                 :           0 :   free (s);
     419                 :           0 : }
     420                 :             : 
     421                 :             : /* being_printed returns true if t is held on the stack.  */
     422                 :             : 
     423                 :             : static bool
     424                 :           0 : begin_printed (tree t)
     425                 :             : {
     426                 :           0 :   stack *s = stackPtr;
     427                 :             : 
     428                 :           0 :   while (s != NULL)
     429                 :             :     {
     430                 :           0 :       if (s->value == t)
     431                 :             :         return true;
     432                 :             :       else
     433                 :           0 :         s = s->next;
     434                 :             :     }
     435                 :             :   return false;
     436                 :             : }
     437                 :             : 
     438                 :             : /* dupPretty duplicate and return a copy of state s.  */
     439                 :             : 
     440                 :             : static pretty *
     441                 :           0 : dupPretty (pretty *s)
     442                 :             : {
     443                 :           0 :   pretty *p = initPretty (s->output, s->bits);
     444                 :           0 :   *p = *s;
     445                 :           0 :   return p;
     446                 :             : }
     447                 :             : 
     448                 :             : /* initPretty initialise the state of the pretty printer.  */
     449                 :             : 
     450                 :             : static pretty *
     451                 :           0 : initPretty (m2pp_dump_kind kind, int bits)
     452                 :             : {
     453                 :           0 :   pretty *state = (pretty *)xmalloc (sizeof (pretty));
     454                 :           0 :   state->output = kind;
     455                 :           0 :   state->needs_space = false;
     456                 :           0 :   state->needs_indent = false;
     457                 :           0 :   state->curpos = 0;
     458                 :           0 :   state->indent = 0;
     459                 :           0 :   state->issued_begin = false;
     460                 :           0 :   state->in_vars = false;
     461                 :           0 :   state->in_types = false;
     462                 :           0 :   state->block = NULL_TREE;
     463                 :           0 :   state->bits = bits;
     464                 :           0 :   return state;
     465                 :             : }
     466                 :             : 
     467                 :             : /* killPretty cleans up the state.  */
     468                 :             : 
     469                 :             : static void
     470                 :           0 : killPretty (pretty *s)
     471                 :             : {
     472                 :           0 :   fflush (getoutput (s));
     473                 :           0 :   free (s);
     474                 :           0 : }
     475                 :             : 
     476                 :             : /* getindent returns the current indent value.  */
     477                 :             : 
     478                 :             : static int
     479                 :           0 : getindent (pretty *s)
     480                 :             : {
     481                 :           0 :   return s->indent;
     482                 :             : }
     483                 :             : 
     484                 :             : /* setindent sets the current indent to, n.  */
     485                 :             : 
     486                 :             : static void
     487                 :           0 : setindent (pretty *s, int n)
     488                 :             : {
     489                 :           0 :   s->indent = n;
     490                 :           0 : }
     491                 :             : 
     492                 :             : /* getcurpos returns the current cursor position.  */
     493                 :             : 
     494                 :             : static int
     495                 :           0 : getcurpos (pretty *s)
     496                 :             : {
     497                 :           0 :   if (s->needs_space)
     498                 :           0 :     return s->curpos + 1;
     499                 :             :   else
     500                 :           0 :     return s->curpos;
     501                 :             : }
     502                 :             : 
     503                 :             : static FILE *
     504                 :           0 : getoutput (pretty *s)
     505                 :             : {
     506                 :           0 :   return m2pp_output_file[s->output];
     507                 :             : }
     508                 :             : 
     509                 :             : /* m2pp_type_lowlevel prints out the low level details of a
     510                 :             :    fundamental type.  */
     511                 :             : 
     512                 :             : static void
     513                 :           0 : m2pp_type_lowlevel (pretty *s, tree t)
     514                 :             : {
     515                 :           0 :   if (TREE_CODE (t) == INTEGER_TYPE)
     516                 :             :     {
     517                 :           0 :       m2pp_print (s, "min");
     518                 :           0 :       m2pp_needspace (s);
     519                 :           0 :       m2pp_integer_cst (s, TYPE_MIN_VALUE (t));
     520                 :           0 :       m2pp_print (s, ", max");
     521                 :           0 :       m2pp_needspace (s);
     522                 :           0 :       m2pp_integer_cst (s, TYPE_MAX_VALUE (t));
     523                 :           0 :       m2pp_print (s, ", type size unit");
     524                 :           0 :       m2pp_needspace (s);
     525                 :           0 :       m2pp_integer_cst (s, TYPE_SIZE_UNIT (t));
     526                 :           0 :       m2pp_print (s, ", type size");
     527                 :           0 :       m2pp_needspace (s);
     528                 :           0 :       m2pp_integer_cst (s, TYPE_SIZE (t));
     529                 :             : 
     530                 :           0 :       fprintf (getoutput (s),
     531                 :             :                ", precision %d, mode %d, align %d, user align %d",
     532                 :           0 :                TYPE_PRECISION (t), TYPE_MODE (t), TYPE_ALIGN (t),
     533                 :           0 :                TYPE_USER_ALIGN (t));
     534                 :             : 
     535                 :           0 :       m2pp_needspace (s);
     536                 :           0 :       if (TYPE_UNSIGNED (t))
     537                 :           0 :         m2pp_print (s, "unsigned");
     538                 :             :       else
     539                 :           0 :         m2pp_print (s, "signed");
     540                 :             :     }
     541                 :           0 : }
     542                 :             : 
     543                 :             : /* m2pp_var emit a VAR if necessary.  */
     544                 :             : 
     545                 :             : static void
     546                 :           0 : m2pp_var (pretty *s)
     547                 :             : {
     548                 :           0 :   if (!s->in_vars)
     549                 :             :     {
     550                 :           0 :       s->in_vars = true;
     551                 :           0 :       m2pp_print (s, "VAR\n");
     552                 :           0 :       setindent (s, getindent (s) + 3);
     553                 :             :     }
     554                 :           0 : }
     555                 :             : 
     556                 :             : /* m2pp_types emit a TYPE if necessary.  */
     557                 :             : 
     558                 :             : static void
     559                 :           0 : m2pp_types (pretty *s)
     560                 :             : {
     561                 :           0 :   if (!s->in_types)
     562                 :             :     {
     563                 :           0 :       s->in_types = true;
     564                 :           0 :       m2pp_print (s, "TYPE\n");
     565                 :           0 :       setindent (s, getindent (s) + 3);
     566                 :             :     }
     567                 :           0 : }
     568                 :             : 
     569                 :             : #ifdef DEBUGGING
     570                 :             : /* hextree displays the critical fields for function, block and
     571                 :             :    bind_expr trees in raw hex.  */
     572                 :             : 
     573                 :             : static void
     574                 :             : hextree (tree t)
     575                 :             : {
     576                 :             :   if (t == NULL_TREE)
     577                 :             :     return;
     578                 :             : 
     579                 :             :   if (TREE_CODE (t) == BLOCK)
     580                 :             :     {
     581                 :             :       printf ("(* BLOCK %p *)\n", (void *)t);
     582                 :             :       printf ("BLOCK_VARS (t) =  %p\n", (void *)BLOCK_VARS (t));
     583                 :             :       printf ("BLOCK_SUPERCONTEXT (t)  =  %p\n",
     584                 :             :               (void *)BLOCK_SUPERCONTEXT (t));
     585                 :             :     }
     586                 :             :   if (TREE_CODE (t) == BIND_EXPR)
     587                 :             :     {
     588                 :             :       printf ("(* BIND_EXPR %p *)\n", (void *)t);
     589                 :             :       printf ("BIND_EXPR_VARS (t) =  %p\n", (void *)BIND_EXPR_VARS (t));
     590                 :             :       printf ("BIND_EXPR_BLOCK (t) =  %p\n", (void *)BIND_EXPR_BLOCK (t));
     591                 :             :       printf ("BIND_EXPR_BODY (t) =  %p\n", (void *)BIND_EXPR_BODY (t));
     592                 :             :     }
     593                 :             :   if (TREE_CODE (t) == FUNCTION_DECL)
     594                 :             :     {
     595                 :             :       printf ("(* FUNCTION_DECL %p *)\n", (void *)t);
     596                 :             :       printf ("DECL_INITIAL (t) =  %p\n", (void *)DECL_INITIAL (t));
     597                 :             :       printf ("DECL_SAVED_TREE (t) = %p\n", (void *)DECL_SAVED_TREE (t));
     598                 :             :       hextree (DECL_INITIAL (t));
     599                 :             :       hextree (DECL_SAVED_TREE (t));
     600                 :             :     }
     601                 :             :   if (VAR_P (t))
     602                 :             :     {
     603                 :             :       pretty *state = initPretty (M2PP_DUMP_STDOUT, 0);
     604                 :             : 
     605                 :             :       printf ("(* VAR_DECL %p <", (void *)t);
     606                 :             :       if (DECL_SEEN_IN_BIND_EXPR_P (t))
     607                 :             :         printf ("b");
     608                 :             :       if (DECL_EXTERNAL (t))
     609                 :             :         printf ("e");
     610                 :             :       if (TREE_STATIC (t))
     611                 :             :         printf ("s");
     612                 :             :       printf ("> context = %p*)\n", (void *)decl_function_context (t));
     613                 :             :       m2pp_type (state, TREE_TYPE (t));
     614                 :             :       m2pp_needspace (state);
     615                 :             :       m2pp_print (state, ";\n");
     616                 :             :       killPretty (state);
     617                 :             :     }
     618                 :             :   if (TREE_CODE (t) == PARM_DECL)
     619                 :             :     {
     620                 :             :       pretty *state = initPretty (M2PP_DUMP_STDOUT, 0);
     621                 :             : 
     622                 :             :       printf ("(* PARM_DECL %p <", (void *)t);
     623                 :             :       printf ("> context = %p*)\n", (void *)decl_function_context (t));
     624                 :             :       m2pp_type (state, TREE_TYPE (t));
     625                 :             :       m2pp_needspace (state);
     626                 :             :       m2pp_print (state, ";\n");
     627                 :             :       killPretty (state);
     628                 :             :     }
     629                 :             : }
     630                 :             : #endif
     631                 :             : 
     632                 :             : /* translation produce a pseudo implementation module from the tree t.  */
     633                 :             : 
     634                 :             : static void
     635                 :           0 : m2pp_translation (pretty *s, tree t)
     636                 :             : {
     637                 :           0 :   tree block = DECL_INITIAL (t);
     638                 :             : 
     639                 :           0 :   m2pp_print (s, "IMPLEMENTATION MODULE ");
     640                 :           0 :   m2pp_identifier (s, t);
     641                 :           0 :   m2pp_print (s, "\n\n");
     642                 :             : 
     643                 :           0 :   if (block != NULL)
     644                 :             :     {
     645                 :           0 :       m2pp_module_block (s, block);
     646                 :           0 :       m2pp_print (s, "\n");
     647                 :             :     }
     648                 :             : 
     649                 :           0 :   m2pp_print (s, "\n");
     650                 :           0 :   m2pp_print (s, "END ");
     651                 :           0 :   m2pp_identifier (s, t);
     652                 :           0 :   m2pp_print (s, ".\n");
     653                 :           0 : }
     654                 :             : 
     655                 :             : static void
     656                 :           0 : m2pp_module_block (pretty *s, tree t)
     657                 :             : {
     658                 :           0 :   t = BLOCK_VARS (t);
     659                 :             : 
     660                 :           0 :   if (t != NULL_TREE)
     661                 :           0 :     for (; t != NULL_TREE; t = TREE_CHAIN (t))
     662                 :             :       {
     663                 :           0 :         switch (TREE_CODE (t))
     664                 :             :           {
     665                 :           0 :           case FUNCTION_DECL:
     666                 :           0 :             if (!DECL_EXTERNAL (t))
     667                 :             :               {
     668                 :           0 :                 pretty *p = dupPretty (s);
     669                 :           0 :                 fprintf (getoutput (s), "\n");
     670                 :           0 :                 p->in_vars = false;
     671                 :           0 :                 p->in_types = false;
     672                 :           0 :                 m2pp_function (p, t);
     673                 :           0 :                 killPretty (p);
     674                 :           0 :                 fprintf (getoutput (s), "\n");
     675                 :           0 :                 s->in_vars = false;
     676                 :           0 :                 s->in_types = false;
     677                 :             :               }
     678                 :             :             break;
     679                 :             : 
     680                 :           0 :           case TYPE_DECL:
     681                 :           0 :             {
     682                 :           0 :               int o = getindent (s);
     683                 :           0 :               int p;
     684                 :             : 
     685                 :           0 :               m2pp_print (s, "\n");
     686                 :           0 :               m2pp_types (s);
     687                 :           0 :               setindent (s, o + 3);
     688                 :           0 :               m2pp_identifier (s, t);
     689                 :           0 :               m2pp_print (s, " = ");
     690                 :           0 :               p = getcurpos (s);
     691                 :           0 :               setindent (s, p);
     692                 :           0 :               m2pp_type (s, TREE_TYPE (t));
     693                 :           0 :               setindent (s, o);
     694                 :           0 :               m2pp_needspace (s);
     695                 :           0 :               m2pp_print (s, ";\n");
     696                 :           0 :               s->in_vars = false;
     697                 :             :             }
     698                 :           0 :             break;
     699                 :             : 
     700                 :           0 :           case VAR_DECL:
     701                 :           0 :             m2pp_var (s);
     702                 :           0 :             m2pp_identifier (s, t);
     703                 :           0 :             m2pp_needspace (s);
     704                 :           0 :             m2pp_print (s, ":");
     705                 :           0 :             m2pp_needspace (s);
     706                 :           0 :             m2pp_type (s, TREE_TYPE (t));
     707                 :           0 :             m2pp_needspace (s);
     708                 :           0 :             m2pp_print (s, ";\n");
     709                 :           0 :             s->in_types = false;
     710                 :           0 :             break;
     711                 :             : 
     712                 :           0 :           case DECL_EXPR:
     713                 :           0 :             fprintf (getoutput (s), "is this node legal here? \n");
     714                 :           0 :             m2pp_decl_expr (s, t);
     715                 :           0 :             break;
     716                 :             : 
     717                 :           0 :           default:
     718                 :           0 :             m2pp_unknown (s, __FUNCTION__, get_tree_code_name (TREE_CODE (t)));
     719                 :             :           }
     720                 :             :       }
     721                 :           0 : }
     722                 :             : 
     723                 :             : /* m2pp_begin emit a BEGIN if necessary.  */
     724                 :             : 
     725                 :             : static void
     726                 :           0 : m2pp_begin (pretty *s)
     727                 :             : {
     728                 :           0 :   if (!s->issued_begin)
     729                 :             :     {
     730                 :           0 :       if (s->in_vars || s->in_types)
     731                 :             :         {
     732                 :           0 :           setindent (s, getindent (s) - 3);
     733                 :           0 :           m2pp_print (s, "BEGIN\n");
     734                 :           0 :           setindent (s, getindent (s) + 3);
     735                 :             :         }
     736                 :             :       else
     737                 :             :         {
     738                 :           0 :           m2pp_print (s, "BEGIN\n");
     739                 :           0 :           setindent (s, getindent (s) + 3);
     740                 :             :         }
     741                 :           0 :       s->issued_begin = true;
     742                 :           0 :       s->in_vars = false;
     743                 :           0 :       s->in_types = false;
     744                 :             :     }
     745                 :           0 : }
     746                 :             : 
     747                 :             : /* m2pp_function walk over the function.  */
     748                 :             : 
     749                 :             : static void
     750                 :           0 : m2pp_function (pretty *s, tree t)
     751                 :             : {
     752                 :           0 :   m2pp_function_header (s, t);
     753                 :           0 :   m2pp_function_vars (s, t);
     754                 :           0 :   m2pp_statement_sequence (s, DECL_SAVED_TREE (t));
     755                 :           0 :   if (TREE_CODE (t) == FUNCTION_DECL)
     756                 :             :     {
     757                 :           0 :       m2pp_begin (s);
     758                 :           0 :       setindent (s, getindent (s) - 3);
     759                 :           0 :       m2pp_print (s, "END");
     760                 :           0 :       m2pp_needspace (s);
     761                 :           0 :       m2pp_identifier (s, t);
     762                 :           0 :       m2pp_needspace (s);
     763                 :           0 :       m2pp_print (s, ";\n");
     764                 :             :     }
     765                 :           0 : }
     766                 :             : 
     767                 :             : /* m2pp_bind_expr displays the bind expr tree node.  */
     768                 :             : 
     769                 :             : static void
     770                 :           0 : m2pp_bind_expr (pretty *s, tree t)
     771                 :             : {
     772                 :           0 :   if (TREE_CODE (t) == BIND_EXPR)
     773                 :             :     {
     774                 :           0 :       if (BIND_EXPR_VARS (t))
     775                 :             :         {
     776                 :           0 :           m2pp_print (s, "(* variables in bind_expr *)\n");
     777                 :           0 :           m2pp_var (s);
     778                 :           0 :           m2pp_var_list (s, BIND_EXPR_VARS (t));
     779                 :             :         }
     780                 :           0 :       if (BIND_EXPR_BLOCK (t))
     781                 :             :         {
     782                 :           0 :           m2pp_print (s, "(* bind_expr_block *)\n");
     783                 :           0 :           m2pp_statement_sequence (s, BIND_EXPR_BLOCK (t));
     784                 :           0 :           m2pp_needspace (s);
     785                 :           0 :           m2pp_print (s, "; \n");
     786                 :             :         }
     787                 :           0 :       m2pp_statement_sequence (s, BIND_EXPR_BODY (t));
     788                 :             :     }
     789                 :           0 : }
     790                 :             : 
     791                 :             : /* m2pp_block_list iterates over the list of blocks.  */
     792                 :             : 
     793                 :             : static void
     794                 :           0 : m2pp_block_list (pretty *s, tree t)
     795                 :             : {
     796                 :           0 :   for (; t; t = BLOCK_CHAIN (t))
     797                 :           0 :     m2pp_block (s, t);
     798                 :           0 : }
     799                 :             : 
     800                 :             : /* m2pp_block prints the VARiables and the TYPEs inside a block.  */
     801                 :             : 
     802                 :             : static void
     803                 :           0 : m2pp_block (pretty *s, tree t)
     804                 :             : {
     805                 :           0 :   if ((BLOCK_VARS (t) != NULL_TREE) && (s->block != BLOCK_VARS (t)))
     806                 :             :     {
     807                 :           0 :       s->block = BLOCK_VARS (t);
     808                 :           0 :       m2pp_print (s, "(* block variables *)\n");
     809                 :           0 :       m2pp_var (s);
     810                 :           0 :       m2pp_var_list (s, BLOCK_VARS (t));
     811                 :             :     }
     812                 :           0 : }
     813                 :             : 
     814                 :             : /* m2pp_var_type_decl displays the variable and type declaration.  */
     815                 :             : 
     816                 :             : static void
     817                 :           0 : m2pp_var_type_decl (pretty *s, tree t)
     818                 :             : {
     819                 :           0 :   m2pp_identifier (s, t);
     820                 :           0 :   m2pp_needspace (s);
     821                 :           0 :   m2pp_print (s, ":");
     822                 :           0 :   m2pp_needspace (s);
     823                 :           0 :   m2pp_type (s, TREE_TYPE (t));
     824                 :           0 :   m2pp_needspace (s);
     825                 :           0 :   m2pp_print (s, ";\n");
     826                 :           0 : }
     827                 :             : 
     828                 :             : /* m2pp_var_list print a variable list.  */
     829                 :             : 
     830                 :             : static void
     831                 :           0 : m2pp_var_list (pretty *s, tree t)
     832                 :             : {
     833                 :           0 :   if (t != NULL_TREE)
     834                 :           0 :     for (; t; t = TREE_CHAIN (t))
     835                 :             :       {
     836                 :           0 :         if (TREE_CODE (t) == FUNCTION_DECL)
     837                 :             :           {
     838                 :           0 :             pretty *p = dupPretty (s);
     839                 :           0 :             fprintf (getoutput (s), "\n");
     840                 :           0 :             p->in_vars = false;
     841                 :           0 :             p->in_types = false;
     842                 :           0 :             m2pp_function (p, t);
     843                 :           0 :             killPretty (p);
     844                 :           0 :             fprintf (getoutput (s), "\n");
     845                 :             :           }
     846                 :           0 :         else if (TREE_CODE (t) == TYPE_DECL)
     847                 :           0 :           m2pp_identifier (s, t);
     848                 :           0 :         else if (TREE_CODE (t) == DECL_EXPR)
     849                 :             :           {
     850                 :           0 :             fprintf (getoutput (s), "is this node legal here? \n");
     851                 :             :             // is it legal to have a DECL_EXPR here ?
     852                 :           0 :             m2pp_var_type_decl (s, DECL_EXPR_DECL (t));
     853                 :             :           }
     854                 :             :         else
     855                 :           0 :           m2pp_var_type_decl (s, t);
     856                 :             :       }
     857                 :           0 : }
     858                 :             : 
     859                 :             : #if 0
     860                 :             : /* m2pp_type_list print a variable list.  */
     861                 :             : 
     862                 :             : static void
     863                 :             : m2pp_type_list (pretty *s, tree t)
     864                 :             : {
     865                 :             :   if (t != NULL_TREE)
     866                 :             :     for (; t; t = TREE_CHAIN (t))
     867                 :             :       {
     868                 :             :         m2pp_identifier (s, t);
     869                 :             :         m2pp_needspace (s);
     870                 :             :         m2pp_print (s, "=");
     871                 :             :         m2pp_needspace (s);
     872                 :             :         m2pp_type (s, TREE_TYPE (t));
     873                 :             :         m2pp_needspace (s);
     874                 :             :         m2pp_print (s, ";\n");
     875                 :             :       }
     876                 :             : }
     877                 :             : #endif
     878                 :             : 
     879                 :             : /* m2pp_needspace sets appropriate flag to true.  */
     880                 :             : 
     881                 :             : static void
     882                 :           0 : m2pp_needspace (pretty *s)
     883                 :             : {
     884                 :           0 :   s->needs_space = true;
     885                 :           0 : }
     886                 :             : 
     887                 :             : /* m2pp_identifer prints an identifier.  */
     888                 :             : 
     889                 :             : static void
     890                 :           0 : m2pp_identifier (pretty *s, tree t)
     891                 :             : {
     892                 :           0 :   if (t)
     893                 :             :     {
     894                 :           0 :       if (TREE_CODE (t) == COMPONENT_REF)
     895                 :           0 :         m2pp_component_ref (s, t);
     896                 :           0 :       else if (DECL_NAME (t) && IDENTIFIER_POINTER (DECL_NAME (t)))
     897                 :           0 :         m2pp_ident_pointer (s, DECL_NAME (t));
     898                 :             :       else
     899                 :             :         {
     900                 :           0 :           char name[100];
     901                 :             : 
     902                 :           0 :           if (TREE_CODE (t) == CONST_DECL)
     903                 :           0 :             snprintf (name, 100, "C_%u", DECL_UID (t));
     904                 :             :           else
     905                 :           0 :             snprintf (name, 100, "D_%u", DECL_UID (t));
     906                 :           0 :           m2pp_print (s, name);
     907                 :             : #ifdef VERBOSE_TYPE_DESC
     908                 :             :           if (TREE_TYPE (t) != NULL_TREE)
     909                 :             :             {
     910                 :             :               m2pp_needspace (s);
     911                 :             :               m2pp_print (s, "(* type:");
     912                 :             :               m2pp_needspace (s);
     913                 :             :               m2pp_simple_type (s, TREE_TYPE (t));
     914                 :             :               m2pp_needspace (s);
     915                 :             :               m2pp_type_lowlevel (s, TREE_TYPE (t));
     916                 :             :               m2pp_needspace (s);
     917                 :             :               m2pp_print (s, "*)");
     918                 :             :             }
     919                 :             : #endif
     920                 :             :         }
     921                 :             :     }
     922                 :           0 : }
     923                 :             : 
     924                 :             : /* m2pp_ident_pointer displays an ident pointer.  */
     925                 :             : 
     926                 :             : static void
     927                 :           0 : m2pp_ident_pointer (pretty *s, tree t)
     928                 :             : {
     929                 :           0 :   if (t)
     930                 :           0 :     m2pp_print (s, IDENTIFIER_POINTER (t));
     931                 :           0 : }
     932                 :             : 
     933                 :             : /* m2pp_parameter prints out a param decl tree.  */
     934                 :             : 
     935                 :             : static void
     936                 :           0 : m2pp_parameter (pretty *s, tree t)
     937                 :             : {
     938                 :           0 :   if (TREE_CODE (t) == PARM_DECL)
     939                 :             :     {
     940                 :           0 :       if (TREE_TYPE (t) && (TREE_CODE (TREE_TYPE (t)) == REFERENCE_TYPE))
     941                 :             :         {
     942                 :           0 :           m2pp_print (s, "VAR");
     943                 :           0 :           m2pp_needspace (s);
     944                 :           0 :           m2pp_identifier (s, t);
     945                 :           0 :           m2pp_print (s, ":");
     946                 :           0 :           m2pp_needspace (s);
     947                 :           0 :           m2pp_simple_type (s, TREE_TYPE (TREE_TYPE (t)));
     948                 :             :         }
     949                 :             :       else
     950                 :             :         {
     951                 :           0 :           m2pp_identifier (s, t);
     952                 :           0 :           m2pp_print (s, ":");
     953                 :           0 :           m2pp_needspace (s);
     954                 :           0 :           m2pp_simple_type (s, TREE_TYPE (t));
     955                 :             :         }
     956                 :             :     }
     957                 :           0 : }
     958                 :             : 
     959                 :             : /* m2pp_param_type prints out the type of parameter.  */
     960                 :             : 
     961                 :             : static void
     962                 :           0 : m2pp_param_type (pretty *s, tree t)
     963                 :             : {
     964                 :           0 :   if (t && (TREE_CODE (t) == REFERENCE_TYPE))
     965                 :             :     {
     966                 :           0 :       m2pp_print (s, "VAR");
     967                 :           0 :       m2pp_needspace (s);
     968                 :           0 :       m2pp_simple_type (s, TREE_TYPE (t));
     969                 :             :     }
     970                 :             :   else
     971                 :           0 :     m2pp_simple_type (s, t);
     972                 :           0 : }
     973                 :             : 
     974                 :             : /* m2pp_procedure_type displays a procedure type.  */
     975                 :             : 
     976                 :             : static void
     977                 :           0 : m2pp_procedure_type (pretty *s, tree t)
     978                 :             : {
     979                 :           0 :   push (t);
     980                 :           0 :   if (TREE_CODE (t) == FUNCTION_TYPE)
     981                 :             :     {
     982                 :           0 :       tree i = TYPE_ARG_TYPES (t);
     983                 :           0 :       tree returnType = TREE_TYPE (TREE_TYPE (t));
     984                 :             : 
     985                 :           0 :       m2pp_needspace (s);
     986                 :           0 :       m2pp_print (s, "PROCEDURE");
     987                 :           0 :       m2pp_needspace (s);
     988                 :           0 :       if (i != NULL_TREE)
     989                 :             :         {
     990                 :           0 :           int o = getindent (s);
     991                 :           0 :           int p;
     992                 :           0 :           bool first = true;
     993                 :             : 
     994                 :           0 :           m2pp_print (s, "(");
     995                 :           0 :           p = getcurpos (s);
     996                 :           0 :           setindent (s, p);
     997                 :           0 :           while (i != NULL_TREE)
     998                 :             :             {
     999                 :           0 :               if (TREE_CHAIN (i) == NULL_TREE)
    1000                 :             :                 {
    1001                 :           0 :                   if (TREE_VALUE (i) == void_type_node)
    1002                 :             :                     /* Ignore void_type_node at the end.  */
    1003                 :             :                     ;
    1004                 :             :                   else
    1005                 :             :                     {
    1006                 :           0 :                       m2pp_param_type (s, TREE_VALUE (i));
    1007                 :           0 :                       m2pp_print (s, ", ...");
    1008                 :             :                     }
    1009                 :             :                   break;
    1010                 :             :                 }
    1011                 :             :               else
    1012                 :             :                 {
    1013                 :           0 :                   if (!first)
    1014                 :             :                     {
    1015                 :           0 :                       m2pp_print (s, ",");
    1016                 :           0 :                       m2pp_needspace (s);
    1017                 :             :                     }
    1018                 :           0 :                   m2pp_param_type (s, TREE_VALUE (i));
    1019                 :             :                 }
    1020                 :           0 :               i = TREE_CHAIN (i);
    1021                 :           0 :               first = false;
    1022                 :             :             }
    1023                 :           0 :           m2pp_print (s, ")");
    1024                 :           0 :           setindent (s, o);
    1025                 :             :         }
    1026                 :           0 :       else if (returnType != NULL_TREE)
    1027                 :             :         {
    1028                 :           0 :           m2pp_needspace (s);
    1029                 :           0 :           m2pp_print (s, "()");
    1030                 :             :         }
    1031                 :           0 :       if (returnType != NULL_TREE)
    1032                 :             :         {
    1033                 :           0 :           m2pp_needspace (s);
    1034                 :           0 :           m2pp_print (s, ": ");
    1035                 :           0 :           m2pp_simple_type (s, returnType);
    1036                 :             :         }
    1037                 :             :     }
    1038                 :           0 :   pop ();
    1039                 :           0 : }
    1040                 :             : 
    1041                 :             : /* m2pp_comment_header displays a simple header with some critical
    1042                 :             :    tree info.  */
    1043                 :             : 
    1044                 :             : static void
    1045                 :           0 : m2pp_comment_header (pretty *s, tree t)
    1046                 :             : {
    1047                 :           0 :   int o = getindent (s);
    1048                 :             : 
    1049                 :           0 :   m2pp_print (s, "(*\n");
    1050                 :           0 :   setindent (s, o + 3);
    1051                 :           0 :   m2pp_identifier (s, t);
    1052                 :           0 :   m2pp_needspace (s);
    1053                 :           0 :   m2pp_print (s, "-");
    1054                 :           0 :   m2pp_needspace (s);
    1055                 :           0 :   if (TREE_PUBLIC (t))
    1056                 :             :     {
    1057                 :           0 :       m2pp_needspace (s);
    1058                 :           0 :       m2pp_print (s, "public,");
    1059                 :             :     }
    1060                 :           0 :   if (TREE_STATIC (t))
    1061                 :             :     {
    1062                 :           0 :       m2pp_needspace (s);
    1063                 :           0 :       m2pp_print (s, "static,");
    1064                 :             :     }
    1065                 :           0 :   if (DECL_EXTERNAL (t))
    1066                 :             :     {
    1067                 :           0 :       m2pp_needspace (s);
    1068                 :           0 :       m2pp_print (s, "extern");
    1069                 :             :     }
    1070                 :           0 :   m2pp_print (s, "\n");
    1071                 :           0 :   setindent (s, o);
    1072                 :           0 :   m2pp_print (s, "*)\n\n");
    1073                 :           0 : }
    1074                 :             : 
    1075                 :             : /* m2pp_function_header displays the function header.  */
    1076                 :             : 
    1077                 :             : static void
    1078                 :           0 : m2pp_function_header (pretty *s, tree t)
    1079                 :             : {
    1080                 :           0 :   push (t);
    1081                 :           0 :   if (TREE_CODE (t) == FUNCTION_DECL)
    1082                 :             :     {
    1083                 :           0 :       tree i = DECL_ARGUMENTS (t);
    1084                 :           0 :       tree returnType = TREE_TYPE (TREE_TYPE (t));
    1085                 :             : 
    1086                 :           0 :       m2pp_comment_header (s, t);
    1087                 :           0 :       m2pp_print (s, "PROCEDURE ");
    1088                 :           0 :       m2pp_identifier (s, t);
    1089                 :           0 :       m2pp_needspace (s);
    1090                 :           0 :       if (i != NULL_TREE)
    1091                 :             :         {
    1092                 :           0 :           int o = getindent (s);
    1093                 :           0 :           int p;
    1094                 :             : 
    1095                 :           0 :           m2pp_print (s, "(");
    1096                 :           0 :           p = getcurpos (s);
    1097                 :           0 :           setindent (s, p);
    1098                 :           0 :           while (i != NULL_TREE)
    1099                 :             :             {
    1100                 :           0 :               m2pp_parameter (s, i);
    1101                 :           0 :               i = TREE_CHAIN (i);
    1102                 :           0 :               if (i != NULL_TREE)
    1103                 :           0 :                 m2pp_print (s, ";\n");
    1104                 :             :             }
    1105                 :           0 :           m2pp_print (s, ")");
    1106                 :           0 :           m2pp_needspace (s);
    1107                 :           0 :           setindent (s, o);
    1108                 :             :         }
    1109                 :           0 :       else if (returnType != void_type_node)
    1110                 :             :         {
    1111                 :           0 :           m2pp_print (s, "()");
    1112                 :           0 :           m2pp_needspace (s);
    1113                 :             :         }
    1114                 :           0 :       if (returnType != void_type_node)
    1115                 :             :         {
    1116                 :           0 :           m2pp_print (s, ": ");
    1117                 :           0 :           m2pp_simple_type (s, returnType);
    1118                 :           0 :           m2pp_needspace (s);
    1119                 :             :         }
    1120                 :           0 :       m2pp_print (s, "; ");
    1121                 :           0 :       m2pp_loc (s, t);
    1122                 :           0 :       m2pp_print (s, "\n");
    1123                 :             :     }
    1124                 :           0 :   pop ();
    1125                 :           0 : }
    1126                 :             : 
    1127                 :             : /* m2pp_add_var adds a variable into a list as defined by, data.  */
    1128                 :             : 
    1129                 :             : static tree
    1130                 :           0 : m2pp_add_var (tree *tp, int *walk_subtrees, void *data)
    1131                 :             : {
    1132                 :           0 :   tree t = *tp;
    1133                 :           0 :   pretty *s = (pretty *)data;
    1134                 :           0 :   enum tree_code code = TREE_CODE (t);
    1135                 :             : 
    1136                 :           0 :   if (code == VAR_DECL)
    1137                 :             :     {
    1138                 :           0 :       m2pp_var (s);
    1139                 :           0 :       m2pp_identifier (s, t);
    1140                 :           0 :       m2pp_needspace (s);
    1141                 :           0 :       m2pp_print (s, ":");
    1142                 :           0 :       m2pp_needspace (s);
    1143                 :           0 :       m2pp_type (s, TREE_TYPE (t));
    1144                 :           0 :       m2pp_needspace (s);
    1145                 :           0 :       m2pp_print (s, ";\n");
    1146                 :             :     }
    1147                 :           0 :   if (code == SSA_NAME)
    1148                 :             :     {
    1149                 :           0 :       m2pp_var (s);
    1150                 :           0 :       m2pp_ssa (s, t);
    1151                 :           0 :       m2pp_identifier (s, SSA_NAME_VAR (t));
    1152                 :           0 :       m2pp_needspace (s);
    1153                 :           0 :       m2pp_print (s, ":");
    1154                 :           0 :       m2pp_needspace (s);
    1155                 :           0 :       m2pp_type (s, TREE_TYPE (t));
    1156                 :           0 :       m2pp_needspace (s);
    1157                 :           0 :       m2pp_print (s, ";\n");
    1158                 :             :     }
    1159                 :             : 
    1160                 :           0 :   *walk_subtrees = 1;
    1161                 :           0 :   return NULL_TREE;
    1162                 :             : }
    1163                 :             : 
    1164                 :             : /* m2pp_function_vars displays variables as defined by the function
    1165                 :             :    tree.  */
    1166                 :             : 
    1167                 :             : static void
    1168                 :           0 : m2pp_function_vars (pretty *s, tree t)
    1169                 :             : {
    1170                 :           0 :   walk_tree_without_duplicates (&t, m2pp_add_var, s);
    1171                 :             : 
    1172                 :           0 :   if (TREE_CODE (t) == FUNCTION_DECL && DECL_INITIAL (t))
    1173                 :             :     {
    1174                 :           0 :       m2pp_print (s, "(* variables in function_decl (decl_initial) *)\n");
    1175                 :           0 :       m2pp_var (s);
    1176                 :           0 :       m2pp_statement_sequence (s, DECL_INITIAL (t));
    1177                 :             :     }
    1178                 :           0 : }
    1179                 :             : 
    1180                 :             : /* m2pp_print print out a string p interpreting '\n' and
    1181                 :             :    adjusting the fields within state s.  */
    1182                 :             : 
    1183                 :             : static void
    1184                 :           0 : m2pp_print (pretty *s, const char *p)
    1185                 :             : {
    1186                 :           0 :   if (p)
    1187                 :             :     {
    1188                 :           0 :       int l = strlen (p);
    1189                 :           0 :       int i = 0;
    1190                 :             : 
    1191                 :           0 :       if (s->needs_space)
    1192                 :             :         {
    1193                 :           0 :           fprintf (getoutput (s), " ");
    1194                 :           0 :           s->needs_space = false;
    1195                 :           0 :           s->curpos++;
    1196                 :             :         }
    1197                 :             : 
    1198                 :           0 :       while (i < l)
    1199                 :             :         {
    1200                 :           0 :           if (p[i] == '\n')
    1201                 :             :             {
    1202                 :           0 :               s->needs_indent = true;
    1203                 :           0 :               s->curpos = 0;
    1204                 :           0 :               fprintf (getoutput (s), "\n");
    1205                 :             :             }
    1206                 :             :           else
    1207                 :             :             {
    1208                 :           0 :               if (s->needs_indent)
    1209                 :             :                 {
    1210                 :           0 :                   if (s->indent > 0)
    1211                 :           0 :                     fprintf (getoutput (s), "%*c", s->indent, ' ');
    1212                 :           0 :                   s->needs_indent = false;
    1213                 :           0 :                   s->curpos += s->indent;
    1214                 :             :                 }
    1215                 :           0 :               s->curpos++;
    1216                 :           0 :               fputc (p[i], getoutput (s));
    1217                 :             :             }
    1218                 :           0 :           i++;
    1219                 :             :         }
    1220                 :             :     }
    1221                 :           0 : }
    1222                 :             : 
    1223                 :             : /* m2pp_print_char prints out a character ch obeying needs_space
    1224                 :             :    and needs_indent.  */
    1225                 :             : 
    1226                 :             : static void
    1227                 :           0 : m2pp_print_char (pretty *s, char ch)
    1228                 :             : {
    1229                 :           0 :   if (s->needs_space)
    1230                 :             :     {
    1231                 :           0 :       fprintf (getoutput (s), " ");
    1232                 :           0 :       s->needs_space = false;
    1233                 :           0 :       s->curpos++;
    1234                 :             :     }
    1235                 :           0 :   if (s->needs_indent)
    1236                 :             :     {
    1237                 :           0 :       if (s->indent > 0)
    1238                 :           0 :         fprintf (getoutput (s), "%*c", s->indent, ' ');
    1239                 :           0 :       s->needs_indent = false;
    1240                 :           0 :       s->curpos += s->indent;
    1241                 :             :     }
    1242                 :           0 :   if (ch == '\n')
    1243                 :             :     {
    1244                 :           0 :       s->curpos++;
    1245                 :           0 :       fputc ('\\', getoutput (s));
    1246                 :           0 :       fputc ('n', getoutput (s));
    1247                 :             :     }
    1248                 :             :   else
    1249                 :           0 :     fputc (ch, getoutput (s));
    1250                 :           0 :   s->curpos++;
    1251                 :           0 : }
    1252                 :             : 
    1253                 :             : /* m2pp_integer display the appropriate integer type.  */
    1254                 :             : 
    1255                 :             : #if defined(GM2)
    1256                 :             : void
    1257                 :           0 : m2pp_integer (pretty *s, tree t)
    1258                 :             : {
    1259                 :           0 :   if (t == m2type_GetM2ZType ())
    1260                 :           0 :     m2pp_print (s, "M2ZTYPE");
    1261                 :           0 :   else if (t == m2type_GetM2LongIntType ())
    1262                 :           0 :     m2pp_print (s, "LONGINT");
    1263                 :           0 :   else if (t == m2type_GetM2IntegerType ())
    1264                 :           0 :     m2pp_print (s, "INTEGER");
    1265                 :           0 :   else if (t == m2type_GetM2ShortIntType ())
    1266                 :           0 :     m2pp_print (s, "SHORTINT");
    1267                 :           0 :   else if (t == m2type_GetLongIntType ())
    1268                 :           0 :     m2pp_print (s, "long int");
    1269                 :           0 :   else if (t == m2type_GetIntegerType ())
    1270                 :           0 :     m2pp_print (s, "int");
    1271                 :           0 :   else if (t == m2type_GetShortIntType ())
    1272                 :           0 :     m2pp_print (s, "short");
    1273                 :           0 :   else if (t == m2type_GetM2LongCardType ())
    1274                 :           0 :     m2pp_print (s, "LONGCARD");
    1275                 :           0 :   else if (t == m2type_GetM2CardinalType ())
    1276                 :           0 :     m2pp_print (s, "CARDINAL");
    1277                 :           0 :   else if (t == m2type_GetM2ShortCardType ())
    1278                 :           0 :     m2pp_print (s, "SHORTCARD");
    1279                 :           0 :   else if (t == m2type_GetCardinalType ())
    1280                 :           0 :     m2pp_print (s, "CARDINAL");
    1281                 :           0 :   else if (t == m2type_GetPointerType ())
    1282                 :           0 :     m2pp_print (s, "ADDRESS");
    1283                 :           0 :   else if (t == m2type_GetByteType ())
    1284                 :           0 :     m2pp_print (s, "BYTE");
    1285                 :           0 :   else if (t == m2type_GetCharType ())
    1286                 :           0 :     m2pp_print (s, "CHAR");
    1287                 :           0 :   else if (t == m2type_GetBitsetType ())
    1288                 :           0 :     m2pp_print (s, "BITSET");
    1289                 :           0 :   else if (t == m2type_GetBitnumType ())
    1290                 :           0 :     m2pp_print (s, "BITNUM");
    1291                 :             :   else
    1292                 :             :     {
    1293                 :           0 :       if (TYPE_UNSIGNED (t))
    1294                 :           0 :         m2pp_print (s, "CARDINAL");
    1295                 :             :       else
    1296                 :           0 :         m2pp_print (s, "INTEGER");
    1297                 :           0 :       m2pp_integer_cst (s, TYPE_SIZE (t));
    1298                 :             :     }
    1299                 :           0 : }
    1300                 :             : #else
    1301                 :             : void
    1302                 :             : m2pp_integer (pretty *s, tree t ATTRIBUTE_UNUSED)
    1303                 :             : {
    1304                 :             :   m2pp_print (s, "INTEGER");
    1305                 :             : }
    1306                 :             : #endif
    1307                 :             : 
    1308                 :             : /* m2pp_complex display the actual complex type.  */
    1309                 :             : 
    1310                 :             : #if defined(GM2)
    1311                 :             : static void
    1312                 :           0 : m2pp_complex (pretty *s, tree t)
    1313                 :             : {
    1314                 :           0 :   if (t == m2type_GetM2ComplexType ())
    1315                 :           0 :     m2pp_print (s, "COMPLEX");
    1316                 :           0 :   else if (t == m2type_GetM2LongComplexType ())
    1317                 :           0 :     m2pp_print (s, "LONGCOMPLEX");
    1318                 :           0 :   else if (t == m2type_GetM2ShortComplexType ())
    1319                 :           0 :     m2pp_print (s, "SHORTCOMPLEX");
    1320                 :           0 :   else if (t == m2type_GetM2CType ())
    1321                 :           0 :     m2pp_print (s, "C'omplex' type");
    1322                 :           0 :   else if (t == m2type_GetM2Complex32 ())
    1323                 :           0 :     m2pp_print (s, "COMPLEX32");
    1324                 :           0 :   else if (t == m2type_GetM2Complex64 ())
    1325                 :           0 :     m2pp_print (s, "COMPLEX64");
    1326                 :           0 :   else if (t == m2type_GetM2Complex96 ())
    1327                 :           0 :     m2pp_print (s, "COMPLEX96");
    1328                 :           0 :   else if (t == m2type_GetM2Complex128 ())
    1329                 :           0 :     m2pp_print (s, "COMPLEX128");
    1330                 :             :   else
    1331                 :           0 :     m2pp_print (s, "unknown COMPLEX type");
    1332                 :           0 : }
    1333                 :             : 
    1334                 :             : #else
    1335                 :             : 
    1336                 :             : static void
    1337                 :             : m2pp_complex (pretty *s, tree t ATTRIBUTE_UNUSED)
    1338                 :             : {
    1339                 :             :   m2pp_print (s, "a COMPLEX type");
    1340                 :             : }
    1341                 :             : #endif
    1342                 :             : 
    1343                 :             : void
    1344                 :           0 : m2pp_real_type (pretty *s, tree t)
    1345                 :             : {
    1346                 :           0 :   if (t == m2type_GetRealType ())
    1347                 :           0 :     m2pp_print (s, "C double");
    1348                 :           0 :   else if (t == m2type_GetShortRealType ())
    1349                 :           0 :     m2pp_print (s, "C float");
    1350                 :           0 :   else if (t == m2type_GetLongRealType ())
    1351                 :           0 :     m2pp_print (s, "C long double");
    1352                 :           0 :   else if (t == m2type_GetM2RealType ())
    1353                 :           0 :     m2pp_print (s, "REAL");
    1354                 :           0 :   else if (t == m2type_GetM2ShortRealType ())
    1355                 :           0 :     m2pp_print (s, "SHORTREAL");
    1356                 :           0 :   else if (t == m2type_GetM2LongRealType ())
    1357                 :           0 :     m2pp_print (s, "LONGREAL");
    1358                 :           0 :   else if (t == m2type_GetM2Real128 ())
    1359                 :           0 :     m2pp_print (s, "REAL128");
    1360                 :           0 :   else if (t == m2type_GetM2Real64 ())
    1361                 :           0 :     m2pp_print (s, "REAL64");
    1362                 :           0 :   else if (t == m2type_GetM2Real32 ())
    1363                 :           0 :     m2pp_print (s, "REAL32");
    1364                 :           0 :   else if (t == m2type_GetM2RType ())
    1365                 :           0 :     m2pp_print (s, "R Type");
    1366                 :             :   else
    1367                 :           0 :     m2pp_print (s, "unknown REAL");
    1368                 :           0 : }
    1369                 :             : 
    1370                 :             : /* m2pp_type prints a full type.  */
    1371                 :             : 
    1372                 :             : void
    1373                 :           0 : m2pp_type (pretty *s, tree t)
    1374                 :             : {
    1375                 :           0 :   if (begin_printed (t))
    1376                 :             :     {
    1377                 :           0 :       m2pp_print (s, "<...>");
    1378                 :           0 :       return;
    1379                 :             :     }
    1380                 :           0 :   if ((TREE_CODE (t) != FIELD_DECL) && (TREE_CODE (t) != TYPE_DECL))
    1381                 :           0 :     m2pp_gimpified (s, t);
    1382                 :           0 :   switch (TREE_CODE (t))
    1383                 :             :     {
    1384                 :           0 :     case INTEGER_TYPE:
    1385                 :           0 :       m2pp_integer (s, t);
    1386                 :           0 :       break;
    1387                 :           0 :     case REAL_TYPE:
    1388                 :           0 :       m2pp_real_type (s, t);
    1389                 :           0 :       break;
    1390                 :           0 :     case ENUMERAL_TYPE:
    1391                 :           0 :       m2pp_enum (s, t);
    1392                 :           0 :       break;
    1393                 :           0 :     case UNION_TYPE:
    1394                 :           0 :       m2pp_union_type (s, t);
    1395                 :           0 :       break;
    1396                 :           0 :     case RECORD_TYPE:
    1397                 :           0 :       m2pp_record_type (s, t);
    1398                 :           0 :       break;
    1399                 :           0 :     case ARRAY_TYPE:
    1400                 :           0 :       m2pp_array (s, t);
    1401                 :           0 :       break;
    1402                 :             : #if 0
    1403                 :             :     case FUNCTION_TYPE:
    1404                 :             :       m2pp_function_type (s, t);
    1405                 :             :       break;
    1406                 :             : #endif
    1407                 :           0 :     case TYPE_DECL:
    1408                 :           0 :       m2pp_identifier (s, t);
    1409                 :           0 :       break;
    1410                 :           0 :     case POINTER_TYPE:
    1411                 :           0 :       m2pp_pointer_type (s, t);
    1412                 :           0 :       break;
    1413                 :             : #if defined(GM2)
    1414                 :           0 :     case SET_TYPE:
    1415                 :           0 :       m2pp_set_type (s, t);
    1416                 :           0 :       break;
    1417                 :             : #endif
    1418                 :           0 :     case VOID_TYPE:
    1419                 :           0 :       m2pp_print (s, "ADDRESS");
    1420                 :           0 :       break;
    1421                 :           0 :     case COMPLEX_TYPE:
    1422                 :           0 :       m2pp_complex (s, t);
    1423                 :           0 :       break;
    1424                 :           0 :     default:
    1425                 :           0 :       m2pp_unknown (s, __FUNCTION__, get_tree_code_name (TREE_CODE (t)));
    1426                 :             :     }
    1427                 :             : }
    1428                 :             : 
    1429                 :             : /* m2pp_set_type prints out the set type.  */
    1430                 :             : 
    1431                 :             : static void
    1432                 :           0 : m2pp_set_type (pretty *s, tree t)
    1433                 :             : {
    1434                 :           0 :   push (t);
    1435                 :           0 :   m2pp_print (s, "SET OF");
    1436                 :           0 :   m2pp_needspace (s);
    1437                 :           0 :   m2pp_type (s, TREE_TYPE (t));
    1438                 :           0 :   pop ();
    1439                 :           0 : }
    1440                 :             : 
    1441                 :             : /* m2pp_enum print out the enumeration type.  */
    1442                 :             : 
    1443                 :             : static void
    1444                 :           0 : m2pp_enum (pretty *s, tree t)
    1445                 :             : {
    1446                 :           0 :   tree chain_p = TYPE_VALUES (t);
    1447                 :             : 
    1448                 :           0 :   push (t);
    1449                 :           0 :   m2pp_print (s, "(");
    1450                 :           0 :   while (chain_p)
    1451                 :             :     {
    1452                 :           0 :       m2pp_ident_pointer (s, TREE_PURPOSE (chain_p));
    1453                 :           0 :       chain_p = TREE_CHAIN (chain_p);
    1454                 :           0 :       if (chain_p)
    1455                 :           0 :         m2pp_print (s, ", ");
    1456                 :             :     }
    1457                 :           0 :   m2pp_print (s, ")");
    1458                 :           0 :   pop ();
    1459                 :           0 : }
    1460                 :             : 
    1461                 :             : /* m2pp_array prints out the array type.  */
    1462                 :             : 
    1463                 :             : static void
    1464                 :           0 : m2pp_array (pretty *s, tree t)
    1465                 :             : {
    1466                 :           0 :   push (t);
    1467                 :           0 :   m2pp_print (s, "ARRAY");
    1468                 :           0 :   m2pp_needspace (s);
    1469                 :           0 :   m2pp_subrange (s, TYPE_DOMAIN (t));
    1470                 :           0 :   m2pp_needspace (s);
    1471                 :           0 :   m2pp_print (s, "OF");
    1472                 :           0 :   m2pp_needspace (s);
    1473                 :           0 :   m2pp_type (s, TREE_TYPE (t));
    1474                 :           0 :   pop ();
    1475                 :           0 : }
    1476                 :             : 
    1477                 :             : /* m2pp_subrange prints out the subrange, but probably the lower
    1478                 :             :    bound will always be zero.  */
    1479                 :             : 
    1480                 :             : static void
    1481                 :           0 : m2pp_subrange (pretty *s, tree t)
    1482                 :             : {
    1483                 :           0 :   tree min = TYPE_MIN_VALUE (t);
    1484                 :           0 :   tree max = TYPE_MAX_VALUE (t);
    1485                 :             : 
    1486                 :           0 :   m2pp_print (s, "[");
    1487                 :           0 :   m2pp_expression (s, min);
    1488                 :           0 :   m2pp_print (s, "..");
    1489                 :           0 :   m2pp_expression (s, max);
    1490                 :           0 :   m2pp_print (s, "]");
    1491                 :           0 : }
    1492                 :             : 
    1493                 :             : /* m2pp_gimplified print out a gimplified comment.  */
    1494                 :             : 
    1495                 :             : static void
    1496                 :           0 : m2pp_gimpified (pretty *s, tree t)
    1497                 :             : {
    1498                 :           0 :   if (!TYPE_SIZES_GIMPLIFIED (t))
    1499                 :             :     {
    1500                 :           0 :       m2pp_print (s, "(* <!g> *)");
    1501                 :           0 :       m2pp_needspace (s);
    1502                 :             :     }
    1503                 :           0 : }
    1504                 :             : 
    1505                 :             : /* m2pp_printer_type display the pointer type.  */
    1506                 :             : 
    1507                 :             : static void
    1508                 :           0 : m2pp_pointer_type (pretty *s, tree t)
    1509                 :             : {
    1510                 :           0 :   push (t);
    1511                 :           0 :   if (TREE_CODE (t) == POINTER_TYPE)
    1512                 :             :     {
    1513                 :           0 :       if (TREE_CODE (TREE_TYPE (t)) == FUNCTION_TYPE)
    1514                 :           0 :         m2pp_procedure_type (s, TREE_TYPE (t));
    1515                 :           0 :       else if (t == ptr_type_node)
    1516                 :           0 :         m2pp_print (s, "ADDRESS");
    1517                 :             :       else
    1518                 :             :         {
    1519                 :           0 :           m2pp_print (s, "POINTER TO");
    1520                 :           0 :           m2pp_needspace (s);
    1521                 :           0 :           m2pp_type (s, TREE_TYPE (t));
    1522                 :             :         }
    1523                 :             :     }
    1524                 :           0 :   pop ();
    1525                 :           0 : }
    1526                 :             : 
    1527                 :             : /* m2pp_record_alignment prints out whether this record is aligned
    1528                 :             :    (packed).  */
    1529                 :             : 
    1530                 :             : static void
    1531                 :           0 : m2pp_record_alignment (pretty *s, tree t)
    1532                 :             : {
    1533                 :           0 :   if (TYPE_PACKED (t))
    1534                 :           0 :     m2pp_print (s, "<* bytealignment (0) *>\n");
    1535                 :           0 : }
    1536                 :             : 
    1537                 :             : static unsigned int
    1538                 :           0 : m2pp_getaligned (tree t)
    1539                 :             : {
    1540                 :           0 :   if (DECL_P (t))
    1541                 :             :     {
    1542                 :           0 :       if (DECL_USER_ALIGN (t))
    1543                 :           0 :         return DECL_ALIGN (t);
    1544                 :             :     }
    1545                 :           0 :   else if (TYPE_P (t))
    1546                 :             :     {
    1547                 :           0 :       if (TYPE_USER_ALIGN (t))
    1548                 :           0 :         return TYPE_ALIGN (t);
    1549                 :             :     }
    1550                 :             :   return 0;
    1551                 :             : }
    1552                 :             : 
    1553                 :             : static void
    1554                 :           0 : m2pp_recordfield_alignment (pretty *s, tree t)
    1555                 :             : {
    1556                 :           0 :   unsigned int aligned = m2pp_getaligned (t);
    1557                 :             : 
    1558                 :           0 :   if (aligned != 0)
    1559                 :             :     {
    1560                 :           0 :       int o = getindent (s);
    1561                 :           0 :       int p = getcurpos (s);
    1562                 :           0 :       m2pp_needspace (s);
    1563                 :           0 :       m2pp_print (s, "<* bytealignment (");
    1564                 :           0 :       setindent (s, p + 18);
    1565                 :             : 
    1566                 :           0 :       fprintf (getoutput (s), "%d", aligned / BITS_PER_UNIT);
    1567                 :             : 
    1568                 :           0 :       m2pp_print (s, ")");
    1569                 :           0 :       m2pp_needspace (s);
    1570                 :           0 :       setindent (s, p);
    1571                 :           0 :       m2pp_print (s, "*>");
    1572                 :           0 :       setindent (s, o);
    1573                 :             :     }
    1574                 :           0 : }
    1575                 :             : 
    1576                 :             : static void
    1577                 :           0 : m2pp_recordfield_bitfield (pretty *s, tree t)
    1578                 :             : {
    1579                 :           0 :   if ((TREE_CODE (t) == FIELD_DECL) && DECL_PACKED (t))
    1580                 :             :     {
    1581                 :           0 :       m2pp_print (s, " (* packed");
    1582                 :           0 :       if (DECL_NONADDRESSABLE_P (t))
    1583                 :           0 :         m2pp_print (s, ", non-addressible");
    1584                 :           0 :       if (DECL_BIT_FIELD (t))
    1585                 :           0 :         m2pp_print (s, ", bit-field");
    1586                 :           0 :       m2pp_print (s, ", offset: ");
    1587                 :           0 :       m2pp_expression (s, DECL_FIELD_OFFSET (t));
    1588                 :           0 :       m2pp_print (s, ", bit offset:");
    1589                 :           0 :       m2pp_expression (s, DECL_FIELD_BIT_OFFSET (t));
    1590                 :           0 :       m2pp_print (s, " *) ");
    1591                 :             :     }
    1592                 :           0 : }
    1593                 :             : 
    1594                 :             : /* m2pp_record_type displays the record type.  */
    1595                 :             : 
    1596                 :             : static void
    1597                 :           0 : m2pp_record_type (pretty *s, tree t)
    1598                 :             : {
    1599                 :           0 :   push (t);
    1600                 :           0 :   if (TREE_CODE (t) == RECORD_TYPE)
    1601                 :             :     {
    1602                 :           0 :       tree i;
    1603                 :           0 :       int o = getindent (s);
    1604                 :           0 :       int p = getcurpos (s);
    1605                 :             : 
    1606                 :           0 :       m2pp_print (s, "RECORD\n");
    1607                 :           0 :       setindent (s, p + 3);
    1608                 :           0 :       m2pp_record_alignment (s, t);
    1609                 :           0 :       for (i = TYPE_FIELDS (t); i != NULL_TREE; i = TREE_CHAIN (i))
    1610                 :             :         {
    1611                 :           0 :           m2pp_identifier (s, i);
    1612                 :           0 :           m2pp_print (s, " : ");
    1613                 :           0 :           m2pp_type (s, TREE_TYPE (i));
    1614                 :           0 :           m2pp_recordfield_bitfield (s, i);
    1615                 :           0 :           m2pp_recordfield_alignment (s, i);
    1616                 :           0 :           m2pp_print (s, ";\n");
    1617                 :             :         }
    1618                 :           0 :       setindent (s, p);
    1619                 :           0 :       m2pp_print (s, "END");
    1620                 :           0 :       setindent (s, o);
    1621                 :             :     }
    1622                 :           0 :   pop ();
    1623                 :           0 : }
    1624                 :             : 
    1625                 :             : /* m2pp_record_type displays the record type.  */
    1626                 :             : 
    1627                 :             : static void
    1628                 :           0 : m2pp_union_type (pretty *s, tree t)
    1629                 :             : {
    1630                 :           0 :   push (t);
    1631                 :           0 :   if (TREE_CODE (t) == UNION_TYPE)
    1632                 :             :     {
    1633                 :           0 :       tree i;
    1634                 :           0 :       int o = getindent (s);
    1635                 :           0 :       int p = getcurpos (s);
    1636                 :             : 
    1637                 :           0 :       m2pp_print (s, "CASE .. OF\n");
    1638                 :           0 :       setindent (s, p + 3);
    1639                 :           0 :       m2pp_record_alignment (s, t);
    1640                 :           0 :       for (i = TYPE_FIELDS (t); i != NULL_TREE; i = TREE_CHAIN (i))
    1641                 :             :         {
    1642                 :           0 :           m2pp_identifier (s, i);
    1643                 :           0 :           m2pp_print (s, " : ");
    1644                 :           0 :           m2pp_type (s, TREE_TYPE (i));
    1645                 :           0 :           m2pp_recordfield_bitfield (s, i);
    1646                 :           0 :           m2pp_print (s, ";\n");
    1647                 :             :         }
    1648                 :           0 :       setindent (s, p);
    1649                 :           0 :       m2pp_print (s, "END");
    1650                 :           0 :       setindent (s, o);
    1651                 :             :     }
    1652                 :           0 :   pop ();
    1653                 :           0 : }
    1654                 :             : 
    1655                 :             : /* m2pp_print_mode.  */
    1656                 :             : 
    1657                 :             : static void
    1658                 :           0 : m2pp_print_mode (pretty *s, tree t)
    1659                 :             : {
    1660                 :           0 :   int mode = SCALAR_FLOAT_TYPE_MODE (t);
    1661                 :           0 :   char buf[100];
    1662                 :             : 
    1663                 :           0 :   snprintf (buf, sizeof (buf), "%d", mode);
    1664                 :           0 :   m2pp_print (s, "<*");
    1665                 :           0 :   m2pp_needspace (s);
    1666                 :           0 :   m2pp_print (s, buf);
    1667                 :           0 :   m2pp_needspace (s);
    1668                 :           0 :   m2pp_print (s, "*>");
    1669                 :           0 : }
    1670                 :             : 
    1671                 :             : /* m2pp_simple_type.  */
    1672                 :             : 
    1673                 :             : static void
    1674                 :           0 : m2pp_simple_type (pretty *s, tree t)
    1675                 :             : {
    1676                 :           0 :   if (begin_printed (t))
    1677                 :             :     {
    1678                 :           0 :       m2pp_print (s, "<...>");
    1679                 :           0 :       return;
    1680                 :             :     }
    1681                 :             : 
    1682                 :           0 :   m2pp_gimpified (s, t);
    1683                 :           0 :   switch (TREE_CODE (t))
    1684                 :             :     {
    1685                 :           0 :     case INTEGER_TYPE:
    1686                 :           0 :       m2pp_integer (s, t);
    1687                 :           0 :       break;
    1688                 :           0 :     case REAL_TYPE:
    1689                 :           0 :       m2pp_real_type (s, t);
    1690                 :           0 :       m2pp_print_mode (s, t);
    1691                 :           0 :       break;
    1692                 :           0 :     case BOOLEAN_TYPE:
    1693                 :           0 :       m2pp_print (s, "BOOLEAN");
    1694                 :           0 :       break;
    1695                 :           0 :     case VOID_TYPE:
    1696                 :           0 :       m2pp_print (s, "ADDRESS");
    1697                 :           0 :       break;
    1698                 :           0 :     case TYPE_DECL:
    1699                 :           0 :       m2pp_identifier (s, t);
    1700                 :           0 :       break;
    1701                 :           0 :     case POINTER_TYPE:
    1702                 :           0 :       m2pp_pointer_type (s, t);
    1703                 :           0 :       break;
    1704                 :           0 :     case RECORD_TYPE:
    1705                 :           0 :       m2pp_record_type (s, t);
    1706                 :           0 :       break;
    1707                 :           0 :     case UNION_TYPE:
    1708                 :           0 :       m2pp_union_type (s, t);
    1709                 :           0 :       break;
    1710                 :           0 :     case ENUMERAL_TYPE:
    1711                 :           0 :       m2pp_enum (s, t);
    1712                 :           0 :       break;
    1713                 :           0 :     case COMPLEX_TYPE:
    1714                 :           0 :       m2pp_complex (s, t);
    1715                 :           0 :       break;
    1716                 :           0 :     default:
    1717                 :           0 :       m2pp_unknown (s, __FUNCTION__, get_tree_code_name (TREE_CODE (t)));
    1718                 :             :     }
    1719                 :             : }
    1720                 :             : 
    1721                 :             : /* m2pp_float issue a VAL (type, expr) expression.  */
    1722                 :             : 
    1723                 :             : static void
    1724                 :           0 : m2pp_float (pretty *s, tree t)
    1725                 :             : {
    1726                 :           0 :   m2pp_needspace (s);
    1727                 :           0 :   m2pp_print (s, "VAL (");
    1728                 :           0 :   m2pp_simple_type (s, TREE_TYPE (t));
    1729                 :           0 :   m2pp_print (s, ", ");
    1730                 :           0 :   m2pp_expression (s, TREE_OPERAND (t, 0));
    1731                 :           0 :   m2pp_print (s, ")");
    1732                 :           0 : }
    1733                 :             : 
    1734                 :             : /* m2pp_expression display an expression.  */
    1735                 :             : 
    1736                 :             : static void
    1737                 :           0 : m2pp_expression (pretty *s, tree t)
    1738                 :             : {
    1739                 :           0 :   enum tree_code code = TREE_CODE (t);
    1740                 :             : 
    1741                 :           0 :   switch (code)
    1742                 :             :     {
    1743                 :           0 :     case EQ_EXPR:
    1744                 :           0 :       m2pp_relop (s, t, "=");
    1745                 :           0 :       break;
    1746                 :           0 :     case NE_EXPR:
    1747                 :           0 :       m2pp_relop (s, t, "#");
    1748                 :           0 :       break;
    1749                 :           0 :     case LE_EXPR:
    1750                 :           0 :       m2pp_relop (s, t, "<=");
    1751                 :           0 :       break;
    1752                 :           0 :     case GE_EXPR:
    1753                 :           0 :       m2pp_relop (s, t, ">=");
    1754                 :           0 :       break;
    1755                 :           0 :     case LT_EXPR:
    1756                 :           0 :       m2pp_relop (s, t, "<");
    1757                 :           0 :       break;
    1758                 :           0 :     case GT_EXPR:
    1759                 :           0 :       m2pp_relop (s, t, ">");
    1760                 :           0 :       break;
    1761                 :           0 :     case FLOAT_EXPR:
    1762                 :           0 :       m2pp_float (s, t);
    1763                 :           0 :       break;
    1764                 :           0 :     default:
    1765                 :           0 :       m2pp_simple_expression (s, t);
    1766                 :             :     }
    1767                 :           0 : }
    1768                 :             : 
    1769                 :             : /* m2pp_relop displays the lhs relop rhs.  */
    1770                 :             : 
    1771                 :             : static void
    1772                 :           0 : m2pp_relop (pretty *s, tree t, const char *p)
    1773                 :             : {
    1774                 :           0 :   m2pp_expression (s, TREE_OPERAND (t, 0));
    1775                 :           0 :   m2pp_needspace (s);
    1776                 :           0 :   m2pp_print (s, p);
    1777                 :           0 :   m2pp_needspace (s);
    1778                 :           0 :   m2pp_expression (s, TREE_OPERAND (t, 1));
    1779                 :           0 : }
    1780                 :             : 
    1781                 :             : /* m2pp_compound_expression handle compound expression tree.  */
    1782                 :             : 
    1783                 :             : static void
    1784                 :           0 : m2pp_compound_expression (pretty *s, tree t)
    1785                 :             : {
    1786                 :           0 :   m2pp_print (s, "compound expression {");
    1787                 :           0 :   m2pp_expression (s, TREE_OPERAND (t, 0));
    1788                 :           0 :   m2pp_print (s, " (* result ignored *), ");
    1789                 :           0 :   m2pp_expression (s, TREE_OPERAND (t, 1));
    1790                 :           0 :   m2pp_print (s, "}");
    1791                 :           0 :   m2pp_needspace (s);
    1792                 :           0 : }
    1793                 :             : 
    1794                 :             : /* m2pp_target_expression handle target expression tree.  */
    1795                 :             : 
    1796                 :             : static void
    1797                 :           0 : m2pp_target_expression (pretty *s, tree t)
    1798                 :             : {
    1799                 :           0 :   m2pp_print (s, "{");
    1800                 :           0 :   m2pp_needspace (s);
    1801                 :           0 :   if (TREE_OPERAND (t, 0) != NULL_TREE)
    1802                 :             :     {
    1803                 :           0 :       m2pp_print (s, "(* target *) ");
    1804                 :           0 :       m2pp_expression (s, TREE_OPERAND (t, 0));
    1805                 :           0 :       m2pp_print (s, ",");
    1806                 :           0 :       m2pp_needspace (s);
    1807                 :             :     }
    1808                 :           0 :   if (TREE_OPERAND (t, 1) != NULL_TREE)
    1809                 :             :     {
    1810                 :           0 :       m2pp_print (s, "(* initializer *) ");
    1811                 :           0 :       m2pp_expression (s, TREE_OPERAND (t, 1));
    1812                 :           0 :       m2pp_print (s, ",");
    1813                 :           0 :       m2pp_needspace (s);
    1814                 :             :     }
    1815                 :           0 :   if (TREE_OPERAND (t, 2) != NULL_TREE)
    1816                 :             :     {
    1817                 :           0 :       m2pp_print (s, "(* cleanup *) ");
    1818                 :           0 :       m2pp_expression (s, TREE_OPERAND (t, 2));
    1819                 :           0 :       m2pp_print (s, ",");
    1820                 :           0 :       m2pp_needspace (s);
    1821                 :             :     }
    1822                 :           0 :   if (TREE_OPERAND (t, 3) != NULL_TREE)
    1823                 :             :     {
    1824                 :           0 :       m2pp_print (s, "(* saved initializer *) ");
    1825                 :           0 :       m2pp_expression (s, TREE_OPERAND (t, 3));
    1826                 :           0 :       m2pp_print (s, ",");
    1827                 :           0 :       m2pp_needspace (s);
    1828                 :             :     }
    1829                 :           0 :   m2pp_print (s, "}");
    1830                 :           0 :   m2pp_needspace (s);
    1831                 :           0 : }
    1832                 :             : 
    1833                 :             : /* m2pp_constructor print out a constructor.  */
    1834                 :             : 
    1835                 :             : static void
    1836                 :           0 : m2pp_constructor (pretty *s, tree t)
    1837                 :             : {
    1838                 :           0 :   tree purpose, value;
    1839                 :           0 :   unsigned HOST_WIDE_INT ix;
    1840                 :             : 
    1841                 :           0 :   m2pp_print (s, "{ ");
    1842                 :           0 :   FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (t), ix, purpose, value)
    1843                 :             :   {
    1844                 :           0 :     m2pp_print (s, "(index: ");
    1845                 :           0 :     m2pp_simple_expression (s, purpose);
    1846                 :           0 :     m2pp_print (s, ") ");
    1847                 :           0 :     m2pp_simple_expression (s, value);
    1848                 :           0 :     m2pp_print (s, ", ");
    1849                 :             :   }
    1850                 :           0 :   m2pp_print (s, "}");
    1851                 :             : #ifdef VERBOSE_TYPE_DESC
    1852                 :             :   m2pp_print (s, "(* type: ");
    1853                 :             :   setindent (s, getindent (s) + 8);
    1854                 :             :   m2pp_type (s, TREE_TYPE (t));
    1855                 :             :   setindent (s, getindent (s) - 8);
    1856                 :             :   m2pp_print (s, " *)\n");
    1857                 :             : #endif
    1858                 :           0 : }
    1859                 :             : 
    1860                 :             : /* m2pp_complex_expr handle GCC complex_expr tree.  */
    1861                 :             : 
    1862                 :             : static void
    1863                 :           0 : m2pp_complex_expr (pretty *s, tree t)
    1864                 :             : {
    1865                 :           0 :   if (TREE_CODE (t) == COMPLEX_CST)
    1866                 :             :     {
    1867                 :           0 :       m2pp_print (s, "CMPLX(");
    1868                 :           0 :       m2pp_needspace (s);
    1869                 :           0 :       m2pp_expression (s, TREE_REALPART (t));
    1870                 :           0 :       m2pp_print (s, ",");
    1871                 :           0 :       m2pp_needspace (s);
    1872                 :           0 :       m2pp_expression (s, TREE_IMAGPART (t));
    1873                 :           0 :       m2pp_print (s, ")");
    1874                 :             :     }
    1875                 :             :   else
    1876                 :             :     {
    1877                 :           0 :       m2pp_print (s, "CMPLX(");
    1878                 :           0 :       m2pp_needspace (s);
    1879                 :           0 :       m2pp_expression (s, TREE_OPERAND (t, 0));
    1880                 :           0 :       m2pp_print (s, ",");
    1881                 :           0 :       m2pp_needspace (s);
    1882                 :           0 :       m2pp_expression (s, TREE_OPERAND (t, 1));
    1883                 :           0 :       m2pp_print (s, ")");
    1884                 :             :     }
    1885                 :           0 : }
    1886                 :             : 
    1887                 :             : /* m2pp_imagpart_expr handle imagpart_expr tree.  */
    1888                 :             : 
    1889                 :             : static void
    1890                 :           0 : m2pp_imagpart_expr (pretty *s, tree t)
    1891                 :             : {
    1892                 :           0 :   m2pp_print (s, "IM(");
    1893                 :           0 :   m2pp_needspace (s);
    1894                 :           0 :   if (TREE_CODE (t) == IMAGPART_EXPR)
    1895                 :           0 :     m2pp_expression (s, TREE_OPERAND (t, 0));
    1896                 :           0 :   else if (TREE_CODE (t) == COMPLEX_CST)
    1897                 :           0 :     m2pp_expression (s, TREE_IMAGPART (t));
    1898                 :           0 :   m2pp_needspace (s);
    1899                 :           0 :   m2pp_print (s, ")");
    1900                 :           0 : }
    1901                 :             : 
    1902                 :             : /* m2pp_realpart_expr handle imagpart_expr tree.  */
    1903                 :             : 
    1904                 :             : static void
    1905                 :           0 : m2pp_realpart_expr (pretty *s, tree t)
    1906                 :             : {
    1907                 :           0 :   m2pp_print (s, "RE(");
    1908                 :           0 :   m2pp_needspace (s);
    1909                 :           0 :   if (TREE_CODE (t) == REALPART_EXPR)
    1910                 :           0 :     m2pp_expression (s, TREE_OPERAND (t, 0));
    1911                 :           0 :   else if (TREE_CODE (t) == COMPLEX_CST)
    1912                 :           0 :     m2pp_expression (s, TREE_REALPART (t));
    1913                 :           0 :   m2pp_needspace (s);
    1914                 :           0 :   m2pp_print (s, ")");
    1915                 :           0 : }
    1916                 :             : 
    1917                 :             : /* m2pp_bit_ior_expr generate a C style bit or.  */
    1918                 :             : 
    1919                 :             : static void
    1920                 :           0 : m2pp_bit_ior_expr (pretty *s, tree t)
    1921                 :             : {
    1922                 :           0 :   m2pp_binary (s, t, "|");
    1923                 :           0 : }
    1924                 :             : 
    1925                 :             : /* m2pp_truth_expr.  */
    1926                 :             : 
    1927                 :             : static void
    1928                 :           0 : m2pp_truth_expr (pretty *s, tree t, const char *op)
    1929                 :             : {
    1930                 :           0 :   m2pp_print (s, "(");
    1931                 :           0 :   m2pp_expression (s, TREE_OPERAND (t, 0));
    1932                 :           0 :   m2pp_print (s, ")");
    1933                 :           0 :   m2pp_needspace (s);
    1934                 :           0 :   m2pp_print (s, op);
    1935                 :           0 :   m2pp_needspace (s);
    1936                 :           0 :   m2pp_print (s, "(");
    1937                 :           0 :   m2pp_expression (s, TREE_OPERAND (t, 1));
    1938                 :           0 :   m2pp_print (s, ")");
    1939                 :           0 : }
    1940                 :             : 
    1941                 :             : /* m2pp_simple_expression handle GCC expression tree.  */
    1942                 :             : 
    1943                 :             : static void
    1944                 :           0 : m2pp_simple_expression (pretty *s, tree t)
    1945                 :             : {
    1946                 :           0 :   enum tree_code code = TREE_CODE (t);
    1947                 :             : 
    1948                 :           0 :   switch (code)
    1949                 :             :     {
    1950                 :           0 :     case ERROR_MARK:
    1951                 :           0 :       m2pp_print (s, "(* !!! ERROR NODE !!! *)");
    1952                 :           0 :       break;
    1953                 :           0 :     case CONSTRUCTOR:
    1954                 :           0 :       m2pp_constructor (s, t);
    1955                 :           0 :       break;
    1956                 :           0 :     case IDENTIFIER_NODE:
    1957                 :           0 :       m2pp_ident_pointer (s, t);
    1958                 :           0 :       break;
    1959                 :           0 :     case PARM_DECL:
    1960                 :           0 :       m2pp_identifier (s, t);
    1961                 :           0 :       break;
    1962                 :           0 :     case FIELD_DECL:
    1963                 :           0 :       m2pp_identifier (s, t);
    1964                 :           0 :       break;
    1965                 :           0 :     case TREE_LIST:
    1966                 :           0 :       m2pp_list (s, t);
    1967                 :           0 :       break;
    1968                 :           0 :     case BLOCK:
    1969                 :           0 :       m2pp_print (s, "(* BLOCK NODE *)");
    1970                 :           0 :       break;
    1971                 :           0 :     case OFFSET_TYPE:
    1972                 :           0 :       m2pp_offset (s, t);
    1973                 :           0 :       break;
    1974                 :           0 :     case INTEGER_CST:
    1975                 :           0 :       m2pp_integer_cst (s, t);
    1976                 :           0 :       break;
    1977                 :           0 :     case REAL_CST:
    1978                 :           0 :       m2pp_real_cst (s, t);
    1979                 :           0 :       break;
    1980                 :           0 :     case STRING_CST:
    1981                 :           0 :       m2pp_string_cst (s, t);
    1982                 :           0 :       break;
    1983                 :           0 :     case INDIRECT_REF:
    1984                 :           0 :       m2pp_indirect_ref (s, t);
    1985                 :           0 :       break;
    1986                 :           0 :     case ADDR_EXPR:
    1987                 :           0 :       m2pp_addr_expr (s, t);
    1988                 :           0 :       break;
    1989                 :           0 :     case NOP_EXPR:
    1990                 :           0 :       m2pp_nop (s, t);
    1991                 :           0 :       break;
    1992                 :           0 :     case CONVERT_EXPR:
    1993                 :           0 :       m2pp_convert (s, t);
    1994                 :           0 :       break;
    1995                 :           0 :     case VAR_DECL:
    1996                 :           0 :       m2pp_var_decl (s, t);
    1997                 :           0 :       break;
    1998                 :           0 :     case RESULT_DECL:
    1999                 :           0 :       m2pp_result_decl (s, t);
    2000                 :           0 :       break;
    2001                 :           0 :     case PLUS_EXPR:
    2002                 :           0 :       m2pp_binary (s, t, "+");
    2003                 :           0 :       break;
    2004                 :           0 :     case MINUS_EXPR:
    2005                 :           0 :       m2pp_binary (s, t, "-");
    2006                 :           0 :       break;
    2007                 :           0 :     case MULT_EXPR:
    2008                 :           0 :       m2pp_binary (s, t, "*");
    2009                 :           0 :       break;
    2010                 :           0 :     case FLOOR_DIV_EXPR:
    2011                 :           0 :     case CEIL_DIV_EXPR:
    2012                 :           0 :     case TRUNC_DIV_EXPR:
    2013                 :           0 :     case ROUND_DIV_EXPR:
    2014                 :           0 :       m2pp_binary (s, t, "DIV");
    2015                 :           0 :       break;
    2016                 :           0 :     case FLOOR_MOD_EXPR:
    2017                 :           0 :     case CEIL_MOD_EXPR:
    2018                 :           0 :     case TRUNC_MOD_EXPR:
    2019                 :           0 :     case ROUND_MOD_EXPR:
    2020                 :           0 :       m2pp_binary (s, t, "MOD");
    2021                 :           0 :       break;
    2022                 :           0 :     case NEGATE_EXPR:
    2023                 :           0 :       m2pp_unary (s, t, "-");
    2024                 :           0 :       break;
    2025                 :           0 :     case CALL_EXPR:
    2026                 :           0 :       m2pp_call_expr (s, t);
    2027                 :           0 :       break;
    2028                 :           0 :     case SSA_NAME:
    2029                 :           0 :       m2pp_ssa (s, t);
    2030                 :           0 :       break;
    2031                 :           0 :     case COMPONENT_REF:
    2032                 :           0 :       m2pp_component_ref (s, t);
    2033                 :           0 :       break;
    2034                 :           0 :     case RETURN_EXPR:
    2035                 :           0 :       m2pp_return_expr (s, t);
    2036                 :           0 :       break;
    2037                 :           0 :     case ARRAY_REF:
    2038                 :           0 :       m2pp_array_ref (s, t);
    2039                 :           0 :       break;
    2040                 :           0 :     case NON_LVALUE_EXPR:
    2041                 :           0 :       m2pp_non_lvalue_expr (s, t);
    2042                 :           0 :       break;
    2043                 :           0 :     case EXPR_STMT:
    2044                 :           0 :       m2pp_expression (s, EXPR_STMT_EXPR (t));
    2045                 :           0 :       break;
    2046                 :             : #if 0
    2047                 :             :     case EXC_PTR_EXPR:
    2048                 :             :       m2pp_print (s, "GCC_EXCEPTION_OBJECT");
    2049                 :             :       break;
    2050                 :             : #endif
    2051                 :           0 :     case INIT_EXPR:
    2052                 :           0 :     case MODIFY_EXPR:
    2053                 :           0 :       m2pp_assignment (s, t);
    2054                 :           0 :       break;
    2055                 :           0 :     case COMPOUND_EXPR:
    2056                 :           0 :       m2pp_compound_expression (s, t);
    2057                 :           0 :       break;
    2058                 :           0 :     case TARGET_EXPR:
    2059                 :           0 :       m2pp_target_expression (s, t);
    2060                 :           0 :       break;
    2061                 :           0 :     case THROW_EXPR:
    2062                 :           0 :       m2pp_throw (s, t);
    2063                 :           0 :       break;
    2064                 :           0 :     case FUNCTION_DECL:
    2065                 :           0 :       m2pp_identifier (s, t);
    2066                 :           0 :       break;
    2067                 :           0 :     case COMPLEX_EXPR:
    2068                 :           0 :       m2pp_complex_expr (s, t);
    2069                 :           0 :       break;
    2070                 :           0 :     case REALPART_EXPR:
    2071                 :           0 :       m2pp_realpart_expr (s, t);
    2072                 :           0 :       break;
    2073                 :           0 :     case IMAGPART_EXPR:
    2074                 :           0 :       m2pp_imagpart_expr (s, t);
    2075                 :           0 :       break;
    2076                 :           0 :     case CONST_DECL:
    2077                 :           0 :       m2pp_identifier (s, t);
    2078                 :           0 :       break;
    2079                 :           0 :     case POINTER_PLUS_EXPR:
    2080                 :           0 :       m2pp_binary (s, t, "+");
    2081                 :           0 :       break;
    2082                 :           0 :     case CLEANUP_POINT_EXPR:
    2083                 :           0 :       m2pp_cleanup_point_expr (s, t);
    2084                 :           0 :       break;
    2085                 :           0 :     case BIT_IOR_EXPR:
    2086                 :           0 :       m2pp_bit_ior_expr (s, t);
    2087                 :           0 :       break;
    2088                 :           0 :     case TRUTH_ANDIF_EXPR:
    2089                 :           0 :       m2pp_truth_expr (s, t, "AND");
    2090                 :           0 :       break;
    2091                 :           0 :     case TRUTH_ORIF_EXPR:
    2092                 :           0 :       m2pp_truth_expr (s, t, "OR");
    2093                 :           0 :       break;
    2094                 :           0 :     default:
    2095                 :           0 :       m2pp_unknown (s, __FUNCTION__, get_tree_code_name (code));
    2096                 :             :     }
    2097                 :           0 : }
    2098                 :             : 
    2099                 :             : /* non_lvalue_expr indicates that operand 0 is not an lvalue.  */
    2100                 :             : 
    2101                 :             : static void
    2102                 :           0 : m2pp_non_lvalue_expr (pretty *s, tree t)
    2103                 :             : {
    2104                 :           0 :   m2pp_needspace (s);
    2105                 :           0 :   m2pp_print (s, "assert_non_lvalue(");
    2106                 :           0 :   m2pp_needspace (s);
    2107                 :           0 :   m2pp_expression (s, TREE_OPERAND (t, 0));
    2108                 :           0 :   m2pp_needspace (s);
    2109                 :           0 :   m2pp_print (s, ")");
    2110                 :           0 : }
    2111                 :             : 
    2112                 :             : /* m2pp_array_ref prints out the array reference.  */
    2113                 :             : 
    2114                 :             : static void
    2115                 :           0 : m2pp_array_ref (pretty *s, tree t)
    2116                 :             : {
    2117                 :           0 :   m2pp_expression (s, TREE_OPERAND (t, 0));
    2118                 :           0 :   m2pp_print (s, "[");
    2119                 :           0 :   m2pp_expression (s, TREE_OPERAND (t, 1));
    2120                 :           0 :   m2pp_print (s, "]");
    2121                 :           0 : }
    2122                 :             : 
    2123                 :             : /* m2pp_ssa prints out the ssa variable name.  */
    2124                 :             : 
    2125                 :             : static void
    2126                 :           0 : m2pp_ssa (pretty *s, tree t)
    2127                 :             : {
    2128                 :           0 :   m2pp_identifier (s, SSA_NAME_VAR (t));
    2129                 :           0 : }
    2130                 :             : 
    2131                 :             : /* m2pp_binary print the binary operator, p, and lhs, rhs.  */
    2132                 :             : 
    2133                 :             : static void
    2134                 :           0 : m2pp_binary (pretty *s, tree t, const char *p)
    2135                 :             : {
    2136                 :           0 :   tree left = TREE_OPERAND (t, 0);
    2137                 :           0 :   tree right = TREE_OPERAND (t, 1);
    2138                 :             : 
    2139                 :           0 :   m2pp_expression (s, left);
    2140                 :           0 :   m2pp_needspace (s);
    2141                 :           0 :   m2pp_print (s, p);
    2142                 :           0 :   m2pp_needspace (s);
    2143                 :           0 :   m2pp_expression (s, right);
    2144                 :           0 : }
    2145                 :             : 
    2146                 :             : /* m2pp_unary print the unary operator, p, and expression.  */
    2147                 :             : 
    2148                 :             : static void
    2149                 :           0 : m2pp_unary (pretty *s, tree t, const char *p)
    2150                 :             : {
    2151                 :           0 :   tree expr = TREE_OPERAND (t, 0);
    2152                 :             : 
    2153                 :           0 :   m2pp_needspace (s);
    2154                 :           0 :   m2pp_print (s, p);
    2155                 :           0 :   m2pp_expression (s, expr);
    2156                 :           0 : }
    2157                 :             : 
    2158                 :             : /* m2pp_integer_cst displays the integer constant.  */
    2159                 :             : 
    2160                 :             : static void
    2161                 :           0 : m2pp_integer_cst (pretty *s, tree t)
    2162                 :             : {
    2163                 :           0 :   char val[100];
    2164                 :             : 
    2165                 :           0 :   snprintf (val, 100, HOST_WIDE_INT_PRINT_UNSIGNED, TREE_INT_CST_LOW (t));
    2166                 :           0 :   m2pp_print (s, val);
    2167                 :           0 : }
    2168                 :             : 
    2169                 :             : /* m2pp_real_cst displays the real constant.  */
    2170                 :             : 
    2171                 :             : static void
    2172                 :           0 : m2pp_real_cst (pretty *s, tree t ATTRIBUTE_UNUSED)
    2173                 :             : {
    2174                 :           0 :   m2pp_print (s, "<unknown real>");
    2175                 :           0 : }
    2176                 :             : 
    2177                 :             : /* m2pp_string_cst displays the real constant.  */
    2178                 :             : 
    2179                 :             : static void
    2180                 :           0 : m2pp_string_cst (pretty *s, tree t)
    2181                 :             : {
    2182                 :           0 :   const char *p = TREE_STRING_POINTER (t);
    2183                 :           0 :   int i = 0;
    2184                 :             : 
    2185                 :           0 :   m2pp_print (s, "\"");
    2186                 :           0 :   while (p[i] != '\0')
    2187                 :             :     {
    2188                 :           0 :       m2pp_print_char (s, p[i]);
    2189                 :           0 :       i++;
    2190                 :             :     }
    2191                 :           0 :   m2pp_print (s, "\"");
    2192                 :           0 : }
    2193                 :             : 
    2194                 :             : /* m2pp_statement_sequence iterates over a statement list
    2195                 :             :    displaying each statement in turn.  */
    2196                 :             : 
    2197                 :             : static void
    2198                 :           0 : m2pp_statement_sequence (pretty *s, tree t)
    2199                 :             : {
    2200                 :           0 :   if (t != NULL_TREE)
    2201                 :             :     {
    2202                 :           0 :       if (TREE_CODE (t) == STATEMENT_LIST)
    2203                 :             :         {
    2204                 :           0 :           tree_stmt_iterator i;
    2205                 :           0 :           m2pp_print (s, "(* statement list *)\n");
    2206                 :             : 
    2207                 :           0 :           for (i = tsi_start (t); !tsi_end_p (i); tsi_next (&i))
    2208                 :           0 :             m2pp_statement (s, *tsi_stmt_ptr (i));
    2209                 :             :         }
    2210                 :             :       else
    2211                 :           0 :         m2pp_statement (s, t);
    2212                 :             :     }
    2213                 :           0 : }
    2214                 :             : 
    2215                 :             : /* m2pp_unknown displays an error message.  */
    2216                 :             : 
    2217                 :             : static void
    2218                 :           0 : m2pp_unknown (pretty *s, const char *s1, const char *s2)
    2219                 :             : {
    2220                 :           0 :   m2pp_begin (s);
    2221                 :           0 :   m2pp_print (s, s1);
    2222                 :           0 :   m2pp_needspace (s);
    2223                 :           0 :   m2pp_print (s, s2);
    2224                 :           0 :   m2pp_needspace (s);
    2225                 :           0 : }
    2226                 :             : 
    2227                 :             : /* m2pp_throw displays a throw statement.  */
    2228                 :             : 
    2229                 :             : static void
    2230                 :           0 : m2pp_throw (pretty *s, tree t)
    2231                 :             : {
    2232                 :           0 :   tree expr = TREE_OPERAND (t, 0);
    2233                 :             : 
    2234                 :           0 :   m2pp_begin (s);
    2235                 :           0 :   if (expr == NULL_TREE)
    2236                 :           0 :     m2pp_print (s, "THROW ;\n");
    2237                 :             :   else
    2238                 :             :     {
    2239                 :           0 :       m2pp_print (s, "THROW (");
    2240                 :           0 :       m2pp_expression (s, TREE_OPERAND (t, 0));
    2241                 :           0 :       m2pp_print (s, ")\n");
    2242                 :             :     }
    2243                 :           0 : }
    2244                 :             : 
    2245                 :             : /* m2pp_catch_expr attempts to reconstruct a catch expr.  */
    2246                 :             : 
    2247                 :             : static void
    2248                 :           0 : m2pp_catch_expr (pretty *s, tree t)
    2249                 :             : {
    2250                 :           0 :   tree types = CATCH_TYPES (t);
    2251                 :           0 :   tree body = CATCH_BODY (t);
    2252                 :             : 
    2253                 :           0 :   m2pp_print (s, "(* CATCH expression ");
    2254                 :           0 :   if (types != NULL_TREE)
    2255                 :             :     {
    2256                 :           0 :       m2pp_print (s, "(");
    2257                 :           0 :       m2pp_expression (s, types);
    2258                 :           0 :       m2pp_print (s, ")");
    2259                 :             :     }
    2260                 :           0 :   m2pp_print (s, "*)\n");
    2261                 :           0 :   m2pp_print (s, "(* catch body *)\n");
    2262                 :           0 :   m2pp_statement_sequence (s, body);
    2263                 :           0 :   m2pp_print (s, "(* end catch body *)\n");
    2264                 :           0 : }
    2265                 :             : 
    2266                 :             : /* m2pp_try_finally_expr attemts to reconstruct a try finally expr.  */
    2267                 :             : 
    2268                 :             : static void
    2269                 :           0 : m2pp_try_finally_expr (pretty *s, tree t)
    2270                 :             : {
    2271                 :           0 :   m2pp_begin (s);
    2272                 :           0 :   m2pp_print (s, "(* try_finally_expr *)\n");
    2273                 :           0 :   setindent (s, getindent (s) + 3);
    2274                 :           0 :   m2pp_statement_sequence (s, TREE_OPERAND (t, 0));
    2275                 :           0 :   setindent (s, getindent (s) - 3);
    2276                 :           0 :   m2pp_print (s,
    2277                 :             :               "(* finally (cleanup which is executed after the above) *)\n");
    2278                 :           0 :   setindent (s, getindent (s) + 3);
    2279                 :           0 :   m2pp_statement_sequence (s, TREE_OPERAND (t, 1));
    2280                 :           0 :   setindent (s, getindent (s) - 3);
    2281                 :           0 :   m2pp_print (s, "(* end try_finally_expr *)\n");
    2282                 :           0 : }
    2283                 :             : 
    2284                 :             : /* m2pp_if_stmt pretty print a if_stmt tree.  Modula-2 does not use this to
    2285                 :             :    generate IF THEN ELSE END statements, instead it uses labels and gotos.  */
    2286                 :             : 
    2287                 :             : static void
    2288                 :           0 : m2pp_if_stmt (pretty *s, tree t)
    2289                 :             : {
    2290                 :           0 :   m2pp_print (s, "(* An if_stmt node.  *)\n");
    2291                 :           0 :   m2pp_print (s, "IF ");
    2292                 :           0 :   m2pp_expression (s, TREE_OPERAND (t, 0));
    2293                 :           0 :   m2pp_print (s, "\n");
    2294                 :           0 :   m2pp_print (s, "THEN\n");
    2295                 :           0 :   setindent (s, getindent (s) + 3);
    2296                 :           0 :   m2pp_statement_sequence (s, TREE_OPERAND (t, 1));
    2297                 :           0 :   setindent (s, getindent (s) - 3);
    2298                 :           0 :   m2pp_print (s, "ELSE\n");
    2299                 :           0 :   setindent (s, getindent (s) + 3);
    2300                 :           0 :   m2pp_statement_sequence (s, TREE_OPERAND (t, 2));
    2301                 :           0 :   setindent (s, getindent (s) - 3);
    2302                 :           0 :   m2pp_print (s, "END\n");
    2303                 :           0 : }
    2304                 :             : 
    2305                 :             : static void
    2306                 :           0 : m2pp_asm_expr (pretty *state, tree node)
    2307                 :             : {
    2308                 :           0 :   m2pp_begin (state);
    2309                 :           0 :   m2pp_print (state, "ASM");
    2310                 :           0 :   m2pp_needspace (state);
    2311                 :           0 :   if (ASM_VOLATILE_P (node))
    2312                 :             :     {
    2313                 :           0 :       m2pp_print (state, "VOLATILE");
    2314                 :           0 :       m2pp_needspace (state);
    2315                 :             :     }
    2316                 :           0 :   m2pp_print (state, "(");
    2317                 :           0 :   m2pp_expression (state, ASM_STRING (node));
    2318                 :           0 :   m2pp_print (state, ":");
    2319                 :           0 :   m2pp_needspace (state);
    2320                 :           0 :   m2pp_expression (state, ASM_OUTPUTS (node));
    2321                 :           0 :   m2pp_print (state, ":");
    2322                 :           0 :   m2pp_needspace (state);
    2323                 :           0 :   m2pp_expression (state, ASM_INPUTS (node));
    2324                 :           0 :   if (ASM_CLOBBERS (node) != NULL)
    2325                 :             :     {
    2326                 :           0 :       m2pp_print (state, ":");
    2327                 :           0 :       m2pp_needspace (state);
    2328                 :           0 :       m2pp_expression (state, ASM_CLOBBERS (node));
    2329                 :             :     }
    2330                 :           0 :   m2pp_print (state, ");\n");
    2331                 :           0 : }
    2332                 :             : 
    2333                 :             : /* m2pp_statement attempts to reconstruct a statement.  */
    2334                 :             : 
    2335                 :             : static void
    2336                 :           0 : m2pp_statement (pretty *s, tree t)
    2337                 :             : {
    2338                 :           0 :   enum tree_code code = TREE_CODE (t);
    2339                 :             : 
    2340                 :           0 :   m2pp_loc (s, t);
    2341                 :           0 :   switch (code)
    2342                 :             :     {
    2343                 :           0 :     case COND_EXPR:
    2344                 :           0 :       m2pp_conditional (s, t);
    2345                 :           0 :       break;
    2346                 :           0 :     case LABEL_EXPR:
    2347                 :           0 :       m2pp_label_expr (s, t);
    2348                 :           0 :       break;
    2349                 :           0 :     case LABEL_DECL:
    2350                 :           0 :       m2pp_label_decl (s, t);
    2351                 :           0 :       break;
    2352                 :           0 :     case GOTO_EXPR:
    2353                 :           0 :       m2pp_goto (s, t);
    2354                 :           0 :       break;
    2355                 :           0 :     case INIT_EXPR:
    2356                 :           0 :     case MODIFY_EXPR:
    2357                 :           0 :       m2pp_assignment (s, t);
    2358                 :           0 :       break;
    2359                 :           0 :     case CALL_EXPR:
    2360                 :           0 :       m2pp_procedure_call (s, t);
    2361                 :           0 :       break;
    2362                 :           0 :     case BLOCK:
    2363                 :           0 :       m2pp_block_list (s, t);
    2364                 :           0 :       break;
    2365                 :           0 :     case BIND_EXPR:
    2366                 :           0 :       m2pp_bind_expr (s, t);
    2367                 :           0 :       break;
    2368                 :           0 :     case RETURN_EXPR:
    2369                 :           0 :       m2pp_return_expr (s, t);
    2370                 :           0 :       break;
    2371                 :           0 :     case DECL_EXPR:
    2372                 :           0 :       m2pp_decl_expr (s, t);
    2373                 :           0 :       break;
    2374                 :           0 :     case TRY_BLOCK:
    2375                 :           0 :       m2pp_try_block (s, t);
    2376                 :           0 :       break;
    2377                 :           0 :     case HANDLER:
    2378                 :           0 :       m2pp_handler (s, t);
    2379                 :           0 :       break;
    2380                 :           0 :     case CLEANUP_POINT_EXPR:
    2381                 :           0 :       m2pp_cleanup_point_expr (s, t);
    2382                 :           0 :       break;
    2383                 :           0 :     case THROW_EXPR:
    2384                 :           0 :       m2pp_throw (s, t);
    2385                 :           0 :       break;
    2386                 :           0 :     case TRY_CATCH_EXPR:
    2387                 :           0 :       m2pp_try_catch_expr (s, t);
    2388                 :           0 :       break;
    2389                 :           0 :     case TRY_FINALLY_EXPR:
    2390                 :           0 :       m2pp_try_finally_expr (s, t);
    2391                 :           0 :       break;
    2392                 :           0 :     case CATCH_EXPR:
    2393                 :           0 :       m2pp_catch_expr (s, t);
    2394                 :           0 :       break;
    2395                 :           0 :     case ASM_EXPR:
    2396                 :           0 :       m2pp_asm_expr (s, t);
    2397                 :           0 :       break;
    2398                 :           0 :     case IF_STMT:
    2399                 :           0 :       m2pp_if_stmt (s, t);
    2400                 :           0 :       break;
    2401                 :           0 :     case ERROR_MARK:
    2402                 :           0 :       m2pp_print (s, "<ERROR CODE>\n");
    2403                 :           0 :       break;
    2404                 :           0 :     default:
    2405                 :           0 :       m2pp_unknown (s, __FUNCTION__, get_tree_code_name (TREE_CODE (t)));
    2406                 :             :     }
    2407                 :           0 : }
    2408                 :             : 
    2409                 :             : /* m2pp_try_catch_expr is used after gimplification.  */
    2410                 :             : 
    2411                 :             : static void
    2412                 :           0 : m2pp_try_catch_expr (pretty *s, tree t)
    2413                 :             : {
    2414                 :           0 :   m2pp_print (s, "(* try_catch_expr begins *)\n");
    2415                 :           0 :   m2pp_statement_sequence (s, TREE_OPERAND (t, 0));
    2416                 :           0 :   setindent (s, 0);
    2417                 :           0 :   m2pp_print (s, "EXCEPT\n");
    2418                 :           0 :   setindent (s, 3);
    2419                 :           0 :   m2pp_statement_sequence (s, TREE_OPERAND (t, 1));
    2420                 :           0 :   m2pp_print (s, "(* try_catch_expr ends *)\n");
    2421                 :           0 : }
    2422                 :             : 
    2423                 :             : /* m2pp_cleanup_point_expr emits a comment indicating a GCC
    2424                 :             :    cleanup_point_expr is present.  */
    2425                 :             : 
    2426                 :             : static void
    2427                 :           0 : m2pp_cleanup_point_expr (pretty *s, tree t)
    2428                 :             : {
    2429                 :           0 :   m2pp_begin (s);
    2430                 :           0 :   m2pp_print (s, "(* Cleanup point begins.  *)\n");
    2431                 :           0 :   m2pp_expression (s, TREE_OPERAND (t, 0));
    2432                 :           0 :   m2pp_print (s, "(* Cleanup point ends.  *)\n");
    2433                 :           0 : }
    2434                 :             : 
    2435                 :             : /* m2pp_decl_expr displays a local declaration.  */
    2436                 :             : 
    2437                 :             : static void
    2438                 :           0 : m2pp_decl_expr (pretty *s, tree t)
    2439                 :             : {
    2440                 :           0 :   m2pp_var (s);
    2441                 :           0 :   m2pp_print (s, "(* Variable in decl_expr.  *)\n");
    2442                 :           0 :   m2pp_var_type_decl (s, DECL_EXPR_DECL (t));
    2443                 :           0 : }
    2444                 :             : 
    2445                 :             : /* m2pp_procedure_call print a call to a procedure.  */
    2446                 :             : 
    2447                 :             : static void
    2448                 :           0 : m2pp_procedure_call (pretty *s, tree t)
    2449                 :             : {
    2450                 :           0 :   m2pp_begin (s);
    2451                 :           0 :   m2pp_call_expr (s, t);
    2452                 :           0 :   m2pp_needspace (s);
    2453                 :           0 :   m2pp_print (s, ";\n");
    2454                 :           0 : }
    2455                 :             : 
    2456                 :             : /* args displays each argument in an iter list by calling expression.  */
    2457                 :             : 
    2458                 :             : static void
    2459                 :           0 : m2pp_args (pretty *s, tree e)
    2460                 :             : {
    2461                 :           0 :   call_expr_arg_iterator iter;
    2462                 :           0 :   tree arg;
    2463                 :             : 
    2464                 :           0 :   m2pp_print (s, "(");
    2465                 :           0 :   m2pp_needspace (s);
    2466                 :           0 :   FOR_EACH_CALL_EXPR_ARG (arg, iter, e)
    2467                 :             :   {
    2468                 :           0 :     m2pp_expression (s, arg);
    2469                 :           0 :     if (more_call_expr_args_p (&iter))
    2470                 :             :       {
    2471                 :           0 :         m2pp_print (s, ",");
    2472                 :           0 :         m2pp_needspace (s);
    2473                 :             :       }
    2474                 :             :   }
    2475                 :           0 :   m2pp_print (s, ")");
    2476                 :           0 : }
    2477                 :             : 
    2478                 :             : /* m2pp_call_expr print a call to a procedure or function.  */
    2479                 :             : 
    2480                 :             : static void
    2481                 :           0 : m2pp_call_expr (pretty *s, tree t)
    2482                 :             : {
    2483                 :           0 :   tree call = CALL_EXPR_FN (t);
    2484                 :           0 :   tree args = TREE_OPERAND (t, 1);
    2485                 :           0 :   tree type = TREE_TYPE (t);
    2486                 :           0 :   bool has_return_type = true;
    2487                 :           0 :   tree proc;
    2488                 :             : 
    2489                 :           0 :   if (type && VOID_TYPE_P (type))
    2490                 :           0 :     has_return_type = false;
    2491                 :             : 
    2492                 :           0 :   if (TREE_CODE (call) == ADDR_EXPR || TREE_CODE (call) == NON_LVALUE_EXPR)
    2493                 :           0 :     proc = TREE_OPERAND (call, 0);
    2494                 :             :   else
    2495                 :             :     proc = call;
    2496                 :             : 
    2497                 :           0 :   m2pp_expression (s, proc);
    2498                 :           0 :   if (args || has_return_type)
    2499                 :           0 :     m2pp_args (s, t);
    2500                 :           0 : }
    2501                 :             : 
    2502                 :             : /* m2pp_return_expr displays the return statement.  */
    2503                 :             : 
    2504                 :             : static void
    2505                 :           0 : m2pp_return_expr (pretty *s, tree t)
    2506                 :             : {
    2507                 :           0 :   tree e = TREE_OPERAND (t, 0);
    2508                 :             : 
    2509                 :           0 :   m2pp_begin (s);
    2510                 :           0 :   if (e == NULL_TREE)
    2511                 :             :     {
    2512                 :           0 :       m2pp_print (s, "RETURN");
    2513                 :             :     }
    2514                 :           0 :   else if (TREE_CODE (e) == MODIFY_EXPR || (TREE_CODE (e) == INIT_EXPR))
    2515                 :             :     {
    2516                 :           0 :       m2pp_assignment (s, e);
    2517                 :           0 :       m2pp_print (s, "RETURN");
    2518                 :           0 :       m2pp_needspace (s);
    2519                 :           0 :       m2pp_expression (s, TREE_OPERAND (e, 0));
    2520                 :             :     }
    2521                 :             :   else
    2522                 :             :     {
    2523                 :           0 :       m2pp_print (s, "RETURN");
    2524                 :           0 :       m2pp_needspace (s);
    2525                 :           0 :       m2pp_expression (s, e);
    2526                 :             :     }
    2527                 :           0 :   m2pp_needspace (s);
    2528                 :           0 :   m2pp_print (s, ";\n");
    2529                 :           0 : }
    2530                 :             : 
    2531                 :             : /* m2pp_try_block displays the try block.  */
    2532                 :             : 
    2533                 :             : static void
    2534                 :           0 : m2pp_try_block (pretty *s, tree t)
    2535                 :             : {
    2536                 :           0 :   tree stmts = TRY_STMTS (t);
    2537                 :           0 :   tree handlers = TRY_HANDLERS (t);
    2538                 :             : 
    2539                 :           0 :   m2pp_begin (s);
    2540                 :           0 :   m2pp_print (s, "(* TRY *)\n");
    2541                 :           0 :   m2pp_statement_sequence (s, stmts);
    2542                 :           0 :   setindent (s, 0);
    2543                 :           0 :   m2pp_print (s, "EXCEPT\n");
    2544                 :           0 :   setindent (s, 3);
    2545                 :           0 :   m2pp_statement_sequence (s, handlers);
    2546                 :           0 :   m2pp_print (s, "(* END TRY *)\n");
    2547                 :           0 : }
    2548                 :             : 
    2549                 :             : /* m2pp_try_block displays the handler block.  */
    2550                 :             : 
    2551                 :             : static void
    2552                 :           0 : m2pp_handler (pretty *s, tree t)
    2553                 :             : {
    2554                 :           0 :   tree parms = HANDLER_PARMS (t);
    2555                 :           0 :   tree body = HANDLER_BODY (t);
    2556                 :           0 :   tree type = HANDLER_TYPE (t);
    2557                 :             : 
    2558                 :           0 :   m2pp_print (s, "(* handler *)\n");
    2559                 :           0 :   if (parms != NULL_TREE)
    2560                 :             :     {
    2561                 :           0 :       m2pp_print (s, "(* handler parameter has a type (should be NULL_TREE) "
    2562                 :             :                      "in Modula-2 *)\n");
    2563                 :           0 :       m2pp_print (s, "CATCH (");
    2564                 :           0 :       m2pp_expression (s, parms);
    2565                 :           0 :       m2pp_print (s, ")\n");
    2566                 :             :     }
    2567                 :           0 :   if (type != NULL_TREE)
    2568                 :           0 :     m2pp_print (s, "(* handler type (should be NULL_TREE) in Modula-2 *)\n");
    2569                 :           0 :   m2pp_statement_sequence (s, body);
    2570                 :           0 : }
    2571                 :             : 
    2572                 :             : /* m2pp_assignment prints out the assignment statement.  */
    2573                 :             : 
    2574                 :             : static void
    2575                 :           0 : m2pp_assignment (pretty *s, tree t)
    2576                 :             : {
    2577                 :           0 :   int o;
    2578                 :             : 
    2579                 :           0 :   m2pp_begin (s);
    2580                 :             : #ifdef VERBOSE_TYPE_DESC
    2581                 :             :   /* Print the types of des and expr.  */
    2582                 :             :   m2pp_print (s, "(*");
    2583                 :             :   m2pp_needspace (s);
    2584                 :             :   m2pp_type (s, TREE_TYPE (TREE_OPERAND (t, 0)));
    2585                 :             :   m2pp_needspace (s);
    2586                 :             :   m2pp_print (s, ":=");
    2587                 :             :   m2pp_needspace (s);
    2588                 :             :   m2pp_type (s, TREE_TYPE (TREE_OPERAND (t, 1)));
    2589                 :             :   m2pp_needspace (s);
    2590                 :             :   m2pp_print (s, ";");
    2591                 :             :   m2pp_needspace (s);
    2592                 :             :   m2pp_print (s, "*)\n");
    2593                 :             : #endif
    2594                 :             :   /* Print the assignment statement.  */
    2595                 :           0 :   m2pp_designator (s, TREE_OPERAND (t, 0));
    2596                 :           0 :   m2pp_needspace (s);
    2597                 :           0 :   m2pp_print (s, ":=");
    2598                 :           0 :   m2pp_needspace (s);
    2599                 :           0 :   o = getindent (s);
    2600                 :           0 :   setindent (s, getcurpos (s) + 1);
    2601                 :           0 :   m2pp_expression (s, TREE_OPERAND (t, 1));
    2602                 :           0 :   m2pp_needspace (s);
    2603                 :           0 :   m2pp_print (s, ";\n");
    2604                 :           0 :   setindent (s, o);
    2605                 :           0 : }
    2606                 :             : 
    2607                 :             : /* m2pp_designator displays the lhs of an assignment.  */
    2608                 :             : 
    2609                 :             : static void
    2610                 :           0 : m2pp_designator (pretty *s, tree t)
    2611                 :             : {
    2612                 :           0 :   m2pp_expression (s, t);
    2613                 :           0 : }
    2614                 :             : 
    2615                 :             : /* m2pp_indirect_ref displays the indirect operator.  */
    2616                 :             : 
    2617                 :             : static void
    2618                 :           0 : m2pp_indirect_ref (pretty *s, tree t)
    2619                 :             : {
    2620                 :           0 :   m2pp_print (s, "(");
    2621                 :           0 :   m2pp_expression (s, TREE_OPERAND (t, 0));
    2622                 :           0 :   m2pp_print (s, ")^");
    2623                 :           0 : }
    2624                 :             : 
    2625                 :             : /* m2pp_conditional builds an IF THEN ELSE END.  With more work
    2626                 :             :    this should be moved into statement sequence which could look for
    2627                 :             :    repeat and while loops.  */
    2628                 :             : 
    2629                 :             : static void
    2630                 :           0 : m2pp_conditional (pretty *s, tree t)
    2631                 :             : {
    2632                 :           0 :   int o;
    2633                 :             : 
    2634                 :           0 :   m2pp_begin (s);
    2635                 :           0 :   m2pp_print (s, "IF");
    2636                 :           0 :   m2pp_needspace (s);
    2637                 :           0 :   m2pp_expression (s, TREE_OPERAND (t, 0));
    2638                 :           0 :   m2pp_print (s, "\nTHEN\n");
    2639                 :           0 :   o = getindent (s);
    2640                 :           0 :   setindent (s, o + 3);
    2641                 :           0 :   m2pp_statement_sequence (s, TREE_OPERAND (t, 1));
    2642                 :           0 :   setindent (s, o);
    2643                 :           0 :   if (TREE_OPERAND (t, 2) != NULL_TREE)
    2644                 :             :     {
    2645                 :           0 :       m2pp_print (s, "ELSE\n");
    2646                 :           0 :       setindent (s, o + 3);
    2647                 :           0 :       m2pp_statement_sequence (s, TREE_OPERAND (t, 2));
    2648                 :           0 :       setindent (s, o);
    2649                 :             :     }
    2650                 :           0 :   m2pp_print (s, "END ;\n");
    2651                 :           0 : }
    2652                 :             : 
    2653                 :             : /* m2pp_label_decl displays a label.  Again should be moved into
    2654                 :             :    statement sequence to determine proper loop constructs.  */
    2655                 :             : 
    2656                 :             : static void
    2657                 :           0 : m2pp_label_decl (pretty *s, tree t)
    2658                 :             : {
    2659                 :           0 :   m2pp_begin (s);
    2660                 :           0 :   m2pp_print (s, "(* label  ");
    2661                 :           0 :   m2pp_identifier (s, t);
    2662                 :           0 :   m2pp_print (s, ": *)\n");
    2663                 :           0 : }
    2664                 :             : 
    2665                 :             : /* m2pp_label_expr skips the LABEL_EXPR to find the LABEL_DECL.  */
    2666                 :             : 
    2667                 :             : static void
    2668                 :           0 : m2pp_label_expr (pretty *s, tree t)
    2669                 :             : {
    2670                 :           0 :   m2pp_begin (s);
    2671                 :           0 :   m2pp_statement (s, TREE_OPERAND (t, 0));
    2672                 :           0 : }
    2673                 :             : 
    2674                 :             : /* m2pp_goto displays a goto statement.  Again should be moved into
    2675                 :             :    statement sequence to determine proper loop constructs.  */
    2676                 :             : 
    2677                 :             : static void
    2678                 :           0 : m2pp_goto (pretty *s, tree t)
    2679                 :             : {
    2680                 :           0 :   m2pp_begin (s);
    2681                 :           0 :   m2pp_print (s, "(* goto ");
    2682                 :           0 :   m2pp_identifier (s, TREE_OPERAND (t, 0));
    2683                 :           0 :   m2pp_print (s, " *)\n");
    2684                 :           0 : }
    2685                 :             : 
    2686                 :             : /* m2pp_list prints a TREE_CHAINed list.  */
    2687                 :             : 
    2688                 :             : static void
    2689                 :           0 : m2pp_list (pretty *s, tree t)
    2690                 :             : {
    2691                 :           0 :   tree u = t;
    2692                 :             : 
    2693                 :           0 :   m2pp_print (s, "(");
    2694                 :           0 :   m2pp_needspace (s);
    2695                 :           0 :   while (t != NULL_TREE)
    2696                 :             :     {
    2697                 :           0 :       m2pp_expression (s, TREE_VALUE (t));
    2698                 :           0 :       t = TREE_CHAIN (t);
    2699                 :           0 :       if (t == u || t == NULL_TREE)
    2700                 :             :         break;
    2701                 :           0 :       m2pp_print (s, ",");
    2702                 :           0 :       m2pp_needspace (s);
    2703                 :             :     }
    2704                 :           0 :   m2pp_needspace (s);
    2705                 :           0 :   m2pp_print (s, ")");
    2706                 :           0 : }
    2707                 :             : 
    2708                 :             : /* m2pp_offset displays the offset operator.  */
    2709                 :             : 
    2710                 :             : static void
    2711                 :           0 : m2pp_offset (pretty *s, tree t)
    2712                 :             : {
    2713                 :           0 :   tree type = TREE_TYPE (t);
    2714                 :           0 :   tree base = TYPE_OFFSET_BASETYPE (t);
    2715                 :             : 
    2716                 :           0 :   m2pp_print (s, "OFFSET (");
    2717                 :           0 :   m2pp_type (s, base);
    2718                 :           0 :   m2pp_print (s, ".");
    2719                 :           0 :   m2pp_type (s, type);
    2720                 :           0 :   m2pp_print (s, ")");
    2721                 :           0 : }
    2722                 :             : 
    2723                 :             : /* m2pp_addr_expr create an ADR expression.  */
    2724                 :             : 
    2725                 :             : static void
    2726                 :           0 : m2pp_addr_expr (pretty *s, tree t)
    2727                 :             : {
    2728                 :           0 :   m2pp_needspace (s);
    2729                 :           0 :   m2pp_print (s, "ADR (");
    2730                 :           0 :   m2pp_expression (s, TREE_OPERAND (t, 0));
    2731                 :           0 :   m2pp_print (s, ")");
    2732                 :           0 : }
    2733                 :             : 
    2734                 :             : /* m2pp_nop generate a CAST expression.  */
    2735                 :             : 
    2736                 :             : static void
    2737                 :           0 : m2pp_nop (pretty *s, tree t)
    2738                 :             : {
    2739                 :           0 :   m2pp_needspace (s);
    2740                 :           0 :   m2pp_print (s, "CAST (");
    2741                 :           0 :   m2pp_simple_type (s, TREE_TYPE (t));
    2742                 :           0 :   m2pp_print (s, ", ");
    2743                 :           0 :   m2pp_expression (s, TREE_OPERAND (t, 0));
    2744                 :           0 :   m2pp_print (s, ")");
    2745                 :           0 : }
    2746                 :             : 
    2747                 :             : /* m2pp_convert generate a CONVERT expression.  */
    2748                 :             : 
    2749                 :             : static void
    2750                 :           0 : m2pp_convert (pretty *s, tree t)
    2751                 :             : {
    2752                 :           0 :   m2pp_needspace (s);
    2753                 :           0 :   m2pp_print (s, "CONVERT (");
    2754                 :           0 :   m2pp_simple_type (s, TREE_TYPE (t));
    2755                 :           0 :   m2pp_print (s, ", ");
    2756                 :           0 :   m2pp_expression (s, TREE_OPERAND (t, 0));
    2757                 :           0 :   m2pp_print (s, ")");
    2758                 :           0 : }
    2759                 :             : 
    2760                 :             : /* m2pp_var_decl generate a variable.  */
    2761                 :             : 
    2762                 :             : static void
    2763                 :           0 : m2pp_var_decl (pretty *s, tree t)
    2764                 :             : {
    2765                 :           0 :   m2pp_identifier (s, t);
    2766                 :           0 : }
    2767                 :             : 
    2768                 :             : /* m2pp_result_decl generate a result declaration (variable).  */
    2769                 :             : 
    2770                 :             : static void
    2771                 :           0 : m2pp_result_decl (pretty *s, tree t)
    2772                 :             : {
    2773                 :           0 :   m2pp_identifier (s, t);
    2774                 :           0 : }
    2775                 :             : 
    2776                 :             : /* m2pp_component_ref generate a record field access.  */
    2777                 :             : 
    2778                 :             : static void
    2779                 :           0 : m2pp_component_ref (pretty *s, tree t)
    2780                 :             : {
    2781                 :           0 :   m2pp_simple_expression (s, TREE_OPERAND (t, 0));
    2782                 :           0 :   m2pp_print (s, ".");
    2783                 :           0 :   m2pp_simple_expression (s, TREE_OPERAND (t, 1));
    2784                 :           0 : }
    2785                 :             : 
    2786                 :             : }
    2787                 :             : 
    2788                 :             : /* Code interface to this module.  */
    2789                 :             : 
    2790                 :             : /* CreateDumpGimple creates the dump files using the template name.  */
    2791                 :             : 
    2792                 :             : void
    2793                 :           0 : m2pp_CreateDumpGimple (char *template_name, int template_len)
    2794                 :             : {
    2795                 :           0 :   int kind = M2PP_DUMP_STDOUT;
    2796                 :           0 :   modula2::m2pp_output_file[kind] = stdout;
    2797                 :           0 :   kind++;
    2798                 :           0 :   for (; kind < M2PP_DUMP_END; kind++)
    2799                 :             :     {
    2800                 :           0 :       if (kind == M2PP_DUMP_FD)
    2801                 :           0 :         modula2::m2pp_output_file[kind] = NULL;
    2802                 :             :       else
    2803                 :             :         {
    2804                 :           0 :           char *name = (char *)alloca (template_len);
    2805                 :             : 
    2806                 :           0 :           snprintf (name, template_len, template_name, kind);
    2807                 :           0 :           modula2::m2pp_output_file[kind] = fopen (name, "w");
    2808                 :           0 :           if (modula2::m2pp_output_file[kind] == NULL)
    2809                 :             :             {
    2810                 :           0 :               fprintf (stderr, "unable to create dump file %s: %s\n",
    2811                 :           0 :                        name, xstrerror (errno));
    2812                 :           0 :               exit (1);
    2813                 :             :             }
    2814                 :           0 :           fprintf (modula2::m2pp_output_file[kind], "%s\n\n",
    2815                 :             :                    m2pp_dump_description[kind]);
    2816                 :             :         }
    2817                 :             :     }
    2818                 :           0 : }
    2819                 :             : 
    2820                 :             : /* Close all dump files and fflush stdout.  */
    2821                 :             : 
    2822                 :             : void
    2823                 :           0 : m2pp_CloseDumpGimple (void)
    2824                 :             : {
    2825                 :           0 :   int kind = M2PP_DUMP_STDOUT;
    2826                 :           0 :   fflush (modula2::m2pp_output_file[kind]);
    2827                 :           0 :   kind++;
    2828                 :           0 :   for (; kind < M2PP_DUMP_END; kind++)
    2829                 :           0 :     if (kind != M2PP_DUMP_FD)
    2830                 :           0 :       fclose (modula2::m2pp_output_file[kind]);
    2831                 :           0 : }
    2832                 :             : 
    2833                 :             : /* m2pp_dump_gimple_pretty create an initPretty object and print
    2834                 :             :    fndecl to kind output.  */
    2835                 :             : 
    2836                 :             : void
    2837                 :           0 : m2pp_dump_gimple_pretty (m2pp_dump_kind kind, tree fndecl)
    2838                 :             : {
    2839                 :           0 :   modula2::pretty *state = modula2::initPretty (kind, 0);
    2840                 :             : 
    2841                 :           0 :   modula2::m2pp_print (state, "\n");
    2842                 :           0 :   if (TREE_CODE (fndecl) == TRANSLATION_UNIT_DECL)
    2843                 :           0 :     modula2::m2pp_translation (state, fndecl);
    2844                 :           0 :   else if (TREE_CODE (fndecl) == BLOCK)
    2845                 :           0 :     modula2::m2pp_module_block (state, fndecl);
    2846                 :           0 :   else if (TREE_CODE (fndecl) == FUNCTION_DECL)
    2847                 :           0 :     modula2::m2pp_function (state, fndecl);
    2848                 :             :   else
    2849                 :           0 :     modula2::m2pp_statement_sequence (state, fndecl);
    2850                 :           0 :   modula2::killPretty (state);
    2851                 :           0 : }
    2852                 :             : 
    2853                 :             : 
    2854                 :             : /* Generate modula-2 style gimple for fndecl.  */
    2855                 :             : 
    2856                 :             : void
    2857                 :      186702 : m2pp_dump_gimple (m2pp_dump_kind kind, tree fndecl)
    2858                 :             : {
    2859                 :      186702 :   if (M2Options_GetDumpGimple ()
    2860                 :      186702 :       && M2LangDump_IsDumpRequiredTree (fndecl, true))
    2861                 :           0 :     m2pp_dump_gimple_pretty (kind, fndecl);
    2862                 :      186702 : }
    2863                 :             : 
    2864                 :             : 
    2865                 :             : /* Dump fndecl to a file descriptor.  */
    2866                 :             : 
    2867                 :             : void
    2868                 :           0 : m2pp_DumpGimpleFd (int fd, tree fndecl)
    2869                 :             : {
    2870                 :           0 :   FILE *f = fdopen (fd, "a");
    2871                 :           0 :   if (f != NULL)
    2872                 :             :     {
    2873                 :             : #if 0
    2874                 :             :       modula2::m2pp_output_file[M2PP_DUMP_FD] = f;
    2875                 :             :       m2pp_dump_gimple_pretty (M2PP_DUMP_FD, fndecl);
    2876                 :             :       fprintf (f, "\n");
    2877                 :             : #endif
    2878                 :           0 :       print_node (f, "m2 tree", fndecl, 1);
    2879                 :           0 :       fprintf (f, "\n\n");
    2880                 :           0 :       fflush (f);
    2881                 :             : #if 0
    2882                 :             :       modula2::m2pp_output_file[M2PP_DUMP_FD] = NULL;
    2883                 :             : #endif
    2884                 :             :     }
    2885                 :           0 : }
        

Generated by: LCOV version 2.1-beta

LCOV profile is generated on x86_64 machine using following configure options: configure --disable-bootstrap --enable-coverage=opt --enable-languages=c,c++,fortran,go,jit,lto,rust,m2 --enable-host-shared. GCC test suite is run with the built compiler.