cprover
goto_instrument_parse_options.h
Go to the documentation of this file.
1
/*******************************************************************\
2
3
Module: Command Line Parsing
4
5
Author: Daniel Kroening, kroening@kroening.com
6
7
\*******************************************************************/
8
11
12
#ifndef CPROVER_GOTO_INSTRUMENT_GOTO_INSTRUMENT_PARSE_OPTIONS_H
13
#define CPROVER_GOTO_INSTRUMENT_GOTO_INSTRUMENT_PARSE_OPTIONS_H
14
15
#include <
util/parse_options.h
>
16
#include <
util/timestamper.h
>
17
#include <
util/ui_message.h
>
18
#include <
util/validation_interface.h
>
19
20
#include <
goto-programs/class_hierarchy.h
>
21
#include <
goto-programs/goto_functions.h
>
22
#include <
goto-programs/remove_calls_no_body.h
>
23
#include <
goto-programs/remove_const_function_pointers.h
>
24
#include <
goto-programs/replace_calls.h
>
25
#include <
goto-programs/show_goto_functions.h
>
26
#include <
goto-programs/show_properties.h
>
27
28
#include <
analyses/goto_check.h
>
29
30
#include <
goto-programs/generate_function_bodies.h
>
31
#include "
aggressive_slicer.h
"
32
33
#include "
count_eloc.h
"
34
35
// clang-format off
36
#define GOTO_INSTRUMENT_OPTIONS \
37
"(all)" \
38
"(document-claims-latex)(document-claims-html)" \
39
"(document-properties-latex)(document-properties-html)" \
40
"(dump-c)(dump-cpp)(no-system-headers)(use-all-headers)(dot)(xml)" \
41
"(harness)" \
42
OPT_GOTO_CHECK \
43
/* no-X-check are deprecated and ignored */
\
44
"(no-bounds-check)(no-pointer-check)(no-div-by-zero-check)" \
45
"(no-nan-check)" \
46
"(remove-pointers)" \
47
"(no-simplify)" \
48
"(assert-to-assume)" \
49
"(no-assertions)(no-assumptions)(uninitialized-check)" \
50
"(race-check)(scc)(one-event-per-cycle)" \
51
"(minimum-interference)" \
52
"(mm):(my-events)" \
53
"(unwind):(unwindset):(unwindset-file):" \
54
"(unwinding-assertions)(partial-loops)(continue-as-loops)" \
55
"(log):" \
56
"(max-var):(max-po-trans):(ignore-arrays)" \
57
"(cfg-kill)(no-dependencies)(force-loop-duplication)" \
58
"(call-graph)(reachable-call-graph)" \
59
OPT_SHOW_CLASS_HIERARCHY \
60
"(no-po-rendering)(render-cluster-file)(render-cluster-function)" \
61
"(nondet-volatile)(isr):" \
62
"(stack-depth):(nondet-static)" \
63
"(function-enter):(function-exit):(branch):" \
64
OPT_SHOW_GOTO_FUNCTIONS \
65
OPT_SHOW_PROPERTIES \
66
"(drop-unused-functions)" \
67
"(show-value-sets)" \
68
"(show-global-may-alias)" \
69
"(show-local-bitvector-analysis)(show-custom-bitvector-analysis)" \
70
"(show-escape-analysis)(escape-analysis)" \
71
"(custom-bitvector-analysis)" \
72
"(show-struct-alignment)(interval-analysis)(show-intervals)" \
73
"(show-uninitialized)(show-locations)" \
74
"(full-slice)(reachability-slice)(slice-global-inits)" \
75
"(fp-reachability-slice):" \
76
"(inline)(partial-inline)(function-inline):(log):(no-caching)" \
77
OPT_REMOVE_CONST_FUNCTION_POINTERS \
78
"(print-internal-representation)" \
79
"(remove-function-pointers)" \
80
"(show-claims)(property):" \
81
"(show-symbol-table)(show-points-to)(show-rw-set)" \
82
"(cav11)" \
83
OPT_TIMESTAMP \
84
"(show-natural-loops)(accelerate)(havoc-loops)" \
85
"(error-label):(string-abstraction)" \
86
"(verbosity):(version)(xml-ui)(json-ui)(show-loops)" \
87
"(accelerate)(constant-propagator)" \
88
"(k-induction):(step-case)(base-case)" \
89
"(show-call-sequences)(check-call-sequence)" \
90
"(interpreter)(show-reaching-definitions)" \
91
"(list-symbols)(list-undefined-functions)" \
92
"(z3)(add-library)(show-dependence-graph)" \
93
"(horn)(skip-loops):(apply-code-contracts)(model-argc-argv):" \
94
"(show-threaded)(list-calls-args)" \
95
"(undefined-function-is-assume-false)" \
96
"(remove-function-body):"\
97
OPT_AGGRESSIVE_SLICER \
98
OPT_FLUSH \
99
"(splice-call):" \
100
OPT_REMOVE_CALLS_NO_BODY \
101
OPT_REPLACE_FUNCTION_BODY \
102
OPT_GOTO_PROGRAM_STATS \
103
"(show-local-safe-pointers)(show-safe-dereferences)" \
104
OPT_REPLACE_CALLS \
105
"(validate-goto-binary)" \
106
OPT_VALIDATE \
107
// empty last line
108
109
// clang-format on
110
111
class
goto_instrument_parse_optionst
:
112
public
parse_options_baset
,
113
public
messaget
114
{
115
public
:
116
virtual
int
doit
();
117
virtual
void
help
();
118
119
goto_instrument_parse_optionst
(
int
argc,
const
char
**argv):
120
parse_options_baset
(
GOTO_INSTRUMENT_OPTIONS
, argc, argv),
121
messaget
(
ui_message_handler
),
122
ui_message_handler
(
cmdline
,
"goto-instrument"
),
123
function_pointer_removal_done
(false),
124
partial_inlining_done
(false),
125
remove_returns_done
(false)
126
{
127
}
128
129
protected
:
130
ui_message_handlert
ui_message_handler
;
131
virtual
void
register_languages
();
132
133
void
get_goto_program
();
134
void
instrument_goto_program
();
135
136
void
do_indirect_call_and_rtti_removal
(
bool
force=
false
);
137
void
do_remove_const_function_pointers_only
();
138
void
do_partial_inlining
();
139
void
do_remove_returns
();
140
141
bool
function_pointer_removal_done
;
142
bool
partial_inlining_done
;
143
bool
remove_returns_done
;
144
145
goto_modelt
goto_model
;
146
147
ui_message_handlert::uit
get_ui
()
148
{
149
return
ui_message_handler
.
get_ui
();
150
}
151
};
152
153
#endif // CPROVER_GOTO_INSTRUMENT_GOTO_INSTRUMENT_PARSE_OPTIONS_H
goto_instrument_parse_optionst::do_indirect_call_and_rtti_removal
void do_indirect_call_and_rtti_removal(bool force=false)
Definition:
goto_instrument_parse_options.cpp:851
goto_instrument_parse_optionst::goto_model
goto_modelt goto_model
Definition:
goto_instrument_parse_options.h:145
ui_message_handlert
Definition:
ui_message.h:19
ui_message_handlert::uit
uit
Definition:
ui_message.h:22
goto_instrument_parse_optionst::get_goto_program
void get_goto_program()
Definition:
goto_instrument_parse_options.cpp:915
ui_message_handlert::get_ui
uit get_ui() const
Definition:
ui_message.h:30
parse_options.h
goto_instrument_parse_optionst::remove_returns_done
bool remove_returns_done
Definition:
goto_instrument_parse_options.h:143
ui_message.h
show_goto_functions.h
Show the goto functions.
goto_functions.h
Goto Programs with Functions.
remove_calls_no_body.h
Remove calls to functions without a body.
goto_instrument_parse_optionst::ui_message_handler
ui_message_handlert ui_message_handler
Definition:
goto_instrument_parse_options.h:130
goto_instrument_parse_optionst::doit
virtual int doit()
invoke main modules
Definition:
goto_instrument_parse_options.cpp:105
goto_modelt
Definition:
goto_model.h:24
goto_instrument_parse_optionst::function_pointer_removal_done
bool function_pointer_removal_done
Definition:
goto_instrument_parse_options.h:141
class_hierarchy.h
Class Hierarchy.
validation_interface.h
goto_instrument_parse_optionst::do_remove_returns
void do_remove_returns()
Definition:
goto_instrument_parse_options.cpp:904
goto_instrument_parse_optionst::partial_inlining_done
bool partial_inlining_done
Definition:
goto_instrument_parse_options.h:142
generate_function_bodies.h
goto_instrument_parse_optionst::goto_instrument_parse_optionst
goto_instrument_parse_optionst(int argc, const char **argv)
Definition:
goto_instrument_parse_options.h:119
goto_check.h
Program Transformation.
messaget
Class that provides messages with a built-in verbosity 'level'.
Definition:
message.h:144
goto_instrument_parse_optionst::do_partial_inlining
void do_partial_inlining()
Definition:
goto_instrument_parse_options.cpp:890
count_eloc.h
Count effective lines of code.
goto_instrument_parse_optionst::instrument_goto_program
void instrument_goto_program()
Definition:
goto_instrument_parse_options.cpp:931
replace_calls.h
Replace calls to given functions with calls to other given functions.
goto_instrument_parse_optionst::help
virtual void help()
display command line help
Definition:
goto_instrument_parse_options.cpp:1548
goto_instrument_parse_optionst
Definition:
goto_instrument_parse_options.h:111
timestamper.h
Emit timestamps.
aggressive_slicer.h
Aggressive slicer Consider the control flow graph of the goto program and a criterion description of ...
goto_instrument_parse_optionst::get_ui
ui_message_handlert::uit get_ui()
Definition:
goto_instrument_parse_options.h:147
parse_options_baset::cmdline
cmdlinet cmdline
Definition:
parse_options.h:23
show_properties.h
Show the properties.
GOTO_INSTRUMENT_OPTIONS
#define GOTO_INSTRUMENT_OPTIONS
Definition:
goto_instrument_parse_options.h:36
goto_instrument_parse_optionst::do_remove_const_function_pointers_only
void do_remove_const_function_pointers_only()
Remove function pointers that can be resolved by analysing const variables (i.e.
Definition:
goto_instrument_parse_options.cpp:873
parse_options_baset
Definition:
parse_options.h:17
goto_instrument_parse_optionst::register_languages
virtual void register_languages()
Definition:
goto_instrument_languages.cpp:19
remove_const_function_pointers.h
Goto Programs.
goto-instrument
goto_instrument_parse_options.h
Generated by
1.8.15