PIPS
stubs.c
Go to the documentation of this file.
1 /*
2 
3  $Id: stubs.c 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 #ifdef HAVE_CONFIG_H
25  #include "pips_config.h"
26 #endif
27 /*
28  * Stub functions for old passes that have been moved out.
29  */
30 
31 #include <stdio.h>
32 #include "genC.h"
33 #include "misc.h"
34 
35 #define STUB(p) \
36 bool p(string module) \
37 { \
38  pips_user_warning("pass on %s no more implemented or linked\n", module); \
39  return false; \
40 }
41 
42 /*
43  * PAF-related stuff, moved out 16/04/1998 by FC.
44  * No problem to move it back in! Just port to new newgen;-)
45  */
55 /* FI: needed
56 STUB(static_controlize)
57 STUB(print_code_static_control)
58 */
bool print_array_dfg(char *module_name) const
===========================================================================
boolean array_dfg(char *mod_name)
======================================================================
Definition: array_dfg.c:501
bool print_bdt(string)
=================================================================
Definition: scheduling.c:89
bool scheduling(string)
=================================================================
Definition: scheduling.c:133
bool print_parallelizedCMF_code(string)
======================================================================
Definition: prettyprint.c:401
bool print_parallelizedCRAFT_code(string)
======================================================================
Definition: prettyprint.c:482
bool prgm_mapping(string)
=========================================================================
bool print_plc(string)
bool reindexing(string)
======================================================================
Definition: reindexing.c:664
#define STUB(p)
Definition: stubs.c:35