PIPS
properties-local.h
Go to the documentation of this file.
1 /*
2 
3  $Id: properties-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 #include "property.h"
25 
26 #define ONE_TRIP_DO "ONE_TRIP_DO"
27 
28 #define PRETTYPRINT_TRANSFORMER "PRETTYPRINT_TRANSFORMER"
29 #define PRETTYPRINT_EXECUTION_CONTEXT "PRETTYPRINT_EXECUTION_CONTEXT"
30 #define PRETTYPRINT_EFFECTS "PRETTYPRINT_EFFECTS"
31 #define PRETTYPRINT_PARALLEL "PRETTYPRINT_PARALLEL"
32 #define PRETTYPRINT_REVERSE_DOALL "PRETTYPRINT_REVERSE_DOALL"
33 #define PRETTYPRINT_REGION "PRETTYPRINT_REGION"
34 
35 #define SEMANTICS_FLOW_SENSITIVE "SEMANTICS_FLOW_SENSITIVE"
36 #define SEMANTICS_INTERPROCEDURAL "SEMANTICS_INTERPROCEDURAL"
37 #define SEMANTICS_INEQUALITY_INVARIANT "SEMANTICS_INEQUALITY_INVARIANT"
38 #define SEMANTICS_FIX_POINT "SEMANTICS_FIX_POINT"
39 #define SEMANTICS_DEBUG_LEVEL "SEMANTICS_DEBUG_LEVEL"
40 #define SEMANTICS_STDOUT "SEMANTICS_STDOUT"
41 
42 #define PARALLELIZE_USE_EXECUTION_CONTEXT "PARALLELIZE_USE_EXECUTION_CONTEXT"
43 
44 #define DEPENDENCE_TEST "DEPENDENCE_TEST"
45 #define RICEDG_PROVIDE_STATISTICS "RICEDG_PROVIDE_STATISTICS"
46 
47 /* for upwards compatibility with Francois's modified version */
48 #define pips_flag_p(p) get_bool_property(p)
49 #define pips_flag_set(p) set_bool_property((p), true)
50 #define pips_flag_reset(p) set_bool_property((p), false)
51 #define pips_flag_fprint(fd) fprint_properties(fd)
52 
bool too_many_property_errors_pending_p(void)
void reset_property_error(void)