CBMC
java_single_path_symex_checker.h
Go to the documentation of this file.
1 /*******************************************************************\
2 
3 Module: Goto Checker using Single Path Symbolic Execution for Java
4 
5 Author: Daniel Kroening, Peter Schrammel
6 
7  \*******************************************************************/
8 
11 
12 #ifndef CPROVER_JAVA_BYTECODE_JAVA_SINGLE_PATH_SYMEX_CHECKER_H
13 #define CPROVER_JAVA_BYTECODE_JAVA_SINGLE_PATH_SYMEX_CHECKER_H
14 
16 
17 #include "java_bmc_util.h"
18 
20 {
21 public:
23  const optionst &options,
27  {
28  }
29 
30  void setup_symex(symex_bmct &symex) override
31  {
34  }
35 
36  goto_tracet build_full_trace() const override;
37  goto_tracet build_shortest_trace() const override;
38  goto_tracet build_trace(const irep_idt &property_id) const override;
39 };
40 
41 #endif // CPROVER_JAVA_BYTECODE_JAVA_SINGLE_PATH_SYMEX_CHECKER_H
dstringt
dstringt has one field, an unsigned integer no which is an index into a static table of strings.
Definition: dstring.h:36
java_bmc_util.h
single_path_symex_only_checkert::setup_symex
virtual void setup_symex(symex_bmct &symex)
Definition: single_path_symex_only_checker.cpp:153
ui_message_handlert
Definition: ui_message.h:21
optionst
Definition: options.h:22
incremental_goto_checkert::options
const optionst & options
Definition: incremental_goto_checker.h:91
single_path_symex_only_checkert::goto_model
abstract_goto_modelt & goto_model
Definition: single_path_symex_only_checker.h:39
single_path_symex_checkert
Uses goto-symex to symbolically execute each path in the goto model and calls a solver to find proper...
Definition: single_path_symex_checker.h:24
java_single_path_symex_checkert::build_trace
goto_tracet build_trace(const irep_idt &property_id) const override
Builds and returns the trace for the FAILed property with the given property_id.
Definition: java_single_path_symex_checker.cpp:31
java_single_path_symex_checkert::build_shortest_trace
goto_tracet build_shortest_trace() const override
Builds and returns the trace up to the first failed property.
Definition: java_single_path_symex_checker.cpp:22
single_path_symex_checker.h
java_single_path_symex_checkert
Definition: java_single_path_symex_checker.h:19
java_single_path_symex_checkert::setup_symex
void setup_symex(symex_bmct &symex) override
Definition: java_single_path_symex_checker.h:30
goto_tracet
Trace of a GOTO program.
Definition: goto_trace.h:174
java_single_path_symex_checkert::build_full_trace
goto_tracet build_full_trace() const override
Builds and returns the complete trace.
Definition: java_single_path_symex_checker.cpp:14
abstract_goto_modelt
Abstract interface to eager or lazy GOTO models.
Definition: abstract_goto_model.h:20
symex_bmct
Definition: symex_bmc.h:23
incremental_goto_checkert::ui_message_handler
ui_message_handlert & ui_message_handler
Definition: incremental_goto_checker.h:92
java_single_path_symex_checkert::java_single_path_symex_checkert
java_single_path_symex_checkert(const optionst &options, ui_message_handlert &ui_message_handler, abstract_goto_modelt &goto_model)
Definition: java_single_path_symex_checker.h:22
java_setup_symex
void java_setup_symex(const optionst &options, abstract_goto_modelt &goto_model, symex_bmct &symex)
Registers Java-specific preprocessing handlers with goto-symex.
Definition: java_bmc_util.cpp:18