CBMC
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
config.h
Go to the documentation of this file.
1/*******************************************************************\
2
3Module:
4
5Author: Daniel Kroening, kroening@kroening.com
6
7\*******************************************************************/
8
9#ifndef CPROVER_UTIL_CONFIG_H
10#define CPROVER_UTIL_CONFIG_H
11
12#include "ieee_float.h"
13#include "irep.h"
14
15#include <list>
16#include <optional>
17
18class cmdlinet;
20
21// Configt is the one place beyond *_parse_options where options are ... parsed.
22// Options that are handled by configt are documented here.
23
24#define OPT_CONFIG_C_CPP \
25 "D:I:(include)(function)" \
26 "(c89)(c99)(c11)(c17)(c23)(cpp98)(cpp03)(cpp11)" \
27 "(unsigned-char)" \
28 "(round-to-even)(round-to-nearest)" \
29 "(round-to-plus-inf)(round-to-minus-inf)(round-to-zero)" \
30 "(no-library)"
31
32#define HELP_CONFIG_C_CPP \
33 " {y-I} {upath} \t set include path (C/C++)\n" \
34 " {y--include} {ufile} \t set include file (C/C++)\n" \
35 " {y-D} {umacro} \t define preprocessor macro (C/C++)\n" \
36 " {y--c89}, {y--c99}, {y--c11},\n {y--c17}, {y--c23} \t " \
37 "set C language standard (default: " + \
38 std::string( \
39 configt::ansi_ct::default_c_standard() == \
40 configt::ansi_ct::c_standardt::C89 \
41 ? "c89" \
42 : configt::ansi_ct::default_c_standard() == \
43 configt::ansi_ct::c_standardt::C99 \
44 ? "c99" \
45 : configt::ansi_ct::default_c_standard() == \
46 configt::ansi_ct::c_standardt::C11 \
47 ? "c11" \
48 : configt::ansi_ct::default_c_standard() == \
49 configt::ansi_ct::c_standardt::C17 \
50 ? "c17" \
51 : configt::ansi_ct::default_c_standard() == \
52 configt::ansi_ct::c_standardt::C23 \
53 ? "c23" \
54 : "") + \
55 ")\n" \
56 " {y--cpp98}, {y--cpp03}, {y--cpp11} \t " \
57 "set C++ language standard (default: " + \
58 std::string( \
59 configt::cppt::default_cpp_standard() == \
60 configt::cppt::cpp_standardt::CPP98 \
61 ? "cpp98" \
62 : configt::cppt::default_cpp_standard() == \
63 configt::cppt::cpp_standardt::CPP03 \
64 ? "cpp03" \
65 : configt::cppt::default_cpp_standard() == \
66 configt::cppt::cpp_standardt::CPP11 \
67 ? "cpp11" \
68 : "") + \
69 ")\n" \
70 " {y--unsigned-char} \t make \"char\" unsigned by default\n" \
71 " {y--round-to-nearest}, {y--round-to-even} \t " \
72 "rounding towards nearest even (default)\n" \
73 " {y--round-to-plus-inf} \t rounding towards plus infinity\n" \
74 " {y--round-to-minus-inf} \t rounding towards minus infinity\n" \
75 " {y--round-to-zero} \t rounding towards zero\n" \
76 " {y--no-library} \t disable built-in abstract C library\n"
77
78#define OPT_CONFIG_LIBRARY \
79 "(malloc-fail-assert)(malloc-fail-null)(malloc-may-fail)" \
80 "(no-malloc-may-fail)" \
81 "(string-abstraction)" \
82 "(dfcc-debug-lib)" \
83 "(dfcc-simple-invalid-pointer-model)"
84
85#define HELP_CONFIG_LIBRARY \
86 " {y--malloc-may-fail} \t allow malloc calls to return a null pointer\n" \
87 " {y--no-malloc-may-fail} \t disable potential malloc failure\n" \
88 " {y--malloc-fail-assert} \t " \
89 "set malloc failure mode to assert-then-assume\n" \
90 " {y--malloc-fail-null} \t set malloc failure mode to return null\n" \
91 " {y--string-abstraction} \t track C string lengths and zero-termination\n" \
92 " {y--dfcc-debug-lib} \t enable debug assertions in the cprover contracts " \
93 "library\n" \
94 " {y--dfcc-simple-invalid-pointer-model} \t use simplified invalid pointer " \
95 "model in the cprover contracts library (faster, unsound)\n"
96
97#define OPT_CONFIG_JAVA "(classpath)(cp)(main-class)"
98
99#define OPT_CONFIG_PLATFORM \
100 "(arch):(os):" \
101 "(16)(32)(64)(LP64)(ILP64)(LLP64)(ILP32)(LP32)" \
102 "(little-endian)(big-endian)" \
103 "(i386-linux)" \
104 "(i386-win32)(win32)(winx64)" \
105 "(i386-macos)(ppc-macos)" \
106 "(gcc)"
107
108#define HELP_CONFIG_PLATFORM \
109 " {y--arch} {uarch_name} \t " \
110 "set architecture (default: " + \
111 id2string(configt::this_architecture()) + \
112 ") to one of: {yalpha}, {yarm}, {yarm64}, {yarmel}, {yarmhf}, {yhppa}, " \
113 "{yi386}, {yia64}, {ymips}, {ymips64}, {ymips64el}, {ymipsel}, " \
114 "{ymipsn32}, " \
115 "{ymipsn32el}, {ypowerpc}, {yppc64}, {yppc64le}, {yriscv64}, {ys390}, " \
116 "{ys390x}, {ysh4}, {ysparc}, {ysparc64}, {yv850}, {yx32}, {yx86_64}, or " \
117 "{ynone}\n" \
118 " {y--os} {uos_name} \t " \
119 "set operating system (default: " + \
120 id2string(configt::this_operating_system()) + \
121 ") to one of: {yfreebsd}, {ylinux}, {ymacos}, {ynetbsd}, {yopenbsd}, " \
122 "{ysolaris}, {yhurd}, or {ywindows}\n" \
123 " {y--i386-linux}, {y--i386-win32}, {y--i386-macos}, {y--ppc-macos}, " \
124 "{y--win32}, {y--winx64} \t " \
125 "set architecture and operating system\n" \
126 " {y--LP64}, {y--ILP64}, {y--LLP64}, {y--ILP32}, {y--LP32} \t " \
127 "set width of int, long and pointers, but don't override default " \
128 "architecture and operating system\n" \
129 " {y--16}, {y--32}, {y--64} \t " \
130 "equivalent to {y--LP32}, {y--ILP32}, {y--LP64} (on Windows: " \
131 "{y--LLP64})\n" \
132 " {y--little-endian} \t allow little-endian word-byte conversions\n" \
133 " {y--big-endian} \t allow big-endian word-byte conversions\n" \
134 " {y--gcc} \t use GCC as preprocessor\n"
135
136#define OPT_CONFIG_BACKEND "(object-bits):"
137
138#define HELP_CONFIG_BACKEND \
139 " {y--object-bits} {un} \t number of bits used for object addresses\n"
140
144{
145public:
146 struct ansi_ct
147 {
148 // for ANSI-C
149 std::size_t int_width;
150 std::size_t long_int_width;
151 std::size_t bool_width;
152 std::size_t char_width;
153 std::size_t short_int_width;
155 std::size_t pointer_width;
156 std::size_t single_width;
157 std::size_t double_width;
158 std::size_t long_double_width;
159 std::size_t wchar_t_width;
160
161 // various language options
164 bool ts_18661_3_Floatn_types; // ISO/IEC TS 18661-3:2015
165 bool gcc__float128_type; // __float128, a gcc extension since 4.3/4.5
166 bool __float128_is_keyword; // __float128 as a keyword (and not typedef)
167 bool float16_type; // _Float16 (Clang >= 15, GCC >= 12)
168 bool bf16_type; // __bf16 (Clang >= 15, GCC >= 13)
169 bool fp16_type; // __fp16 (GCC >= 4.5 on ARM, Clang >= 6)
171 enum class c_standardt
172 {
173 C89,
174 C99,
175 C11,
176 C17,
177 C23
180
181 void set_c89()
182 {
184 for_has_scope = false;
185 }
186 void set_c99()
187 {
189 for_has_scope = true;
190 }
191 void set_c11()
192 {
194 for_has_scope = true;
195 }
196 void set_c17()
197 {
199 for_has_scope = true;
200 }
201 void set_c23()
202 {
204 for_has_scope = true;
205 }
206
208
209 void set_16();
210 void set_32();
211 void set_64();
212
213 // http://www.unix.org/version2/whatsnew/lp64_wp.html
214 void set_LP64(); // int=32, long=64, pointer=64
215 void set_ILP64(); // int=64, long=64, pointer=64
216 void set_LLP64(); // int=32, long=32, pointer=64
217 void set_ILP32(); // int=32, long=32, pointer=32
218 void set_LP32(); // int=16, long=32, pointer=32
219
220 // minimum alignment (in structs) measured in bytes
221 std::size_t alignment;
222
223 // maximum minimum size of the operands for a machine
224 // instruction (in bytes)
226
227 enum class endiannesst
228 {
232 };
234
235 enum class ost
236 {
237 NO_OS,
238 OS_LINUX,
239 OS_MACOS,
240 OS_WIN
241 };
243
244 static std::string os_to_string(ost);
245 static ost string_to_os(const std::string &);
246
248
249 // architecture-specific integer value of null pointer constant
251
252 void set_arch_spec_i386();
256 void set_arch_spec_alpha();
259 void set_arch_spec_s390();
260 void set_arch_spec_s390x();
262 void set_arch_spec_ia64();
263 void set_arch_spec_x32();
264 void set_arch_spec_v850();
265 void set_arch_spec_hppa();
266 void set_arch_spec_sh4();
269
270 enum class flavourt
271 {
272 NONE,
273 ANSI,
274 GCC,
275 ARM,
276 CLANG,
279 };
280 flavourt mode; // the syntax of source files
281
282 enum class preprocessort
283 {
284 NONE,
285 GCC,
286 CLANG,
289 ARM
290 };
291 preprocessort preprocessor; // the preprocessor to use
292
293 std::list<std::string> defines;
294 std::list<std::string> undefines;
295 std::list<std::string> preprocessor_options;
296 std::list<std::string> include_paths;
297 std::list<std::string> include_files;
298
299 enum class libt
300 {
301 LIB_NONE,
303 };
305
307 bool malloc_may_fail = true;
308
310 bool dfcc_debug_lib = false;
311
314
321
323
324 static const std::size_t default_object_bits = 8;
325
329 std::optional<mp_integer> max_argc;
331
332 struct cppt
333 {
334 enum class cpp_standardt
335 {
336 CPP98,
337 CPP03,
338 CPP11,
339 CPP14,
340 CPP17
343
345 {
347 }
349 {
351 }
353 {
355 }
357 {
359 }
361 {
363 }
364
365 static const std::size_t default_object_bits = 8;
367
368 struct verilogt
369 {
370 std::list<std::string> include_paths;
372
373 struct javat
374 {
375 typedef std::list<std::string> classpatht;
378
379 static const std::size_t default_object_bits = 16;
381
383 {
384 // number of bits to encode heap object addresses
385 std::size_t object_bits = 8;
388
389 // this is the function to start executing
390 std::optional<std::string> main;
391
392 void set_arch(const irep_idt &);
393
395
396 bool set(const cmdlinet &cmdline);
397
399 std::string object_bits_info();
401
404
405private:
406 void set_classpath(const std::string &cp);
407};
408
409extern configt config;
410
411#endif // CPROVER_UTIL_CONFIG_H
ait supplies three of the four components needed: an abstract interpreter (in this case handling func...
Definition ai.h:562
Globally accessible architectural configuration.
Definition config.h:144
void set_object_bits_from_symbol_table(const symbol_table_baset &)
Sets the number of bits used for object addresses.
Definition config.cpp:1422
void set_arch(const irep_idt &)
Definition config.cpp:763
struct configt::bv_encodingt bv_encoding
bool set(const cmdlinet &cmdline)
Definition config.cpp:863
struct configt::verilogt verilog
std::string object_bits_info()
Definition config.cpp:1447
void set_classpath(const std::string &cp)
Definition config.cpp:1546
mp_integer max_malloc_size() const
The maximum allocation size is determined by the number of bits that are left in the pointer of width...
Definition config.cpp:1603
void set_from_symbol_table(const symbol_table_baset &)
Definition config.cpp:1363
static irep_idt this_architecture()
Definition config.cpp:1458
std::optional< std::string > main
Definition config.h:390
struct configt::javat java
struct configt::cppt cpp
static irep_idt this_operating_system()
Definition config.cpp:1562
struct configt::ansi_ct ansi_c
dstringt has one field, an unsigned integer no which is an index into a static table of strings.
Definition dstring.h:38
The symbol table base class interface.
configt config
Definition config.cpp:25
std::size_t long_double_width
Definition config.h:158
std::list< std::string > include_paths
Definition config.h:296
bool for_has_scope
Definition config.h:163
void set_arch_spec_x32()
Definition config.cpp:560
enum configt::ansi_ct::c_standardt c_standard
void set_arch_spec_riscv64()
Definition config.cpp:406
void set_c23()
Definition config.h:201
endiannesst endianness
Definition config.h:233
bool float16_type
Definition config.h:167
void set_arch_spec_sh4()
Definition config.cpp:648
void set_arch_spec_loongarch64()
Definition config.cpp:678
void set_ILP32()
int=32, long=32, pointer=32
Definition config.cpp:111
bool ts_18661_3_Floatn_types
Definition config.h:164
void set_arch_spec_v850()
Sets up the widths of variables for the Renesas V850.
Definition config.cpp:596
bool wchar_t_is_unsigned
Definition config.h:162
void set_arch_spec_hppa()
Definition config.cpp:619
static std::string os_to_string(ost)
Definition config.cpp:1284
std::size_t pointer_width
Definition config.h:155
bool gcc__float128_type
Definition config.h:165
std::optional< mp_integer > max_argc
Maximum value of argc, which is operating-systems dependent: Windows limits the number of characters ...
Definition config.h:329
void set_c89()
Definition config.h:181
std::list< std::string > include_files
Definition config.h:297
void set_ILP64()
int=64, long=64, pointer=64
Definition config.cpp:71
irep_idt arch
Definition config.h:247
std::list< std::string > undefines
Definition config.h:294
ieee_floatt::rounding_modet rounding_mode
Definition config.h:207
bool __float128_is_keyword
Definition config.h:166
std::list< std::string > preprocessor_options
Definition config.h:295
void set_arch_spec_sparc(const irep_idt &subarch)
Definition config.cpp:489
static ost string_to_os(const std::string &)
Definition config.cpp:1299
std::list< std::string > defines
Definition config.h:293
void set_c99()
Definition config.h:186
bool single_precision_constant
Definition config.h:170
void set_LLP64()
int=32, long=32, pointer=64
Definition config.cpp:91
void set_arch_spec_arm(const irep_idt &subarch)
Definition config.cpp:281
std::size_t wchar_t_width
Definition config.h:159
bool simple_invalid_pointer_model
use simplified invalid pointer model in cprover_contracts library
Definition config.h:313
preprocessort preprocessor
Definition config.h:291
@ malloc_failure_mode_return_null
Definition config.h:318
@ malloc_failure_mode_none
Definition config.h:317
@ malloc_failure_mode_assert_then_assume
Definition config.h:319
bool dfcc_debug_lib
enable debug code in cprover_contracts library
Definition config.h:310
std::size_t double_width
Definition config.h:157
bool malloc_may_fail
Definition config.h:307
bool char_is_unsigned
Definition config.h:162
static c_standardt default_c_standard()
Definition config.cpp:736
void set_arch_spec_alpha()
Definition config.cpp:327
void set_c17()
Definition config.h:196
std::size_t alignment
Definition config.h:221
void set_arch_spec_power(const irep_idt &subarch)
Definition config.cpp:220
std::size_t bool_width
Definition config.h:151
bool string_abstraction
Definition config.h:306
void set_arch_spec_s390()
Definition config.cpp:432
void set_LP64()
int=32, long=64, pointer=64
Definition config.cpp:47
void set_arch_spec_x86_64()
Definition config.cpp:182
void set_LP32()
int=16, long=32, pointer=32
Definition config.cpp:131
std::size_t memory_operand_size
Definition config.h:225
std::size_t long_long_int_width
Definition config.h:154
void set_arch_spec_s390x()
Definition config.cpp:461
bool NULL_is_zero
Definition config.h:250
std::size_t long_int_width
Definition config.h:150
void set_arch_spec_mips(const irep_idt &subarch)
Definition config.cpp:356
std::size_t single_width
Definition config.h:156
void set_arch_spec_i386()
Definition config.cpp:150
std::size_t short_int_width
Definition config.h:153
std::size_t char_width
Definition config.h:152
void set_c11()
Definition config.h:191
static const std::size_t default_object_bits
Definition config.h:324
flavourt mode
Definition config.h:280
std::size_t int_width
Definition config.h:149
malloc_failure_modet malloc_failure_mode
Definition config.h:322
void set_arch_spec_ia64()
Definition config.cpp:529
void set_arch_spec_emscripten()
Definition config.cpp:707
bool is_object_bits_default
Definition config.h:386
std::size_t object_bits
Definition config.h:385
void set_cpp14()
Definition config.h:356
enum configt::cppt::cpp_standardt cpp_standard
void set_cpp11()
Definition config.h:352
static const std::size_t default_object_bits
Definition config.h:365
void set_cpp17()
Definition config.h:360
void set_cpp03()
Definition config.h:348
static cpp_standardt default_cpp_standard()
Definition config.cpp:751
void set_cpp98()
Definition config.h:344
classpatht classpath
Definition config.h:376
std::list< std::string > classpatht
Definition config.h:375
irep_idt main_class
Definition config.h:377
static const std::size_t default_object_bits
Definition config.h:379
std::list< std::string > include_paths
Definition config.h:370