Skip to content

Commit 92c6cd5

Browse files
committed
Remove default messaget value from goto_program_dereferencet
Use a message_handlert throughout, and firmly require that instead of using a default value (of a deprecated messaget()).
1 parent 6930101 commit 92c6cd5

40 files changed

+286
-190
lines changed

doc/architectural/goto-program-transformations.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -310,6 +310,7 @@ line options. The reachability slicer is enabled by the `--reachability-slice`
310310
command line option. The implementation of this pass is called via the \ref
311311
reachability_slicer(goto_modelt &, message_handlert &) function. The full slicer
312312
is enabled by the `--full-slice` command line option. The implementation of this
313-
pass is called via the \ref full_slicer(goto_modelt &) function.
313+
pass is called via the \ref full_slicer(goto_modelt &, message_handlert &)
314+
function.
314315

315316
<em>Predecessor pass is \ref properties-transform .</em>

jbmc/src/janalyzer/janalyzer_parse_options.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ ai_baset *janalyzer_parse_optionst::build_analyzer(
276276
}
277277
else if(options.get_bool_option("dependence-graph"))
278278
{
279-
domain = new dependence_grapht(ns);
279+
domain = new dependence_grapht(ns, ui_message_handler);
280280
}
281281
else if(options.get_bool_option("intervals"))
282282
{

jbmc/src/jbmc/jbmc_parse_options.cpp

+3-2
Original file line numberDiff line numberDiff line change
@@ -897,9 +897,10 @@ bool jbmc_parse_optionst::process_goto_functions(
897897
<< messaget::eom;
898898
log.status() << "Performing a full slice" << messaget::eom;
899899
if(cmdline.isset("property"))
900-
property_slicer(goto_model, cmdline.get_values("property"));
900+
property_slicer(
901+
goto_model, cmdline.get_values("property"), ui_message_handler);
901902
else
902-
full_slicer(goto_model);
903+
full_slicer(goto_model, ui_message_handler);
903904
}
904905

905906
// remove any skips introduced

jbmc/src/jdiff/jdiff_parse_options.cpp

+5-1
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,11 @@ int jdiff_parse_optionst::doit()
144144
: (cmdline.isset("backward-impact") ? impact_modet::BACKWARD
145145
: impact_modet::BOTH);
146146
change_impact(
147-
goto_model1, goto_model2, impact_mode, cmdline.isset("compact-output"));
147+
goto_model1,
148+
goto_model2,
149+
impact_mode,
150+
cmdline.isset("compact-output"),
151+
ui_message_handler);
148152

149153
return CPROVER_EXIT_SUCCESS;
150154
}

src/analyses/dependence_graph.cpp

