Skip to content

Commit 132fe24

Browse files
committed
Remove renamedt from symex_targett interface
We did not consistently use it, and the three methods that did so can easily be adjusted to match the remaining ones in directly taking `exprt` instead.
1 parent 4ae54e6 commit 132fe24

6 files changed

+21
-25
lines changed

src/goto-symex/symex_builtin_functions.cpp

+3-4
Original file line numberDiff line numberDiff line change
@@ -454,14 +454,13 @@ void goto_symext::symex_output(
454454
PRECONDITION(code.operands().size() >= 2);
455455
exprt id_arg = state.rename(code.op0(), ns).get();
456456

457-
std::list<renamedt<exprt, L2>> args;
457+
std::list<exprt> args;
458458

459459
for(std::size_t i=1; i<code.operands().size(); i++)
460460
{
461461
renamedt<exprt, L2> l2_arg = state.rename(code.operands()[i], ns);
462-
if(symex_config.simplify_opt)
463-
l2_arg.simplify(ns);
464-
args.emplace_back(l2_arg);
462+
args.emplace_back(l2_arg.get());
463+
do_simplify(args.back());
465464
}
466465

467466
const irep_idt output_id=get_string_argument(id_arg, ns);

src/goto-symex/symex_function_call.cpp

+4-2
Original file line numberDiff line numberDiff line change
@@ -273,9 +273,11 @@ void goto_symext::symex_function_call_post_clean(
273273
}
274274

275275
// read the arguments -- before the locality renaming
276-
const std::vector<renamedt<exprt, L2>> renamed_arguments =
276+
const std::vector<exprt> renamed_arguments =
277277
make_range(cleaned_arguments).map([&](const exprt &a) {
278-
return state.rename(a, ns);
278+
exprt arg = state.rename(a, ns).get();
279+
do_simplify(arg);
280+
return arg;
279281
});
280282

281283
// we hide the call if the caller and callee are both hidden

src/goto-symex/symex_goto.cpp

+2-3
Original file line numberDiff line numberDiff line change
@@ -238,9 +238,8 @@ void goto_symext::symex_goto(statet &state)
238238
renamedt<exprt, L2> renamed_guard = state.rename(std::move(new_guard), ns);
239239
renamed_guard = try_evaluate_pointer_comparisons(
240240
std::move(renamed_guard), state.value_set, language_mode, ns);
241-
if(symex_config.simplify_opt)
242-
renamed_guard.simplify(ns);
243241
new_guard = renamed_guard.get();
242+
do_simplify(new_guard);
244243

245244
if(new_guard.is_false())
246245
{
@@ -251,7 +250,7 @@ void goto_symext::symex_goto(statet &state)
251250
return; // nothing to do
252251
}
253252

254-
target.goto_instruction(state.guard.as_expr(), renamed_guard, state.source);
253+
target.goto_instruction(state.guard.as_expr(), new_guard, state.source);
255254

256255
DATA_INVARIANT(
257256
!instruction.targets.empty(), "goto should have at least one target");

src/goto-symex/symex_target.h

+3-5
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ Author: Daniel Kroening, [email protected]
1414

1515
#include <goto-programs/goto_program.h>
1616

17-
#include "renamed.h"
18-
1917
class ssa_exprt;
2018

2119
/// The interface of the target _container_ for symbolic execution to record its
@@ -158,7 +156,7 @@ class symex_targett
158156
virtual void function_call(
159157
const exprt &guard,
160158
const irep_idt &function_id,
161-
const std::vector<renamedt<exprt, L2>> &ssa_function_arguments,
159+
const std::vector<exprt> &ssa_function_arguments,
162160
const sourcet &source,
163161
bool hidden) = 0;
164162

@@ -192,7 +190,7 @@ class symex_targett
192190
const exprt &guard,
193191
const sourcet &source,
194192
const irep_idt &output_id,
195-
const std::list<renamedt<exprt, L2>> &args) = 0;
193+
const std::list<exprt> &args) = 0;
196194

