1 /* Header for dependency analysis
2 Copyright (C) 2000-2013 Free Software Foundation, Inc.
3 Contributed by Paul Brook
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/>. */
21 /****************************** Enums *********************************/
24 NOT_ELEMENTAL
, /* Not elemental case: normal dependency check. */
25 ELEM_CHECK_VARIABLE
, /* Test whether variables overlap. */
26 ELEM_DONT_CHECK_VARIABLE
/* Test whether variables overlap only if used
31 /*********************** Functions prototypes **************************/
33 bool gfc_ref_needs_temporary_p (gfc_ref
*);
34 bool gfc_full_array_ref_p (gfc_ref
*, bool *);
35 gfc_expr
*gfc_get_noncopying_intrinsic_argument (gfc_expr
*);
36 int gfc_check_fncall_dependency (gfc_expr
*, sym_intent
, gfc_symbol
*,
37 gfc_actual_arglist
*, gfc_dep_check
);
38 int gfc_check_dependency (gfc_expr
*, gfc_expr
*, bool);
39 int gfc_expr_is_one (gfc_expr
*, int);
41 int gfc_dep_resolver(gfc_ref
*, gfc_ref
*, gfc_reverse
*);
42 int gfc_are_equivalenced_arrays (gfc_expr
*, gfc_expr
*);