various minor improvements

Summary:
1. Mark some Makefile targets as depending on `MAKEFILE_LIST` so they get rebuilt on Makefile changes
2. Do not show boolean options with no documentation in the man pages (like we do for other option types).
3. Default to Lazy dynamic dispatch for the checkers.
4. In the tests, use `--<checker>-only` instead of relying on `--no-default-checkers`
5. `--no-filtering` is redundant if `--debug-exceptions` is passed

Reviewed By: jeremydubreil

Differential Revision: D6030578

fbshipit-source-id: 3320f0a
master
Jules Villard 8 years ago committed by Facebook Github Bot
parent c2c1679a5f
commit b95f29c8d1

@ -13,7 +13,7 @@ INFER_RESULTS = out/report.json
all: install all: install
$(INFER_RESULTS): $(C_MODELS_SOURCES) $(CLANG_DEPS_NO_MODELS) $(INFER_RESULTS): $(C_MODELS_SOURCES) $(CLANG_DEPS_NO_MODELS) $(MAKEFILE_LIST)
# make clean in src/ to recompile all the models # make clean in src/ to recompile all the models
$(QUIET)$(call silent_on_success,Building C models,\ $(QUIET)$(call silent_on_success,Building C models,\
$(INFER_BIN) -o $(@D) --models-mode -- $(MAKE) -C src clean all) $(INFER_BIN) -o $(@D) --models-mode -- $(MAKE) -C src clean all)

@ -15,7 +15,7 @@ INFER_RESULTS = out/report.json
all: install all: install
$(INFER_RESULTS): $(MODELS_SOURCES) $(CLANG_DEPS_NO_MODELS) $(INFER_RESULTS): $(MODELS_SOURCES) $(CLANG_DEPS_NO_MODELS) $(MAKEFILE_LIST)
# make clean in src/ to recompile all the models # make clean in src/ to recompile all the models
$(QUIET)$(call silent_on_success,Building C++ models,\ $(QUIET)$(call silent_on_success,Building C++ models,\
$(INFER_BIN) -o $(@D) --models-mode -- $(MAKE) -C src clean all) $(INFER_BIN) -o $(@D) --models-mode -- $(MAKE) -C src clean all)

@ -27,7 +27,7 @@ clean:
compile: compile:
$(JAVAC) -bootclasspath $(ANDROID_JAR) -d $(MODELS_OUT) -classpath $(MODELS_CLASSPATH) $(JAVA_SOURCES) $(JAVAC) -bootclasspath $(ANDROID_JAR) -d $(MODELS_OUT) -classpath $(MODELS_CLASSPATH) $(JAVA_SOURCES)
$(INFER_REPORT): $(JAVA_DEPS_NO_MODELS) $(JAVA_SOURCES) $(INFER_REPORT): $(JAVA_DEPS_NO_MODELS) $(JAVA_SOURCES) $(MAKEFILE_LIST)
$(QUIET)rm -fr $(MODELS_OUT) $(QUIET)rm -fr $(MODELS_OUT)
$(QUIET)$(MKDIR_P) $(MODELS_OUT) $(QUIET)$(MKDIR_P) $(MODELS_OUT)
$(QUIET)rm -f $(JAVA_MODELS_JAR) $(QUIET)rm -f $(JAVA_MODELS_JAR)

@ -13,7 +13,7 @@ INFER_RESULTS = out/report.json
all: install all: install
$(INFER_RESULTS): $(OBJC_MODELS_SOURCES) $(CLANG_DEPS_NO_MODELS) $(INFER_RESULTS): $(OBJC_MODELS_SOURCES) $(CLANG_DEPS_NO_MODELS) $(MAKEFILE_LIST)
# make clean in src/ to recompile all the models # make clean in src/ to recompile all the models
$(QUIET)$(call silent_on_success,Building Objective-C models,\ $(QUIET)$(call silent_on_success,Building Objective-C models,\
$(INFER_BIN) -o $(@D) --models-mode -- $(MAKE) -C src clean all) $(INFER_BIN) -o $(@D) --models-mode -- $(MAKE) -C src clean all)

