-
Notifications
You must be signed in to change notification settings - Fork 289
Expand file tree
/
Copy pathjdiff_parse_options.cpp
More file actions
283 lines (232 loc) · 8.21 KB
/
jdiff_parse_options.cpp
File metadata and controls
283 lines (232 loc) · 8.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
/*******************************************************************\
Module: JDIFF Command Line Option Processing
Author: Peter Schrammel
\*******************************************************************/
/// \file
/// JDIFF Command Line Option Processing
#include "jdiff_parse_options.h"
#include <util/config.h>
#include <util/exit_codes.h>
#include <util/help_formatter.h>
#include <util/options.h>
#include <util/version.h>
#include <goto-programs/adjust_float_expressions.h>
#include <goto-programs/goto_check.h>
#include <goto-programs/initialize_goto_model.h>
#include <goto-programs/instrument_preconditions.h>
#include <goto-programs/loop_ids.h>
#include <goto-programs/mm_io.h>
#include <goto-programs/remove_function_pointers.h>
#include <goto-programs/remove_returns.h>
#include <goto-programs/remove_skip.h>
#include <goto-programs/remove_virtual_functions.h>
#include <goto-programs/set_properties.h>
#include <goto-programs/show_properties.h>
#include <goto-diff/change_impact.h>
#include <goto-diff/unified_diff.h>
#include <goto-instrument/cover.h>
#include <java_bytecode/convert_java_nondet.h>
#include <java_bytecode/java_bytecode_language.h>
#include <java_bytecode/java_object_factory_parameters.h>
#include <java_bytecode/remove_exceptions.h>
#include <java_bytecode/remove_instanceof.h>
#include <java_bytecode/remove_java_new.h>
#include "java_syntactic_diff.h"
#include <cstdlib> // exit()
#include <iostream>
jdiff_parse_optionst::jdiff_parse_optionst(int argc, const char **argv)
: parse_options_baset(
JDIFF_OPTIONS,
argc,
argv,
std::string("JDIFF ") + CBMC_VERSION)
{
}
void jdiff_parse_optionst::get_command_line_options(optionst &options)
{
if(config.set(cmdline))
{
usage_error();
exit(1);
}
parse_java_language_options(cmdline, options);
// check assertions
if(cmdline.isset("no-assertions"))
options.set_option("assertions", false);
else
options.set_option("assertions", true);
// use assumptions
if(cmdline.isset("no-assumptions"))
options.set_option("assumptions", false);
else
options.set_option("assumptions", true);
if(cmdline.isset("cover"))
parse_cover_options(cmdline, options);
options.set_option("show-properties", cmdline.isset("show-properties"));
}
/// invoke main modules
int jdiff_parse_optionst::doit()
{
if(cmdline.isset("version"))
{
std::cout << CBMC_VERSION << '\n';
return CPROVER_EXIT_SUCCESS;
}
//
// command line options
//
optionst options;
get_command_line_options(options);
messaget::eval_verbosity(
cmdline.get_value("verbosity"), messaget::M_STATISTICS, ui_message_handler);
log_version_and_architecture("JDIFF");
if(cmdline.args.size() != 2)
{
log.error() << "Please provide two programs to compare" << messaget::eom;
return CPROVER_EXIT_INCORRECT_TASK;
}
register_languages();
goto_modelt goto_model1 =
initialize_goto_model({cmdline.args[0]}, ui_message_handler, options);
if(process_goto_program(options, goto_model1))
return CPROVER_EXIT_INTERNAL_ERROR;
goto_modelt goto_model2 =
initialize_goto_model({cmdline.args[1]}, ui_message_handler, options);
if(process_goto_program(options, goto_model2))
return CPROVER_EXIT_INTERNAL_ERROR;
if(cmdline.isset("show-loops"))
{
show_loop_ids(ui_message_handler.get_ui(), goto_model1);
show_loop_ids(ui_message_handler.get_ui(), goto_model2);
return CPROVER_EXIT_SUCCESS;
}
if(
cmdline.isset("show-goto-functions") ||
cmdline.isset("list-goto-functions"))
{
show_goto_functions(
goto_model1, ui_message_handler, cmdline.isset("list-goto-functions"));
show_goto_functions(
goto_model2, ui_message_handler, cmdline.isset("list-goto-functions"));
return CPROVER_EXIT_SUCCESS;
}
if(
cmdline.isset("change-impact") || cmdline.isset("forward-impact") ||
cmdline.isset("backward-impact"))
{
impact_modet impact_mode =
cmdline.isset("forward-impact")
? impact_modet::FORWARD
: (cmdline.isset("backward-impact") ? impact_modet::BACKWARD
: impact_modet::BOTH);
change_impact(
goto_model1,
goto_model2,
impact_mode,
cmdline.isset("compact-output"),
ui_message_handler);
return CPROVER_EXIT_SUCCESS;
}
if(cmdline.isset("unified") || cmdline.isset('u'))
{
unified_difft u(goto_model1, goto_model2);
u();
u.output(std::cout);
return CPROVER_EXIT_SUCCESS;
}
java_syntactic_difft sd(
goto_model1, goto_model2, options, ui_message_handler);
sd();
sd.output_functions();
return CPROVER_EXIT_SUCCESS;
}
bool jdiff_parse_optionst::process_goto_program(
const optionst &options,
goto_modelt &goto_model)
{
// remove function pointers
log.status() << "Removing function pointers and virtual functions"
<< messaget::eom;
remove_function_pointers(ui_message_handler, goto_model, false);
// Java virtual functions -> explicit dispatch tables:
remove_virtual_functions(goto_model);
// remove Java throw and catch
// This introduces instanceof, so order is important:
remove_exceptions_using_instanceof(goto_model, ui_message_handler);
// Java instanceof -> clsid comparison:
class_hierarchyt class_hierarchy(goto_model.symbol_table);
remove_instanceof(goto_model, class_hierarchy, ui_message_handler);
mm_io(goto_model, ui_message_handler);
// instrument library preconditions
instrument_preconditions(goto_model);
// remove returns
remove_returns(goto_model);
// convert Java nondet expressions
java_object_factory_parameterst object_factory_parameters;
object_factory_parameters.set(options);
convert_nondet(goto_model, ui_message_handler, object_factory_parameters);
// remove Java new expressions (must be after convert_nondet)
remove_java_new(goto_model, ui_message_handler);
transform_assertions_assumptions(options, goto_model);
// checks don't know about adjusted float expressions
adjust_float_expressions(goto_model);
// recalculate numbers, etc.
goto_model.goto_functions.update();
// instrument cover goals
if(cmdline.isset("cover"))
{
// remove skips such that trivial GOTOs are deleted and not considered for
// coverage annotation:
remove_skip(goto_model);
const auto cover_config =
get_cover_config(options, goto_model.symbol_table, ui_message_handler);
if(instrument_cover_goals(cover_config, goto_model, ui_message_handler))
return true;
}
// label the assertions
// This must be done after adding assertions and
// before using the argument of the "property" option.
// Do not re-label after using the property slicer because
// this would cause the property identifiers to change.
label_properties(goto_model);
// remove any skips introduced since coverage instrumentation
remove_skip(goto_model);
return false;
}
/// display command line help
void jdiff_parse_optionst::help()
{
// clang-format off
std::cout << '\n' << banner_string("JDIFF", CBMC_VERSION) << '\n'
<< align_center_with_border("Copyright (C) 2016-2018") << '\n'
<< align_center_with_border("Daniel Kroening, Peter Schrammel") << '\n' // NOLINT(*)
<< align_center_with_border("kroening@kroening.com") << '\n';
std::cout << help_formatter(
"\n"
"Usage: \tPurpose:\n"
"\n"
" {bjdiff} [{y-?}] [{y-h}] [{y--help}] \t show this help\n"
" {bjdiff} {uold} {unew} \t jars to be compared\n"
"\n"
"Diff options:\n"
HELP_SHOW_GOTO_FUNCTIONS
HELP_SHOW_PROPERTIES
" {y--show-loops} \t show the loops in the programs\n"
" {y-u}, {y--unified} \t output unified diff\n"
" {y--change-impact}, {y--forward-impact}, {y--backward-impact} \t output"
" unified diff with forward&backward/forward/backward dependencies\n"
" {y--compact-output} \t output dependencies in compact mode\n"
"\n"
"Program instrumentation options:\n"
" {y--no-assertions} \t ignore user assertions\n"
" {y--no-assumptions} \t ignore user assumptions\n"
HELP_COVER
"\n"
"Other options:\n"
" {y--version} \t show version and exit\n"
" {y--json-ui} \t use JSON-formatted output\n"
" {y--verbosity} {u#} \t verbosity level\n"
HELP_TIMESTAMP
"\n");
// clang-format on
}