2f6d1cf0421dc323f1cc52a6fc46000b3205dca6
[libfirm] / ir / be / bemachine.h
1 #ifndef _BE_MACHINE_H_
2 #define _BE_MACHINE_H_
3
4 /**
5  * Abstract machine interface.
6  * @author Christian Wuerdig
7  * @date   23.10.2006
8  * @cvs-id $Id$
9  */
10
11 typedef struct _be_execution_unit_type_t be_execution_unit_type_t;
12 typedef struct _be_execution_unit_t      be_execution_unit_t;
13 typedef struct _be_machine_t             be_machine_t;
14
15 struct _be_execution_unit_t {
16         be_execution_unit_type_t *tp;
17         const char               *name;
18 };
19
20 struct _be_execution_unit_type_t {
21         unsigned            n_units;
22         const char          *name;
23         be_execution_unit_t *units;
24 };
25
26 struct _be_machine_t {
27         unsigned                 n_unit_types;
28         be_execution_unit_type_t *unit_types;
29 };
30
31 /**
32  * Get the number of available unit types in the given machine.
33  */
34 #define be_machine_get_n_unit_types(machine) ((machine)->n_unit_types)
35
36 /**
37  * Get the unit type number @p i from the given machine.
38  */
39 #define be_machine_get_unit_type(machine, i) ((machine)->unit_types[(i)])
40
41 /**
42  * Get the name of the given unit type.
43  */
44 #define be_machine_get_unit_type_name(tp) ((tp)->name)
45
46 /**
47  * Get the number of available execution units from the given unit type.
48  */
49 #define be_machine_get_n_execunits(tp) ((tp)->n_units)
50
51 /**
52  * Get the execution unit number @p i from the given unit type.
53  */
54 #define be_machine_get_execunit(tp, i) ((tp)->units[(i)])
55
56 /**
57  * Get the name of the given execution unit.
58  */
59 #define be_machine_get_execunit_name(unit) ((unit)->name)
60
61 /**
62  * Get the unit type of the given execution unit.
63  */
64 #define be_machine_get_execunit_type(unit) ((unit)->tp)
65
66 #endif /* _BE_MACHINE_H_ */