cprover
rewrite_union.h
Go to the documentation of this file.
1 /*******************************************************************\
2 
3 Module: Symbolic Execution
4 
5 Author: Daniel Kroening, kroening@kroening.com
6 
7 \*******************************************************************/
8 
11 
12 #ifndef CPROVER_GOTO_PROGRAMS_REWRITE_UNION_H
13 #define CPROVER_GOTO_PROGRAMS_REWRITE_UNION_H
14 
16 
17 class exprt;
18 class namespacet;
19 class goto_functionst;
20 class goto_modelt;
21 
22 void rewrite_union(exprt &);
26 
27 #endif // CPROVER_GOTO_PROGRAMS_REWRITE_UNION_H
exprt
Base class for all expressions.
Definition: expr.h:53
goto_modelt
Definition: goto_model.h:26
namespacet
A namespacet is essentially one or two symbol tables bound together, to allow for symbol lookups in t...
Definition: namespace.h:92
goto_functionst::goto_functiont
::goto_functiont goto_functiont
Definition: goto_functions.h:25
goto_functionst
A collection of goto functions.
Definition: goto_functions.h:23
rewrite_union
void rewrite_union(exprt &)
We rewrite u.c for unions u into byte_extract(u, 0), and { .c = v } into byte_update(NIL,...
Definition: rewrite_union.cpp:66
goto_functions.h
Goto Programs with Functions.