Skip to content

Commit db0e1ea

Browse files
committed
Make ansi_c_internal_additions independent of the parser object
Thread through a Boolean flag rather than relying on the parser object far away from the actual parser.
1 parent 1068770 commit db0e1ea

9 files changed

+26
-10
lines changed

src/ansi-c/ansi_c_internal_additions.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,9 @@ max_malloc_size(std::size_t pointer_width, std::size_t object_bits)
158158
return ((mp_integer)1) << (mp_integer)bits_for_positive_offset;
159159
}
160160

161-
void ansi_c_internal_additions(std::string &code)
161+
void ansi_c_internal_additions(
162+
std::string &code,
163+
bool support_ts_18661_3_Floatn_types)
162164
{
163165
// clang-format off
164166
// do the built-in types and variables
@@ -247,9 +249,7 @@ void ansi_c_internal_additions(std::string &code)
247249
config.ansi_c.mode == configt::ansi_ct::flavourt::ARM)
248250
{
249251
code+=gcc_builtin_headers_types;
250-
// check the parser and not config.ansi_c.ts_18661_3_Floatn_types to adjust
251-
// behaviour depending on C or C++ context
252-
if(ansi_c_parser.ts_18661_3_Floatn_types)
252+
if(support_ts_18661_3_Floatn_types)
253253
code += gcc_builtin_headers_types_gcc7plus;
254254

255255
// there are many more, e.g., look at

src/ansi-c/ansi_c_internal_additions.h

+3-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ Author: Daniel Kroening, [email protected]
1212

1313
#include <string>
1414

15-
void ansi_c_internal_additions(std::string &code);
15+
void ansi_c_internal_additions(
16+
std::string &code,
17+
bool support_ts_18661_3_Floatn_types);
1618
void ansi_c_architecture_strings(std::string &code);
1719

1820
extern const char clang_builtin_headers[];

src/ansi-c/ansi_c_language.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ bool ansi_c_languaget::parse(
6868
// parsing
6969

7070
std::string code;
71-
ansi_c_internal_additions(code);
71+
ansi_c_internal_additions(code, config.ansi_c.ts_18661_3_Floatn_types);
7272
std::istringstream codestr(code);
7373

7474
ansi_c_parser.clear();

src/ansi-c/builtin_factory.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ static bool convert(
9797
//! \return 'true' on error
9898
bool builtin_factory(
9999
const irep_idt &identifier,
100+
bool support_ts_18661_3_Floatn_types,
100101
symbol_table_baset &symbol_table,
101102
message_handlert &mh)
102103
{
@@ -106,7 +107,7 @@ bool builtin_factory(
106107
std::ostringstream s;
107108

108109
std::string code;
109-
ansi_c_internal_additions(code);
110+
ansi_c_internal_additions(code, support_ts_18661_3_Floatn_types);
110111
s << code;
111112

112113
// our own extensions

src/ansi-c/builtin_factory.h

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ class symbol_table_baset;
1717
//! \return 'true' in case of error
1818
bool builtin_factory(
1919
const irep_idt &identifier,
20+
bool support_ts_18661_3_Floatn_types,
2021
symbol_table_baset &,
2122
message_handlert &);
2223

src/ansi-c/c_typecheck_base.h

+2
Original file line numberDiff line numberDiff line change
@@ -250,6 +250,8 @@ class c_typecheck_baset:
250250

251251
virtual bool gcc_types_compatible_p(const typet &, const typet &);
252252

253+
virtual bool builtin_factory(const irep_idt &);
254+
253255
// types
254256
virtual void typecheck_type(typet &type);
255257
virtual void typecheck_compound_type(struct_union_typet &type);

src/ansi-c/c_typecheck_expr.cpp

+10-1
Original file line numberDiff line numberDiff line change
@@ -2072,6 +2072,15 @@ void c_typecheck_baset::typecheck_obeys_contract_call(
20722072
expr.type() = bool_typet();
20732073
}
20742074

2075+
bool c_typecheck_baset::builtin_factory(const irep_idt &identifier)
2076+
{
2077+
return ::builtin_factory(
2078+
identifier,
2079+
config.ansi_c.ts_18661_3_Floatn_types,
2080+
symbol_table,
2081+
get_message_handler());
2082+
}
2083+
20752084
void c_typecheck_baset::typecheck_side_effect_function_call(
20762085
side_effect_expr_function_callt &expr)
20772086
{
@@ -2106,7 +2115,7 @@ void c_typecheck_baset::typecheck_side_effect_function_call(
21062115
typecheck_typed_target_call(expr);
21072116
}
21082117
// Is this a builtin?
2109-
else if(!builtin_factory(identifier, symbol_table, get_message_handler()))
2118+
else if(!builtin_factory(identifier))
21102119
{
21112120
// yes, it's a builtin
21122121
}

src/cpp/cpp_typecheck.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,8 @@ void cpp_typecheckt::clean_up()
325325

326326
bool cpp_typecheckt::builtin_factory(const irep_idt &identifier)
327327
{
328-
return ::builtin_factory(identifier, symbol_table, get_message_handler());
328+
return ::builtin_factory(
329+
identifier, false, symbol_table, get_message_handler());
329330
}
330331

331332
bool cpp_typecheckt::contains_cpp_name(const exprt &expr)

src/cpp/cpp_typecheck.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ class cpp_typecheckt:public c_typecheck_baset
343343

344344
void add_method_body(symbolt *_method_symbol);
345345

346-
bool builtin_factory(const irep_idt &);
346+
bool builtin_factory(const irep_idt &) override;
347347

348348
// types
349349

0 commit comments

Comments
 (0)