annotate gcc/fortran/trans-stmt.h @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children 84e7813d76e9
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 /* Header for statement translation functions
kono
parents:
diff changeset
2 Copyright (C) 2002-2017 Free Software Foundation, Inc.
kono
parents:
diff changeset
3 Contributed by Paul Brook
kono
parents:
diff changeset
4
kono
parents:
diff changeset
5 This file is part of GCC.
kono
parents:
diff changeset
6
kono
parents:
diff changeset
7 GCC is free software; you can redistribute it and/or modify it under
kono
parents:
diff changeset
8 the terms of the GNU General Public License as published by the Free
kono
parents:
diff changeset
9 Software Foundation; either version 3, or (at your option) any later
kono
parents:
diff changeset
10 version.
kono
parents:
diff changeset
11
kono
parents:
diff changeset
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
kono
parents:
diff changeset
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
kono
parents:
diff changeset
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
kono
parents:
diff changeset
15 for more details.
kono
parents:
diff changeset
16
kono
parents:
diff changeset
17 You should have received a copy of the GNU General Public License
kono
parents:
diff changeset
18 along with GCC; see the file COPYING3. If not see
kono
parents:
diff changeset
19 <http://www.gnu.org/licenses/>. */
kono
parents:
diff changeset
20
kono
parents:
diff changeset
21 /* Statement translators (gfc_trans_*) return a fully translated tree.
kono
parents:
diff changeset
22 Calls gfc_trans_*. */
kono
parents:
diff changeset
23 tree gfc_trans_code (gfc_code *);
kono
parents:
diff changeset
24
kono
parents:
diff changeset
25 /* Wrapper function used to pass a check condition for implied DO loops. */
kono
parents:
diff changeset
26 tree gfc_trans_code_cond (gfc_code *, tree);
kono
parents:
diff changeset
27
kono
parents:
diff changeset
28 /* All other gfc_trans_* should only need be called by gfc_trans_code */
kono
parents:
diff changeset
29
kono
parents:
diff changeset
30 /* trans-expr.c */
kono
parents:
diff changeset
31 tree gfc_trans_assign (gfc_code *);
kono
parents:
diff changeset
32 tree gfc_trans_pointer_assign (gfc_code *);
kono
parents:
diff changeset
33 tree gfc_trans_init_assign (gfc_code *);
kono
parents:
diff changeset
34 tree gfc_trans_class_init_assign (gfc_code *);
kono
parents:
diff changeset
35
kono
parents:
diff changeset
36 /* trans-stmt.c */
kono
parents:
diff changeset
37 tree gfc_trans_cycle (gfc_code *);
kono
parents:
diff changeset
38 tree gfc_trans_critical (gfc_code *);
kono
parents:
diff changeset
39 tree gfc_trans_exit (gfc_code *);
kono
parents:
diff changeset
40 tree gfc_trans_label_assign (gfc_code *);
kono
parents:
diff changeset
41 tree gfc_trans_label_here (gfc_code *);
kono
parents:
diff changeset
42 tree gfc_trans_goto (gfc_code *);
kono
parents:
diff changeset
43 tree gfc_trans_entry (gfc_code *);
kono
parents:
diff changeset
44 tree gfc_trans_pause (gfc_code *);
kono
parents:
diff changeset
45 tree gfc_trans_stop (gfc_code *, bool);
kono
parents:
diff changeset
46 tree gfc_trans_call (gfc_code *, bool, tree, tree, bool);
kono
parents:
diff changeset
47 tree gfc_trans_return (gfc_code *);
kono
parents:
diff changeset
48 tree gfc_trans_if (gfc_code *);
kono
parents:
diff changeset
49 tree gfc_trans_arithmetic_if (gfc_code *);
kono
parents:
diff changeset
50 tree gfc_trans_block_construct (gfc_code *);
kono
parents:
diff changeset
51 tree gfc_trans_do (gfc_code *, tree);
kono
parents:
diff changeset
52 tree gfc_trans_do_concurrent (gfc_code *);
kono
parents:
diff changeset
53 tree gfc_trans_do_while (gfc_code *);
kono
parents:
diff changeset
54 tree gfc_trans_select (gfc_code *);
kono
parents:
diff changeset
55 tree gfc_trans_select_type (gfc_code *);
kono
parents:
diff changeset
56 tree gfc_trans_sync (gfc_code *, gfc_exec_op);
kono
parents:
diff changeset
57 tree gfc_trans_lock_unlock (gfc_code *, gfc_exec_op);
kono
parents:
diff changeset
58 tree gfc_trans_event_post_wait (gfc_code *, gfc_exec_op);
kono
parents:
diff changeset
59 tree gfc_trans_fail_image (gfc_code *);
kono
parents:
diff changeset
60 tree gfc_trans_forall (gfc_code *);
kono
parents:
diff changeset
61 tree gfc_trans_where (gfc_code *);
kono
parents:
diff changeset
62 tree gfc_trans_allocate (gfc_code *);
kono
parents:
diff changeset
63 tree gfc_trans_deallocate (gfc_code *);
kono
parents:
diff changeset
64 tree gfc_trans_deallocate_array (tree);
kono
parents:
diff changeset
65
kono
parents:
diff changeset
66 /* trans-openmp.c */
kono
parents:
diff changeset
67 tree gfc_trans_omp_directive (gfc_code *);
kono
parents:
diff changeset
68 void gfc_trans_omp_declare_simd (gfc_namespace *);
kono
parents:
diff changeset
69
kono
parents:
diff changeset
70 /* trans-openacc.c */
kono
parents:
diff changeset
71 tree gfc_trans_oacc_directive (gfc_code *);
kono
parents:
diff changeset
72 tree gfc_trans_oacc_declare (gfc_namespace *);
kono
parents:
diff changeset
73
kono
parents:
diff changeset
74 /* trans-io.c */
kono
parents:
diff changeset
75 tree gfc_trans_open (gfc_code *);
kono
parents:
diff changeset
76 tree gfc_trans_close (gfc_code *);
kono
parents:
diff changeset
77 tree gfc_trans_read (gfc_code *);
kono
parents:
diff changeset
78 tree gfc_trans_write (gfc_code *);
kono
parents:
diff changeset
79 tree gfc_trans_iolength (gfc_code *);
kono
parents:
diff changeset
80 tree gfc_trans_backspace (gfc_code *);
kono
parents:
diff changeset
81 tree gfc_trans_endfile (gfc_code *);
kono
parents:
diff changeset
82 tree gfc_trans_inquire (gfc_code *);
kono
parents:
diff changeset
83 tree gfc_trans_rewind (gfc_code *);
kono
parents:
diff changeset
84 tree gfc_trans_flush (gfc_code *);
kono
parents:
diff changeset
85
kono
parents:
diff changeset
86 tree gfc_trans_transfer (gfc_code *);
kono
parents:
diff changeset
87 tree gfc_trans_dt_end (gfc_code *);
kono
parents:
diff changeset
88 tree gfc_trans_wait (gfc_code *);