-
Notifications
You must be signed in to change notification settings - Fork 273
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move convert_nondet to java_bytecode
- Loading branch information
1 parent
ac6eb21
commit ed3e01d
Showing
6 changed files
with
11 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,6 @@ Author: Daniel Kroening, [email protected] | |
|
||
#include <ansi-c/c_preprocess.h> | ||
|
||
#include <goto-programs/convert_nondet.h> | ||
#include <goto-programs/initialize_goto_model.h> | ||
#include <goto-programs/instrument_preconditions.h> | ||
#include <goto-programs/goto_convert_functions.h> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,17 +10,18 @@ Author: Reuben Thomas, [email protected] | |
/// Convert side_effect_expr_nondett expressions | ||
|
||
#include "convert_nondet.h" | ||
#include "goto_convert.h" | ||
#include "goto_model.h" | ||
#include "remove_skip.h" | ||
|
||
#include <java_bytecode/java_object_factory.h> // gen_nondet_init | ||
#include <goto-programs/goto_convert.h> | ||
#include <goto-programs/goto_model.h> | ||
#include <goto-programs/remove_skip.h> | ||
|
||
#include <util/irep_ids.h> | ||
#include <util/fresh_symbol.h> | ||
#include <util/irep_ids.h> | ||
|
||
#include <memory> | ||
|
||
#include "java_object_factory.h" // gen_nondet_init | ||
|
||
/// Checks an instruction to see whether it contains an assignment from | ||
/// side_effect_expr_nondet. If so, replaces the instruction with a range of | ||
/// instructions to properly nondet-initialize the lhs. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,8 +9,8 @@ Author: Reuben Thomas, [email protected] | |
/// \file | ||
/// Convert side_effect_expr_nondett expressions | ||
|
||
#ifndef CPROVER_GOTO_PROGRAMS_CONVERT_NONDET_H | ||
#define CPROVER_GOTO_PROGRAMS_CONVERT_NONDET_H | ||
#ifndef CPROVER_JAVA_BYTECODE_CONVERT_NONDET_H | ||
#define CPROVER_JAVA_BYTECODE_CONVERT_NONDET_H | ||
|
||
#include <cstddef> // size_t | ||
#include <util/irep.h> | ||
|
@@ -52,4 +52,4 @@ void convert_nondet( | |
const object_factory_parameterst &object_factory_parameters, | ||
const irep_idt &mode); | ||
|
||
#endif | ||
#endif // CPROVER_JAVA_BYTECODE_CONVERT_NONDET_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,6 @@ Author: Daniel Kroening, [email protected] | |
|
||
#include <ansi-c/ansi_c_language.h> | ||
|
||
#include <goto-programs/convert_nondet.h> | ||
#include <goto-programs/lazy_goto_model.h> | ||
#include <goto-programs/instrument_preconditions.h> | ||
#include <goto-programs/goto_convert_functions.h> | ||
|
@@ -54,6 +53,7 @@ Author: Daniel Kroening, [email protected] | |
|
||
#include <langapi/mode.h> | ||
|
||
#include <java_bytecode/convert_nondet.h> | ||
#include <java_bytecode/java_bytecode_language.h> | ||
#include <java_bytecode/java_enum_static_init_unwind_handler.h> | ||
#include <java_bytecode/remove_exceptions.h> | ||
|