2 Copyright (C) 2003-2015 Free Software Foundation, Inc.
3 Contributed by Steven Bosscher
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
22 /* Actually this is just a collection of routines that used to be
23 scattered around the sources. Now that they are all in a single
24 file, almost all of them can be static, and the other files don't
25 have this mess in them.
27 As a nice side-effect, this file can act as documentation of the
28 gfc_code and gfc_expr structures and all their friends and
35 #include "coretypes.h"
37 #include "constructor.h"
39 /* Keep track of indentation for symbol tree dumps. */
40 static int show_level
= 0;
42 /* The file handle we're dumping to is kept in a static variable. This
43 is not too cool, but it avoids a lot of passing it around. */
44 static FILE *dumpfile
;
46 /* Forward declaration of some of the functions. */
47 static void show_expr (gfc_expr
*p
);
48 static void show_code_node (int, gfc_code
*);
49 static void show_namespace (gfc_namespace
*ns
);
52 /* Allow dumping of an expression in the debugger. */
53 void gfc_debug_expr (gfc_expr
*);
56 gfc_debug_expr (gfc_expr
*e
)
61 fputc ('\n', dumpfile
);
66 /* Do indentation for a specific level. */
69 code_indent (int level
, gfc_st_label
*label
)
74 fprintf (dumpfile
, "%-5d ", label
->value
);
76 for (i
= 0; i
< (2 * level
- (label
? 6 : 0)); i
++)
77 fputc (' ', dumpfile
);
81 /* Simple indentation at the current level. This one
82 is used to show symbols. */
87 fputc ('\n', dumpfile
);
88 code_indent (show_level
, NULL
);
92 /* Show type-specific information. */
95 show_typespec (gfc_typespec
*ts
)
97 if (ts
->type
== BT_ASSUMED
)
99 fputs ("(TYPE(*))", dumpfile
);
103 fprintf (dumpfile
, "(%s ", gfc_basic_typename (ts
->type
));
109 fprintf (dumpfile
, "%s", ts
->u
.derived
->name
);
114 show_expr (ts
->u
.cl
->length
);
115 fprintf(dumpfile
, " %d", ts
->kind
);
119 fprintf (dumpfile
, "%d", ts
->kind
);
123 fputc (')', dumpfile
);
127 /* Show an actual argument list. */
130 show_actual_arglist (gfc_actual_arglist
*a
)
132 fputc ('(', dumpfile
);
134 for (; a
; a
= a
->next
)
136 fputc ('(', dumpfile
);
138 fprintf (dumpfile
, "%s = ", a
->name
);
142 fputs ("(arg not-present)", dumpfile
);
144 fputc (')', dumpfile
);
146 fputc (' ', dumpfile
);
149 fputc (')', dumpfile
);
153 /* Show a gfc_array_spec array specification structure. */
156 show_array_spec (gfc_array_spec
*as
)
163 fputs ("()", dumpfile
);
167 fprintf (dumpfile
, "(%d [%d]", as
->rank
, as
->corank
);
169 if (as
->rank
+ as
->corank
> 0 || as
->rank
== -1)
173 case AS_EXPLICIT
: c
= "AS_EXPLICIT"; break;
174 case AS_DEFERRED
: c
= "AS_DEFERRED"; break;
175 case AS_ASSUMED_SIZE
: c
= "AS_ASSUMED_SIZE"; break;
176 case AS_ASSUMED_SHAPE
: c
= "AS_ASSUMED_SHAPE"; break;
177 case AS_ASSUMED_RANK
: c
= "AS_ASSUMED_RANK"; break;
179 gfc_internal_error ("show_array_spec(): Unhandled array shape "
182 fprintf (dumpfile
, " %s ", c
);
184 for (i
= 0; i
< as
->rank
+ as
->corank
; i
++)
186 show_expr (as
->lower
[i
]);
187 fputc (' ', dumpfile
);
188 show_expr (as
->upper
[i
]);
189 fputc (' ', dumpfile
);
193 fputc (')', dumpfile
);
197 /* Show a gfc_array_ref array reference structure. */
200 show_array_ref (gfc_array_ref
* ar
)
204 fputc ('(', dumpfile
);
209 fputs ("FULL", dumpfile
);
213 for (i
= 0; i
< ar
->dimen
; i
++)
215 /* There are two types of array sections: either the
216 elements are identified by an integer array ('vector'),
217 or by an index range. In the former case we only have to
218 print the start expression which contains the vector, in
219 the latter case we have to print any of lower and upper
220 bound and the stride, if they're present. */
222 if (ar
->start
[i
] != NULL
)
223 show_expr (ar
->start
[i
]);
225 if (ar
->dimen_type
[i
] == DIMEN_RANGE
)
227 fputc (':', dumpfile
);
229 if (ar
->end
[i
] != NULL
)
230 show_expr (ar
->end
[i
]);
232 if (ar
->stride
[i
] != NULL
)
234 fputc (':', dumpfile
);
235 show_expr (ar
->stride
[i
]);
239 if (i
!= ar
->dimen
- 1)
240 fputs (" , ", dumpfile
);
245 for (i
= 0; i
< ar
->dimen
; i
++)
247 show_expr (ar
->start
[i
]);
248 if (i
!= ar
->dimen
- 1)
249 fputs (" , ", dumpfile
);
254 fputs ("UNKNOWN", dumpfile
);
258 gfc_internal_error ("show_array_ref(): Unknown array reference");
261 fputc (')', dumpfile
);
265 /* Show a list of gfc_ref structures. */
268 show_ref (gfc_ref
*p
)
270 for (; p
; p
= p
->next
)
274 show_array_ref (&p
->u
.ar
);
278 fprintf (dumpfile
, " %% %s", p
->u
.c
.component
->name
);
282 fputc ('(', dumpfile
);
283 show_expr (p
->u
.ss
.start
);
284 fputc (':', dumpfile
);
285 show_expr (p
->u
.ss
.end
);
286 fputc (')', dumpfile
);
290 gfc_internal_error ("show_ref(): Bad component code");
295 /* Display a constructor. Works recursively for array constructors. */
298 show_constructor (gfc_constructor_base base
)
301 for (c
= gfc_constructor_first (base
); c
; c
= gfc_constructor_next (c
))
303 if (c
->iterator
== NULL
)
307 fputc ('(', dumpfile
);
310 fputc (' ', dumpfile
);
311 show_expr (c
->iterator
->var
);
312 fputc ('=', dumpfile
);
313 show_expr (c
->iterator
->start
);
314 fputc (',', dumpfile
);
315 show_expr (c
->iterator
->end
);
316 fputc (',', dumpfile
);
317 show_expr (c
->iterator
->step
);
319 fputc (')', dumpfile
);
322 if (gfc_constructor_next (c
) != NULL
)
323 fputs (" , ", dumpfile
);
329 show_char_const (const gfc_char_t
*c
, int length
)
333 fputc ('\'', dumpfile
);
334 for (i
= 0; i
< length
; i
++)
337 fputs ("''", dumpfile
);
339 fputs (gfc_print_wide_char (c
[i
]), dumpfile
);
341 fputc ('\'', dumpfile
);
345 /* Show a component-call expression. */
348 show_compcall (gfc_expr
* p
)
350 gcc_assert (p
->expr_type
== EXPR_COMPCALL
);
352 fprintf (dumpfile
, "%s", p
->symtree
->n
.sym
->name
);
354 fprintf (dumpfile
, "%s", p
->value
.compcall
.name
);
356 show_actual_arglist (p
->value
.compcall
.actual
);
360 /* Show an expression. */
363 show_expr (gfc_expr
*p
)
370 fputs ("()", dumpfile
);
374 switch (p
->expr_type
)
377 show_char_const (p
->value
.character
.string
, p
->value
.character
.length
);
382 fprintf (dumpfile
, "%s(", p
->ts
.u
.derived
->name
);
383 show_constructor (p
->value
.constructor
);
384 fputc (')', dumpfile
);
388 fputs ("(/ ", dumpfile
);
389 show_constructor (p
->value
.constructor
);
390 fputs (" /)", dumpfile
);
396 fputs ("NULL()", dumpfile
);
403 mpz_out_str (stdout
, 10, p
->value
.integer
);
405 if (p
->ts
.kind
!= gfc_default_integer_kind
)
406 fprintf (dumpfile
, "_%d", p
->ts
.kind
);
410 if (p
->value
.logical
)
411 fputs (".true.", dumpfile
);
413 fputs (".false.", dumpfile
);
417 mpfr_out_str (stdout
, 10, 0, p
->value
.real
, GFC_RND_MODE
);
418 if (p
->ts
.kind
!= gfc_default_real_kind
)
419 fprintf (dumpfile
, "_%d", p
->ts
.kind
);
423 show_char_const (p
->value
.character
.string
,
424 p
->value
.character
.length
);
428 fputs ("(complex ", dumpfile
);
430 mpfr_out_str (stdout
, 10, 0, mpc_realref (p
->value
.complex),
432 if (p
->ts
.kind
!= gfc_default_complex_kind
)
433 fprintf (dumpfile
, "_%d", p
->ts
.kind
);
435 fputc (' ', dumpfile
);
437 mpfr_out_str (stdout
, 10, 0, mpc_imagref (p
->value
.complex),
439 if (p
->ts
.kind
!= gfc_default_complex_kind
)
440 fprintf (dumpfile
, "_%d", p
->ts
.kind
);
442 fputc (')', dumpfile
);
446 fprintf (dumpfile
, "%dH", p
->representation
.length
);
447 c
= p
->representation
.string
;
448 for (i
= 0; i
< p
->representation
.length
; i
++, c
++)
450 fputc (*c
, dumpfile
);
455 fputs ("???", dumpfile
);
459 if (p
->representation
.string
)
461 fputs (" {", dumpfile
);
462 c
= p
->representation
.string
;
463 for (i
= 0; i
< p
->representation
.length
; i
++, c
++)
465 fprintf (dumpfile
, "%.2x", (unsigned int) *c
);
466 if (i
< p
->representation
.length
- 1)
467 fputc (',', dumpfile
);
469 fputc ('}', dumpfile
);
475 if (p
->symtree
->n
.sym
->ns
&& p
->symtree
->n
.sym
->ns
->proc_name
)
476 fprintf (dumpfile
, "%s:", p
->symtree
->n
.sym
->ns
->proc_name
->name
);
477 fprintf (dumpfile
, "%s", p
->symtree
->n
.sym
->name
);
482 fputc ('(', dumpfile
);
483 switch (p
->value
.op
.op
)
485 case INTRINSIC_UPLUS
:
486 fputs ("U+ ", dumpfile
);
488 case INTRINSIC_UMINUS
:
489 fputs ("U- ", dumpfile
);
492 fputs ("+ ", dumpfile
);
494 case INTRINSIC_MINUS
:
495 fputs ("- ", dumpfile
);
497 case INTRINSIC_TIMES
:
498 fputs ("* ", dumpfile
);
500 case INTRINSIC_DIVIDE
:
501 fputs ("/ ", dumpfile
);
503 case INTRINSIC_POWER
:
504 fputs ("** ", dumpfile
);
506 case INTRINSIC_CONCAT
:
507 fputs ("// ", dumpfile
);
510 fputs ("AND ", dumpfile
);
513 fputs ("OR ", dumpfile
);
516 fputs ("EQV ", dumpfile
);
519 fputs ("NEQV ", dumpfile
);
522 case INTRINSIC_EQ_OS
:
523 fputs ("= ", dumpfile
);
526 case INTRINSIC_NE_OS
:
527 fputs ("/= ", dumpfile
);
530 case INTRINSIC_GT_OS
:
531 fputs ("> ", dumpfile
);
534 case INTRINSIC_GE_OS
:
535 fputs (">= ", dumpfile
);
538 case INTRINSIC_LT_OS
:
539 fputs ("< ", dumpfile
);
542 case INTRINSIC_LE_OS
:
543 fputs ("<= ", dumpfile
);
546 fputs ("NOT ", dumpfile
);
548 case INTRINSIC_PARENTHESES
:
549 fputs ("parens ", dumpfile
);
554 ("show_expr(): Bad intrinsic in expression!");
557 show_expr (p
->value
.op
.op1
);
561 fputc (' ', dumpfile
);
562 show_expr (p
->value
.op
.op2
);
565 fputc (')', dumpfile
);
569 if (p
->value
.function
.name
== NULL
)
571 fprintf (dumpfile
, "%s", p
->symtree
->n
.sym
->name
);
572 if (gfc_is_proc_ptr_comp (p
))
574 fputc ('[', dumpfile
);
575 show_actual_arglist (p
->value
.function
.actual
);
576 fputc (']', dumpfile
);
580 fprintf (dumpfile
, "%s", p
->value
.function
.name
);
581 if (gfc_is_proc_ptr_comp (p
))
583 fputc ('[', dumpfile
);
584 fputc ('[', dumpfile
);
585 show_actual_arglist (p
->value
.function
.actual
);
586 fputc (']', dumpfile
);
587 fputc (']', dumpfile
);
597 gfc_internal_error ("show_expr(): Don't know how to show expr");
601 /* Show symbol attributes. The flavor and intent are followed by
602 whatever single bit attributes are present. */
605 show_attr (symbol_attribute
*attr
, const char * module
)
607 if (attr
->flavor
!= FL_UNKNOWN
)
608 fprintf (dumpfile
, "(%s ", gfc_code2string (flavors
, attr
->flavor
));
609 if (attr
->access
!= ACCESS_UNKNOWN
)
610 fprintf (dumpfile
, "%s ", gfc_code2string (access_types
, attr
->access
));
611 if (attr
->proc
!= PROC_UNKNOWN
)
612 fprintf (dumpfile
, "%s ", gfc_code2string (procedures
, attr
->proc
));
613 if (attr
->save
!= SAVE_NONE
)
614 fprintf (dumpfile
, "%s", gfc_code2string (save_status
, attr
->save
));
616 if (attr
->artificial
)
617 fputs (" ARTIFICIAL", dumpfile
);
618 if (attr
->allocatable
)
619 fputs (" ALLOCATABLE", dumpfile
);
620 if (attr
->asynchronous
)
621 fputs (" ASYNCHRONOUS", dumpfile
);
622 if (attr
->codimension
)
623 fputs (" CODIMENSION", dumpfile
);
625 fputs (" DIMENSION", dumpfile
);
626 if (attr
->contiguous
)
627 fputs (" CONTIGUOUS", dumpfile
);
629 fputs (" EXTERNAL", dumpfile
);
631 fputs (" INTRINSIC", dumpfile
);
633 fputs (" OPTIONAL", dumpfile
);
635 fputs (" POINTER", dumpfile
);
636 if (attr
->is_protected
)
637 fputs (" PROTECTED", dumpfile
);
639 fputs (" VALUE", dumpfile
);
641 fputs (" VOLATILE", dumpfile
);
642 if (attr
->threadprivate
)
643 fputs (" THREADPRIVATE", dumpfile
);
645 fputs (" TARGET", dumpfile
);
648 fputs (" DUMMY", dumpfile
);
649 if (attr
->intent
!= INTENT_UNKNOWN
)
650 fprintf (dumpfile
, "(%s)", gfc_intent_string (attr
->intent
));
654 fputs (" RESULT", dumpfile
);
656 fputs (" ENTRY", dumpfile
);
658 fputs (" BIND(C)", dumpfile
);
661 fputs (" DATA", dumpfile
);
664 fputs (" USE-ASSOC", dumpfile
);
666 fprintf (dumpfile
, "(%s)", module
);
669 if (attr
->in_namelist
)
670 fputs (" IN-NAMELIST", dumpfile
);
672 fputs (" IN-COMMON", dumpfile
);
675 fputs (" ABSTRACT", dumpfile
);
677 fputs (" FUNCTION", dumpfile
);
678 if (attr
->subroutine
)
679 fputs (" SUBROUTINE", dumpfile
);
680 if (attr
->implicit_type
)
681 fputs (" IMPLICIT-TYPE", dumpfile
);
684 fputs (" SEQUENCE", dumpfile
);
686 fputs (" ELEMENTAL", dumpfile
);
688 fputs (" PURE", dumpfile
);
690 fputs (" RECURSIVE", dumpfile
);
692 fputc (')', dumpfile
);
696 /* Show components of a derived type. */
699 show_components (gfc_symbol
*sym
)
703 for (c
= sym
->components
; c
; c
= c
->next
)
705 fprintf (dumpfile
, "(%s ", c
->name
);
706 show_typespec (&c
->ts
);
707 if (c
->attr
.allocatable
)
708 fputs (" ALLOCATABLE", dumpfile
);
710 fputs (" POINTER", dumpfile
);
711 if (c
->attr
.proc_pointer
)
712 fputs (" PPC", dumpfile
);
713 if (c
->attr
.dimension
)
714 fputs (" DIMENSION", dumpfile
);
715 fputc (' ', dumpfile
);
716 show_array_spec (c
->as
);
718 fprintf (dumpfile
, " %s", gfc_code2string (access_types
, c
->attr
.access
));
719 fputc (')', dumpfile
);
721 fputc (' ', dumpfile
);
726 /* Show the f2k_derived namespace with procedure bindings. */
729 show_typebound_proc (gfc_typebound_proc
* tb
, const char* name
)
734 fputs ("GENERIC", dumpfile
);
737 fputs ("PROCEDURE, ", dumpfile
);
739 fputs ("NOPASS", dumpfile
);
743 fprintf (dumpfile
, "PASS(%s)", tb
->pass_arg
);
745 fputs ("PASS", dumpfile
);
747 if (tb
->non_overridable
)
748 fputs (", NON_OVERRIDABLE", dumpfile
);
751 if (tb
->access
== ACCESS_PUBLIC
)
752 fputs (", PUBLIC", dumpfile
);
754 fputs (", PRIVATE", dumpfile
);
756 fprintf (dumpfile
, " :: %s => ", name
);
761 for (g
= tb
->u
.generic
; g
; g
= g
->next
)
763 fputs (g
->specific_st
->name
, dumpfile
);
765 fputs (", ", dumpfile
);
769 fputs (tb
->u
.specific
->n
.sym
->name
, dumpfile
);
773 show_typebound_symtree (gfc_symtree
* st
)
775 gcc_assert (st
->n
.tb
);
776 show_typebound_proc (st
->n
.tb
, st
->name
);
780 show_f2k_derived (gfc_namespace
* f2k
)
786 fputs ("Procedure bindings:", dumpfile
);
789 /* Finalizer bindings. */
790 for (f
= f2k
->finalizers
; f
; f
= f
->next
)
793 fprintf (dumpfile
, "FINAL %s", f
->proc_tree
->n
.sym
->name
);
796 /* Type-bound procedures. */
797 gfc_traverse_symtree (f2k
->tb_sym_root
, &show_typebound_symtree
);
802 fputs ("Operator bindings:", dumpfile
);
805 /* User-defined operators. */
806 gfc_traverse_symtree (f2k
->tb_uop_root
, &show_typebound_symtree
);
808 /* Intrinsic operators. */
809 for (op
= GFC_INTRINSIC_BEGIN
; op
!= GFC_INTRINSIC_END
; ++op
)
811 show_typebound_proc (f2k
->tb_op
[op
],
812 gfc_op2string ((gfc_intrinsic_op
) op
));
818 /* Show a symbol. If a symbol is an ENTRY, SUBROUTINE or FUNCTION, we
819 show the interface. Information needed to reconstruct the list of
820 specific interfaces associated with a generic symbol is done within
824 show_symbol (gfc_symbol
*sym
)
826 gfc_formal_arglist
*formal
;
833 fprintf (dumpfile
, "|| symbol: '%s' ", sym
->name
);
834 len
= strlen (sym
->name
);
835 for (i
=len
; i
<12; i
++)
836 fputc(' ', dumpfile
);
841 fputs ("type spec : ", dumpfile
);
842 show_typespec (&sym
->ts
);
845 fputs ("attributes: ", dumpfile
);
846 show_attr (&sym
->attr
, sym
->module
);
851 fputs ("value: ", dumpfile
);
852 show_expr (sym
->value
);
858 fputs ("Array spec:", dumpfile
);
859 show_array_spec (sym
->as
);
865 fputs ("Generic interfaces:", dumpfile
);
866 for (intr
= sym
->generic
; intr
; intr
= intr
->next
)
867 fprintf (dumpfile
, " %s", intr
->sym
->name
);
873 fprintf (dumpfile
, "result: %s", sym
->result
->name
);
879 fputs ("components: ", dumpfile
);
880 show_components (sym
);
883 if (sym
->f2k_derived
)
887 fprintf (dumpfile
, "hash: %d", sym
->hash_value
);
888 show_f2k_derived (sym
->f2k_derived
);
894 fputs ("Formal arglist:", dumpfile
);
896 for (formal
= sym
->formal
; formal
; formal
= formal
->next
)
898 if (formal
->sym
!= NULL
)
899 fprintf (dumpfile
, " %s", formal
->sym
->name
);
901 fputs (" [Alt Return]", dumpfile
);
905 if (sym
->formal_ns
&& (sym
->formal_ns
->proc_name
!= sym
)
906 && sym
->attr
.proc
!= PROC_ST_FUNCTION
910 fputs ("Formal namespace", dumpfile
);
911 show_namespace (sym
->formal_ns
);
917 /* Show a user-defined operator. Just prints an operator
918 and the name of the associated subroutine, really. */
921 show_uop (gfc_user_op
*uop
)
926 fprintf (dumpfile
, "%s:", uop
->name
);
928 for (intr
= uop
->op
; intr
; intr
= intr
->next
)
929 fprintf (dumpfile
, " %s", intr
->sym
->name
);
933 /* Workhorse function for traversing the user operator symtree. */
936 traverse_uop (gfc_symtree
*st
, void (*func
) (gfc_user_op
*))
943 traverse_uop (st
->left
, func
);
944 traverse_uop (st
->right
, func
);
948 /* Traverse the tree of user operator nodes. */
951 gfc_traverse_user_op (gfc_namespace
*ns
, void (*func
) (gfc_user_op
*))
953 traverse_uop (ns
->uop_root
, func
);
957 /* Function to display a common block. */
960 show_common (gfc_symtree
*st
)
965 fprintf (dumpfile
, "common: /%s/ ", st
->name
);
967 s
= st
->n
.common
->head
;
970 fprintf (dumpfile
, "%s", s
->name
);
973 fputs (", ", dumpfile
);
975 fputc ('\n', dumpfile
);
979 /* Worker function to display the symbol tree. */
982 show_symtree (gfc_symtree
*st
)
988 len
= strlen(st
->name
);
989 fprintf (dumpfile
, "symtree: '%s'", st
->name
);
991 for (i
=len
; i
<12; i
++)
992 fputc(' ', dumpfile
);
995 fputs( " Ambiguous", dumpfile
);
997 if (st
->n
.sym
->ns
!= gfc_current_ns
)
998 fprintf (dumpfile
, "|| symbol: '%s' from namespace '%s'", st
->n
.sym
->name
,
999 st
->n
.sym
->ns
->proc_name
->name
);
1001 show_symbol (st
->n
.sym
);
1005 /******************* Show gfc_code structures **************/
1008 /* Show a list of code structures. Mutually recursive with
1009 show_code_node(). */
1012 show_code (int level
, gfc_code
*c
)
1014 for (; c
; c
= c
->next
)
1015 show_code_node (level
, c
);
1019 show_omp_namelist (int list_type
, gfc_omp_namelist
*n
)
1021 for (; n
; n
= n
->next
)
1023 if (list_type
== OMP_LIST_REDUCTION
)
1024 switch (n
->u
.reduction_op
)
1026 case OMP_REDUCTION_PLUS
:
1027 case OMP_REDUCTION_TIMES
:
1028 case OMP_REDUCTION_MINUS
:
1029 case OMP_REDUCTION_AND
:
1030 case OMP_REDUCTION_OR
:
1031 case OMP_REDUCTION_EQV
:
1032 case OMP_REDUCTION_NEQV
:
1033 fprintf (dumpfile
, "%s:",
1034 gfc_op2string ((gfc_intrinsic_op
) n
->u
.reduction_op
));
1036 case OMP_REDUCTION_MAX
: fputs ("max:", dumpfile
); break;
1037 case OMP_REDUCTION_MIN
: fputs ("min:", dumpfile
); break;
1038 case OMP_REDUCTION_IAND
: fputs ("iand:", dumpfile
); break;
1039 case OMP_REDUCTION_IOR
: fputs ("ior:", dumpfile
); break;
1040 case OMP_REDUCTION_IEOR
: fputs ("ieor:", dumpfile
); break;
1041 case OMP_REDUCTION_USER
:
1043 fprintf (dumpfile
, "%s:", n
->udr
->udr
->name
);
1047 else if (list_type
== OMP_LIST_DEPEND
)
1048 switch (n
->u
.depend_op
)
1050 case OMP_DEPEND_IN
: fputs ("in:", dumpfile
); break;
1051 case OMP_DEPEND_OUT
: fputs ("out:", dumpfile
); break;
1052 case OMP_DEPEND_INOUT
: fputs ("inout:", dumpfile
); break;
1055 else if (list_type
== OMP_LIST_MAP
)
1056 switch (n
->u
.map_op
)
1058 case OMP_MAP_ALLOC
: fputs ("alloc:", dumpfile
); break;
1059 case OMP_MAP_TO
: fputs ("to:", dumpfile
); break;
1060 case OMP_MAP_FROM
: fputs ("from:", dumpfile
); break;
1061 case OMP_MAP_TOFROM
: fputs ("tofrom:", dumpfile
); break;
1064 fprintf (dumpfile
, "%s", n
->sym
->name
);
1067 fputc (':', dumpfile
);
1068 show_expr (n
->expr
);
1071 fputc (',', dumpfile
);
1076 /* Show OpenMP or OpenACC clauses. */
1079 show_omp_clauses (gfc_omp_clauses
*omp_clauses
)
1083 switch (omp_clauses
->cancel
)
1085 case OMP_CANCEL_UNKNOWN
:
1087 case OMP_CANCEL_PARALLEL
:
1088 fputs (" PARALLEL", dumpfile
);
1090 case OMP_CANCEL_SECTIONS
:
1091 fputs (" SECTIONS", dumpfile
);
1094 fputs (" DO", dumpfile
);
1096 case OMP_CANCEL_TASKGROUP
:
1097 fputs (" TASKGROUP", dumpfile
);
1100 if (omp_clauses
->if_expr
)
1102 fputs (" IF(", dumpfile
);
1103 show_expr (omp_clauses
->if_expr
);
1104 fputc (')', dumpfile
);
1106 if (omp_clauses
->final_expr
)
1108 fputs (" FINAL(", dumpfile
);
1109 show_expr (omp_clauses
->final_expr
);
1110 fputc (')', dumpfile
);
1112 if (omp_clauses
->num_threads
)
1114 fputs (" NUM_THREADS(", dumpfile
);
1115 show_expr (omp_clauses
->num_threads
);
1116 fputc (')', dumpfile
);
1118 if (omp_clauses
->async
)
1120 fputs (" ASYNC", dumpfile
);
1121 if (omp_clauses
->async_expr
)
1123 fputc ('(', dumpfile
);
1124 show_expr (omp_clauses
->async_expr
);
1125 fputc (')', dumpfile
);
1128 if (omp_clauses
->num_gangs_expr
)
1130 fputs (" NUM_GANGS(", dumpfile
);
1131 show_expr (omp_clauses
->num_gangs_expr
);
1132 fputc (')', dumpfile
);
1134 if (omp_clauses
->num_workers_expr
)
1136 fputs (" NUM_WORKERS(", dumpfile
);
1137 show_expr (omp_clauses
->num_workers_expr
);
1138 fputc (')', dumpfile
);
1140 if (omp_clauses
->vector_length_expr
)
1142 fputs (" VECTOR_LENGTH(", dumpfile
);
1143 show_expr (omp_clauses
->vector_length_expr
);
1144 fputc (')', dumpfile
);
1146 if (omp_clauses
->gang
)
1148 fputs (" GANG", dumpfile
);
1149 if (omp_clauses
->gang_expr
)
1151 fputc ('(', dumpfile
);
1152 show_expr (omp_clauses
->gang_expr
);
1153 fputc (')', dumpfile
);
1156 if (omp_clauses
->worker
)
1158 fputs (" WORKER", dumpfile
);
1159 if (omp_clauses
->worker_expr
)
1161 fputc ('(', dumpfile
);
1162 show_expr (omp_clauses
->worker_expr
);
1163 fputc (')', dumpfile
);
1166 if (omp_clauses
->vector
)
1168 fputs (" VECTOR", dumpfile
);
1169 if (omp_clauses
->vector_expr
)
1171 fputc ('(', dumpfile
);
1172 show_expr (omp_clauses
->vector_expr
);
1173 fputc (')', dumpfile
);
1176 if (omp_clauses
->sched_kind
!= OMP_SCHED_NONE
)
1179 switch (omp_clauses
->sched_kind
)
1181 case OMP_SCHED_STATIC
: type
= "STATIC"; break;
1182 case OMP_SCHED_DYNAMIC
: type
= "DYNAMIC"; break;
1183 case OMP_SCHED_GUIDED
: type
= "GUIDED"; break;
1184 case OMP_SCHED_RUNTIME
: type
= "RUNTIME"; break;
1185 case OMP_SCHED_AUTO
: type
= "AUTO"; break;
1189 fprintf (dumpfile
, " SCHEDULE (%s", type
);
1190 if (omp_clauses
->chunk_size
)
1192 fputc (',', dumpfile
);
1193 show_expr (omp_clauses
->chunk_size
);
1195 fputc (')', dumpfile
);
1197 if (omp_clauses
->default_sharing
!= OMP_DEFAULT_UNKNOWN
)
1200 switch (omp_clauses
->default_sharing
)
1202 case OMP_DEFAULT_NONE
: type
= "NONE"; break;
1203 case OMP_DEFAULT_PRIVATE
: type
= "PRIVATE"; break;
1204 case OMP_DEFAULT_SHARED
: type
= "SHARED"; break;
1205 case OMP_DEFAULT_FIRSTPRIVATE
: type
= "FIRSTPRIVATE"; break;
1209 fprintf (dumpfile
, " DEFAULT(%s)", type
);
1211 if (omp_clauses
->tile_list
)
1213 gfc_expr_list
*list
;
1214 fputs (" TILE(", dumpfile
);
1215 for (list
= omp_clauses
->tile_list
; list
; list
= list
->next
)
1217 show_expr (list
->expr
);
1219 fputs (", ", dumpfile
);
1221 fputc (')', dumpfile
);
1223 if (omp_clauses
->wait_list
)
1225 gfc_expr_list
*list
;
1226 fputs (" WAIT(", dumpfile
);
1227 for (list
= omp_clauses
->wait_list
; list
; list
= list
->next
)
1229 show_expr (list
->expr
);
1231 fputs (", ", dumpfile
);
1233 fputc (')', dumpfile
);
1235 if (omp_clauses
->seq
)
1236 fputs (" SEQ", dumpfile
);
1237 if (omp_clauses
->independent
)
1238 fputs (" INDEPENDENT", dumpfile
);
1239 if (omp_clauses
->ordered
)
1240 fputs (" ORDERED", dumpfile
);
1241 if (omp_clauses
->untied
)
1242 fputs (" UNTIED", dumpfile
);
1243 if (omp_clauses
->mergeable
)
1244 fputs (" MERGEABLE", dumpfile
);
1245 if (omp_clauses
->collapse
)
1246 fprintf (dumpfile
, " COLLAPSE(%d)", omp_clauses
->collapse
);
1247 for (list_type
= 0; list_type
< OMP_LIST_NUM
; list_type
++)
1248 if (omp_clauses
->lists
[list_type
] != NULL
1249 && list_type
!= OMP_LIST_COPYPRIVATE
)
1251 const char *type
= NULL
;
1254 case OMP_LIST_USE_DEVICE
: type
= "USE_DEVICE"; break;
1255 case OMP_LIST_DEVICE_RESIDENT
: type
= "USE_DEVICE"; break;
1256 case OMP_LIST_CACHE
: type
= ""; break;
1257 case OMP_LIST_PRIVATE
: type
= "PRIVATE"; break;
1258 case OMP_LIST_FIRSTPRIVATE
: type
= "FIRSTPRIVATE"; break;
1259 case OMP_LIST_LASTPRIVATE
: type
= "LASTPRIVATE"; break;
1260 case OMP_LIST_SHARED
: type
= "SHARED"; break;
1261 case OMP_LIST_COPYIN
: type
= "COPYIN"; break;
1262 case OMP_LIST_UNIFORM
: type
= "UNIFORM"; break;
1263 case OMP_LIST_ALIGNED
: type
= "ALIGNED"; break;
1264 case OMP_LIST_LINEAR
: type
= "LINEAR"; break;
1265 case OMP_LIST_REDUCTION
: type
= "REDUCTION"; break;
1266 case OMP_LIST_DEPEND
: type
= "DEPEND"; break;
1270 fprintf (dumpfile
, " %s(", type
);
1271 show_omp_namelist (list_type
, omp_clauses
->lists
[list_type
]);
1272 fputc (')', dumpfile
);
1274 if (omp_clauses
->safelen_expr
)
1276 fputs (" SAFELEN(", dumpfile
);
1277 show_expr (omp_clauses
->safelen_expr
);
1278 fputc (')', dumpfile
);
1280 if (omp_clauses
->simdlen_expr
)
1282 fputs (" SIMDLEN(", dumpfile
);
1283 show_expr (omp_clauses
->simdlen_expr
);
1284 fputc (')', dumpfile
);
1286 if (omp_clauses
->inbranch
)
1287 fputs (" INBRANCH", dumpfile
);
1288 if (omp_clauses
->notinbranch
)
1289 fputs (" NOTINBRANCH", dumpfile
);
1290 if (omp_clauses
->proc_bind
!= OMP_PROC_BIND_UNKNOWN
)
1293 switch (omp_clauses
->proc_bind
)
1295 case OMP_PROC_BIND_MASTER
: type
= "MASTER"; break;
1296 case OMP_PROC_BIND_SPREAD
: type
= "SPREAD"; break;
1297 case OMP_PROC_BIND_CLOSE
: type
= "CLOSE"; break;
1301 fprintf (dumpfile
, " PROC_BIND(%s)", type
);
1303 if (omp_clauses
->num_teams
)
1305 fputs (" NUM_TEAMS(", dumpfile
);
1306 show_expr (omp_clauses
->num_teams
);
1307 fputc (')', dumpfile
);
1309 if (omp_clauses
->device
)
1311 fputs (" DEVICE(", dumpfile
);
1312 show_expr (omp_clauses
->device
);
1313 fputc (')', dumpfile
);
1315 if (omp_clauses
->thread_limit
)
1317 fputs (" THREAD_LIMIT(", dumpfile
);
1318 show_expr (omp_clauses
->thread_limit
);
1319 fputc (')', dumpfile
);
1321 if (omp_clauses
->dist_sched_kind
!= OMP_SCHED_NONE
)
1323 fprintf (dumpfile
, " DIST_SCHEDULE (static");
1324 if (omp_clauses
->dist_chunk_size
)
1326 fputc (',', dumpfile
);
1327 show_expr (omp_clauses
->dist_chunk_size
);
1329 fputc (')', dumpfile
);
1333 /* Show a single OpenMP or OpenACC directive node and everything underneath it
1337 show_omp_node (int level
, gfc_code
*c
)
1339 gfc_omp_clauses
*omp_clauses
= NULL
;
1340 const char *name
= NULL
;
1341 bool is_oacc
= false;
1345 case EXEC_OACC_PARALLEL_LOOP
: name
= "PARALLEL LOOP"; is_oacc
= true; break;
1346 case EXEC_OACC_PARALLEL
: name
= "PARALLEL"; is_oacc
= true; break;
1347 case EXEC_OACC_KERNELS_LOOP
: name
= "KERNELS LOOP"; is_oacc
= true; break;
1348 case EXEC_OACC_KERNELS
: name
= "KERNELS"; is_oacc
= true; break;
1349 case EXEC_OACC_DATA
: name
= "DATA"; is_oacc
= true; break;
1350 case EXEC_OACC_HOST_DATA
: name
= "HOST_DATA"; is_oacc
= true; break;
1351 case EXEC_OACC_LOOP
: name
= "LOOP"; is_oacc
= true; break;
1352 case EXEC_OACC_UPDATE
: name
= "UPDATE"; is_oacc
= true; break;
1353 case EXEC_OACC_WAIT
: name
= "WAIT"; is_oacc
= true; break;
1354 case EXEC_OACC_CACHE
: name
= "CACHE"; is_oacc
= true; break;
1355 case EXEC_OACC_ENTER_DATA
: name
= "ENTER DATA"; is_oacc
= true; break;
1356 case EXEC_OACC_EXIT_DATA
: name
= "EXIT DATA"; is_oacc
= true; break;
1357 case EXEC_OMP_ATOMIC
: name
= "ATOMIC"; break;
1358 case EXEC_OMP_BARRIER
: name
= "BARRIER"; break;
1359 case EXEC_OMP_CANCEL
: name
= "CANCEL"; break;
1360 case EXEC_OMP_CANCELLATION_POINT
: name
= "CANCELLATION POINT"; break;
1361 case EXEC_OMP_CRITICAL
: name
= "CRITICAL"; break;
1362 case EXEC_OMP_FLUSH
: name
= "FLUSH"; break;
1363 case EXEC_OMP_DO
: name
= "DO"; break;
1364 case EXEC_OMP_DO_SIMD
: name
= "DO SIMD"; break;
1365 case EXEC_OMP_MASTER
: name
= "MASTER"; break;
1366 case EXEC_OMP_ORDERED
: name
= "ORDERED"; break;
1367 case EXEC_OMP_PARALLEL
: name
= "PARALLEL"; break;
1368 case EXEC_OMP_PARALLEL_DO
: name
= "PARALLEL DO"; break;
1369 case EXEC_OMP_PARALLEL_DO_SIMD
: name
= "PARALLEL DO SIMD"; break;
1370 case EXEC_OMP_PARALLEL_SECTIONS
: name
= "PARALLEL SECTIONS"; break;
1371 case EXEC_OMP_PARALLEL_WORKSHARE
: name
= "PARALLEL WORKSHARE"; break;
1372 case EXEC_OMP_SECTIONS
: name
= "SECTIONS"; break;
1373 case EXEC_OMP_SIMD
: name
= "SIMD"; break;
1374 case EXEC_OMP_SINGLE
: name
= "SINGLE"; break;
1375 case EXEC_OMP_TASK
: name
= "TASK"; break;
1376 case EXEC_OMP_TASKGROUP
: name
= "TASKGROUP"; break;
1377 case EXEC_OMP_TASKWAIT
: name
= "TASKWAIT"; break;
1378 case EXEC_OMP_TASKYIELD
: name
= "TASKYIELD"; break;
1379 case EXEC_OMP_WORKSHARE
: name
= "WORKSHARE"; break;
1383 fprintf (dumpfile
, "!$%s %s", is_oacc
? "ACC" : "OMP", name
);
1386 case EXEC_OACC_PARALLEL_LOOP
:
1387 case EXEC_OACC_PARALLEL
:
1388 case EXEC_OACC_KERNELS_LOOP
:
1389 case EXEC_OACC_KERNELS
:
1390 case EXEC_OACC_DATA
:
1391 case EXEC_OACC_HOST_DATA
:
1392 case EXEC_OACC_LOOP
:
1393 case EXEC_OACC_UPDATE
:
1394 case EXEC_OACC_WAIT
:
1395 case EXEC_OACC_CACHE
:
1396 case EXEC_OACC_ENTER_DATA
:
1397 case EXEC_OACC_EXIT_DATA
:
1398 case EXEC_OMP_CANCEL
:
1399 case EXEC_OMP_CANCELLATION_POINT
:
1401 case EXEC_OMP_DO_SIMD
:
1402 case EXEC_OMP_PARALLEL
:
1403 case EXEC_OMP_PARALLEL_DO
:
1404 case EXEC_OMP_PARALLEL_DO_SIMD
:
1405 case EXEC_OMP_PARALLEL_SECTIONS
:
1406 case EXEC_OMP_SECTIONS
:
1408 case EXEC_OMP_SINGLE
:
1409 case EXEC_OMP_WORKSHARE
:
1410 case EXEC_OMP_PARALLEL_WORKSHARE
:
1412 omp_clauses
= c
->ext
.omp_clauses
;
1414 case EXEC_OMP_CRITICAL
:
1415 if (c
->ext
.omp_name
)
1416 fprintf (dumpfile
, " (%s)", c
->ext
.omp_name
);
1418 case EXEC_OMP_FLUSH
:
1419 if (c
->ext
.omp_namelist
)
1421 fputs (" (", dumpfile
);
1422 show_omp_namelist (OMP_LIST_NUM
, c
->ext
.omp_namelist
);
1423 fputc (')', dumpfile
);
1426 case EXEC_OMP_BARRIER
:
1427 case EXEC_OMP_TASKWAIT
:
1428 case EXEC_OMP_TASKYIELD
:
1434 show_omp_clauses (omp_clauses
);
1435 fputc ('\n', dumpfile
);
1437 /* OpenACC executable directives don't have associated blocks. */
1438 if (c
->op
== EXEC_OACC_CACHE
|| c
->op
== EXEC_OACC_UPDATE
1439 || c
->op
== EXEC_OACC_ENTER_DATA
|| c
->op
== EXEC_OACC_EXIT_DATA
)
1441 if (c
->op
== EXEC_OMP_SECTIONS
|| c
->op
== EXEC_OMP_PARALLEL_SECTIONS
)
1443 gfc_code
*d
= c
->block
;
1446 show_code (level
+ 1, d
->next
);
1447 if (d
->block
== NULL
)
1449 code_indent (level
, 0);
1450 fputs ("!$OMP SECTION\n", dumpfile
);
1455 show_code (level
+ 1, c
->block
->next
);
1456 if (c
->op
== EXEC_OMP_ATOMIC
)
1458 fputc ('\n', dumpfile
);
1459 code_indent (level
, 0);
1460 fprintf (dumpfile
, "!$%s END %s", is_oacc
? "ACC" : "OMP", name
);
1461 if (omp_clauses
!= NULL
)
1463 if (omp_clauses
->lists
[OMP_LIST_COPYPRIVATE
])
1465 fputs (" COPYPRIVATE(", dumpfile
);
1466 show_omp_namelist (OMP_LIST_COPYPRIVATE
,
1467 omp_clauses
->lists
[OMP_LIST_COPYPRIVATE
]);
1468 fputc (')', dumpfile
);
1470 else if (omp_clauses
->nowait
)
1471 fputs (" NOWAIT", dumpfile
);
1473 else if (c
->op
== EXEC_OMP_CRITICAL
&& c
->ext
.omp_name
)
1474 fprintf (dumpfile
, " (%s)", c
->ext
.omp_name
);
1478 /* Show a single code node and everything underneath it if necessary. */
1481 show_code_node (int level
, gfc_code
*c
)
1483 gfc_forall_iterator
*fa
;
1496 fputc ('\n', dumpfile
);
1497 code_indent (level
, c
->here
);
1504 case EXEC_END_PROCEDURE
:
1508 fputs ("NOP", dumpfile
);
1512 fputs ("CONTINUE", dumpfile
);
1516 fprintf (dumpfile
, "ENTRY %s", c
->ext
.entry
->sym
->name
);
1519 case EXEC_INIT_ASSIGN
:
1521 fputs ("ASSIGN ", dumpfile
);
1522 show_expr (c
->expr1
);
1523 fputc (' ', dumpfile
);
1524 show_expr (c
->expr2
);
1527 case EXEC_LABEL_ASSIGN
:
1528 fputs ("LABEL ASSIGN ", dumpfile
);
1529 show_expr (c
->expr1
);
1530 fprintf (dumpfile
, " %d", c
->label1
->value
);
1533 case EXEC_POINTER_ASSIGN
:
1534 fputs ("POINTER ASSIGN ", dumpfile
);
1535 show_expr (c
->expr1
);
1536 fputc (' ', dumpfile
);
1537 show_expr (c
->expr2
);
1541 fputs ("GOTO ", dumpfile
);
1543 fprintf (dumpfile
, "%d", c
->label1
->value
);
1546 show_expr (c
->expr1
);
1550 fputs (", (", dumpfile
);
1551 for (; d
; d
= d
->block
)
1553 code_indent (level
, d
->label1
);
1554 if (d
->block
!= NULL
)
1555 fputc (',', dumpfile
);
1557 fputc (')', dumpfile
);
1564 case EXEC_ASSIGN_CALL
:
1565 if (c
->resolved_sym
)
1566 fprintf (dumpfile
, "CALL %s ", c
->resolved_sym
->name
);
1567 else if (c
->symtree
)
1568 fprintf (dumpfile
, "CALL %s ", c
->symtree
->name
);
1570 fputs ("CALL ?? ", dumpfile
);
1572 show_actual_arglist (c
->ext
.actual
);
1576 fputs ("CALL ", dumpfile
);
1577 show_compcall (c
->expr1
);
1581 fputs ("CALL ", dumpfile
);
1582 show_expr (c
->expr1
);
1583 show_actual_arglist (c
->ext
.actual
);
1587 fputs ("RETURN ", dumpfile
);
1589 show_expr (c
->expr1
);
1593 fputs ("PAUSE ", dumpfile
);
1595 if (c
->expr1
!= NULL
)
1596 show_expr (c
->expr1
);
1598 fprintf (dumpfile
, "%d", c
->ext
.stop_code
);
1602 case EXEC_ERROR_STOP
:
1603 fputs ("ERROR ", dumpfile
);
1607 fputs ("STOP ", dumpfile
);
1609 if (c
->expr1
!= NULL
)
1610 show_expr (c
->expr1
);
1612 fprintf (dumpfile
, "%d", c
->ext
.stop_code
);
1617 fputs ("SYNC ALL ", dumpfile
);
1618 if (c
->expr2
!= NULL
)
1620 fputs (" stat=", dumpfile
);
1621 show_expr (c
->expr2
);
1623 if (c
->expr3
!= NULL
)
1625 fputs (" errmsg=", dumpfile
);
1626 show_expr (c
->expr3
);
1630 case EXEC_SYNC_MEMORY
:
1631 fputs ("SYNC MEMORY ", dumpfile
);
1632 if (c
->expr2
!= NULL
)
1634 fputs (" stat=", dumpfile
);
1635 show_expr (c
->expr2
);
1637 if (c
->expr3
!= NULL
)
1639 fputs (" errmsg=", dumpfile
);
1640 show_expr (c
->expr3
);
1644 case EXEC_SYNC_IMAGES
:
1645 fputs ("SYNC IMAGES image-set=", dumpfile
);
1646 if (c
->expr1
!= NULL
)
1647 show_expr (c
->expr1
);
1649 fputs ("* ", dumpfile
);
1650 if (c
->expr2
!= NULL
)
1652 fputs (" stat=", dumpfile
);
1653 show_expr (c
->expr2
);
1655 if (c
->expr3
!= NULL
)
1657 fputs (" errmsg=", dumpfile
);
1658 show_expr (c
->expr3
);
1664 if (c
->op
== EXEC_LOCK
)
1665 fputs ("LOCK ", dumpfile
);
1667 fputs ("UNLOCK ", dumpfile
);
1669 fputs ("lock-variable=", dumpfile
);
1670 if (c
->expr1
!= NULL
)
1671 show_expr (c
->expr1
);
1672 if (c
->expr4
!= NULL
)
1674 fputs (" acquired_lock=", dumpfile
);
1675 show_expr (c
->expr4
);
1677 if (c
->expr2
!= NULL
)
1679 fputs (" stat=", dumpfile
);
1680 show_expr (c
->expr2
);
1682 if (c
->expr3
!= NULL
)
1684 fputs (" errmsg=", dumpfile
);
1685 show_expr (c
->expr3
);
1689 case EXEC_ARITHMETIC_IF
:
1690 fputs ("IF ", dumpfile
);
1691 show_expr (c
->expr1
);
1692 fprintf (dumpfile
, " %d, %d, %d",
1693 c
->label1
->value
, c
->label2
->value
, c
->label3
->value
);
1698 fputs ("IF ", dumpfile
);
1699 show_expr (d
->expr1
);
1702 show_code (level
+ 1, d
->next
);
1706 for (; d
; d
= d
->block
)
1708 code_indent (level
, 0);
1710 if (d
->expr1
== NULL
)
1711 fputs ("ELSE", dumpfile
);
1714 fputs ("ELSE IF ", dumpfile
);
1715 show_expr (d
->expr1
);
1719 show_code (level
+ 1, d
->next
);
1724 code_indent (level
, c
->label1
);
1728 fputs ("ENDIF", dumpfile
);
1733 const char* blocktype
;
1734 gfc_namespace
*saved_ns
;
1736 if (c
->ext
.block
.assoc
)
1737 blocktype
= "ASSOCIATE";
1739 blocktype
= "BLOCK";
1741 fprintf (dumpfile
, "%s ", blocktype
);
1743 ns
= c
->ext
.block
.ns
;
1744 saved_ns
= gfc_current_ns
;
1745 gfc_current_ns
= ns
;
1746 gfc_traverse_symtree (ns
->sym_root
, show_symtree
);
1747 gfc_current_ns
= saved_ns
;
1748 show_code (show_level
, ns
->code
);
1751 fprintf (dumpfile
, "END %s ", blocktype
);
1757 fputs ("SELECT CASE ", dumpfile
);
1758 show_expr (c
->expr1
);
1759 fputc ('\n', dumpfile
);
1761 for (; d
; d
= d
->block
)
1763 code_indent (level
, 0);
1765 fputs ("CASE ", dumpfile
);
1766 for (cp
= d
->ext
.block
.case_list
; cp
; cp
= cp
->next
)
1768 fputc ('(', dumpfile
);
1769 show_expr (cp
->low
);
1770 fputc (' ', dumpfile
);
1771 show_expr (cp
->high
);
1772 fputc (')', dumpfile
);
1773 fputc (' ', dumpfile
);
1775 fputc ('\n', dumpfile
);
1777 show_code (level
+ 1, d
->next
);
1780 code_indent (level
, c
->label1
);
1781 fputs ("END SELECT", dumpfile
);
1785 fputs ("WHERE ", dumpfile
);
1788 show_expr (d
->expr1
);
1789 fputc ('\n', dumpfile
);
1791 show_code (level
+ 1, d
->next
);
1793 for (d
= d
->block
; d
; d
= d
->block
)
1795 code_indent (level
, 0);
1796 fputs ("ELSE WHERE ", dumpfile
);
1797 show_expr (d
->expr1
);
1798 fputc ('\n', dumpfile
);
1799 show_code (level
+ 1, d
->next
);
1802 code_indent (level
, 0);
1803 fputs ("END WHERE", dumpfile
);
1808 fputs ("FORALL ", dumpfile
);
1809 for (fa
= c
->ext
.forall_iterator
; fa
; fa
= fa
->next
)
1811 show_expr (fa
->var
);
1812 fputc (' ', dumpfile
);
1813 show_expr (fa
->start
);
1814 fputc (':', dumpfile
);
1815 show_expr (fa
->end
);
1816 fputc (':', dumpfile
);
1817 show_expr (fa
->stride
);
1819 if (fa
->next
!= NULL
)
1820 fputc (',', dumpfile
);
1823 if (c
->expr1
!= NULL
)
1825 fputc (',', dumpfile
);
1826 show_expr (c
->expr1
);
1828 fputc ('\n', dumpfile
);
1830 show_code (level
+ 1, c
->block
->next
);
1832 code_indent (level
, 0);
1833 fputs ("END FORALL", dumpfile
);
1837 fputs ("CRITICAL\n", dumpfile
);
1838 show_code (level
+ 1, c
->block
->next
);
1839 code_indent (level
, 0);
1840 fputs ("END CRITICAL", dumpfile
);
1844 fputs ("DO ", dumpfile
);
1846 fprintf (dumpfile
, " %-5d ", c
->label1
->value
);
1848 show_expr (c
->ext
.iterator
->var
);
1849 fputc ('=', dumpfile
);
1850 show_expr (c
->ext
.iterator
->start
);
1851 fputc (' ', dumpfile
);
1852 show_expr (c
->ext
.iterator
->end
);
1853 fputc (' ', dumpfile
);
1854 show_expr (c
->ext
.iterator
->step
);
1857 show_code (level
+ 1, c
->block
->next
);
1864 fputs ("END DO", dumpfile
);
1867 case EXEC_DO_CONCURRENT
:
1868 fputs ("DO CONCURRENT ", dumpfile
);
1869 for (fa
= c
->ext
.forall_iterator
; fa
; fa
= fa
->next
)
1871 show_expr (fa
->var
);
1872 fputc (' ', dumpfile
);
1873 show_expr (fa
->start
);
1874 fputc (':', dumpfile
);
1875 show_expr (fa
->end
);
1876 fputc (':', dumpfile
);
1877 show_expr (fa
->stride
);
1879 if (fa
->next
!= NULL
)
1880 fputc (',', dumpfile
);
1882 show_expr (c
->expr1
);
1884 show_code (level
+ 1, c
->block
->next
);
1885 code_indent (level
, c
->label1
);
1886 fputs ("END DO", dumpfile
);
1890 fputs ("DO WHILE ", dumpfile
);
1891 show_expr (c
->expr1
);
1892 fputc ('\n', dumpfile
);
1894 show_code (level
+ 1, c
->block
->next
);
1896 code_indent (level
, c
->label1
);
1897 fputs ("END DO", dumpfile
);
1901 fputs ("CYCLE", dumpfile
);
1903 fprintf (dumpfile
, " %s", c
->symtree
->n
.sym
->name
);
1907 fputs ("EXIT", dumpfile
);
1909 fprintf (dumpfile
, " %s", c
->symtree
->n
.sym
->name
);
1913 fputs ("ALLOCATE ", dumpfile
);
1916 fputs (" STAT=", dumpfile
);
1917 show_expr (c
->expr1
);
1922 fputs (" ERRMSG=", dumpfile
);
1923 show_expr (c
->expr2
);
1929 fputs (" MOLD=", dumpfile
);
1931 fputs (" SOURCE=", dumpfile
);
1932 show_expr (c
->expr3
);
1935 for (a
= c
->ext
.alloc
.list
; a
; a
= a
->next
)
1937 fputc (' ', dumpfile
);
1938 show_expr (a
->expr
);
1943 case EXEC_DEALLOCATE
:
1944 fputs ("DEALLOCATE ", dumpfile
);
1947 fputs (" STAT=", dumpfile
);
1948 show_expr (c
->expr1
);
1953 fputs (" ERRMSG=", dumpfile
);
1954 show_expr (c
->expr2
);
1957 for (a
= c
->ext
.alloc
.list
; a
; a
= a
->next
)
1959 fputc (' ', dumpfile
);
1960 show_expr (a
->expr
);
1966 fputs ("OPEN", dumpfile
);
1971 fputs (" UNIT=", dumpfile
);
1972 show_expr (open
->unit
);
1976 fputs (" IOMSG=", dumpfile
);
1977 show_expr (open
->iomsg
);
1981 fputs (" IOSTAT=", dumpfile
);
1982 show_expr (open
->iostat
);
1986 fputs (" FILE=", dumpfile
);
1987 show_expr (open
->file
);
1991 fputs (" STATUS=", dumpfile
);
1992 show_expr (open
->status
);
1996 fputs (" ACCESS=", dumpfile
);
1997 show_expr (open
->access
);
2001 fputs (" FORM=", dumpfile
);
2002 show_expr (open
->form
);
2006 fputs (" RECL=", dumpfile
);
2007 show_expr (open
->recl
);
2011 fputs (" BLANK=", dumpfile
);
2012 show_expr (open
->blank
);
2016 fputs (" POSITION=", dumpfile
);
2017 show_expr (open
->position
);
2021 fputs (" ACTION=", dumpfile
);
2022 show_expr (open
->action
);
2026 fputs (" DELIM=", dumpfile
);
2027 show_expr (open
->delim
);
2031 fputs (" PAD=", dumpfile
);
2032 show_expr (open
->pad
);
2036 fputs (" DECIMAL=", dumpfile
);
2037 show_expr (open
->decimal
);
2041 fputs (" ENCODING=", dumpfile
);
2042 show_expr (open
->encoding
);
2046 fputs (" ROUND=", dumpfile
);
2047 show_expr (open
->round
);
2051 fputs (" SIGN=", dumpfile
);
2052 show_expr (open
->sign
);
2056 fputs (" CONVERT=", dumpfile
);
2057 show_expr (open
->convert
);
2059 if (open
->asynchronous
)
2061 fputs (" ASYNCHRONOUS=", dumpfile
);
2062 show_expr (open
->asynchronous
);
2064 if (open
->err
!= NULL
)
2065 fprintf (dumpfile
, " ERR=%d", open
->err
->value
);
2070 fputs ("CLOSE", dumpfile
);
2071 close
= c
->ext
.close
;
2075 fputs (" UNIT=", dumpfile
);
2076 show_expr (close
->unit
);
2080 fputs (" IOMSG=", dumpfile
);
2081 show_expr (close
->iomsg
);
2085 fputs (" IOSTAT=", dumpfile
);
2086 show_expr (close
->iostat
);
2090 fputs (" STATUS=", dumpfile
);
2091 show_expr (close
->status
);
2093 if (close
->err
!= NULL
)
2094 fprintf (dumpfile
, " ERR=%d", close
->err
->value
);
2097 case EXEC_BACKSPACE
:
2098 fputs ("BACKSPACE", dumpfile
);
2102 fputs ("ENDFILE", dumpfile
);
2106 fputs ("REWIND", dumpfile
);
2110 fputs ("FLUSH", dumpfile
);
2113 fp
= c
->ext
.filepos
;
2117 fputs (" UNIT=", dumpfile
);
2118 show_expr (fp
->unit
);
2122 fputs (" IOMSG=", dumpfile
);
2123 show_expr (fp
->iomsg
);
2127 fputs (" IOSTAT=", dumpfile
);
2128 show_expr (fp
->iostat
);
2130 if (fp
->err
!= NULL
)
2131 fprintf (dumpfile
, " ERR=%d", fp
->err
->value
);
2135 fputs ("INQUIRE", dumpfile
);
2140 fputs (" UNIT=", dumpfile
);
2141 show_expr (i
->unit
);
2145 fputs (" FILE=", dumpfile
);
2146 show_expr (i
->file
);
2151 fputs (" IOMSG=", dumpfile
);
2152 show_expr (i
->iomsg
);
2156 fputs (" IOSTAT=", dumpfile
);
2157 show_expr (i
->iostat
);
2161 fputs (" EXIST=", dumpfile
);
2162 show_expr (i
->exist
);
2166 fputs (" OPENED=", dumpfile
);
2167 show_expr (i
->opened
);
2171 fputs (" NUMBER=", dumpfile
);
2172 show_expr (i
->number
);
2176 fputs (" NAMED=", dumpfile
);
2177 show_expr (i
->named
);
2181 fputs (" NAME=", dumpfile
);
2182 show_expr (i
->name
);
2186 fputs (" ACCESS=", dumpfile
);
2187 show_expr (i
->access
);
2191 fputs (" SEQUENTIAL=", dumpfile
);
2192 show_expr (i
->sequential
);
2197 fputs (" DIRECT=", dumpfile
);
2198 show_expr (i
->direct
);
2202 fputs (" FORM=", dumpfile
);
2203 show_expr (i
->form
);
2207 fputs (" FORMATTED", dumpfile
);
2208 show_expr (i
->formatted
);
2212 fputs (" UNFORMATTED=", dumpfile
);
2213 show_expr (i
->unformatted
);
2217 fputs (" RECL=", dumpfile
);
2218 show_expr (i
->recl
);
2222 fputs (" NEXTREC=", dumpfile
);
2223 show_expr (i
->nextrec
);
2227 fputs (" BLANK=", dumpfile
);
2228 show_expr (i
->blank
);
2232 fputs (" POSITION=", dumpfile
);
2233 show_expr (i
->position
);
2237 fputs (" ACTION=", dumpfile
);
2238 show_expr (i
->action
);
2242 fputs (" READ=", dumpfile
);
2243 show_expr (i
->read
);
2247 fputs (" WRITE=", dumpfile
);
2248 show_expr (i
->write
);
2252 fputs (" READWRITE=", dumpfile
);
2253 show_expr (i
->readwrite
);
2257 fputs (" DELIM=", dumpfile
);
2258 show_expr (i
->delim
);
2262 fputs (" PAD=", dumpfile
);
2267 fputs (" CONVERT=", dumpfile
);
2268 show_expr (i
->convert
);
2270 if (i
->asynchronous
)
2272 fputs (" ASYNCHRONOUS=", dumpfile
);
2273 show_expr (i
->asynchronous
);
2277 fputs (" DECIMAL=", dumpfile
);
2278 show_expr (i
->decimal
);
2282 fputs (" ENCODING=", dumpfile
);
2283 show_expr (i
->encoding
);
2287 fputs (" PENDING=", dumpfile
);
2288 show_expr (i
->pending
);
2292 fputs (" ROUND=", dumpfile
);
2293 show_expr (i
->round
);
2297 fputs (" SIGN=", dumpfile
);
2298 show_expr (i
->sign
);
2302 fputs (" SIZE=", dumpfile
);
2303 show_expr (i
->size
);
2307 fputs (" ID=", dumpfile
);
2312 fprintf (dumpfile
, " ERR=%d", i
->err
->value
);
2316 fputs ("IOLENGTH ", dumpfile
);
2317 show_expr (c
->expr1
);
2322 fputs ("READ", dumpfile
);
2326 fputs ("WRITE", dumpfile
);
2332 fputs (" UNIT=", dumpfile
);
2333 show_expr (dt
->io_unit
);
2336 if (dt
->format_expr
)
2338 fputs (" FMT=", dumpfile
);
2339 show_expr (dt
->format_expr
);
2342 if (dt
->format_label
!= NULL
)
2343 fprintf (dumpfile
, " FMT=%d", dt
->format_label
->value
);
2345 fprintf (dumpfile
, " NML=%s", dt
->namelist
->name
);
2349 fputs (" IOMSG=", dumpfile
);
2350 show_expr (dt
->iomsg
);
2354 fputs (" IOSTAT=", dumpfile
);
2355 show_expr (dt
->iostat
);
2359 fputs (" SIZE=", dumpfile
);
2360 show_expr (dt
->size
);
2364 fputs (" REC=", dumpfile
);
2365 show_expr (dt
->rec
);
2369 fputs (" ADVANCE=", dumpfile
);
2370 show_expr (dt
->advance
);
2374 fputs (" ID=", dumpfile
);
2379 fputs (" POS=", dumpfile
);
2380 show_expr (dt
->pos
);
2382 if (dt
->asynchronous
)
2384 fputs (" ASYNCHRONOUS=", dumpfile
);
2385 show_expr (dt
->asynchronous
);
2389 fputs (" BLANK=", dumpfile
);
2390 show_expr (dt
->blank
);
2394 fputs (" DECIMAL=", dumpfile
);
2395 show_expr (dt
->decimal
);
2399 fputs (" DELIM=", dumpfile
);
2400 show_expr (dt
->delim
);
2404 fputs (" PAD=", dumpfile
);
2405 show_expr (dt
->pad
);
2409 fputs (" ROUND=", dumpfile
);
2410 show_expr (dt
->round
);
2414 fputs (" SIGN=", dumpfile
);
2415 show_expr (dt
->sign
);
2419 for (c
= c
->block
->next
; c
; c
= c
->next
)
2420 show_code_node (level
+ (c
->next
!= NULL
), c
);
2424 fputs ("TRANSFER ", dumpfile
);
2425 show_expr (c
->expr1
);
2429 fputs ("DT_END", dumpfile
);
2432 if (dt
->err
!= NULL
)
2433 fprintf (dumpfile
, " ERR=%d", dt
->err
->value
);
2434 if (dt
->end
!= NULL
)
2435 fprintf (dumpfile
, " END=%d", dt
->end
->value
);
2436 if (dt
->eor
!= NULL
)
2437 fprintf (dumpfile
, " EOR=%d", dt
->eor
->value
);
2440 case EXEC_OACC_PARALLEL_LOOP
:
2441 case EXEC_OACC_PARALLEL
:
2442 case EXEC_OACC_KERNELS_LOOP
:
2443 case EXEC_OACC_KERNELS
:
2444 case EXEC_OACC_DATA
:
2445 case EXEC_OACC_HOST_DATA
:
2446 case EXEC_OACC_LOOP
:
2447 case EXEC_OACC_UPDATE
:
2448 case EXEC_OACC_WAIT
:
2449 case EXEC_OACC_CACHE
:
2450 case EXEC_OACC_ENTER_DATA
:
2451 case EXEC_OACC_EXIT_DATA
:
2452 case EXEC_OMP_ATOMIC
:
2453 case EXEC_OMP_CANCEL
:
2454 case EXEC_OMP_CANCELLATION_POINT
:
2455 case EXEC_OMP_BARRIER
:
2456 case EXEC_OMP_CRITICAL
:
2457 case EXEC_OMP_FLUSH
:
2459 case EXEC_OMP_DO_SIMD
:
2460 case EXEC_OMP_MASTER
:
2461 case EXEC_OMP_ORDERED
:
2462 case EXEC_OMP_PARALLEL
:
2463 case EXEC_OMP_PARALLEL_DO
:
2464 case EXEC_OMP_PARALLEL_DO_SIMD
:
2465 case EXEC_OMP_PARALLEL_SECTIONS
:
2466 case EXEC_OMP_PARALLEL_WORKSHARE
:
2467 case EXEC_OMP_SECTIONS
:
2469 case EXEC_OMP_SINGLE
:
2471 case EXEC_OMP_TASKGROUP
:
2472 case EXEC_OMP_TASKWAIT
:
2473 case EXEC_OMP_TASKYIELD
:
2474 case EXEC_OMP_WORKSHARE
:
2475 show_omp_node (level
, c
);
2479 gfc_internal_error ("show_code_node(): Bad statement code");
2484 /* Show an equivalence chain. */
2487 show_equiv (gfc_equiv
*eq
)
2490 fputs ("Equivalence: ", dumpfile
);
2493 show_expr (eq
->expr
);
2496 fputs (", ", dumpfile
);
2501 /* Show a freakin' whole namespace. */
2504 show_namespace (gfc_namespace
*ns
)
2506 gfc_interface
*intr
;
2507 gfc_namespace
*save
;
2513 save
= gfc_current_ns
;
2516 fputs ("Namespace:", dumpfile
);
2522 while (i
< GFC_LETTERS
- 1
2523 && gfc_compare_types (&ns
->default_type
[i
+1],
2524 &ns
->default_type
[l
]))
2528 fprintf (dumpfile
, " %c-%c: ", l
+'A', i
+'A');
2530 fprintf (dumpfile
, " %c: ", l
+'A');
2532 show_typespec(&ns
->default_type
[l
]);
2534 } while (i
< GFC_LETTERS
);
2536 if (ns
->proc_name
!= NULL
)
2539 fprintf (dumpfile
, "procedure name = %s", ns
->proc_name
->name
);
2543 gfc_current_ns
= ns
;
2544 gfc_traverse_symtree (ns
->common_root
, show_common
);
2546 gfc_traverse_symtree (ns
->sym_root
, show_symtree
);
2548 for (op
= GFC_INTRINSIC_BEGIN
; op
!= GFC_INTRINSIC_END
; op
++)
2550 /* User operator interfaces */
2556 fprintf (dumpfile
, "Operator interfaces for %s:",
2557 gfc_op2string ((gfc_intrinsic_op
) op
));
2559 for (; intr
; intr
= intr
->next
)
2560 fprintf (dumpfile
, " %s", intr
->sym
->name
);
2563 if (ns
->uop_root
!= NULL
)
2566 fputs ("User operators:\n", dumpfile
);
2567 gfc_traverse_user_op (ns
, show_uop
);
2570 for (eq
= ns
->equiv
; eq
; eq
= eq
->next
)
2573 if (ns
->oacc_declare_clauses
)
2575 /* Dump !$ACC DECLARE clauses. */
2577 fprintf (dumpfile
, "!$ACC DECLARE");
2578 show_omp_clauses (ns
->oacc_declare_clauses
);
2581 fputc ('\n', dumpfile
);
2583 fputs ("code:", dumpfile
);
2584 show_code (show_level
, ns
->code
);
2587 for (ns
= ns
->contained
; ns
; ns
= ns
->sibling
)
2589 fputs ("\nCONTAINS\n", dumpfile
);
2591 show_namespace (ns
);
2595 fputc ('\n', dumpfile
);
2596 gfc_current_ns
= save
;
2600 /* Main function for dumping a parse tree. */
2603 gfc_dump_parse_tree (gfc_namespace
*ns
, FILE *file
)
2606 show_namespace (ns
);