CBMC
Loading...
Searching...
No Matches
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)(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} \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 : "") + \
49 ")\n" \
50 " {y--cpp98}, {y--cpp03}, {y--cpp11} \t " \
51 "set C++ language standard (default: " + \
52 std::string( \
53 configt::cppt::default_cpp_standard() == \
54 configt::cppt::cpp_standardt::CPP98 \
55 ? "cpp98" \
56 : configt::cppt::default_cpp_standard() == \
57 configt::cppt::cpp_standardt::CPP03 \
58 ? "cpp03" \
59 : configt::cppt::default_cpp_standard() == \
60 configt::cppt::cpp_standardt::CPP11 \
61 ? "cpp11" \
62 : "") + \
63 ")\n" \
64 " {y--unsigned-char} \t make \"char\" unsigned by default\n" \
65 " {y--round-to-nearest}, {y--round-to-even} \t " \
66 "rounding towards nearest even (default)\n" \
67 " {y--round-to-plus-inf} \t rounding towards plus infinity\n" \
68 " {y--round-to-minus-inf} \t rounding towards minus infinity\n" \
69 " {y--round-to-zero} \t rounding towards zero\n" \
70 " {y--no-library} \t disable built-in abstract C library\n"
71
72#define OPT_CONFIG_LIBRARY \
73 "(malloc-fail-assert)(malloc-fail-null)(malloc-may-fail)" \
74 "(no-malloc-may-fail)" \
75 "(string-abstraction)" \
76 "(dfcc-debug-lib)" \
77 "(dfcc-simple-invalid-pointer-model)"
78
79#define HELP_CONFIG_LIBRARY \
80 " {y--malloc-may-fail} \t allow malloc calls to return a null pointer\n" \
81 " {y--no-malloc-may-fail} \t disable potential malloc failure\n" \
82 " {y--malloc-fail-assert} \t " \
83 "set malloc failure mode to assert-then-assume\n" \
84 " {y--malloc-fail-null} \t set malloc failure mode to return null\n" \
85 " {y--string-abstraction} \t track C string lengths and zero-termination\n" \
86 " {y--dfcc-debug-lib} \t enable debug assertions in the cprover contracts " \
87 "library\n" \
88 " {y--dfcc-simple-invalid-pointer-model} \t use simplified invalid pointer " \
89 "model in the cprover contracts library (faster, unsound)\n"
90
91#define OPT_CONFIG_JAVA "(classpath)(cp)(main-class)"
92
93#define OPT_CONFIG_PLATFORM \
94 "(arch):(os):" \
95 "(16)(32)(64)(LP64)(ILP64)(LLP64)(ILP32)(LP32)" \
96 "(little-endian)(big-endian)" \
97 "(i386-linux)" \
98 "(i386-win32)(win32)(winx64)" \
99 "(i386-macos)(ppc-macos)" \
100 "(gcc)"
101
102#define HELP_CONFIG_PLATFORM \
103 " {y--arch} {uarch_name} \t " \
104 "set architecture (default: " + \
105 id2string(configt::this_architecture()) + \
106 ") to one of: {yalpha}, {yarm}, {yarm64}, {yarmel}, {yarmhf}, {yhppa}, " \
107 "{yi386}, {yia64}, {ymips}, {ymips64}, {ymips64el}, {ymipsel}, " \
108 "{ymipsn32}, " \
109 "{ymipsn32el}, {ypowerpc}, {yppc64}, {yppc64le}, {yriscv64}, {ys390}, " \
110 "{ys390x}, {ysh4}, {ysparc}, {ysparc64}, {yv850}, {yx32}, {yx86_64}, or " \
111 "{ynone}\n" \
112 " {y--os} {uos_name} \t " \
113 "set operating system (default: " + \
114 id2string(configt::this_operating_system()) + \
115 ") to one of: {yfreebsd}, {ylinux}, {ymacos}, {ynetbsd}, {yopenbsd}, " \
116 "{ysolaris}, {yhurd}, or {ywindows}\n" \
117 " {y--i386-linux}, {y--i386-win32}, {y--i386-macos}, {y--ppc-macos}, " \
118 "{y--win32}, {y--winx64} \t " \
119 "set architecture and operating system\n" \
120 " {y--LP64}, {y--ILP64}, {y--LLP64}, {y--ILP32}, {y--LP32} \t " \
121 "set width of int, long and pointers, but don't override default " \
122 "architecture and operating system\n" \
123 " {y--16}, {y--32}, {y--64} \t " \
124 "equivalent to {y--LP32}, {y--ILP32}, {y--LP64} (on Windows: " \
125 "{y--LLP64})\n" \
126 " {y--little-endian} \t allow little-endian word-byte conversions\n" \
127 " {y--big-endian} \t allow big-endian word-byte conversions\n" \
128 " {y--gcc} \t use GCC as preprocessor\n"
129
130#define OPT_CONFIG_BACKEND "(object-bits):"
131
132#define HELP_CONFIG_BACKEND \
133 " {y--object-bits} {un} \t number of bits used for object addresses\n"
134
138{
139public:
140 struct ansi_ct
141 {
142 // for ANSI-C
143 std::size_t int_width;
144 std::size_t long_int_width;
145 std::size_t bool_width;
146 std::size_t char_width;
147 std::size_t short_int_width;
149 std::size_t pointer_width;
150 std::size_t single_width;
151 std::size_t double_width;
152 std::size_t long_double_width;
153 std::size_t wchar_t_width;
154
155 // various language options
158 bool ts_18661_3_Floatn_types; // ISO/IEC TS 18661-3:2015
159 bool gcc__float128_type; // __float128, a gcc extension since 4.3/4.5
160 bool __float128_is_keyword; // __float128 as a keyword (and not typedef)
161 bool float16_type; // _Float16 (Clang >= 15, GCC >= 12)
162 bool bf16_type; // __bf16 (Clang >= 15, GCC >= 13)
163 bool fp16_type; // __fp16 (GCC >= 4.5 on ARM, Clang >= 6)
165 enum class c_standardt
166 {
167 C89,
168 C99,
169 C11
172
173 void set_c89()
174 {
176 for_has_scope = false;
177 }
178 void set_c99()
179 {
181 for_has_scope = true;
182 }
183 void set_c11()
184 {
186 for_has_scope = true;
187 }
188
190
191 void set_16();
192 void set_32();
193 void set_64();
194
195 // http://www.unix.org/version2/whatsnew/lp64_wp.html
196 void set_LP64(); // int=32, long=64, pointer=64
197 void set_ILP64(); // int=64, long=64, pointer=64
198 void set_LLP64(); // int=32, long=32, pointer=64
199 void set_ILP32(); // int=32, long=32, pointer=32
200 void set_LP32(); // int=16, long=32, pointer=32
201
202 // minimum alignment (in structs) measured in bytes
203 std::size_t alignment;
204
205 // maximum minimum size of the operands for a machine
206 // instruction (in bytes)
208
209 enum class endiannesst
210 {
214 };
216
217 enum class ost
218 {
219 NO_OS,
220 OS_LINUX,
221 OS_MACOS,
222 OS_WIN
223 };
225
226 static std::string os_to_string(ost);
227 static ost string_to_os(const std::string &);
228
230
231 // architecture-specific integer value of null pointer constant
233
234 void set_arch_spec_i386();
238 void set_arch_spec_alpha();
241 void set_arch_spec_s390();
242 void set_arch_spec_s390x();
244 void set_arch_spec_ia64();
245 void set_arch_spec_x32();
246 void set_arch_spec_v850();
247 void set_arch_spec_hppa();
248 void set_arch_spec_sh4();
251
252 enum class flavourt
253 {
254 NONE,
255 ANSI,
256 GCC,
257 ARM,
258 CLANG,
261 };
262 flavourt mode; // the syntax of source files
263
264 enum class preprocessort
265 {
266 NONE,
267 GCC,
268 CLANG,
271 ARM
272 };
273 preprocessort preprocessor; // the preprocessor to use
274
275 std::list<std::string> defines;
276 std::list<std::string> undefines;
277 std::list<std::string> preprocessor_options;
278 std::list<std::string> include_paths;
279 std::list<std::string> include_files;
280
281 enum class libt
282 {
283 LIB_NONE,
285 };
287
289 bool malloc_may_fail = true;
290
292 bool dfcc_debug_lib = false;
293
296
303
305
306 static const std::size_t default_object_bits = 8;
307
311 std::optional<mp_integer> max_argc;
313
314 struct cppt
315 {
316 enum class cpp_standardt
317 {
318 CPP98,
319 CPP03,
320 CPP11,
321 CPP14,
322 CPP17
325
327 {
329 }
331 {
333 }
335 {
337 }
339 {
341 }
343 {
345 }
346
347 static const std::size_t default_object_bits = 8;
349
350 struct verilogt
351 {
352 std::list<std::string> include_paths;
354
355 struct javat
356 {
357 typedef std::list<std::string> classpatht;
360
361 static const std::size_t default_object_bits = 16;
363
365 {
366 // number of bits to encode heap object addresses
367 std::size_t object_bits = 8;
370
371 // this is the function to start executing
372 std::optional<std::string> main;
373
374 void set_arch(const irep_idt &);
375
377
378 bool set(const cmdlinet &cmdline);
379
381 std::string object_bits_info();
383
386
387private:
388 void set_classpath(const std::string &cp);
389};
390
391extern configt config;
392
393#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:138
void set_object_bits_from_symbol_table(const symbol_table_baset &)
Sets the number of bits used for object addresses.
Definition config.cpp:1416
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:1441
void set_classpath(const std::string &cp)
Definition config.cpp:1540
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:1597
void set_from_symbol_table(const symbol_table_baset &)
Definition config.cpp:1357
static irep_idt this_architecture()
Definition config.cpp:1452
std::optional< std::string > main
Definition config.h:372
struct configt::javat java
struct configt::cppt cpp
static irep_idt this_operating_system()
Definition config.cpp:1556
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:152
std::list< std::string > include_paths
Definition config.h:278
bool for_has_scope
Definition config.h:157
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
endiannesst endianness
Definition config.h:215
bool float16_type
Definition config.h:161
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:158
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:156
void set_arch_spec_hppa()
Definition config.cpp:619
static std::string os_to_string(ost)
Definition config.cpp:1278
std::size_t pointer_width
Definition config.h:149
bool gcc__float128_type
Definition config.h:159
std::optional< mp_integer > max_argc
Maximum value of argc, which is operating-systems dependent: Windows limits the number of characters ...
Definition config.h:311
void set_c89()
Definition config.h:173
std::list< std::string > include_files
Definition config.h:279
void set_ILP64()
int=64, long=64, pointer=64
Definition config.cpp:71
irep_idt arch
Definition config.h:229
std::list< std::string > undefines
Definition config.h:276
ieee_floatt::rounding_modet rounding_mode
Definition config.h:189
bool __float128_is_keyword
Definition config.h:160
std::list< std::string > preprocessor_options
Definition config.h:277
void set_arch_spec_sparc(const irep_idt &subarch)
Definition config.cpp:489
static ost string_to_os(const std::string &)
Definition config.cpp:1293
std::list< std::string > defines
Definition config.h:275
void set_c99()
Definition config.h:178
bool single_precision_constant
Definition config.h:164
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:153
bool simple_invalid_pointer_model
use simplified invalid pointer model in cprover_contracts library
Definition config.h:295
preprocessort preprocessor
Definition config.h:273
@ malloc_failure_mode_return_null
Definition config.h:300
@ malloc_failure_mode_none
Definition config.h:299
@ malloc_failure_mode_assert_then_assume
Definition config.h:301
bool dfcc_debug_lib
enable debug code in cprover_contracts library
Definition config.h:292
std::size_t double_width
Definition config.h:151
bool malloc_may_fail
Definition config.h:289
bool char_is_unsigned
Definition config.h:156
static c_standardt default_c_standard()
Definition config.cpp:736
void set_arch_spec_alpha()
Definition config.cpp:327
std::size_t alignment
Definition config.h:203
void set_arch_spec_power(const irep_idt &subarch)
Definition config.cpp:220
std::size_t bool_width
Definition config.h:145
bool string_abstraction
Definition config.h:288
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:207
std::size_t long_long_int_width
Definition config.h:148
void set_arch_spec_s390x()
Definition config.cpp:461
bool NULL_is_zero
Definition config.h:232
std::size_t long_int_width
Definition config.h:144
void set_arch_spec_mips(const irep_idt &subarch)
Definition config.cpp:356
std::size_t single_width
Definition config.h:150
void set_arch_spec_i386()
Definition config.cpp:150
std::size_t short_int_width
Definition config.h:147
std::size_t char_width
Definition config.h:146
void set_c11()
Definition config.h:183
static const std::size_t default_object_bits
Definition config.h:306
flavourt mode
Definition config.h:262
std::size_t int_width
Definition config.h:143
malloc_failure_modet malloc_failure_mode
Definition config.h:304
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:368
std::size_t object_bits
Definition config.h:367
void set_cpp14()
Definition config.h:338
enum configt::cppt::cpp_standardt cpp_standard
void set_cpp11()
Definition config.h:334
static const std::size_t default_object_bits
Definition config.h:347
void set_cpp17()
Definition config.h:342
void set_cpp03()
Definition config.h:330
static cpp_standardt default_cpp_standard()
Definition config.cpp:751
void set_cpp98()
Definition config.h:326
classpatht classpath
Definition config.h:358
std::list< std::string > classpatht
Definition config.h:357
irep_idt main_class
Definition config.h:359
static const std::size_t default_object_bits
Definition config.h:361
std::list< std::string > include_paths
Definition config.h:352