@ -63,7 +63,8 @@ let output_json_makefile_stats clusters =
let process_cluster_cmdline fname = let process_cluster_cmdline fname =
match Cluster.load_from_file (DB.filename_from_string fname) with match Cluster.load_from_file (DB.filename_from_string fname) with
| None | None
-> L.internal_error "Cannot find cluster file %s@." fname -> (if Config.keep_going then L.internal_error else L.die InternalError)
"Cannot find cluster file %s@." fname
| Some (nr, cluster) | Some (nr, cluster)
-> analyze_cluster (nr - 1) cluster -> analyze_cluster (nr - 1) cluster
@ -100,7 +101,7 @@ let cluster_should_be_analyzed ~changed_files cluster =
in in
let check_modified () = let check_modified () =
let modified = DB.file_was_updated_after_start (DB.filename_from_string fname) in let modified = DB.file_was_updated_after_start (DB.filename_from_string fname) in
if modified && Config.developer_mode then L.progress "Modified: %s@." fname ; if modified && Config.developer_mode then L.debug Analysis Medium "Modified: %s@." fname ;
modified modified
in in
match is_changed_file with match is_changed_file with
@ -140,8 +141,10 @@ let main ~changed_files ~makefile =
~f:(fun cl -> DB.string_crc_has_extension ~ext:"java" (DB.source_dir_to_string cl)) ~f:(fun cl -> DB.string_crc_has_extension ~ext:"java" (DB.source_dir_to_string cl))
all_clusters all_clusters
in in
if Config.print_active_checkers then (if Config.print_active_checkers then L.result else L.debug Analysis Quiet)
L.result "Active checkers: %a@." RegisterCheckers.pp_active_checkers () ; "Active checkers: %a@\n" RegisterCheckers.pp_active_checkers () ;
L.debug Analysis Quiet "Dynamic dispatch mode: %s@."
Config.(string_of_dynamic_dispatch dynamic_dispatch) ;
print_legend () ; print_legend () ;
if Config.per_procedure_parallelism && not (is_java ()) then ( if Config.per_procedure_parallelism && not (is_java ()) then (
(* Java uses ZipLib which is incompatible with forking *) (* Java uses ZipLib which is incompatible with forking *)

@ -91,7 +91,7 @@ let iterate_callbacks call_graph exe_env =
match Exe_env.get_proc_desc exe_env proc_name with match Exe_env.get_proc_desc exe_env proc_name with
| Some pdesc | Some pdesc
-> Some pdesc -> Some pdesc
| None when Config.dynamic_dispatch = `Lazy | None when Config.(equal_dynamic_dispatch dynamic_dispatch Lazy)
-> Option.bind (Specs.get_summary proc_name) ~f:(fun summary -> summary.Specs.proc_desc_option) -> Option.bind (Specs.get_summary proc_name) ~f:(fun summary -> summary.Specs.proc_desc_option)
| None | None
-> None -> None

@ -1342,7 +1342,9 @@ let do_analysis_closures exe_env : Tasks.closure list =
let attributes = let attributes =
{(Procdesc.get_attributes pdesc) with ProcAttributes.err_log= static_err_log} {(Procdesc.get_attributes pdesc) with ProcAttributes.err_log= static_err_log}
in in
let proc_desc_option = if Config.dynamic_dispatch = `Lazy then Some pdesc else None in let proc_desc_option =
if Config.(equal_dynamic_dispatch dynamic_dispatch Lazy) then Some pdesc else None
in
ignore (Specs.init_summary (nodes, proc_flags, calls, attributes, proc_desc_option)) ignore (Specs.init_summary (nodes, proc_flags, calls, attributes, proc_desc_option))
in in
let callbacks = let callbacks =
@ -1350,7 +1352,7 @@ let do_analysis_closures exe_env : Tasks.closure list =
match Exe_env.get_proc_desc exe_env proc_name with match Exe_env.get_proc_desc exe_env proc_name with
| Some pdesc | Some pdesc
-> Some pdesc -> Some pdesc
| None when Config.dynamic_dispatch = `Lazy | None when Config.(equal_dynamic_dispatch dynamic_dispatch Lazy)
-> Option.bind (Specs.get_summary proc_name) ~f:(fun summary -> -> Option.bind (Specs.get_summary proc_name) ~f:(fun summary ->
summary.Specs.proc_desc_option ) summary.Specs.proc_desc_option )
| None | None

@ -14,7 +14,7 @@ module L = Logging
(** mutate the cfg/cg to add dynamic dispatch handling *) (** mutate the cfg/cg to add dynamic dispatch handling *)
let add_dispatch_calls pdesc cg tenv = let add_dispatch_calls pdesc cg tenv =
let sound_dynamic_dispatch = Config.dynamic_dispatch = `Sound in let sound_dynamic_dispatch = Config.(equal_dynamic_dispatch dynamic_dispatch Sound) in
let node_add_dispatch_calls caller_pname node = let node_add_dispatch_calls caller_pname node =
let call_flags_is_dispatch call_flags = let call_flags_is_dispatch call_flags =
(* if sound dispatch is turned off, only consider dispatch for interface calls *) (* if sound dispatch is turned off, only consider dispatch for interface calls *)
@ -244,8 +244,10 @@ let do_abstraction pdesc =
add_abstraction_instructions pdesc ; Procdesc.signal_did_preanalysis pdesc add_abstraction_instructions pdesc ; Procdesc.signal_did_preanalysis pdesc
let do_dynamic_dispatch pdesc cg tenv = let do_dynamic_dispatch pdesc cg tenv =
let pname = Procdesc.get_proc_name pdesc in ( match Config.dynamic_dispatch with
if Typ.Procname.is_java pname | Interface | Sound
&& (Config.dynamic_dispatch = `Interface || Config.dynamic_dispatch = `Sound) -> let pname = Procdesc.get_proc_name pdesc in
then add_dispatch_calls pdesc cg tenv ; if Typ.Procname.is_java pname then add_dispatch_calls pdesc cg tenv
| NoDynamicDispatch | Lazy
-> () ) ;
Procdesc.signal_did_preanalysis pdesc Procdesc.signal_did_preanalysis pdesc

@ -721,7 +721,9 @@ let dummy =
(** Reset a summary rebuilding the dependents and preserving the proc attributes if present. *) (** Reset a summary rebuilding the dependents and preserving the proc attributes if present. *)
let reset_summary proc_desc = let reset_summary proc_desc =
let proc_desc_option = if Config.dynamic_dispatch = `Lazy then Some proc_desc else None in let proc_desc_option =
if Config.(equal_dynamic_dispatch dynamic_dispatch Lazy) then Some proc_desc else None
in
let attributes = Procdesc.get_attributes proc_desc in let attributes = Procdesc.get_attributes proc_desc in
let proc_flags = attributes.ProcAttributes.proc_flags in let proc_flags = attributes.ProcAttributes.proc_flags in
init_summary ([], proc_flags, [], attributes, proc_desc_option) init_summary ([], proc_flags, [], attributes, proc_desc_option)

@ -579,7 +579,7 @@ let resolve_typename prop receiver_exp =
in in
match typexp_opt with Some Exp.Sizeof {typ= {desc= Tstruct name}} -> Some name | _ -> None match typexp_opt with Some Exp.Sizeof {typ= {desc= Tstruct name}} -> Some name | _ -> None
(** If the dynamic type of the receiver actual T_actual is a subtype of the reciever type T_formal (** If the dynamic type of the receiver actual T_actual is a subtype of the receiver type T_formal
in the signature of [pname], resolve [pname] to T_actual.[pname]. *) in the signature of [pname], resolve [pname] to T_actual.[pname]. *)
let resolve_virtual_pname tenv prop actuals callee_pname call_flags : Typ.Procname.t list = let resolve_virtual_pname tenv prop actuals callee_pname call_flags : Typ.Procname.t list =
let resolve receiver_exp pname prop = let resolve receiver_exp pname prop =
@ -621,7 +621,7 @@ let resolve_virtual_pname tenv prop actuals callee_pname call_flags : Typ.Procna
if !Config.curr_language <> Config.Java then if !Config.curr_language <> Config.Java then
(* default mode for Obj-C/C++/Java virtual calls: resolution only *) (* default mode for Obj-C/C++/Java virtual calls: resolution only *)
[do_resolve callee_pname receiver_exp actual_receiver_typ] [do_resolve callee_pname receiver_exp actual_receiver_typ]
else if Config.dynamic_dispatch = `Sound then else if Config.(equal_dynamic_dispatch dynamic_dispatch Sound) then
let targets = let targets =
if call_flags.CallFlags.cf_virtual then if call_flags.CallFlags.cf_virtual then
(* virtual call--either [called_pname] or an override in some subtype may be called *) (* virtual call--either [called_pname] or an override in some subtype may be called *)
@ -1182,7 +1182,7 @@ let rec sym_exec tenv current_pdesc _instr (prop_: Prop.normal Prop.t) path
-> exec_builtin (call_args prop_ callee_pname actual_params ret_id loc) -> exec_builtin (call_args prop_ callee_pname actual_params ret_id loc)
| None -> | None ->
match callee_pname with match callee_pname with
| Java callee_pname_java when Config.dynamic_dispatch = `Lazy | Java callee_pname_java when Config.(equal_dynamic_dispatch dynamic_dispatch Lazy)
-> ( -> (
let norm_prop, norm_args' = normalize_params tenv current_pname prop_ actual_params in let norm_prop, norm_args' = normalize_params tenv current_pname prop_ actual_params in
let norm_args = call_constructor_url_update_args callee_pname norm_args' in let norm_args = call_constructor_url_update_args callee_pname norm_args' in

@ -394,7 +394,7 @@ let mk_option ?(default= None) ?(default_to_string= fun _ -> "") ~f ?(mk_reset=
else mk () else mk ()
let mk_bool ?(deprecated_no= []) ?(default= false) ?(f= fun b -> b) ?(deprecated= []) ~long ?short let mk_bool ?(deprecated_no= []) ?(default= false) ?(f= fun b -> b) ?(deprecated= []) ~long ?short
?parse_mode ?in_help ?(meta= "") doc = ?parse_mode ?in_help ?(meta= "") doc0 =
let nolong = let nolong =
let len = String.length long in let len = String.length long in
if len > 3 && String.sub long ~pos:0 ~len:3 = "no-" then String.sub long ~pos:3 ~len:(len - 3) if len > 3 && String.sub long ~pos:0 ~len:3 = "no-" then String.sub long ~pos:3 ~len:(len - 3)
@ -408,12 +408,13 @@ let mk_bool ?(deprecated_no= []) ?(default= false) ?(f= fun b -> b) ?(deprecated
let doc long short = let doc long short =
match short with match short with
| Some short | Some short
-> doc ^ " (Conversely: $(b,--" ^ long ^ ") | $(b,-" ^ String.of_char short ^ "))" -> doc0 ^ " (Conversely: $(b,--" ^ long ^ ") | $(b,-" ^ String.of_char short ^ "))"
| None | None
-> doc ^ " (Conversely: $(b,--" ^ long ^ "))" -> doc0 ^ " (Conversely: $(b,--" ^ long ^ "))"
in in
let doc, nodoc = let doc, nodoc =
if not default then ("Activates: " ^ doc nolong noshort, "") if String.equal doc0 "" then ("", "")
else if not default then ("Activates: " ^ doc nolong noshort, "")
else ("", "Deactivates: " ^ doc long short) else ("", "Deactivates: " ^ doc long short)
in in
let default_to_string _ = "" in let default_to_string _ = "" in

@ -47,7 +47,7 @@ type language = Clang | Java | Python [@@deriving compare]
let equal_language = [%compare.equal : language] let equal_language = [%compare.equal : language]
let string_of_language = function Java -> "Java" | Clang -> "C_CPP" | Python -> "python" let string_of_language = function Java -> "Java" | Clang -> "C/C++/ObjC" | Python -> "python"
let ml_bucket_symbols = let ml_bucket_symbols =
[ ("all", `MLeak_all) [ ("all", `MLeak_all)
@ -332,7 +332,16 @@ let whitelisted_cpp_classes =
; libcxx_whitelisted_cpp_classes ; libcxx_whitelisted_cpp_classes
; other_whitelisted_cpp_classes ] ; other_whitelisted_cpp_classes ]
(** Compile time configuration values *) type dynamic_dispatch = NoDynamicDispatch | Interface | Sound | Lazy [@@deriving compare]
let equal_dynamic_dispatch = [%compare.equal : dynamic_dispatch]
let string_to_dynamic_dispatch =
[("none", NoDynamicDispatch); ("interface", Interface); ("sound", Sound); ("lazy", Lazy)]
let string_of_dynamic_dispatch ddp =
List.find_exn ~f:(fun (_, ddp') -> equal_dynamic_dispatch ddp ddp') string_to_dynamic_dispatch
|> fst
let pp_version fmt () = let pp_version fmt () =
F.fprintf fmt "Infer version %s@\nCopyright 2009 - present Facebook. All Rights Reserved." F.fprintf fmt "Infer version %s@\nCopyright 2009 - present Facebook. All Rights Reserved."
@ -1037,7 +1046,7 @@ and dump_duplicate_symbols =
and dynamic_dispatch = and dynamic_dispatch =
CLOpt.mk_symbol_opt ~long:"dynamic-dispatch" CLOpt.mk_symbol_opt ~long:"dynamic-dispatch"
"Specify treatment of dynamic dispatch in Java code: 'none' treats dynamic dispatch as a call to unknown code, 'lazy' follows the JVM semantics and creates procedure descriptions during symbolic execution using the type information found in the abstract state; 'sound' is significantly more computationally expensive" "Specify treatment of dynamic dispatch in Java code: 'none' treats dynamic dispatch as a call to unknown code, 'lazy' follows the JVM semantics and creates procedure descriptions during symbolic execution using the type information found in the abstract state; 'sound' is significantly more computationally expensive"
~symbols:[("none", `None); ("interface", `Interface); ("sound", `Sound); ("lazy", `Lazy)] ~symbols:string_to_dynamic_dispatch
and eradicate_condition_redundant = and eradicate_condition_redundant =
CLOpt.mk_bool ~long:"eradicate-condition-redundant" "Condition redundant warnings" CLOpt.mk_bool ~long:"eradicate-condition-redundant" "Condition redundant warnings"
@ -2370,9 +2379,7 @@ let clang_frontend_do_capture, clang_frontend_do_lint =
| Some BiAbduction | Some Checkers | Some BiAbduction | Some Checkers
-> (true, false) (* capture, no lint *) -> (true, false) (* capture, no lint *)
| _ | _
-> (true, true) -> (* capture, lint *) (true, true)
(* capture, lint *)
let analyzer = match !analyzer with Some a -> a | None -> BiAbduction let analyzer = match !analyzer with Some a -> a | None -> BiAbduction
@ -2385,16 +2392,16 @@ let dynamic_dispatch =
let default_mode = let default_mode =
match analyzer with match analyzer with
| BiAbduction | BiAbduction
-> `Lazy -> Lazy
| Checkers when biabduction | Checkers when biabduction
-> if quandary then -> if quandary then
F.printf F.eprintf
"WARNING: Running Quanday on Java is not compatible with the Biabduction analysis@." ; "WARNING: Running Quandary on Java is not compatible with the Biabduction analysis@." ;
`Lazy Lazy
| Checkers when quandary | Checkers when quandary
-> `Sound -> Sound
| _ | _
-> `None -> NoDynamicDispatch
in in
Option.value ~default:default_mode !dynamic_dispatch Option.value ~default:default_mode !dynamic_dispatch

@ -71,6 +71,12 @@ type compilation_database_dependencies =
| NoDeps | NoDeps
[@@deriving compare] [@@deriving compare]
type dynamic_dispatch = NoDynamicDispatch | Interface | Sound | Lazy [@@deriving compare]
val equal_dynamic_dispatch : dynamic_dispatch -> dynamic_dispatch -> bool
val string_of_dynamic_dispatch : dynamic_dispatch -> string
val env_inside_maven : Unix.env val env_inside_maven : Unix.env
(** Constant configuration values *) (** Constant configuration values *)
@ -360,7 +366,7 @@ val dotty_cfg_libs : bool
val dump_duplicate_symbols : bool val dump_duplicate_symbols : bool
val dynamic_dispatch : [`None | `Interface | `Sound | `Lazy] val dynamic_dispatch : dynamic_dispatch
val eradicate : bool val eradicate : bool

@ -16,7 +16,7 @@ include $(TESTS_DIR)/clang-base.make
infer-out$(TEST_SUFFIX)/report.json: $(CLANG_DEPS) $(SOURCES) $(HEADERS) $(TESTS_DIR)/.inferconfig $(MAKEFILE_LIST) infer-out$(TEST_SUFFIX)/report.json: $(CLANG_DEPS) $(SOURCES) $(HEADERS) $(TESTS_DIR)/.inferconfig $(MAKEFILE_LIST)
$(QUIET)$(call silent_on_success,Testing infer/clang$(ANALYZER_STRING) in $(TEST_REL_DIR),\ $(QUIET)$(call silent_on_success,Testing infer/clang$(ANALYZER_STRING) in $(TEST_REL_DIR),\
$(INFER_BIN) --results-dir $(@D) --dump-duplicate-symbols --no-default-checkers \ $(INFER_BIN) --results-dir $(@D) --dump-duplicate-symbols \
$(INFER_OPTIONS) -a $(ANALYZER) -- \ $(INFER_OPTIONS) -a $(ANALYZER) -- \
clang $(CLANG_OPTIONS) $(SOURCES)) clang $(CLANG_OPTIONS) $(SOURCES))
$(QUIET)$(call check_no_duplicates,infer-out$(TEST_SUFFIX)/duplicates.txt) $(QUIET)$(call check_no_duplicates,infer-out$(TEST_SUFFIX)/duplicates.txt)

@ -9,7 +9,7 @@ TESTS_DIR = ../../..
ANALYZER = checkers ANALYZER = checkers
CLANG_OPTIONS = -c CLANG_OPTIONS = -c
INFER_OPTIONS = --biabduction --debug-exceptions --project-root $(TESTS_DIR) INFER_OPTIONS = --biabduction-only --debug-exceptions --project-root $(TESTS_DIR)
INFERPRINT_OPTIONS = --issues-tests INFERPRINT_OPTIONS = --issues-tests

@ -10,8 +10,8 @@ TESTS_DIR = ../../..
ANALYZER = checkers ANALYZER = checkers
# see explanations in cpp/errors/Makefile for the custom isystem # see explanations in cpp/errors/Makefile for the custom isystem
CLANG_OPTIONS = -x c++ -std=c++11 -nostdinc++ -isystem$(MODELS_DIR)/cpp/include -isystem$(CLANG_INCLUDES)/c++/v1/ -c CLANG_OPTIONS = -x c++ -std=c++11 -nostdinc++ -isystem$(MODELS_DIR)/cpp/include -isystem$(CLANG_INCLUDES)/c++/v1/ -c
INFER_OPTIONS = --bufferoverrun --ml-buckets cpp --no-filtering --debug-exceptions \ INFER_OPTIONS = --bufferoverrun-only --ml-buckets cpp --no-filtering --debug-exceptions \
--project-root $(TESTS_DIR) --no-liveness --project-root $(TESTS_DIR)
INFERPRINT_OPTIONS = --issues-tests INFERPRINT_OPTIONS = --issues-tests
SOURCES = $(wildcard *.cpp) SOURCES = $(wildcard *.cpp)

@ -10,7 +10,7 @@ TESTS_DIR = ../../..
ANALYZER = checkers ANALYZER = checkers
# see explanations in cpp/errors/Makefile for the custom isystem # see explanations in cpp/errors/Makefile for the custom isystem
CLANG_OPTIONS = -x c++ -std=c++14 -nostdinc++ -isystem$(MODELS_DIR)/cpp/include -isystem$(CLANG_INCLUDES)/c++/v1/ -c CLANG_OPTIONS = -x c++ -std=c++14 -nostdinc++ -isystem$(MODELS_DIR)/cpp/include -isystem$(CLANG_INCLUDES)/c++/v1/ -c
INFER_OPTIONS = --liveness --ml-buckets cpp --debug-exceptions --project-root $(TESTS_DIR) INFER_OPTIONS = --liveness-only --ml-buckets cpp --debug-exceptions --project-root $(TESTS_DIR)
INFERPRINT_OPTIONS = --issues-tests INFERPRINT_OPTIONS = --issues-tests
SOURCES = $(wildcard *.cpp) SOURCES = $(wildcard *.cpp)

@ -7,6 +7,7 @@ codetoanalyze/cpp/nullable/example.cpp, T_dereference_unnanotated_field_after_te
codetoanalyze/cpp/nullable/example.cpp, T_dereference_unnanotated_field_after_test_for_null_bad, 2, NULL_DEREFERENCE, [start of procedure dereference_unnanotated_field_after_test_for_null_bad,Condition is true] codetoanalyze/cpp/nullable/example.cpp, T_dereference_unnanotated_field_after_test_for_null_bad, 2, NULL_DEREFERENCE, [start of procedure dereference_unnanotated_field_after_test_for_null_bad,Condition is true]
codetoanalyze/cpp/nullable/example.cpp, T_test_nonnull_field_for_null_bad, 1, FIELD_SHOULD_BE_NULLABLE, [Field nonnull_field is compared to null here] codetoanalyze/cpp/nullable/example.cpp, T_test_nonnull_field_for_null_bad, 1, FIELD_SHOULD_BE_NULLABLE, [Field nonnull_field is compared to null here]
codetoanalyze/cpp/nullable/example.cpp, T_test_unnanotated_field_for_null_bad, 1, FIELD_SHOULD_BE_NULLABLE, [Field unnanotated_field is compared to null here] codetoanalyze/cpp/nullable/example.cpp, T_test_unnanotated_field_for_null_bad, 1, FIELD_SHOULD_BE_NULLABLE, [Field unnanotated_field is compared to null here]
codetoanalyze/cpp/nullable/method.cpp, FP_reAssigningNullableValueOk, 1, DEAD_STORE, [Write of unused value]
codetoanalyze/cpp/nullable/method.cpp, FP_reAssigningNullableValueOk, 2, NULLABLE_DEREFERENCE, [deference of &p,assignment of the nullable value,definition of mayReturnNullPointer] codetoanalyze/cpp/nullable/method.cpp, FP_reAssigningNullableValueOk, 2, NULLABLE_DEREFERENCE, [deference of &p,assignment of the nullable value,definition of mayReturnNullPointer]
codetoanalyze/cpp/nullable/method.cpp, assignNullableValueBad, 2, NULLABLE_DEREFERENCE, [deference of &p,assignment of the nullable value,definition of mayReturnNullPointer] codetoanalyze/cpp/nullable/method.cpp, assignNullableValueBad, 2, NULLABLE_DEREFERENCE, [deference of &p,assignment of the nullable value,definition of mayReturnNullPointer]
codetoanalyze/cpp/nullable/method.cpp, assignNullableValueBad, 2, NULL_DEREFERENCE, [start of procedure assignNullableValueBad(),start of procedure mayReturnNullPointer,Condition is true,return from a call to T_mayReturnNullPointer] codetoanalyze/cpp/nullable/method.cpp, assignNullableValueBad, 2, NULL_DEREFERENCE, [start of procedure assignNullableValueBad(),start of procedure mayReturnNullPointer,Condition is true,return from a call to T_mayReturnNullPointer]

@ -10,7 +10,10 @@ TESTS_DIR = ../../..
ANALYZER = checkers ANALYZER = checkers
# see explanations in cpp/errors/Makefile for the custom isystem # see explanations in cpp/errors/Makefile for the custom isystem
CLANG_OPTIONS = -x c++ -std=c++11 -nostdinc++ -isystem$(ROOT_DIR) -isystem$(CLANG_INCLUDES)/c++/v1/ -c CLANG_OPTIONS = -x c++ -std=c++11 -nostdinc++ -isystem$(ROOT_DIR) -isystem$(CLANG_INCLUDES)/c++/v1/ -c
INFER_OPTIONS = --quandary --passthroughs --ml-buckets cpp --no-filtering --debug-exceptions --project-root $(TESTS_DIR) INFER_OPTIONS = \
--quandary-only --passthroughs --debug-exceptions \
--project-root $(TESTS_DIR) \
INFERPRINT_OPTIONS = --issues-tests INFERPRINT_OPTIONS = --issues-tests
SOURCES = $(wildcard *.cpp) SOURCES = $(wildcard *.cpp)

@ -10,7 +10,7 @@ TESTS_DIR = ../../..
ANALYZER = checkers ANALYZER = checkers
# see explanations in cpp/errors/Makefile for the custom isystem # see explanations in cpp/errors/Makefile for the custom isystem
CLANG_OPTIONS = -x c++ -std=c++11 -nostdinc++ -isystem$(MODELS_DIR)/cpp/include -isystem$(CLANG_INCLUDES)/c++/v1/ -c CLANG_OPTIONS = -x c++ -std=c++11 -nostdinc++ -isystem$(MODELS_DIR)/cpp/include -isystem$(CLANG_INCLUDES)/c++/v1/ -c
INFER_OPTIONS = --siof --ml-buckets cpp --no-filtering --debug-exceptions --project-root $(TESTS_DIR) INFER_OPTIONS = --siof-only --debug-exceptions --project-root $(TESTS_DIR)
INFERPRINT_OPTIONS = --issues-tests INFERPRINT_OPTIONS = --issues-tests
SOURCES = \ SOURCES = \

@ -8,7 +8,11 @@
TESTS_DIR = ../../.. TESTS_DIR = ../../..
ANALYZER = checkers ANALYZER = checkers
INFER_OPTIONS = --no-filtering --debug-exceptions --default-checkers --resource-leak --suggest-nullable INFER_OPTIONS = \
--debug-exceptions --dynamic-dispatch none --no-default-checkers \
--annotation-reachability --fragment-retains-view --immutable-cast --printf-args --quandary \
--suggest-nullable --threadsafety \
INFERPRINT_OPTIONS = --issues-tests INFERPRINT_OPTIONS = --issues-tests
SOURCES = $(wildcard *.java) SOURCES = $(wildcard *.java)

@ -8,7 +8,7 @@
TESTS_DIR = ../../.. TESTS_DIR = ../../..
ANALYZER = infer ANALYZER = infer
INFER_OPTIONS = --android-harness --no-filtering --debug-exceptions INFER_OPTIONS = --android-harness --debug-exceptions
INFERPRINT_OPTIONS = --issues-fields "file,procedure,line_offset,bug_type" --issues-tests INFERPRINT_OPTIONS = --issues-fields "file,procedure,line_offset,bug_type" --issues-tests
SOURCES = \ SOURCES = \
BasicHarnessActivity.java \ BasicHarnessActivity.java \

@ -13,3 +13,5 @@ INFERPRINT_OPTIONS = --issues-tests
SOURCES = $(wildcard *.java) SOURCES = $(wildcard *.java)
include $(TESTS_DIR)/javac.make include $(TESTS_DIR)/javac.make
infer-out/report.json: .inferconfig

@ -8,7 +8,7 @@
TESTS_DIR = ../../.. TESTS_DIR = ../../..
ANALYZER = checkers ANALYZER = checkers
INFER_OPTIONS = --quandary --passthroughs --no-filtering --debug-exceptions INFER_OPTIONS = --quandary-only --passthroughs --debug-exceptions
INFERPRINT_OPTIONS = --issues-tests INFERPRINT_OPTIONS = --issues-tests
SOURCES = $(wildcard *.java) SOURCES = $(wildcard *.java)

@ -8,7 +8,7 @@
TESTS_DIR = ../../.. TESTS_DIR = ../../..
ANALYZER = checkers ANALYZER = checkers
INFER_OPTIONS = --threadsafety --no-filtering --debug-exceptions INFER_OPTIONS = --threadsafety-only --debug-exceptions
INFERPRINT_OPTIONS = --issues-tests INFERPRINT_OPTIONS = --issues-tests
SOURCES = $(wildcard *.java) SOURCES = $(wildcard *.java)

@ -8,7 +8,7 @@
TESTS_DIR = ../../.. TESTS_DIR = ../../..
ANALYZER = infer ANALYZER = infer
INFER_OPTIONS = --tracing --no-filtering --debug-exceptions INFER_OPTIONS = --tracing --debug-exceptions
INFERPRINT_OPTIONS = --issues-tests INFERPRINT_OPTIONS = --issues-tests
SOURCES = $(wildcard *.java) SOURCES = $(wildcard *.java)

@ -42,7 +42,7 @@ int* __nullable returnsNull();
} }
} }
- (int)testUnnanotatedFieldInClosureBad { - (int)DeadStoreFP_testUnnanotatedFieldInClosureBad {
int (^testField)(int defaultValue); int (^testField)(int defaultValue);
testField = ^(int defaultValue) { testField = ^(int defaultValue) {
if (unnanotatedField != nil) { if (unnanotatedField != nil) {

@ -1,3 +1,4 @@
codetoanalyze/objc/checkers/Nullable.m, T_DeadStoreFP_testUnnanotatedFieldInClosureBad, 2, DEAD_STORE, [Write of unused value]
codetoanalyze/objc/checkers/Nullable.m, T_FP_dereferenceNonnullFieldAfterTestForNullOkay, 1, FIELD_SHOULD_BE_NULLABLE, [Field nonnullField is compared to null here] codetoanalyze/objc/checkers/Nullable.m, T_FP_dereferenceNonnullFieldAfterTestForNullOkay, 1, FIELD_SHOULD_BE_NULLABLE, [Field nonnullField is compared to null here]
codetoanalyze/objc/checkers/Nullable.m, T_FP_dereferenceNonnullFieldAfterTestForNullOkay, 2, NULL_DEREFERENCE, [start of procedure FP_dereferenceNonnullFieldAfterTestForNullOkay,Condition is true] codetoanalyze/objc/checkers/Nullable.m, T_FP_dereferenceNonnullFieldAfterTestForNullOkay, 2, NULL_DEREFERENCE, [start of procedure FP_dereferenceNonnullFieldAfterTestForNullOkay,Condition is true]
codetoanalyze/objc/checkers/Nullable.m, T_assignNonnullFieldToNullBad, 1, FIELD_SHOULD_BE_NULLABLE, [Field nonnullField is assigned null here] codetoanalyze/objc/checkers/Nullable.m, T_assignNonnullFieldToNullBad, 1, FIELD_SHOULD_BE_NULLABLE, [Field nonnullField is assigned null here]
@ -9,4 +10,4 @@ codetoanalyze/objc/checkers/Nullable.m, T_dereferenceUnnanotatedFieldAfterTestFo
codetoanalyze/objc/checkers/Nullable.m, T_dereferenceUnnanotatedFieldAfterTestForNullBad, 2, NULL_DEREFERENCE, [start of procedure dereferenceUnnanotatedFieldAfterTestForNullBad,Condition is true] codetoanalyze/objc/checkers/Nullable.m, T_dereferenceUnnanotatedFieldAfterTestForNullBad, 2, NULL_DEREFERENCE, [start of procedure dereferenceUnnanotatedFieldAfterTestForNullBad,Condition is true]
codetoanalyze/objc/checkers/Nullable.m, T_testNonnullFieldForNullBad, 1, FIELD_SHOULD_BE_NULLABLE, [Field nonnullField is compared to null here] codetoanalyze/objc/checkers/Nullable.m, T_testNonnullFieldForNullBad, 1, FIELD_SHOULD_BE_NULLABLE, [Field nonnullField is compared to null here]
codetoanalyze/objc/checkers/Nullable.m, T_testUnnanotatedFieldForNullBad, 1, FIELD_SHOULD_BE_NULLABLE, [Field unnanotatedField is compared to null here] codetoanalyze/objc/checkers/Nullable.m, T_testUnnanotatedFieldForNullBad, 1, FIELD_SHOULD_BE_NULLABLE, [Field unnanotatedField is compared to null here]
codetoanalyze/objc/checkers/Nullable.m, __objc_anonymous_block_T_testUnnanotatedFieldInClosureBad______1, 1, FIELD_SHOULD_BE_NULLABLE, [Field unnanotatedField is compared to null here] codetoanalyze/objc/checkers/Nullable.m, __objc_anonymous_block_T_DeadStoreFP_testUnnanotatedFieldInClosureBad______1, 1, FIELD_SHOULD_BE_NULLABLE, [Field unnanotatedField is compared to null here]

@ -24,6 +24,6 @@ $(OBJECTS): $(SOURCES)
infer-out/report.json: $(JAVA_DEPS) $(SOURCES) $(MAKEFILE_LIST) infer-out/report.json: $(JAVA_DEPS) $(SOURCES) $(MAKEFILE_LIST)
$(QUIET)$(call silent_on_success,Testing infer/java$(ANALYZER_STRING) in $(TEST_REL_DIR),\ $(QUIET)$(call silent_on_success,Testing infer/java$(ANALYZER_STRING) in $(TEST_REL_DIR),\
$(INFER_BIN) -a $(ANALYZER) --no-default-checkers --project-root $(PROJECT_ROOT) \ $(INFER_BIN) -a $(ANALYZER) --project-root $(PROJECT_ROOT) \
$(INFER_OPTIONS) -- \ $(INFER_OPTIONS) -- \
$(JAVAC) -cp $(CLASSPATH) $(SOURCES)) $(JAVAC) -cp $(CLASSPATH) $(SOURCES))

Loading…
Cancel
Save