cprover
race_check.h
Go to the documentation of this file.
1 /*******************************************************************\
2 
3 Module: Race Detection for Threaded Goto Programs
4 
5 Author: Daniel Kroening
6 
7 Date: February 2006
8 
9 \*******************************************************************/
10 
13 
14 #ifndef CPROVER_GOTO_INSTRUMENT_RACE_CHECK_H
15 #define CPROVER_GOTO_INSTRUMENT_RACE_CHECK_H
16 
19 
20 class goto_programt;
21 
22 void race_check(
23  value_setst &value_sets,
24  class symbol_tablet &symbol_table,
25 #ifdef LOCAL_MAY
26  const goto_functionst::goto_functiont &goto_function,
27 #endif
28  goto_programt &goto_program
29 );
30 
31 void race_check(
32  value_setst &value_sets,
33  class symbol_tablet &symbol_table,
34  goto_functionst &goto_functions);
35 
36 #endif // CPROVER_GOTO_INSTRUMENT_RACE_CHECK_H
Goto Programs with Functions.
Value Set Propagation.
The symbol table.
Definition: symbol_table.h:52
goto_function_templatet< goto_programt > goto_functiont
void race_check(value_setst &value_sets, class symbol_tablet &symbol_table, goto_programt &goto_program)
Definition: race_check.cpp:274
A specialization of goto_program_templatet over goto programs in which instructions have codet type...
Definition: goto_program.h:24