X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbeirg_t.h;h=babc5aebab76bc864e1eddf45896bcaf1e5906f4;hb=9276447aec4972df060349e162f583c4898dfec8;hp=2f6cbbf215a82e7b2e7b7cdc93b45bb2d908af43;hpb=39f3a8dbd0f00f90b7b12a849d1bf7b9c1329479;p=libfirm diff --git a/ir/be/beirg_t.h b/ir/be/beirg_t.h index 2f6cbbf21..babc5aeba 100644 --- a/ir/be/beirg_t.h +++ b/ir/be/beirg_t.h @@ -29,6 +29,7 @@ #include "beirg.h" #include "be_t.h" +#include "irlivechk.h" /** * An ir_graph with additional analysis data about this irg. Also includes some @@ -42,6 +43,7 @@ struct be_irg_t { ir_exec_freq *exec_freq; be_dom_front_info_t *dom_front; be_lv_t *lv; + lv_chk_t *lv_chk; }; static INLINE be_lv_t * @@ -49,6 +51,11 @@ _be_get_birg_liveness(const be_irg_t *birg) { return birg->lv; } +static INLINE lv_chk_t * +_be_get_birg_liveness_chk(const be_irg_t *birg) { + return birg->lv_chk; +} + static INLINE ir_exec_freq * _be_get_birg_exec_freq(const be_irg_t *birg) { return birg->exec_freq; @@ -71,6 +78,7 @@ _be_get_birg_arch_env(const be_irg_t *birg) { #define be_get_birg_exec_freq(birg) _be_get_birg_exec_freq(birg) #define be_get_birg_liveness(birg) _be_get_birg_liveness(birg) +#define be_get_birg_liveness_chk(birg) _be_get_birg_liveness_chk(birg) #define be_get_birg_dom_front(birg) _be_get_birg_dom_front(birg) #define be_get_birg_irg(birg) _be_get_birg_irg(birg)