package goblint-cil
A front-end for the C programming language that facilitates program analysis and transformation
Install
Dune Dependency
Authors
Maintainers
Sources
goblint-cil-2.0.2.tbz
sha256=e6b654a67a46fb5a71a6c9d9ed24f46100d3f33537fef1edf5f57d3058d0dc58
sha512=fbf66413e777b887d11c40adaf3099e6be444a9609c41508d24fe1fdb20d720fad241d2b8cc80fd6dc8829ea02cfbd7b7fc239a94b807e3df29d3f72f9f20c80
doc/src/goblint-cil.liveness/usedef.ml.html
Source file usedef.ml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251
open GoblintCil module E = Errormsg (** compute use/def information *) module VS = Set.Make (struct type t = Cil.varinfo (* Subtraction is safe since vids are always positive*) let compare v1 v2 = v1.vid - v2.vid end) (** Set this global to how you want to handle function calls. This also returns a modified argument list which will be used for the purpose of Use analysis, in case you have a function that needs special treatment of its args. *) let getUseDefFunctionRef: (exp -> exp list -> VS.t * VS.t * exp list) ref = ref (fun func args -> (VS.empty, VS.empty, args)) (** Say if you want to consider a variable use. This applies to variable reads only; see also considerVariableAddrOfAsUse *) let considerVariableUse: (varinfo -> bool) ref = ref (fun _ -> true) (** Say if you want to consider a variable def *) let considerVariableDef: (varinfo -> bool) ref = ref (fun _ -> true) (** Say if you want to consider a variable addrof as a use *) let considerVariableAddrOfAsUse: (varinfo -> bool) ref = ref (fun _ -> true) (** Say if you want to consider a variable addrof as a def *) let considerVariableAddrOfAsDef: (varinfo -> bool) ref = ref (fun _ -> false) (** Return any vars that should be considered "used" by an expression, other than the ones it refers to directly. Deputy uses this for variables in Cast annotations. *) let extraUsesOfExpr: (exp -> VS.t) ref = ref (fun _ -> VS.empty) (* When this is true, only definitions of a variable without an offset are counted as definitions. So: a = 5; would be a definition, but a[1] = 5; would not. Exception: writing to a union field is considered to be a definition of the union even if this is set to true.*) let onlyNoOffsetsAreDefs: bool ref = ref false (** Should we ignore the contents of sizeof and alignof? *) let ignoreSizeof: bool ref = ref true let varUsed: VS.t ref = ref VS.empty let varDefs: VS.t ref = ref VS.empty class useDefVisitorClass : cilVisitor = object (self) inherit nopCilVisitor (** this will be invoked on variable definitions only because we intercept all uses of variables in expressions ! *) method! vvrbl (v: varinfo) = if (!considerVariableDef) v && not(!onlyNoOffsetsAreDefs) then varDefs := VS.add v !varDefs; if (!considerVariableDef) v && !onlyNoOffsetsAreDefs then varUsed := VS.add v !varUsed; SkipChildren (** If l is a variable, this means we are in a def, not a use! Other cases are handled by vexpr. If onlyNoOffsetsAreDefs is true, then we need to see the varinfo in an lval along with the offset. Otherwise just DoChildren *) method! vlval (l: lval) = if !onlyNoOffsetsAreDefs then match l with (Var vi, NoOffset) -> if (!considerVariableDef) vi then varDefs := VS.add vi !varDefs; SkipChildren | (Var vi, Field(fi, NoOffset)) when not fi.fcomp.cstruct -> (* If we are writing to a union field, treat that the same as a write to a union. *) if (!considerVariableDef) vi then varDefs := VS.add vi !varDefs; SkipChildren | _ -> DoChildren else DoChildren method! vexpr (e:exp) = let extra = (!extraUsesOfExpr) e in if not (VS.is_empty extra) then varUsed := VS.union extra !varUsed; match e with Lval (Var v, off) -> ignore (visitCilOffset (self :> cilVisitor) off); if (!considerVariableUse) v then begin varUsed := VS.add v !varUsed end; SkipChildren (* So that we do not see the v *) | AddrOf (Var v, off) | StartOf (Var v, off) -> ignore (visitCilOffset (self :> cilVisitor) off); if (!considerVariableAddrOfAsUse) v then varUsed := VS.add v !varUsed; if (!considerVariableAddrOfAsDef) v then varDefs := VS.add v !varDefs; SkipChildren | SizeOfE _ | AlignOfE _ when !ignoreSizeof -> SkipChildren | _ -> DoChildren (* For function calls, do the transitive variable read/defs *) method! vinst i = let doCall f desto args = (* we will compute the use and def that appear in this instruction. We also add in the stuff computed by getUseDefFunctionRef *) let use, def, args' = !getUseDefFunctionRef f args in varUsed := VS.union !varUsed use; varDefs := VS.union !varDefs def; (* Now visit the children of "Call (lvo, f, args', _)" *) let self: cilVisitor = (self :> cilVisitor) in (match desto with None -> () | Some lv -> ignore (visitCilLval self lv)); ignore (visitCilExpr self f); List.iter (fun arg -> ignore (visitCilExpr self arg)) args'; SkipChildren in match i with Call (None, (Lval(Var vi, NoOffset) as f), [valist; SizeOf t; adest], _, _) (* __builtin_va_arg is special: in CIL, the left hand side is stored as the last argument. *) when vi.vname = "__builtin_va_arg" -> let dest' = match stripCasts adest with AddrOf lv -> lv | _ -> E.s (bug "bad call to %s" vi.vname) in doCall f (Some dest') [valist; SizeOf t] | Call (_, Lval(Var vi, _), _, _, _) when vi.vname = "__builtin_va_arg" -> E.s (bug "bad call to %s" vi.vname) | Call (lvo, f, args, _, _) -> doCall f lvo args | Asm(_,_,slvl,_,_,_) -> List.iter (fun (_,s,lv) -> match lv with (Var v, off) -> if s.[0] = '+' then varUsed := VS.add v !varUsed; | _ -> ()) slvl; DoChildren | _ -> DoChildren end let useDefVisitor = new useDefVisitorClass (** Compute the use information for an expression (accumulate to an existing set) *) let computeUseExp ?(acc=VS.empty) (e: exp) : VS.t = varUsed := acc; ignore (visitCilExpr useDefVisitor e); !varUsed (** Compute the use/def information for an instruction *) let computeUseDefInstr ?(acc_used=VS.empty) ?(acc_defs=VS.empty) (i: instr) : VS.t * VS.t = varUsed := acc_used; varDefs := acc_defs; ignore (visitCilInstr useDefVisitor i); !varUsed, !varDefs (** Compute the use/def information for a statement kind. Do not descend into the nested blocks. *) let computeUseDefStmtKind ?(acc_used=VS.empty) ?(acc_defs=VS.empty) (sk: stmtkind) : VS.t * VS.t = varUsed := acc_used; varDefs := acc_defs; let ve e = ignore (visitCilExpr useDefVisitor e) in let _ = match sk with Return (None, _) -> () | Return (Some e, _) -> ve e | If (e, _, _, _, _) -> ve e | Break _ | Goto _ | Continue _ -> () | ComputedGoto (e, _) -> ve e | Loop (_, _, _, _, _) -> () | Switch (e, _, _, _, _) -> ve e | Instr il -> List.iter (fun i -> ignore (visitCilInstr useDefVisitor i)) il | Block _ -> () in !varUsed, !varDefs (* Compute the use/def information for a statement kind. DO descend into nested blocks *) let rec computeDeepUseDefStmtKind ?(acc_used=VS.empty) ?(acc_defs=VS.empty) (sk: stmtkind) : VS.t * VS.t = let handle_block b = List.fold_left (fun (u,d) s -> let u',d' = computeDeepUseDefStmtKind s.skind in (VS.union u u', VS.union d d')) (VS.empty, VS.empty) b.bstmts in varUsed := acc_used; varDefs := acc_defs; let ve e = ignore (visitCilExpr useDefVisitor e) in match sk with Return (None, _) -> !varUsed, !varDefs | Return (Some e, _) -> let _ = ve e in !varUsed, !varDefs | If (e, tb, fb, _, _) -> let _ = ve e in let u, d = !varUsed, !varDefs in let u', d' = handle_block tb in let u'', d'' = handle_block fb in (VS.union (VS.union u u') u'', VS.union (VS.union d d') d'') | Break _ | Goto _ | Continue _ -> !varUsed, !varDefs | ComputedGoto (e, _) -> let _ = ve e in !varUsed, !varDefs | Loop (b, _, _, _, _) -> handle_block b | Switch (e, b, _, _, _) -> let _ = ve e in let u, d = !varUsed, !varDefs in let u', d' = handle_block b in (VS.union u u', VS.union d d') | Instr il -> List.iter (fun i -> ignore (visitCilInstr useDefVisitor i)) il; !varUsed, !varDefs | Block b -> handle_block b let computeUseLocalTypes ?(acc_used=VS.empty) (fd : fundec) = List.fold_left (fun u vi -> ignore(visitCilType useDefVisitor vi.vtype); VS.union u (!varUsed)) acc_used fd.slocals
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>