Skip to content

Commit

Permalink
Remove MayBeTainted from queries
Browse files Browse the repository at this point in the history
  • Loading branch information
karoliineh committed Aug 29, 2023
1 parent 224615f commit 26151ef
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/domains/queries.ml
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,6 @@ type _ t =
| WarnGlobal: Obj.t -> Unit.t t (** Argument must be of corresponding [Spec.V.t]. *)
| IterSysVars: VarQuery.t * Obj.t VarQuery.f -> Unit.t t (** [iter_vars] for [Constraints.FromSpec]. [Obj.t] represents [Spec.V.t]. *)
| MayAccessed: AccessDomain.EventSet.t t
| MayBeTainted: LS.t t
| MayBeTaintedA: AD.t t
| MayBeModifiedSinceSetjmp: JmpBufDomain.BufferEntry.t -> VS.t t
| TmpSpecial: Mval.Exp.t -> ML.t t
Expand Down Expand Up @@ -186,7 +185,6 @@ struct
| WarnGlobal _ -> (module Unit)
| IterSysVars _ -> (module Unit)
| MayAccessed -> (module AccessDomain.EventSet)
| MayBeTainted -> (module LS)
| MayBeTaintedA -> (module AD)
| MayBeModifiedSinceSetjmp _ -> (module VS)
| TmpSpecial _ -> (module ML)
Expand Down Expand Up @@ -251,7 +249,6 @@ struct
| WarnGlobal _ -> Unit.top ()
| IterSysVars _ -> Unit.top ()
| MayAccessed -> AccessDomain.EventSet.top ()
| MayBeTainted -> LS.top ()
| MayBeTaintedA -> AD.top ()
| MayBeModifiedSinceSetjmp _ -> VS.top ()
| TmpSpecial _ -> ML.top ()
Expand Down Expand Up @@ -303,8 +300,7 @@ struct
| Any (InvariantGlobal _) -> 38
| Any (MustProtectedVars _) -> 39
| Any MayAccessed -> 40
| Any MayBeTainted -> 41
| Any MayBeTaintedA -> 4141
| Any MayBeTaintedA -> 41
| Any (PathQuery _) -> 42
| Any DYojson -> 43
| Any (EvalValue _) -> 44
Expand Down Expand Up @@ -456,7 +452,6 @@ struct
| Any (MutexType (v,o)) -> Pretty.dprintf "MutexType _"
| Any (EvalMutexAttr a) -> Pretty.dprintf "EvalMutexAttr _"
| Any MayAccessed -> Pretty.dprintf "MayAccessed"
| Any MayBeTainted -> Pretty.dprintf "MayBeTainted"
| Any MayBeTaintedA -> Pretty.dprintf "MayBeTaintedA"
| Any DYojson -> Pretty.dprintf "DYojson"
| Any MayBeModifiedSinceSetjmp buf -> Pretty.dprintf "MayBeModifiedSinceSetjmp %a" JmpBufDomain.BufferEntry.pretty buf
Expand Down

0 comments on commit 26151ef

Please sign in to comment.