Skip to content

Commit 1ffaf6b

Browse files
committed
statement_list_parsert: construct with message handler
This both avoids an object of static lifetime as well as it fixes the (transitive) use of the deprecated messaget() constructor.
1 parent 9707722 commit 1ffaf6b

5 files changed

+31
-21
lines changed

src/statement-list/parser.y

+15-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
#ifdef STATEMENT_LIST_DEBUG
1313
#define YYDEBUG 1
1414
#endif
15-
#define PARSER statement_list_parser
15+
#define PARSER (*statement_list_parser)
1616

1717
#include "statement_list_parser.h"
1818
#include "converters/convert_string_value.h"
@@ -26,6 +26,20 @@
2626
int yystatement_listlex();
2727
extern char *yystatement_listtext;
2828

29+
static statement_list_parsert *statement_list_parser;
30+
int yystatement_listparse(void);
31+
int yystatement_listparse(statement_list_parsert &_statement_list_parser)
32+
{
33+
statement_list_parser = &_statement_list_parser;
34+
return yystatement_listparse();
35+
}
36+
37+
int yystatement_listerror(const std::string &error)
38+
{
39+
statement_list_parser->parse_error(error, yystatement_listtext);
40+
return 0;
41+
}
42+
2943
#define YYSTYPE unsigned
3044
#define YYSTYPE_IS_TRIVIAL 1
3145

src/statement-list/scanner.l

+4-2
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ static int isatty(int) { return 0; }
4141
#endif
4242

4343
// Value inside of statement_list_parser.h.
44-
#define PARSER statement_list_parser
44+
#define PARSER (*statement_list_parser)
4545

4646
// Sets the type of yystatement_listlval so that it can be used as the stack
4747
// index.
@@ -62,11 +62,13 @@ static int isatty(int) { return 0; }
6262
#ifdef STATEMENT_LIST_DEBUG
6363
extern int yystatement_listdebug;
6464
#endif
65-
void statement_list_scanner_init()
65+
static statement_list_parsert *statement_list_parser;
66+
void statement_list_scanner_init(statement_list_parsert &_statement_list_parser)
6667
{
6768
#ifdef STATEMENT_LIST_DEBUG
6869
yystatement_listdebug=1;
6970
#endif
71+
statement_list_parser = &_statement_list_parser;
7072
YY_FLUSH_BUFFER;
7173
BEGIN(0);
7274
}

src/statement-list/statement_list_language.cpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -60,12 +60,11 @@ bool statement_list_languaget::parse(
6060
const std::string &path,
6161
message_handlert &message_handler)
6262
{
63-
statement_list_parser.clear();
63+
statement_list_parsert statement_list_parser{message_handler};
6464
parse_path = path;
6565
statement_list_parser.set_line_no(0);
6666
statement_list_parser.set_file(path);
6767
statement_list_parser.in = &instream;
68-
statement_list_scanner_init();
6968
bool result = statement_list_parser.parse();
7069

7170
// store result

src/statement-list/statement_list_parser.cpp

+2-11
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,6 @@ Author: Matthias Weiss, [email protected]
2121
#include <iostream>
2222
#include <iterator>
2323

24-
statement_list_parsert statement_list_parser;
25-
26-
extern char *yystatement_listtext;
27-
2824
/// Searches for the name of the TIA module inside of its root
2925
/// expression.
3026
/// \param root: Expression that includes the element's name as a
@@ -337,13 +333,8 @@ void statement_list_parsert::add_function(const exprt &function)
337333

338334
bool statement_list_parsert::parse()
339335
{
340-
return yystatement_listparse() != 0;
341-
}
342-
343-
int yystatement_listerror(const std::string &error)
344-
{
345-
statement_list_parser.parse_error(error, yystatement_listtext);
346-
return 0;
336+
statement_list_scanner_init(*this);
337+
return yystatement_listparse(*this) != 0;
347338
}
348339

349340
void statement_list_parsert::clear()

src/statement-list/statement_list_parser.h

+9-5
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,10 @@ Author: Matthias Weiss, [email protected]
1616

1717
#include "statement_list_parse_tree.h"
1818

19+
class statement_list_parsert;
1920
/// Defined in statement_list_y.tab.cpp. Main function for the parse process
2021
/// generated by bison, performs all necessary steps to fill the parse tree.
21-
int yystatement_listparse();
22+
int yystatement_listparse(statement_list_parsert &);
2223

2324
/// Responsible for starting the parse process and to translate the result into
2425
/// a statement_list_parse_treet. This parser works by using the expression
@@ -34,6 +35,12 @@ int yystatement_listparse();
3435
class statement_list_parsert : public parsert
3536
{
3637
public:
38+
/// Constructor
39+
explicit statement_list_parsert(message_handlert &message_handler)
40+
: parsert(message_handler)
41+
{
42+
}
43+
3744
/// Starts the parsing process and saves the result inside of this instance's
3845
/// parse tree.
3946
/// \return False if successful.
@@ -71,9 +78,6 @@ class statement_list_parsert : public parsert
7178
statement_list_parse_treet parse_tree;
7279
};
7380

74-
/// Instance of the parser, used by other modules.
75-
extern statement_list_parsert statement_list_parser;
76-
7781
/// Forwards any errors that are encountered during the parse process. This
7882
/// function gets called by the generated files of flex and bison.
7983
/// \param error: Error message.
@@ -82,6 +86,6 @@ int yystatement_listerror(const std::string &error);
8286

8387
/// Defined in scanner.l. This function initialises the scanner by setting
8488
/// debug flags (if present) and its initial state.
85-
void statement_list_scanner_init();
89+
void statement_list_scanner_init(statement_list_parsert &);
8690

8791
#endif // CPROVER_STATEMENT_LIST_STATEMENT_LIST_PARSER_H

0 commit comments

Comments
 (0)