added attributes for bundeling
[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                 bundle_size;
28         unsigned                 bundels_per_cycle;
29         unsigned                 n_unit_types;
30         be_execution_unit_type_t *unit_types;
31 };
32
33 /**
34  * Get the number of available unit types in the given machine.
35  */
36 #define be_machine_get_n_unit_types(machine) ((machine)->n_unit_types)
37
38 /**
39  * Get the unit type number @p i from the given machine.
40  */
41 #define be_machine_get_unit_type(machine, i) ((machine)->unit_types[(i)])
42
43 /**
44  * Get the name of the given unit type.
45  */
46 #define be_machine_get_unit_type_name(tp) ((tp)->name)
47
48 /**
49  * Get the number of available execution units from the given unit type.
50  */
51 #define be_machine_get_n_execunits(tp) ((tp)->n_units)
52
53 /**
54  * Get the execution unit number @p i from the given unit type.
55  */
56 #define be_machine_get_execunit(tp, i) ((tp)->units[(i)])
57
58 /**
59  * Get the name of the given execution unit.
60  */
61 #define be_machine_get_execunit_name(unit) ((unit)->name)
62
63 /**
64  * Get the unit type of the given execution unit.
65  */
66 #define be_machine_get_execunit_type(unit) ((unit)->tp)
67
68 #endif /* _BE_MACHINE_H_ */