Skip to content

Commit 5e1537f

Browse files
committed
Update API calls
Change existing API calls to use the new immediate-dominator version of dominator analysis.
1 parent bc2bb54 commit 5e1537f

File tree

5 files changed

+20
-43
lines changed

5 files changed

+20
-43
lines changed

jbmc/src/java_bytecode/java_local_variable_table.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,7 @@ static java_bytecode_convert_methodt::method_offsett get_common_dominator(
467467
const auto &dominator_nodeidx=
468468
dominator_analysis.cfg.entry_map.at(v->var.start_pc);
469469
const auto &this_var_doms=
470-
dominator_analysis.cfg[dominator_nodeidx].dominators;
470+
dominator_analysis.dominated_by(dominator_nodeidx);
471471
for(const auto this_var_dom : this_var_doms)
472472
if(this_var_dom<=first_pc)
473473
candidate_dominators.push_back(this_var_dom);

src/analyses/dependence_graph.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ void dep_graph_domaint::control_dependencies(
109109
const cfg_post_dominatorst::cfgt::nodet &m_s=
110110
pd.cfg[edge.first];
111111

112-
if(m_s.dominators.find(to)!=m_s.dominators.end())
112+
if(pd.dominates(to, m_s))
113113
post_dom_one=true;
114114
else
115115
post_dom_all=false;

src/analyses/sese_regions.cpp

+15-16
Original file line numberDiff line numberDiff line change
@@ -133,44 +133,43 @@ void sese_region_analysist::compute_sese_regions(
133133
++it)
134134
{
135135
// Only look for regions starting at nontrivial CFG edges:
136-
137136
auto successors = goto_program.get_successors(it);
138137
if(
139138
successors.size() == 1 &&
140139
(*successors.begin())->incoming_edges.size() == 1)
141140
continue;
142141

143-
const auto &instruction_postdoms = postdominators.get_node(it).dominators;
144-
145-
// Ideally we would start with the immediate postdominator and walk down,
146-
// but our current dominator analysis doesn't make it easy to determine an
147-
// immediate dominator.
142+
const auto &instruction_postdom = postdominators.get_node(it).dominator;
143+
if (!instruction_postdom)
144+
continue;
148145

149146
// Ideally I would use `optionalt<std::size_t>` here, but it triggers a
150147
// GCC-5 bug.
151148
std::size_t closest_exit_index = dominators.cfg.size();
152-
for(const auto &possible_exit : instruction_postdoms)
149+
std::size_t current_index = *instruction_postdom;
150+
while(current_index != 0)
153151
{
154-
const auto possible_exit_index = dominators.get_node_index(possible_exit);
155-
const auto &possible_exit_node = dominators.cfg[possible_exit_index];
156-
const auto possible_exit_dominators =
157-
possible_exit_node.dominators.size();
158-
152+
const auto &possible_exit_node = dominators.cfg[current_index];
153+
const auto &possible_exit = possible_exit_node.PC;
159154
if(
160155
it != possible_exit && dominators.dominates(it, possible_exit_node) &&
161156
get_innermost_loop(innermost_loop_ids, it) ==
162-
get_innermost_loop(innermost_loop_ids, possible_exit))
157+
get_innermost_loop(innermost_loop_ids, possible_exit))
163158
{
164159
// If there are several candidate region exit nodes, prefer the one with
165160
// the least dominators, i.e. the closest to the region entrance.
166161
if(
167162
closest_exit_index == dominators.cfg.size() ||
168-
dominators.cfg[closest_exit_index].dominators.size() >
169-
possible_exit_dominators)
163+
current_index < closest_exit_index)
170164
{
171-
closest_exit_index = possible_exit_index;
165+
closest_exit_index = current_index;
172166
}
173167
}
168+
169+
if (possible_exit_node.dominator)
170+
current_index = *possible_exit_node.dominator;
171+
else
172+
break;
174173
}
175174

176175
if(closest_exit_index < dominators.cfg.size())

src/goto-analyzer/unreachable_instructions.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ static void unreachable_instructions(
3838
++it)
3939
{
4040
const cfg_dominatorst::cfgt::nodet &n=dominators.cfg[it->second];
41-
if(n.dominators.empty())
41+
if(!n.dominator)
4242
dest.insert(std::make_pair(it->first->location_number,
4343
it->first));
4444
}

src/goto-instrument/full_slicer.cpp

+2-24
Original file line numberDiff line numberDiff line change
@@ -153,30 +153,8 @@ void full_slicert::add_jumps(
153153
{
154154
// check whether the nearest post-dominator is different from
155155
// lex_succ
156-
goto_programt::const_targett nearest=lex_succ;
157-
std::size_t post_dom_size=0;
158-
for(cfg_dominatorst::target_sett::const_iterator d_it =
159-
j_PC_node.dominators.begin();
160-
d_it != j_PC_node.dominators.end();
161-
++d_it)
162-
{
163-
const auto &node = cfg.get_node(*d_it);
164-
if(node.node_required)
165-
{
166-
const irep_idt &id2 = node.function_id;
167-
INVARIANT(id==id2,
168-
"goto/jump expected to be within a single function");
169-
170-
const auto &postdom_node = pd.get_node(*d_it);
171-
172-
if(postdom_node.dominators.size() > post_dom_size)
173-
{
174-
nearest=*d_it;
175-
post_dom_size = postdom_node.dominators.size();
176-
}
177-
}
178-
}
179-
if(nearest!=lex_succ)
156+
auto nearest=lex_succ;
157+
if(j_PC_node.dominator && pd.cfg[*j_PC_node.dominator].PC!=lex_succ)
180158
{
181159
add_to_queue(queue, *it, nearest);
182160
jumps.erase(it);

0 commit comments

Comments
 (0)