PIPS
icfg-local.h
Go to the documentation of this file.
1 /*
2 
3  $Id: icfg-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 /*
25  icfg.h -- acronym
26  include file for Interprocedural Control Flow Graph
27  */
28 
29 #define ICFG_NOT_FOUND NULL
30 #define ICFG_OPTIONS "tcdDIFl"
31 
32 #define ICFG_CALLEES_TOPO_SORT "ICFG_CALLEES_TOPO_SORT"
33 #define ICFG_DRAW "ICFG_DRAW"
34 #define ICFG_DEBUG "ICFG_DEBUG"
35 #define ICFG_DEBUG_LEVEL "ICFG_DEBUG_LEVEL"
36 #define ICFG_DOs "ICFG_DOs"
37 #define ICFG_IFs "ICFG_IFs"
38 #define ICFG_DV "ICFG_DV"
39 #define ICFG_FLOATs "ICFG_FLOATs"
40 #define ICFG_SHORT_NAMES "ICFG_SHORT_NAMES"
41 
42 #include "dg.h"
43 
46 
47 #include "graph.h"
48 
49 #define CALL_MARK "CALL_MARK@@@@"
50 #define ADD_ELEMENT_TO_LIST( _list, _type, _element) \
51  (_list = gen_nconc( _list, CONS( _type, _element, NIL)))
52 
dg_vertex_label vertex_label
Definition: icfg-local.h:45
dg_arc_label arc_label
Definition: icfg-local.h:44