We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48bfd20 commit 21a6267Copy full SHA for 21a6267
jbmc/src/janalyzer/janalyzer_parse_options.h
@@ -108,8 +108,7 @@ Author: Daniel Kroening, kroening@kroening.com
108
#include <goto-programs/show_goto_functions.h>
109
#include <goto-programs/show_properties.h>
110
111
-#include <analyses/goto_check_java.h>
112
-
+#include <java_bytecode/goto_check_java.h>
113
#include <java_bytecode/java_bytecode_language.h>
114
115
class abstract_goto_modelt;
jbmc/src/java_bytecode/Makefile
@@ -9,6 +9,7 @@ SRC = assignments_from_json.cpp \
9
expr2java.cpp \
10
generic_parameter_specialization_map.cpp \
11
generic_parameter_specialization_map_keys.cpp \
12
+ goto_check_java.cpp \
13
jar_file.cpp \
14
jar_pool.cpp \
15
java_bmc_util.cpp \
src/analyses/goto_check_java.cpp …mc/src/java_bytecode/goto_check_java.cppsrc/analyses/goto_check_java.cpp renamed to jbmc/src/java_bytecode/goto_check_java.cpp
@@ -41,8 +41,7 @@ Author: Daniel Kroening, kroening@kroening.com
41
#include <goto-programs/goto_model.h>
42
#include <goto-programs/remove_skip.h>
43
44
-#include "guard.h"
45
-#include "local_bitvector_analysis.h"
+#include <analyses/local_bitvector_analysis.h>
46
47
class goto_check_javat
48
{
@@ -84,7 +83,6 @@ class goto_check_javat
84
83
const namespacet &ns;
85
std::unique_ptr<local_bitvector_analysist> local_bitvector_analysis;
86
goto_programt::const_targett current_target;
87
- guard_managert guard_manager;
88
messaget log;
89
90
/// Check an address-of expression:
src/analyses/goto_check_java.h jbmc/src/java_bytecode/goto_check_java.hsrc/analyses/goto_check_java.h renamed to jbmc/src/java_bytecode/goto_check_java.h
jbmc/src/jbmc/jbmc_parse_options.h
@@ -19,8 +19,6 @@ Author: Daniel Kroening, kroening@kroening.com
19
20
#include <langapi/language.h>
21
22
23
24
#include <goto-checker/bmc_util.h>
25
26
#include <goto-programs/class_hierarchy.h>
@@ -29,6 +27,7 @@ Author: Daniel Kroening, kroening@kroening.com
29
27
30
28
#include <solvers/strings/string_refinement.h>
31
32
33
#include <java_bytecode/java_trace_validation.h>
34
jbmc/src/jdiff/jdiff_parse_options.h
@@ -12,7 +12,7 @@ Author: Peter Schrammel
#ifndef CPROVER_JDIFF_JDIFF_PARSE_OPTIONS_H
#define CPROVER_JDIFF_JDIFF_PARSE_OPTIONS_H
16
17
#include <util/parse_options.h>
18
#include <util/timestamper.h>
src/analyses/Makefile
@@ -14,7 +14,6 @@ SRC = ai.cpp \
global_may_alias.cpp \
goto_check.cpp \
goto_check_c.cpp \
- goto_check_java.cpp \
goto_rw.cpp \
guard_bdd.cpp \
guard_expr.cpp \
src/analyses/goto_check.cpp
@@ -12,7 +12,6 @@ Author: Daniel Kroening, kroening@kroening.com
#include "goto_check.h"
#include "goto_check_c.h"
-#include "goto_check_java.h"
#include <util/symbol.h>
@@ -30,11 +29,6 @@ void goto_check(
goto_check_c(
function_identifier, goto_function, ns, options, message_handler);
}
- else if(function_symbol.mode == ID_java)
- {
35
- goto_check_java(
36
- function_identifier, goto_function, ns, options, message_handler);
37
- }
38
39
40
void goto_check(
@@ -44,7 +38,6 @@ void goto_check(
message_handlert &message_handler)
goto_check_c(ns, options, goto_functions, message_handler);
- goto_check_java(ns, options, goto_functions, message_handler);
49
50
@@ -53,5 +46,4 @@ void goto_check(
53
54
55
goto_check_c(options, goto_model, message_handler);
56
- goto_check_java(options, goto_model, message_handler);
57
0 commit comments