cprover
function.h
Go to the documentation of this file.
1 /*******************************************************************\
2 
3 Module: Function Entering and Exiting
4 
5 Author: Daniel Kroening, kroening@kroening.com
6 
7 \*******************************************************************/
8 
11 
12 #ifndef CPROVER_GOTO_INSTRUMENT_FUNCTION_H
13 #define CPROVER_GOTO_INSTRUMENT_FUNCTION_H
14 
16 
18  symbol_tablet &symbol_table,
19  const irep_idt &id,
20  const irep_idt &argument);
21 
22 void function_enter(
23  symbol_tablet &symbol_table,
24  goto_functionst &goto_functions,
25  const irep_idt &id);
26 
27 void function_exit(
28  symbol_tablet &symbol_table,
29  goto_functionst &goto_functions,
30  const irep_idt &id);
31 
32 #endif // CPROVER_GOTO_INSTRUMENT_FUNCTION_H
Goto Programs with Functions.
const irep_idt & id() const
Definition: irep.h:189
void function_exit(symbol_tablet &symbol_table, goto_functionst &goto_functions, const irep_idt &id)
Definition: function.cpp:108
The symbol table.
Definition: symbol_table.h:52
A function call.
Definition: std_code.h:657
void function_enter(symbol_tablet &symbol_table, goto_functionst &goto_functions, const irep_idt &id)
Definition: function.cpp:81
class code_function_callt function_to_call(symbol_tablet &symbol_table, const irep_idt &id, const irep_idt &argument)
Definition: function.cpp:22