]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/fortran/trans-stmt.h
arith.c: Change copyright header to refer to version 3 of the GNU General Public...
[thirdparty/gcc.git] / gcc / fortran / trans-stmt.h
CommitLineData
6de9cd9a 1/* Header for statement translation functions
d234d788 2 Copyright (C) 2002, 2003, 2006, 2007 Free Software Foundation, Inc.
6de9cd9a
DN
3 Contributed by Paul Brook
4
9fc4d79b 5This file is part of GCC.
6de9cd9a 6
9fc4d79b
TS
7GCC is free software; you can redistribute it and/or modify it under
8the terms of the GNU General Public License as published by the Free
d234d788 9Software Foundation; either version 3, or (at your option) any later
9fc4d79b 10version.
6de9cd9a 11
9fc4d79b
TS
12GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13WARRANTY; without even the implied warranty of MERCHANTABILITY or
14FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15for more details.
6de9cd9a
DN
16
17You should have received a copy of the GNU General Public License
d234d788
NC
18along with GCC; see the file COPYING3. If not see
19<http://www.gnu.org/licenses/>. */
6de9cd9a
DN
20
21/* Statement translators (gfc_trans_*) return a fully translated tree.
22 Calls gfc_trans_*. */
23tree gfc_trans_code (gfc_code *);
24
25/* All other gfc_trans_* should only need be called by gfc_trans_code */
26
27/* trans-expr.c */
28tree gfc_trans_assign (gfc_code *);
29tree gfc_trans_pointer_assign (gfc_code *);
6b591ec0 30tree gfc_trans_init_assign (gfc_code *);
6de9cd9a
DN
31
32/* trans-stmt.c */
33tree gfc_trans_cycle (gfc_code *);
34tree gfc_trans_exit (gfc_code *);
35tree gfc_trans_label_assign (gfc_code *);
36tree gfc_trans_label_here (gfc_code *);
37tree gfc_trans_goto (gfc_code *);
3d79abbd 38tree gfc_trans_entry (gfc_code *);
6de9cd9a
DN
39tree gfc_trans_pause (gfc_code *);
40tree gfc_trans_stop (gfc_code *);
476220e7 41tree gfc_trans_call (gfc_code *, bool);
6de9cd9a
DN
42tree gfc_trans_return (gfc_code *);
43tree gfc_trans_if (gfc_code *);
44tree gfc_trans_arithmetic_if (gfc_code *);
45tree gfc_trans_do (gfc_code *);
46tree gfc_trans_do_while (gfc_code *);
47tree gfc_trans_select (gfc_code *);
48tree gfc_trans_forall (gfc_code *);
49tree gfc_trans_where (gfc_code *);
50tree gfc_trans_allocate (gfc_code *);
51tree gfc_trans_deallocate (gfc_code *);
52tree gfc_trans_deallocate_array (tree);
53
6c7a4dfd
JJ
54/* trans-openmp.c */
55tree gfc_trans_omp_directive (gfc_code *);
56
6de9cd9a
DN
57/* trans-io.c */
58tree gfc_trans_open (gfc_code *);
59tree gfc_trans_close (gfc_code *);
60tree gfc_trans_read (gfc_code *);
61tree gfc_trans_write (gfc_code *);
62tree gfc_trans_iolength (gfc_code *);
63tree gfc_trans_backspace (gfc_code *);
64tree gfc_trans_endfile (gfc_code *);
65tree gfc_trans_inquire (gfc_code *);
66tree gfc_trans_rewind (gfc_code *);
6403ec5f 67tree gfc_trans_flush (gfc_code *);
6de9cd9a
DN
68
69tree gfc_trans_transfer (gfc_code *);
70tree gfc_trans_dt_end (gfc_code *);