drop GuardedBy ui_thread warnings

Reviewed By: jvillard

Differential Revision: D3392589

fbshipit-source-id: 51a73c9
master
Peter O'Hearn 9 years ago committed by Facebook Github Bot 6
parent a68c45c2a9
commit 8613f16c19

@ -604,14 +604,18 @@ let prop_iter_add_hpred_footprint_to_prop pname tenv prop (lexp, typ) inst =
(** If [lexp] is an access to a field that is annotated with @GuardedBy, add constraints to [prop]
expressing the safety conditions for the access. Complain if these conditions cannot be met. *)
let add_guarded_by_constraints prop lexp pdesc =
let excluded_guardedby_string str =
str = "ui_thread" in (* don't warn on @GuardedBy("ui_thread") *)
let sigma = Prop.get_sigma prop in
let extract_guarded_by_str item_annot =
let annot_extract_guarded_by_str (annot, _) =
if Annotations.annot_ends_with annot Annotations.guarded_by
then
match annot.Sil.parameters with
| [guarded_by_str] -> Some guarded_by_str
| _ -> None
| [guarded_by_str] when not (excluded_guardedby_string guarded_by_str) ->
Some guarded_by_str
| _ ->
None
else
None in
IList.find_map_opt annot_extract_guarded_by_str item_annot in

@ -37,6 +37,10 @@ public class GuardedByExample {
@GuardedBy("SomeLockThatDoesntExist")
Object h = new Object();
@GuardedBy("ui_thread")
Object t = new Object();
void readFBad() {
this.f.toString();
}
@ -120,6 +124,10 @@ public class GuardedByExample {
}
}
void readTok() {
this.t.toString();
}
// TODO: report on these cases
/*
public void unguardedCallSiteBad1() {

Loading…
Cancel
Save