+13-6
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ void dep_graph_domaint::data_dependencies(
164164
// TODO use (future) reaching-definitions-dereferencing rw_set
165165
value_setst &value_sets=
166166
dep_graph.reaching_definitions().get_value_sets();
167-
rw_range_set_value_sett rw_set(ns, value_sets);
167+
rw_range_set_value_sett rw_set(ns, value_sets, message_handler);
168168
goto_rw(function_to, to, rw_set);
169169

170170
for(const auto &read_object_entry : rw_set.get_r_set())
@@ -341,28 +341,35 @@ jsont dep_graph_domaint::output_json(
341341
class dep_graph_domain_factoryt : public ai_domain_factoryt<dep_graph_domaint>
342342
{
343343
public:
344-
explicit dep_graph_domain_factoryt(dependence_grapht &_dg) : dg(_dg)
344+
dep_graph_domain_factoryt(
345+
dependence_grapht &_dg,
346+
message_handlert &message_handler)
347+
: dg(_dg), message_handler(message_handler)
345348
{
346349
}
347350

348351
std::unique_ptr<statet> make(locationt l) const override
349352
{
350353
auto node_id = dg.add_node();
351354
dg.nodes[node_id].PC = l;
352-
auto p = std::make_unique<dep_graph_domaint>(node_id);
355+
auto p = std::make_unique<dep_graph_domaint>(node_id, message_handler);
353356
CHECK_RETURN(p->is_bottom());
354357

355358
return std::unique_ptr<statet>(p.release());
356359
}
357360

358361
private:
359362
dependence_grapht &dg;
363+
message_handlert &message_handler;
360364
};
361365

362-
dependence_grapht::dependence_grapht(const namespacet &_ns)
363-
: ait<dep_graph_domaint>(std::make_unique<dep_graph_domain_factoryt>(*this)),
366+
dependence_grapht::dependence_grapht(
367+
const namespacet &_ns,
368+
message_handlert &message_handler)
369+
: ait<dep_graph_domaint>(
370+
std::make_unique<dep_graph_domain_factoryt>(*this, message_handler)),
364371
ns(_ns),
365-
rd(ns)
372+
rd(ns, message_handler)
366373
{
367374
}
368375

src/analyses/dependence_graph.h

+8-3
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,11 @@ class dep_graph_domaint:public ai_domain_baset
6868
public:
6969
typedef grapht<dep_nodet>::node_indext node_indext;
7070

71-
explicit dep_graph_domaint(node_indext id)
72-
: has_values(false), node_id(id), has_changed(false)
71+
dep_graph_domaint(node_indext id, message_handlert &message_handler)
72+
: has_values(false),
73+
node_id(id),
74+
has_changed(false),
75+
message_handler(message_handler)
7376
{
7477
}
7578

@@ -189,6 +192,8 @@ class dep_graph_domaint:public ai_domain_baset
189192
// location has a data dependency on
190193
depst data_deps;
191194

195+
message_handlert &message_handler;
196+
192197
friend const depst &
193198
dependence_graph_test_get_control_deps(const dep_graph_domaint &);
194199
friend const depst &
@@ -220,7 +225,7 @@ class dependence_grapht:
220225

221226
typedef std::map<irep_idt, cfg_post_dominatorst> post_dominators_mapt;
222227

223-
explicit dependence_grapht(const namespacet &_ns);
228+
dependence_grapht(const namespacet &_ns, message_handlert &);
224229

225230
void initialize(const goto_functionst &goto_functions)
226231
{

src/analyses/goto_rw.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -682,7 +682,7 @@ void rw_range_set_value_sett::get_objects_dereference(
682682
size);
683683

684684
exprt object=deref;
685-
dereference(function, target, object, ns, value_sets);
685+
dereference(function, target, object, ns, value_sets, message_handler);
686686

687687
auto type_bits = pointer_offset_bits(object.type(), ns);
688688

src/analyses/goto_rw.h

+10-8
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Date: April 2010
2121
#include <goto-programs/goto_program.h>
2222

2323
class goto_functionst;
24-
24+
class message_handlert;
2525
class rw_range_sett;
2626

2727
void goto_rw(
@@ -212,8 +212,8 @@ class rw_range_sett
212212

213213
virtual ~rw_range_sett();
214214

215-
explicit rw_range_sett(const namespacet &_ns):
216-
ns(_ns)
215+
rw_range_sett(const namespacet &_ns, message_handlert &message_handler)
216+
: ns(_ns), message_handler(message_handler)
217217
{
218218
}
219219

@@ -263,6 +263,7 @@ class rw_range_sett
263263

264264
protected:
265265
const namespacet &ns;
266+
message_handlert &message_handler;
266267

267268
objectst r_range_set, w_range_set;
268269

@@ -370,9 +371,9 @@ class rw_range_set_value_sett:public rw_range_sett
370371
public:
371372
rw_range_set_value_sett(
372373
const namespacet &_ns,
373-
value_setst &_value_sets):
374-
rw_range_sett(_ns),
375-
value_sets(_value_sets)
374+
value_setst &_value_sets,
375+
message_handlert &message_handler)
376+
: rw_range_sett(_ns, message_handler), value_sets(_value_sets)
376377
{
377378
}
378379

@@ -463,8 +464,9 @@ class rw_guarded_range_set_value_sett:public rw_range_set_value_sett
463464
rw_guarded_range_set_value_sett(
464465
const namespacet &_ns,
465466
value_setst &_value_sets,
466-
guard_managert &guard_manager)
467-
: rw_range_set_value_sett(_ns, _value_sets),
467+
guard_managert &guard_manager,
468+
message_handlert &message_handler)
469+
: rw_range_set_value_sett(_ns, _value_sets, message_handler),
468470
guard_manager(guard_manager),
469471
guard(true_exprt(), guard_manager)
470472
{

src/analyses/reaching_definitions.cpp

+9-6
Original file line numberDiff line numberDiff line change
@@ -32,27 +32,30 @@ class rd_range_domain_factoryt : public ai_domain_factoryt<rd_range_domaint>
3232
{
3333
public:
3434
rd_range_domain_factoryt(
35-
sparse_bitvector_analysist<reaching_definitiont> *_bv_container)
36-
: bv_container(_bv_container)
35+
sparse_bitvector_analysist<reaching_definitiont> *_bv_container,
36+
message_handlert &message_handler)
37+
: bv_container(_bv_container), message_handler(message_handler)
3738
{
3839
PRECONDITION(bv_container != nullptr);
3940
}
4041

4142
std::unique_ptr<statet> make(locationt) const override
4243
{
43-
auto p = std::make_unique<rd_range_domaint>(bv_container);
44+
auto p = std::make_unique<rd_range_domaint>(bv_container, message_handler);
4445
CHECK_RETURN(p->is_bottom());
4546
return std::unique_ptr<statet>(p.release());
4647
}
4748

4849
private:
4950
sparse_bitvector_analysist<reaching_definitiont> *const bv_container;
51+
message_handlert &message_handler;
5052
};
5153

5254
reaching_definitions_analysist::reaching_definitions_analysist(
53-
const namespacet &_ns)
55+
const namespacet &_ns,
56+
message_handlert &message_handler)
5457
: concurrency_aware_ait<rd_range_domaint>(
55-
std::make_unique<rd_range_domain_factoryt>(this)),
58+
std::make_unique<rd_range_domain_factoryt>(this, message_handler)),
5659
ns(_ns)
5760
{
5861
}
@@ -306,7 +309,7 @@ void rd_range_domaint::transform_assign(
306309
locationt to,
307310
reaching_definitions_analysist &rd)
308311
{
309-
rw_range_set_value_sett rw_set(ns, rd.get_value_sets());
312+
rw_range_set_value_sett rw_set(ns, rd.get_value_sets(), message_handler);
310313
goto_rw(function_to, to, rw_set);
311314
const bool is_must_alias=rw_set.get_w_set().size()==1;
312315

src/analyses/reaching_definitions.h

+9-3
Original file line numberDiff line numberDiff line change
@@ -159,8 +159,12 @@ class rd_range_domaint:public ai_domain_baset
159159
{
160160
public:
161161
rd_range_domaint(
162-
sparse_bitvector_analysist<reaching_definitiont> *_bv_container)
163-
: ai_domain_baset(), has_values(false), bv_container(_bv_container)
162+
sparse_bitvector_analysist<reaching_definitiont> *_bv_container,
163+
message_handlert &message_handler)
164+
: ai_domain_baset(),
165+
has_values(false),
166+
bv_container(_bv_container),
167+
message_handler(message_handler)
164168
{
165169
PRECONDITION(bv_container != nullptr);
166170
}
@@ -346,6 +350,8 @@ class rd_range_domaint:public ai_domain_baset
346350
bool merge_inner(
347351
values_innert &dest,
348352
const values_innert &other);
353+
354+
message_handlert &message_handler;
349355
};
350356