197195
/// Record formatted output.
198196
/// \param guard: Precondition for writing to the output
@@ -251,7 +249,7 @@ class symex_targett
251249
/// goto instruction
252250
virtual void goto_instruction(
253251
const exprt &guard,
254-
const renamedt<exprt, L2> &cond,
252+
const exprt &cond,
255253
const sourcet &source) = 0;
256254

257255
/// Record a _global_ constraint: there is no guard limiting its scope.

src/goto-symex/symex_target_equation.cpp

+6-8
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ void symex_target_equationt::location(
181181
void symex_target_equationt::function_call(
182182
const exprt &guard,
183183
const irep_idt &function_id,
184-
const std::vector<renamedt<exprt, L2>> &function_arguments,
184+
const std::vector<exprt> &function_arguments,
185185
const sourcet &source,
186186
const bool hidden)
187187
{
@@ -190,8 +190,7 @@ void symex_target_equationt::function_call(
190190

191191
SSA_step.guard = guard;
192192
SSA_step.called_function = function_id;
193-
for(const auto &arg : function_arguments)
194-
SSA_step.ssa_function_arguments.emplace_back(arg.get());
193+
SSA_step.ssa_function_arguments = function_arguments;
195194
SSA_step.hidden = hidden;
196195

197196
merge_ireps(SSA_step);
@@ -217,14 +216,13 @@ void symex_target_equationt::output(
217216
const exprt &guard,
218217
const sourcet &source,
219218
const irep_idt &output_id,
220-
const std::list<renamedt<exprt, L2>> &args)
219+
const std::list<exprt> &args)
221220
{
222221
SSA_steps.emplace_back(source, goto_trace_stept::typet::OUTPUT);
223222
SSA_stept &SSA_step=SSA_steps.back();
224223

225224
SSA_step.guard=guard;
226-
for(const auto &arg : args)
227-
SSA_step.io_args.emplace_back(arg.get());
225+
SSA_step.io_args = args;
228226
SSA_step.io_id=output_id;
229227

230228
merge_ireps(SSA_step);
@@ -299,14 +297,14 @@ void symex_target_equationt::assertion(
299297

300298
void symex_target_equationt::goto_instruction(
301299
const exprt &guard,
302-
const renamedt<exprt, L2> &cond,
300+
const exprt &cond,
303301
const sourcet &source)
304302
{
305303
SSA_steps.emplace_back(source, goto_trace_stept::typet::GOTO);
306304
SSA_stept &SSA_step=SSA_steps.back();
307305

308306
SSA_step.guard=guard;
309-
SSA_step.cond_expr = cond.get();
307+
SSA_step.cond_expr = cond;
310308

311309
merge_ireps(SSA_step);
312310
}

src/goto-symex/symex_target_equation.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ class symex_target_equationt:public symex_targett
8282
virtual void function_call(
8383
const exprt &guard,
8484
const irep_idt &function_id,
85-
const std::vector<renamedt<exprt, L2>> &ssa_function_arguments,
85+
const std::vector<exprt> &ssa_function_arguments,
8686
const sourcet &source,
8787
bool hidden);
8888

@@ -103,7 +103,7 @@ class symex_target_equationt:public symex_targett
103103
const exprt &guard,
104104
const sourcet &source,
105105
const irep_idt &output_id,
106-
const std::list<renamedt<exprt, L2>> &args);
106+
const std::list<exprt> &args);
107107

108108
/// \copydoc symex_targett::output_fmt()
109109
virtual void output_fmt(
@@ -137,7 +137,7 @@ class symex_target_equationt:public symex_targett
137137
/// \copydoc symex_targett::goto_instruction()
138138
virtual void goto_instruction(
139139
const exprt &guard,
140-
const renamedt<exprt, L2> &cond,
140+
const exprt &cond,
141141
const sourcet &source);
142142

143143
/// \copydoc symex_targett::constraint()

0 commit comments

Comments
 (0)