X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbechordal_t.h;h=a7dcb36abb45c0c9096775b21b33ab8fc42ad07a;hb=f85d684391adac08d54c3fdcda868e6392de2ffb;hp=b70f694dffb7e93f7e55c09cfea502d2d8da858c;hpb=bb9f2e36362333c6635b89f5258171b06c786608;p=libfirm diff --git a/ir/be/bechordal_t.h b/ir/be/bechordal_t.h index b70f694df..a7dcb36ab 100644 --- a/ir/be/bechordal_t.h +++ b/ir/be/bechordal_t.h @@ -64,16 +64,15 @@ 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); + return (list_head*)pmap_get(inf->border_heads, bl); } #define get_block_border_head(info, bl) _get_block_border_head(info, bl) @@ -121,6 +120,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 */