PIPS
array_dfg-local.h
Go to the documentation of this file.
1 /*
2 
3  $Id: array_dfg-local.h 23065 2016-03-02 09:05:50Z coelho $
4 
5  Copyright 1989-2016 MINES ParisTech
6 
7  This file is part of PIPS.
8 
9  PIPS is free software: you can redistribute it and/or modify it
10  under the terms of the GNU General Public License as published by
11  the Free Software Foundation, either version 3 of the License, or
12  any later version.
13 
14  PIPS is distributed in the hope that it will be useful, but WITHOUT ANY
15  WARRANTY; without even the implied warranty of MERCHANTABILITY or
16  FITNESS FOR A PARTICULAR PURPOSE.
17 
18  See the GNU General Public License for more details.
19 
20  You should have received a copy of the GNU General Public License
21  along with PIPS. If not, see <http://www.gnu.org/licenses/>.
22 
23 */
24 /* local definitions of this library */
25 #define RETURN( _debug, _function, _ret_obj ) \
26  { debug((_debug), (_function), "returning \n"); return( (_ret_obj) ); }
27 #define ADFG_MODULE_NAME "ADFG"
28 #define EXPRESSION_PVECTEUR(e) \
29  (normalized_linear(NORMALIZE_EXPRESSION( e )))
30 #define ENTRY_ORDER 300000 /* Hard to have a non illegal number for hash_put !!! */
31 #define EXIT_ORDER 100000
32 #define TAKE_LAST TRUE
33 #define TAKE_FIRST FALSE
34 
35 /* Structure for return of a possible source */
36 typedef struct Sposs_source {
40 
41 
42 /* Structure to list wich node read or write an effect */
43 typedef struct Sentity_vertices {
45  list lis; /* list of vertices */
47 
struct Sentity_vertices Sentity_vertices
Structure to list wich node read or write an effect.
struct Sposs_source Sposs_source
Structure for return of a possible source.
struct Sentity_vertices * Pentity_vertices
struct Sposs_source * Pposs_source
Structure to list wich node read or write an effect.
Structure for return of a possible source.
The structure used to build lists in NewGen.
Definition: newgen_list.h:41