blob: acfd29bf10d15ec09006462f6dd666bc7b3818b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
/*
* This file is part of libFirm.
* Copyright (C) 2012 University of Karlsruhe.
*/
/**
* @file
* @brief Backend irg - a ir_graph with additional analysis information.
* @author Matthias Braun
* @date 13.12.2006
*/
#include "beirg.h"
#include "belive.h"
#include "execfreq.h"
void be_invalidate_live_sets(ir_graph *irg)
{
be_irg_t *birg = be_birg_from_irg(irg);
be_liveness_invalidate_sets(birg->lv);
}
void be_invalidate_live_chk(ir_graph *irg)
{
be_irg_t *birg = be_birg_from_irg(irg);
be_liveness_invalidate_chk(birg->lv);
}
void be_assure_live_sets(ir_graph *irg)
{
be_irg_t *birg = be_birg_from_irg(irg);
be_liveness_compute_sets(birg->lv);
}
void be_assure_live_chk(ir_graph *irg)
{
be_irg_t *birg = be_birg_from_irg(irg);
be_liveness_compute_chk(birg->lv);
}
void be_free_birg(ir_graph *irg)
{
be_irg_t *birg = be_birg_from_irg(irg);
be_liveness_free(birg->lv);
birg->lv = NULL;
obstack_free(&birg->obst, NULL);
irg->be_data = NULL;
}
|