expanded pto, added initialisation, added debugging printing
[libfirm] / ir / ana2 / pto.h
1 /* -*- c -*- */
2
3 /*
4  * Project:     libFIRM
5  * File name:   ir/ana2/pto.c
6  * Purpose:     Pto
7  * Author:      Florian
8  * Modified by:
9  * Created:     Mon 18 Oct 2004
10  * CVS-ID:      $Id$
11  * Copyright:   (c) 1999-2004 Universität Karlsruhe
12  * Licence:     This file is protected by GPL -  GNU GENERAL PUBLIC LICENSE.
13  */
14
15 # ifndef _PTO_H_
16 # define _PTO_H_
17
18 # include "pto_util.h"
19
20 void pto_init (void);
21 void pto_run (int);
22 void pto_cleanup (void);
23
24 # ifndef TRUE
25 #  define TRUE 1
26 #  define FALSE 0
27 # endif /* not defined TRUE */
28
29 void set_pto (ir_node*, pto_t*);
30 int get_pto_verbose (void);
31 void set_pto_verbose (int);
32
33 # endif /* not defined _PTO_H_ */
34
35 \f
36 /*
37  * $Log$
38  * Revision 1.4  2004/11/04 14:58:38  liekweg
39  * expanded pto, added initialisation, added debugging printing
40  *
41  * Revision 1.3  2004/10/25 11:59:45  liekweg
42  * Copy Only works
43  *
44  * Revision 1.2  2004/10/21 11:09:37  liekweg
45  * Moved memwalk stuf into irmemwalk
46  * Moved lset stuff into lset
47  * Moved typalise stuff into typalise
48  *
49  * Revision 1.1  2004/10/20 14:59:42  liekweg
50  * Added ana2, added ecg and pto
51  *
52  */