added register pressure statistics
[libfirm] / ir / ana2 / timing.h
1 /* -*- c -*- */
2
3 /*
4  * Time-stamp: <26.10.2004 11:56:23h liekweg>
5  * Project:     libFIRM
6  * File name:   ir/ana2/timing.h
7  * Purpose:     generic timing routines
8  * Author:      Florian
9  * Modified by:
10  * Created:     Mon 18 Oct 2004
11  * CVS-ID:      $Id$
12  * Copyright:   (c) 1999-2004 Universität Karlsruhe
13  * Licence:     This file is protected by GPL -  GNU GENERAL PUBLIC LICENSE.
14  */
15
16 #ifndef _TIMING_H_
17 #define _TIMING_H_
18
19 /*
20    Data structures
21  */
22 typedef struct timing_env timing_t;
23
24 /*
25   Protos
26 */
27 timing_t *start_timing (void);
28 int       end_timing   (timing_t*);
29
30 #endif /* def _TIMING_H_ */
31
32 \f
33 /*
34   $Log$
35   Revision 1.2  2004/12/21 15:52:23  beck
36   moved struct timing_env to .c file, added config.h
37
38   Revision 1.1  2004/10/29 18:55:52  liekweg
39   (mostly) generic timimg
40
41
42 */