Skip to content

Commit 5573904

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

File tree

5 files changed

+16
-64
lines changed

5 files changed

+16
-64
lines changed

jbmc/src/java_bytecode/java_local_variable_table.cpp

+1-4
Original file line numberDiff line numberDiff line change
@@ -464,10 +464,7 @@ static java_bytecode_convert_methodt::method_offsett get_common_dominator(
464464
candidate_dominators;
465465
for(auto v : merge_vars)
466466
{
467-
const auto &dominator_nodeidx=
468-
dominator_analysis.cfg.entry_map.at(v->var.start_pc);
469-
const auto &this_var_doms=
470-
dominator_analysis.cfg[dominator_nodeidx].dominators;
467+
const auto &this_var_doms = dominator_analysis.dominators(v->var.start_pc);
471468
for(const auto this_var_dom : this_var_doms)
472469
if(this_var_dom<=first_pc)
473470
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

+11-33
Original file line numberDiff line numberDiff line change
@@ -140,45 +140,23 @@ void sese_region_analysist::compute_sese_regions(
140140
(*successors.begin())->incoming_edges.size() == 1)
141141
continue;
142142

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.
148-
149-
// Ideally I would use `optionalt<std::size_t>` here, but it triggers a
150-
// GCC-5 bug.
151-
std::size_t closest_exit_index = dominators.cfg.size();
152-
for(const auto &possible_exit : instruction_postdoms)
143+
for(const auto &possible_exit : postdominators.dominators(it))
153144
{
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-
159145
if(
160-
it != possible_exit && dominators.dominates(it, possible_exit_node) &&
146+
it != possible_exit && dominators.dominates(it, possible_exit) &&
161147
get_innermost_loop(innermost_loop_ids, it) ==
162148
get_innermost_loop(innermost_loop_ids, possible_exit))
163149
{
164-
// If there are several candidate region exit nodes, prefer the one with
165-
// the least dominators, i.e. the closest to the region entrance.
166-
if(
167-
closest_exit_index == dominators.cfg.size() ||
168-
dominators.cfg[closest_exit_index].dominators.size() >
169-
possible_exit_dominators)
170-
{
171-
closest_exit_index = possible_exit_index;
172-
}
173-
}
174-
}
150+
// The first candidate that meets out criteria is the best, as
151+
// postdominators are iterated over closest first (i.e. starting with
152+
// the immediate postdominator).
175153

176-
if(closest_exit_index < dominators.cfg.size())
177-
{
178-
auto emplace_result =
179-
sese_regions.emplace(it, dominators.cfg[closest_exit_index].PC);
180-
INVARIANT(
181-
emplace_result.second, "should only visit each region entry once");
154+
auto emplace_result = sese_regions.emplace(it, possible_exit);
155+
INVARIANT(
156+
emplace_result.second, "should only visit each region entry once");
157+
158+
break;
159+
}
182160
}
183161
}
184162
}

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-25
Original file line numberDiff line numberDiff line change
@@ -153,32 +153,9 @@ 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)
156+
if(j_PC_node.dominator && pd.cfg[*j_PC_node.dominator].PC != lex_succ)
162157
{
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)
180-
{
181-
add_to_queue(queue, *it, nearest);
158+
add_to_queue(queue, *it, lex_succ);
182159
jumps.erase(it);
183160
}
184161
}

0 commit comments

Comments
 (0)