X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbe_types.h;h=8b9f424e980834bd9e366b01a1df9c24a9d3de2e;hb=3ea349549afe95a9bc04cff82edf10c23ab0ba48;hp=c6fa565baaa9f140b438954a4cdee0a1434d7690;hpb=1725b8d0b77469e08c106f25c84060fd7efc1c88;p=libfirm diff --git a/ir/be/be_types.h b/ir/be/be_types.h index c6fa565ba..8b9f424e9 100644 --- a/ir/be/be_types.h +++ b/ir/be/be_types.h @@ -26,6 +26,8 @@ #ifndef FIRM_BE_TYPES_H #define FIRM_BE_TYPES_H +#include "firm_types.h" + typedef unsigned int sched_timestep_t; typedef struct arch_register_class_t arch_register_class_t; @@ -35,8 +37,6 @@ typedef struct arch_flag_t arch_flag_t; typedef struct arch_inverse_t arch_inverse_t; typedef struct arch_isa_if_t arch_isa_if_t; typedef struct arch_env_t arch_env_t; -typedef struct arch_code_generator_t arch_code_generator_t; -typedef struct arch_code_generator_if_t arch_code_generator_if_t; /** * Some flags describing a node in more detail. @@ -49,34 +49,38 @@ typedef enum arch_irn_flags_t { default check_modifies implementation in beflags */ arch_irn_flags_simple_jump = 1U << 3, /**< a simple jump instruction */ - - arch_irn_flags_backend = 1U << 4, /**< begin of custom backend + arch_irn_flags_not_scheduled = 1U << 4, /**< node must not be scheduled*/ + arch_irn_flags_backend = 1U << 5, /**< begin of custom backend flags */ } arch_irn_flags_t; +ENUM_BITSET(arch_irn_flags_t) + +typedef struct be_lv_t be_lv_t; +typedef struct be_lv_info_t be_lv_info_t; -typedef struct _be_lv_t be_lv_t; -typedef struct _be_lv_info_t be_lv_info_t; +typedef struct be_abi_call_flags_bits_t be_abi_call_flags_bits_t; +typedef union be_abi_call_flags_t be_abi_call_flags_t; +typedef struct be_abi_callbacks_t be_abi_callbacks_t; +typedef struct be_abi_call_t be_abi_call_t; +typedef struct be_abi_irg_t be_abi_irg_t; +typedef struct be_stack_layout_t be_stack_layout_t; -typedef struct _be_abi_call_flags_bits_t be_abi_call_flags_bits_t; -typedef union _be_abi_call_flags_t be_abi_call_flags_t; -typedef struct _be_abi_callbacks_t be_abi_callbacks_t; -typedef struct _be_abi_call_t be_abi_call_t; -typedef struct _be_abi_irg_t be_abi_irg_t; -typedef struct be_stack_layout_t be_stack_layout_t; +typedef struct be_dom_front_info_t be_dom_front_info_t; -typedef struct _be_dom_front_info_t be_dom_front_info_t; +typedef struct list_sched_selector_t list_sched_selector_t; -typedef struct _list_sched_selector_t list_sched_selector_t; +typedef struct ilp_sched_selector_t ilp_sched_selector_t; +typedef struct ilp_sched_selector_if_t ilp_sched_selector_if_t; -typedef struct _ilp_sched_selector_t ilp_sched_selector_t; -typedef struct _ilp_sched_selector_if_t ilp_sched_selector_if_t; +typedef struct be_execution_unit_type_t be_execution_unit_type_t; +typedef struct be_execution_unit_t be_execution_unit_t; +typedef struct be_machine_t be_machine_t; -typedef struct _be_execution_unit_type_t be_execution_unit_type_t; -typedef struct _be_execution_unit_t be_execution_unit_t; -typedef struct _be_machine_t be_machine_t; +typedef struct backend_info_t backend_info_t; +typedef struct sched_info_t sched_info_t; +typedef struct reg_out_info_t reg_out_info_t; -typedef struct backend_info_t backend_info_t; -typedef struct sched_info_t sched_info_t; -typedef struct reg_out_info_t reg_out_info_t; +typedef struct be_main_env_t be_main_env_t; +typedef struct be_options_t be_options_t; #endif