X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbechordal_t.h;h=66669db8aff5f6eb850a7a348b5ae31a14f3f22d;hb=b6d85190f667fe9f06e69d9cf3a3c8e004f1350b;hp=d33c345e7079dcbf8fc106bd29d4ecbab647d076;hpb=71712d24f429b174d735ae063bcfcf529acc8489;p=libfirm diff --git a/ir/be/bechordal_t.h b/ir/be/bechordal_t.h index d33c345e7..66669db8a 100644 --- a/ir/be/bechordal_t.h +++ b/ir/be/bechordal_t.h @@ -38,9 +38,6 @@ #include "beirg.h" #include "beifg.h" -/** Defines an invalid register index. */ -#define NO_COLOR (-1) - /** * A liveness interval border. */ @@ -64,26 +61,25 @@ struct border_t { struct be_chordal_env_t { struct obstack *obst; /**< An obstack for temporary storage. */ be_ra_chordal_opts_t *opts; /**< A pointer to the chordal ra options. */ - be_irg_t *birg; /**< Back-end IRG session. */ ir_graph *irg; /**< The graph under examination. */ const arch_register_class_t *cls; /**< The current register class. */ pmap *border_heads; /**< Maps blocks to border heads. */ be_ifg_t *ifg; /**< The interference graph. */ - bitset_t *ignore_colors;/**< A set of colors which shall be ignored in register allocation. */ + bitset_t *allocatable_regs; /**< set of allocatable registers */ }; -static INLINE struct list_head *_get_block_border_head(const be_chordal_env_t *inf, ir_node *bl) { - return pmap_get(inf->border_heads, bl); +static inline struct list_head *_get_block_border_head(const be_chordal_env_t *inf, ir_node *bl) { + return (list_head*)pmap_get(inf->border_heads, bl); } #define get_block_border_head(info, bl) _get_block_border_head(info, bl) -#define foreach_border_head(head, pos) list_for_each_entry_reverse(border_t, pos, head, list) +#define foreach_border_head(head, pos) list_for_each_entry_reverse(border_t, pos, head, list) #define border_next(b) (list_entry((b)->list.next, border_t, list)) #define border_prev(b) (list_entry((b)->list.prev, border_t, list)) #define chordal_has_class(chordal_env, irn) \ - arch_irn_consider_in_reg_alloc(&chordal_env->birg->main_env->arch_env, chordal_env->cls, irn) + arch_irn_consider_in_reg_alloc(chordal_env->cls, irn) void be_ra_chordal_color(be_chordal_env_t *chordal_env); @@ -121,6 +117,6 @@ struct be_ra_chordal_opts_t { char ilp_solver[128]; }; -void be_pre_spill_prepare_constr(be_chordal_env_t *cenv); +void check_for_memory_operands(ir_graph *irg); #endif /* FIRM_BE_BECHORDAL_T_H */