351357
class reaching_definitions_analysist:
@@ -354,7 +360,7 @@ class reaching_definitions_analysist:
354360
{
355361
public:
356362
// constructor
357-
explicit reaching_definitions_analysist(const namespacet &_ns);
363+
reaching_definitions_analysist(const namespacet &_ns, message_handlert &);
358364

359365
virtual ~reaching_definitions_analysist();
360366

src/cbmc/cbmc_parse_options.cpp

+5-2
Original file line numberDiff line numberDiff line change
@@ -906,9 +906,12 @@ bool cbmc_parse_optionst::process_goto_program(
906906
<< messaget::eom;
907907
log.status() << "Performing a full slice" << messaget::eom;
908908
if(options.is_set("property"))
909-
property_slicer(goto_model, options.get_list_option("property"));
909+
property_slicer(
910+
goto_model,
911+
options.get_list_option("property"),
912+
log.get_message_handler());
910913
else
911-
full_slicer(goto_model);
914+
full_slicer(goto_model, log.get_message_handler());
912915
}
913916

914917
// remove any skips introduced since coverage instrumentation

src/goto-analyzer/build_analyzer.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ std::unique_ptr<ai_baset> build_analyzer(
123123
}
124124
else if(options.get_bool_option("dependence-graph"))
125125
{
126-
return std::make_unique<dependence_grapht>(ns);
126+
return std::make_unique<dependence_grapht>(ns, mh);
127127
}
128128
else if(options.get_bool_option("dependence-graph-vs"))
129129
{

src/goto-diff/change_impact.cpp

+20-16
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,8 @@ class change_impactt
207207
const goto_modelt &model_old,
208208
const goto_modelt &model_new,
209209
impact_modet impact_mode,
210-
bool compact_output);
210+
bool compact_output,
211+
message_handlert &message_handler);
211212

