@@ -133,44 +133,43 @@ void sese_region_analysist::compute_sese_regions(
133
133
++it)
134
134
{
135
135
// Only look for regions starting at nontrivial CFG edges:
136
-
137
136
auto successors = goto_program.get_successors (it);
138
137
if (
139
138
successors.size () == 1 &&
140
139
(*successors.begin ())->incoming_edges .size () == 1 )
141
140
continue ;
142
141
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 ;
148
145
149
146
// Ideally I would use `optionalt<std::size_t>` here, but it triggers a
150
147
// GCC-5 bug.
151
148
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 )
153
151
{
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 ;
159
154
if (
160
155
it != possible_exit && dominators.dominates (it, possible_exit_node) &&
161
156
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))
163
158
{
164
159
// If there are several candidate region exit nodes, prefer the one with
165
160
// the least dominators, i.e. the closest to the region entrance.
166
161
if (
167
162
closest_exit_index == dominators.cfg .size () ||
168
- dominators.cfg [closest_exit_index].dominators .size () >
169
- possible_exit_dominators)
163
+ current_index < closest_exit_index)
170
164
{
171
- closest_exit_index = possible_exit_index ;
165
+ closest_exit_index = current_index ;
172
166
}
173
167
}
168
+
169
+ if (possible_exit_node.dominator )
170
+ current_index = *possible_exit_node.dominator ;
171
+ else
172
+ break ;
174
173
}
175
174
176
175
if (closest_exit_index < dominators.cfg .size ())
0 commit comments