Skip to content

Commit c49b489

Browse files
committed
jsil_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 12d94bb commit c49b489

File tree

5 files changed

+38
-32
lines changed

5 files changed

+38
-32
lines changed

src/jsil/jsil_language.cpp

+2-5
Original file line numberDiff line numberDiff line change
@@ -62,12 +62,11 @@ bool jsil_languaget::parse(
6262
parse_path=path;
6363

6464
// parsing
65+
jsil_parsert jsil_parser{message_handler};
6566
jsil_parser.clear();
6667
jsil_parser.set_file(path);
6768
jsil_parser.in=&instream;
68-
jsil_parser.log.set_message_handler(message_handler);
6969

70-
jsil_scanner_init();
7170
bool result=jsil_parser.parse();
7271

7372
// save result
@@ -137,12 +136,10 @@ bool jsil_languaget::to_expr(
137136
std::istringstream instream(code);
138137

139138
// parsing
140-
139+
jsil_parsert jsil_parser{message_handler};
141140
jsil_parser.clear();
142141
jsil_parser.set_file(irep_idt());
143142
jsil_parser.in=&instream;
144-
jsil_parser.log.set_message_handler(message_handler);
145-
jsil_scanner_init();
146143

147144
bool result=jsil_parser.parse();
148145

src/jsil/jsil_parser.cpp

-10
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,3 @@ Author: Michael Tautschnig, [email protected]
1010
/// Jsil Language
1111

1212
#include "jsil_parser.h"
13-
14-
jsil_parsert jsil_parser;
15-
16-
extern char *yyjsiltext;
17-
18-
int yyjsilerror(const std::string &error)
19-
{
20-
jsil_parser.parse_error(error, yyjsiltext);
21-
return 0;
22-
}

src/jsil/jsil_parser.h

+10-7
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,24 @@ Author: Michael Tautschnig, [email protected]
1616

1717
#include "jsil_parse_tree.h"
1818

19-
int yyjsilparse();
19+
class jsil_parsert;
20+
int yyjsilparse(jsil_parsert &);
21+
void jsil_scanner_init(jsil_parsert &);
2022

2123
class jsil_parsert:public parsert
2224
{
2325
public:
26+
explicit jsil_parsert(message_handlert &message_handler)
27+
: parsert(message_handler)
28+
{
29+
}
30+
2431
jsil_parse_treet parse_tree;
2532

2633
virtual bool parse() override
2734
{
28-
return yyjsilparse()!=0;
35+
jsil_scanner_init(*this);
36+
return yyjsilparse(*this) != 0;
2937
}
3038

3139
virtual void clear() override
@@ -41,9 +49,4 @@ class jsil_parsert:public parsert
4149
std::string string_literal;
4250
};
4351

44-
extern jsil_parsert jsil_parser;
45-
46-
int yyjsilerror(const std::string &error);
47-
void jsil_scanner_init();
48-
4952
#endif // CPROVER_JSIL_JSIL_PARSER_H

src/jsil/parser.y

+15-1
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,27 @@
11
%{
22

33
// #define YYDEBUG 1
4-
#define PARSER jsil_parser
4+
#define PARSER (*jsil_parser)
55

66
#include "jsil_parser.h"
77

88
int yyjsillex();
99
extern char *yyjsiltext;
1010

11+
static jsil_parsert *jsil_parser;
12+
int yyjsilparse(void);
13+
int yyjsilparse(jsil_parsert &_jsil_parser)
14+
{
15+
jsil_parser = &_jsil_parser;
16+
return yyjsilparse();
17+
}
18+
19+
int yyjsilerror(const std::string &error)
20+
{
21+
jsil_parser->parse_error(error, yyjsiltext);
22+
return 0;
23+
}
24+
1125
#define YYSTYPE unsigned
1226
#define YYSTYPE_IS_TRIVIAL 1
1327

src/jsil/scanner.l

+11-9
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,23 @@
1717
#include <ansi-c/literals/convert_float_literal.h>
1818
#include <ansi-c/literals/convert_string_literal.h>
1919

20-
#define PARSER jsil_parser
20+
#define PARSER (*jsil_parser)
2121
#define YYSTYPE unsigned
2222

2323
#include "jsil_parser.h"
2424
#include "jsil_y.tab.h"
2525
// extern int yyjsildebug;
2626

27+
static jsil_parsert *jsil_parser;
28+
void jsil_scanner_init(jsil_parsert &_jsil_parser)
29+
{
30+
jsil_parser = &_jsil_parser;
31+
YY_FLUSH_BUFFER;
32+
BEGIN(0);
33+
}
34+
35+
int yyjsilerror(const std::string &error);
36+
2737
#define loc() \
2838
{ newstack(yyjsillval); PARSER.set_source_location(parser_stack(yyjsillval)); }
2939

@@ -71,14 +81,6 @@ string_lit ["]{s_char}*["]
7181
%x STRING_LITERAL_COMMENT
7282
%x STATEMENTS
7383

74-
%{
75-
void jsil_scanner_init()
76-
{
77-
// yyjsildebug=1;
78-
YY_FLUSH_BUFFER;
79-
BEGIN(0);
80-
}
81-
%}
8284
/* %option debug */
8385

8486
%%

0 commit comments

Comments
 (0)