package mopsa
MOPSA: A Modular and Open Platform for Static Analysis using Abstract Interpretation
Install
Dune Dependency
Authors
Maintainers
Sources
mopsa-analyzer-v1.1.tar.gz
md5=fdee20e988343751de440b4f6b67c0f4
sha512=f5cbf1328785d3f5ce40155dada2d95e5de5cce4f084ea30cfb04d1ab10cc9403a26cfb3fa55d0f9da72244482130fdb89c286a9aed0d640bba46b7c00e09500
doc/src/utils_core/location.ml.html
Source file location.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 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361
(****************************************************************************) (* *) (* This file is part of MOPSA, a Modular Open Platform for Static Analysis. *) (* *) (* Copyright (C) 2017-2019 The MOPSA Project. *) (* *) (* This program is free software: you can redistribute it and/or modify *) (* it under the terms of the GNU Lesser General Public License as published *) (* by the Free Software Foundation, either version 3 of the License, or *) (* (at your option) any later version. *) (* *) (* This program is distributed in the hope that it will be useful, *) (* but WITHOUT ANY WARRANTY; without even the implied warranty of *) (* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *) (* GNU Lesser General Public License for more details. *) (* *) (* You should have received a copy of the GNU Lesser General Public License *) (* along with this program. If not, see <http://www.gnu.org/licenses/>. *) (* *) (****************************************************************************) (** Positions and ranges *) (** {2 Positions} *) (** ============= *) type pos = { pos_file: string; (** File name. *) pos_line: int; (** Line number. *) pos_column: int; (** Column number. *) } (** Position in a file. *) let get_pos_file p = p.pos_file let get_pos_line p = p.pos_line let get_pos_column p = p.pos_column let mk_pos file line column = {pos_file = file; pos_line = line; pos_column = column} (** Comparison function of positions. *) let compare_pos (pos1: pos) (pos2: pos) = if pos1 == pos2 then 0 else Compare.compose [ (fun () -> compare pos1.pos_file pos2.pos_file); (fun () -> compare pos1.pos_line pos2.pos_line); (fun () -> compare pos1.pos_column pos2.pos_column); ] (** Return the relative path of `file` w.r.t. the current working directory *) let relative_path file = let wd = Sys.getcwd () in if Str.string_match (Str.regexp ("^" ^ (Str.quote wd) ^ "/.+")) file 0 then let n1 = String.length wd in let n2 = String.length file in "./" ^ String.sub file (n1 + 1) (n2 - n1 - 1) else file (** {2 Ranges} *) (** ========== *) (** Location range of AST nodes. *) type range = | R_program of string list (** list of source files *) (** Program range covering a list source files *) | R_orig of pos (** start position. *) * pos (** end position *) (** Original source range with a start and an end positions. *) | R_fresh of int (** non-original fresh range with unique id *) (** Fresh ranges with unique identifiers *) | R_tagged of range_tag * range (** Tagged range with an annotation *) (** Range tags can be used to annotate AST nodes added by the abstract domains that are not textually present in the source files. *) and range_tag = | String_tag of string | Range_tag of range let mk_tagged_range tag range = R_tagged(tag,range) let mk_string_tag fmt = Format.kasprintf (fun tag -> String_tag tag ) fmt let mk_range_tag range = Range_tag range let mk_range_tagged_range rtag range = R_tagged (mk_range_tag rtag, range) (** Tag a range with a (formatted) annotation. *) let tag_range range fmt = Format.kasprintf (fun tag -> R_tagged (String_tag tag, range) ) fmt let mk_orig_range pos1 pos2 = R_orig (pos1, pos2) let fresh_range_counter = ref 0 let mk_fresh_range () = incr fresh_range_counter; R_fresh !fresh_range_counter let mk_program_range pl = R_program pl let rec untag_range = function | R_tagged(_, range) -> untag_range range | range -> range let rec map_tag f = function | R_tagged (t, r) -> R_tagged (t, map_tag f r) | r -> f r let get_range_start r = match untag_range r with | R_orig(pos, _) -> pos | R_program[p] -> mk_pos p 0 0 | _ -> failwith "get_range_start: invalid argument" let get_range_end r = match untag_range r with | R_orig(_, pos) -> pos | _ -> failwith "get_range_end: invalid argument" let set_range_start r l = map_tag (fun r -> match r with | R_orig (_, l') -> R_orig (l, l') | _ -> failwith "set_range_start: called on non R_source" ) r let set_range_end r l' = map_tag (fun r -> match r with | R_orig (l, _) -> R_orig (l, l') | _ -> failwith "set_range_end: called on non R_source" ) r let get_range_file r = match untag_range r with | R_orig(pos, _) -> pos.pos_file | R_program [p] -> p | _ -> failwith "get_range_file: invalid argument" let get_range_relative_file r = get_range_file r |> relative_path let get_range_line r = let pos = get_range_start r in pos.pos_line let get_range_column r = let pos = get_range_start r in pos.pos_column let is_orig_range = function | R_orig _ -> true | _ -> false let is_program_range = function | R_program _ -> true | _ -> false let match_range_file file r = let pred f = Str.string_match (Str.regexp (".*" ^ (Str.quote file) ^ "$")) f 0 || Str.string_match (Str.regexp (".*" ^ (Str.quote f) ^ "$")) file 0 in match untag_range r with | R_orig(p, _) -> pred p.pos_file | R_program pl -> List.exists pred pl | _ -> false let match_range_line line r = match untag_range r with | R_orig(p, _) -> p.pos_line = line | _ -> false let from_lexing_pos pos = let open Lexing in { pos_file = pos.pos_fname; pos_line = pos.pos_lnum; pos_column = pos.pos_cnum - pos.pos_bol; } let from_lexing_range pos1 pos2 = mk_orig_range (from_lexing_pos pos1) (from_lexing_pos pos2) (** Comparison function of ranges. *) let rec compare_range (r1: range) (r2: range) = if r1 == r2 then 0 else match r1, r2 with | R_program pl1, R_program pl2 -> Compare.list compare pl1 pl2 | R_orig (l1, l2), R_orig (l1', l2') -> Compare.compose [ (fun () -> compare_pos l1 l1'); (fun () -> compare_pos l2 l2'); ] | R_tagged(t1, r1), R_tagged(t2, r2) -> Compare.compose [ (fun () -> compare_range r1 r2); (fun () -> compare_range_tag t1 t2) ] | R_fresh(uid1), R_fresh(uid2) -> compare uid1 uid2 | _ -> compare r1 r2 and compare_range_tag tag1 tag2 = match tag1, tag2 with | String_tag s1, String_tag s2 -> compare s1 s2 | Range_tag r1, Range_tag r2 -> compare_range r1 r2 | _ -> compare tag1 tag2 let subset_range (r1:range) (r2:range) : bool = if r1 == r2 then true else match untag_range r1, untag_range r2 with | R_program pl1, R_program pl2 -> Compare.list compare pl1 pl2 = 0 | R_fresh(uid1), R_fresh(uid2) -> uid1 = uid2 | R_orig (l1, l2), R_orig (l1', l2') -> l1.pos_file = l1'.pos_file && l2.pos_file = l2'.pos_file && (l1.pos_line > l1'.pos_line || (l1.pos_line = l1'.pos_line && l1.pos_column >= l1'.pos_column)) && (l2.pos_line < l2'.pos_line || (l2.pos_line = l2'.pos_line && l2.pos_column <= l2'.pos_column)) | _ -> false (** {2 Range annotations} *) (** ===================== *) type 'a with_range = { content: 'a; range: range; } let with_range a range = { content = a; range; } let get_content a = a.content let get_range a = a.range let bind_range (a: 'a with_range) ?(range=a.range) (f: 'a -> 'b) : 'b with_range = { content = f a.content; range } let bind_pair_range (a: 'a with_range) (f: 'a -> 'b * 'c) : 'b with_range * 'c = let b, c = f a.content in { content = b; range = a.range }, c let compare_with_range cmp a b = Compare.compose [ (fun () -> compare_range a.range b.range); (fun () -> cmp a.content b.content); ] (** {2 Pretty printers} *) (** =================== *) let pp_position fmt pos = Format.fprintf fmt "%s:%d:%d" pos.pos_file pos.pos_line pos.pos_column let pp_relative_position fmt pos = Format.fprintf fmt "%s:%d:%d" (relative_path pos.pos_file) pos.pos_line pos.pos_column let rec pp_range fmt range = match range with | R_program pl -> Format.fprintf fmt "{%a}" (Format.pp_print_list ~pp_sep:(fun fmt () -> Format.fprintf fmt ", ") Format.pp_print_string) pl | R_orig (pos1, pos2) when pos1.pos_file == pos2.pos_file && pos1.pos_line == pos2.pos_line && pos1.pos_column == pos2.pos_column -> pp_position fmt pos1 | R_orig (pos1, pos2) when pos1.pos_file == pos2.pos_file && pos1.pos_line == pos2.pos_line -> Format.fprintf fmt "%s:%d.%d-%d" pos1.pos_file pos1.pos_line pos1.pos_column pos2.pos_column | R_orig (pos1, pos2) when pos1.pos_file == pos2.pos_file -> Format.fprintf fmt "%s:%d.%d-%d.%d" pos1.pos_file pos1.pos_line pos1.pos_column pos2.pos_line pos2.pos_column | R_orig (pos1, pos2) -> Format.fprintf fmt "%a-%a" pp_position pos1 pp_position pos2 | R_fresh uid -> Format.fprintf fmt "<%d>" uid | R_tagged (String_tag t, r) -> Format.fprintf fmt "%a::%s" pp_range r t | R_tagged (Range_tag rr, r) -> Format.fprintf fmt "%a:$%a" pp_range r pp_range rr let rec pp_relative_range fmt range = (* keep tagged range, pp_relative_range is used to generate addr partitioning unique names *) match range with | R_program pl -> Format.fprintf fmt "{%a}" (Format.pp_print_list ~pp_sep:(fun fmt () -> Format.fprintf fmt ", ") Format.pp_print_string) pl | R_orig (pos1, pos2) when pos1.pos_file == pos2.pos_file && pos1.pos_line == pos2.pos_line && pos1.pos_column == pos2.pos_column -> pp_relative_position fmt pos1 | R_orig (pos1, pos2) when pos1.pos_file == pos2.pos_file && pos1.pos_line == pos2.pos_line -> Format.fprintf fmt "%s:%d.%d-%d" (relative_path pos1.pos_file) pos1.pos_line pos1.pos_column pos2.pos_column | R_orig (pos1, pos2) when pos1.pos_file == pos2.pos_file -> Format.fprintf fmt "%s:%d.%d-%d.%d" (relative_path pos1.pos_file) pos1.pos_line pos1.pos_column pos2.pos_line pos2.pos_column | R_orig (pos1, pos2) -> Format.fprintf fmt "%a-%a" pp_relative_position pos1 pp_relative_position pos2 | R_fresh uid -> Format.fprintf fmt "<%d>" uid | R_tagged (String_tag t, r) -> Format.fprintf fmt "%a::%s" pp_relative_range r t | R_tagged (Range_tag rr, r) -> Format.fprintf fmt "%a:$%a" pp_relative_range r pp_relative_range rr
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>