212213
void operator()();
213214

@@ -289,19 +290,20 @@ class change_impactt
289290
};
290291

291292
change_impactt::change_impactt(
292-
const goto_modelt &model_old,
293-
const goto_modelt &model_new,
294-
impact_modet _impact_mode,
295-
bool _compact_output):
296-
impact_mode(_impact_mode),
297-
compact_output(_compact_output),
298-
old_goto_functions(model_old.goto_functions),
299-
ns_old(model_old.symbol_table),
300-
new_goto_functions(model_new.goto_functions),
301-
ns_new(model_new.symbol_table),
302-
unified_diff(model_old, model_new),
303-
old_dep_graph(ns_old),
304-
new_dep_graph(ns_new)
293+
const goto_modelt &model_old,
294+
const goto_modelt &model_new,
295+
impact_modet _impact_mode,
296+
bool _compact_output,
297+
message_handlert &message_handler)
298+
: impact_mode(_impact_mode),
299+
compact_output(_compact_output),
300+
old_goto_functions(model_old.goto_functions),
301+
ns_old(model_old.symbol_table),
302+
new_goto_functions(model_new.goto_functions),
303+
ns_new(model_new.symbol_table),
304+
unified_diff(model_old, model_new),
305+
old_dep_graph(ns_old, message_handler),
306+
new_dep_graph(ns_new, message_handler)
305307
{
306308
// syntactic difference?
307309
if(!unified_diff())
@@ -757,8 +759,10 @@ void change_impact(
757759
const goto_modelt &model_old,
758760
const goto_modelt &model_new,
759761
impact_modet impact_mode,
760-
bool compact_output)
762+
bool compact_output,
763+
message_handlert &message_handler)
761764
{
762-
change_impactt c(model_old, model_new, impact_mode, compact_output);
765+
change_impactt c(
766+
model_old, model_new, impact_mode, compact_output, message_handler);
763767
c();
764768
}

src/goto-diff/change_impact.h

+3-1
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,14 @@ Date: April 2016
1515
#define CPROVER_GOTO_DIFF_CHANGE_IMPACT_H
1616

1717
class goto_modelt;
18+
class message_handlert;
1819
enum class impact_modet { FORWARD, BACKWARD, BOTH };
1920

2021
void change_impact(
2122
const goto_modelt &model_old,
2223
const goto_modelt &model_new,
2324
impact_modet impact_mode,
24-
bool compact_output);
25+
bool compact_output,
26+
message_handlert &message_handler);
2527

2628
#endif // CPROVER_GOTO_DIFF_CHANGE_IMPACT_H

src/goto-diff/goto_diff_parse_options.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,8 @@ int goto_diff_parse_optionst::doit()
147147
goto_model1,
148148
goto_model2,
149149
impact_mode,
150-
cmdline.isset("compact-output"));
150+
cmdline.isset("compact-output"),
151+
ui_message_handler);
151152

152153
return CPROVER_EXIT_SUCCESS;
153154
}

0 commit comments

Comments
 (0)