@@ -30,8 +30,13 @@ Date: December 2014
30
30
class remove_asmt
31
31
{
32
32
public:
33
- remove_asmt (symbol_tablet &_symbol_table, goto_functionst &_goto_functions)
34
- : symbol_table(_symbol_table), goto_functions(_goto_functions)
33
+ remove_asmt (
34
+ symbol_tablet &_symbol_table,
35
+ goto_functionst &_goto_functions,
36
+ message_handlert &message_handler)
37
+ : symbol_table(_symbol_table),
38
+ goto_functions (_goto_functions),
39
+ message_handler(message_handler)
35
40
{
36
41
}
37
42
@@ -44,6 +49,7 @@ class remove_asmt
44
49
protected:
45
50
symbol_tablet &symbol_table;
46
51
goto_functionst &goto_functions;
52
+ message_handlert &message_handler;
47
53
48
54
void process_function (const irep_idt &, goto_functionst::goto_functiont &);
49
55
@@ -228,7 +234,7 @@ void remove_asmt::process_instruction_gcc(
228
234
const irep_idt &i_str = to_string_constant (code.asm_text ()).value ();
229
235
230
236
std::istringstream str (id2string (i_str));
231
- assembler_parser. clear () ;
237
+ assembler_parsert assembler_parser{message_handler} ;
232
238
assembler_parser.in = &str;
233
239
assembler_parser.parse ();
234
240
@@ -399,7 +405,7 @@ void remove_asmt::process_instruction_msc(
399
405
const irep_idt &i_str = to_string_constant (code.op0 ()).value ();
400
406
401
407
std::istringstream str (id2string (i_str));
402
- assembler_parser. clear () ;
408
+ assembler_parsert assembler_parser{message_handler} ;
403
409
assembler_parser.in = &str;
404
410
assembler_parser.parse ();
405
411
@@ -544,13 +550,17 @@ void remove_asmt::process_function(
544
550
remove_skip (goto_function.body );
545
551
}
546
552
547
- // / \copybrief remove_asm(goto_modelt &)
553
+ // / \copybrief remove_asm(goto_modelt &, message_handlert & )
548
554
// /
549
555
// / \param goto_functions: The goto functions
550
556
// / \param symbol_table: The symbol table
551
- void remove_asm (goto_functionst &goto_functions, symbol_tablet &symbol_table)
557
+ // / \param message_handler: Message handler
558
+ void remove_asm (
559
+ goto_functionst &goto_functions,
560
+ symbol_tablet &symbol_table,
561
+ message_handlert &message_handler)
552
562
{
553
- remove_asmt rem (symbol_table, goto_functions);
563
+ remove_asmt rem (symbol_table, goto_functions, message_handler );
554
564
rem ();
555
565
}
556
566
@@ -561,9 +571,11 @@ void remove_asm(goto_functionst &goto_functions, symbol_tablet &symbol_table)
561
571
// / Unrecognised assembly instructions are ignored.
562
572
// /
563
573
// / \param goto_model: The goto model
564
- void remove_asm (goto_modelt &goto_model)
574
+ // / \param message_handler: Message handler
575
+ void remove_asm (goto_modelt &goto_model, message_handlert &message_handler)
565
576
{
566
- remove_asm (goto_model.goto_functions , goto_model.symbol_table );
577
+ remove_asm (
578
+ goto_model.goto_functions , goto_model.symbol_table , message_handler);
567
579
}
568
580
569
581
bool has_asm (const goto_functionst &goto_functions)
0 commit comments