cprover
mmio.h
Go to the documentation of this file.
1 /*******************************************************************\
2 
3 Module: Memory-mapped I/O Instrumentation for Goto Programs
4 
5 Author: Daniel Kroening
6 
7 Date: September 2011
8 
9 \*******************************************************************/
10 
13 
14 #ifndef CPROVER_GOTO_INSTRUMENT_MMIO_H
15 #define CPROVER_GOTO_INSTRUMENT_MMIO_H
16 
17 class value_setst;
18 class symbol_tablet;
19 class goto_functionst;
20 
21 void mmio(
22  value_setst &value_sets,
23  class symbol_tablet &symbol_table,
24  goto_functionst &goto_functions);
25 
26 #endif // CPROVER_GOTO_INSTRUMENT_MMIO_H
void mmio(value_setst &value_sets, class symbol_tablet &symbol_table, goto_functionst &goto_functions)
Definition: mmio.cpp:165
The symbol table.
Definition: symbol_table.h:52