package libsail

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Source file error_format.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
(****************************************************************************)
(*     Sail                                                                 *)
(*                                                                          *)
(*  Sail and the Sail architecture models here, comprising all files and    *)
(*  directories except the ASL-derived Sail code in the aarch64 directory,  *)
(*  are subject to the BSD two-clause licence below.                        *)
(*                                                                          *)
(*  The ASL derived parts of the ARMv8.3 specification in                   *)
(*  aarch64/no_vector and aarch64/full are copyright ARM Ltd.               *)
(*                                                                          *)
(*  Copyright (c) 2013-2021                                                 *)
(*    Kathyrn Gray                                                          *)
(*    Shaked Flur                                                           *)
(*    Stephen Kell                                                          *)
(*    Gabriel Kerneis                                                       *)
(*    Robert Norton-Wright                                                  *)
(*    Christopher Pulte                                                     *)
(*    Peter Sewell                                                          *)
(*    Alasdair Armstrong                                                    *)
(*    Brian Campbell                                                        *)
(*    Thomas Bauereiss                                                      *)
(*    Anthony Fox                                                           *)
(*    Jon French                                                            *)
(*    Dominic Mulligan                                                      *)
(*    Stephen Kell                                                          *)
(*    Mark Wassell                                                          *)
(*    Alastair Reid (Arm Ltd)                                               *)
(*                                                                          *)
(*  All rights reserved.                                                    *)
(*                                                                          *)
(*  This work was partially supported by EPSRC grant EP/K008528/1 <a        *)
(*  href="http://www.cl.cam.ac.uk/users/pes20/rems">REMS: Rigorous          *)
(*  Engineering for Mainstream Systems</a>, an ARM iCASE award, EPSRC IAA   *)
(*  KTF funding, and donations from Arm.  This project has received         *)
(*  funding from the European Research Council (ERC) under the European     *)
(*  Union’s Horizon 2020 research and innovation programme (grant           *)
(*  agreement No 789108, ELVER).                                            *)
(*                                                                          *)
(*  This software was developed by SRI International and the University of  *)
(*  Cambridge Computer Laboratory (Department of Computer Science and       *)
(*  Technology) under DARPA/AFRL contracts FA8650-18-C-7809 ("CIFV")        *)
(*  and FA8750-10-C-0237 ("CTSRD").                                         *)
(*                                                                          *)
(*  SPDX-License-Identifier: BSD-2-Clause                                   *)
(****************************************************************************)

let rec skip_lines in_chan = function
  | n when n <= 0 -> ()
  | n ->
      ignore (Sail_file.In_channel.input_line in_chan);
      skip_lines in_chan (n - 1)

let rec read_lines in_chan = function
  | n when n <= 0 -> []
  | n ->
      let l = Sail_file.In_channel.input_line in_chan in
      let ls = read_lines in_chan (n - 1) in
      l :: ls

(* Replace unprintable ASCII characters with an escape
   sequence. Optional color argument lets us change the color of the
   escape sequence in the output. Note that rather than using \t for
   tabs, we replace tabs with error_tabwidth spaces.

   The unprintable_escape function also returns a function for adjusting
   column numbers based on the inserted escape sequences. *)

let error_tabwidth = 4

let opt_debug_no_filenames = ref false

let format_filename fname = if !opt_debug_no_filenames then "" else Util.(fname |> cyan |> clear)

let unprintable_notation ?(color = fun x -> x) c =
  let n = Char.code c in
  if n = 9 then Some (String.make error_tabwidth ' ')
  else if n <= 30 || n = 127 then Some (color (Char.escaped c))
  else None

let unprintable_escape ?(color = fun x -> x) str =
  let rec adjuster adjs cnum =
    match adjs with (i, shift) :: rest -> if cnum > i then cnum + shift else adjuster rest cnum | [] -> cnum
  in
  let buf = Buffer.create (String.length str) in
  let shift = ref 0 in
  let adjusts = ref [] in
  String.iteri
    (fun i c ->
      match unprintable_notation c with
      | Some escaped ->
          shift := !shift + (String.length escaped - 1);
          adjusts := (i, !shift) :: !adjusts;
          Buffer.add_string buf (color escaped)
      | None -> Buffer.add_char buf c
    )
    str;
  (Buffer.contents buf, adjuster !adjusts)

type formatter = { indent : string; endline : string -> unit; loc_color : string -> string }

let err_formatter = { indent = ""; endline = prerr_endline; loc_color = Util.red }

let buffer_formatter b = { indent = ""; endline = (fun str -> Buffer.add_string b (str ^ "\n")); loc_color = Util.red }

let format_endline str ppf =
  ppf.endline (ppf.indent ^ Str.global_replace (Str.regexp_string "\n") ("\n" ^ ppf.indent) str)

let underline_single color cnum_from cnum_to =
  if cnum_from + 1 >= cnum_to then Util.(String.make cnum_from ' ' ^ clear (color "^"))
  else Util.(String.make cnum_from ' ' ^ clear (color ("^" ^ String.make (cnum_to - cnum_from - 2) '-' ^ "^")))

let format_hint color = function Some hint -> " " ^ Util.(hint |> color |> clear) | None -> ""

let format_code_single' prefix hint fname in_chan lnum cnum_from cnum_to contents ppf =
  skip_lines in_chan (lnum - 1);
  let line = Sail_file.In_channel.input_line in_chan in
  let line_prefix = string_of_int lnum ^ Util.(clear (cyan " |")) in
  let blank_prefix = String.make (String.length (string_of_int lnum)) ' ' ^ Util.(clear (ppf.loc_color " |")) in
  format_endline (Printf.sprintf "%s%s:%d.%d-%d:" prefix (format_filename fname) lnum cnum_from cnum_to) ppf;
  let line, adjust = unprintable_escape ~color:Util.(fun e -> e |> magenta |> clear) line in
  format_endline (line_prefix ^ line) ppf;
  format_endline
    (blank_prefix ^ underline_single ppf.loc_color (adjust cnum_from) (adjust cnum_to) ^ format_hint ppf.loc_color hint)
    ppf;
  contents { ppf with indent = ppf.indent ^ blank_prefix ^ " " }

let underline_double_from color cnum_from eol =
  Util.(String.make cnum_from ' ' ^ clear (color ("^" ^ String.make (eol - cnum_from - 1) '-')))

let underline_double_to color cnum_to =
  if cnum_to = 0 then Util.(clear (color "^")) else Util.(clear (color (String.make (cnum_to - 1) '-' ^ "^")))

let format_code_double' prefix fname in_chan lnum_from cnum_from lnum_to cnum_to contents ppf =
  skip_lines in_chan (lnum_from - 1);
  let line_from = Sail_file.In_channel.input_line in_chan in
  skip_lines in_chan (lnum_to - lnum_from - 1);
  let line_to = Sail_file.In_channel.input_line in_chan in
  let line_to_prefix = string_of_int lnum_to ^ Util.(clear (cyan " |")) in
  let line_from_padding =
    String.make (String.length (string_of_int lnum_to) - String.length (string_of_int lnum_from)) ' '
  in
  let line_from_prefix = string_of_int lnum_from ^ line_from_padding ^ Util.(clear (cyan " |")) in
  let blank_prefix = String.make (String.length (string_of_int lnum_to)) ' ' ^ Util.(clear (ppf.loc_color " |")) in
  format_endline
    (Printf.sprintf "%s%s:%d.%d-%d.%d:" prefix (format_filename fname) lnum_from cnum_from lnum_to cnum_to)
    ppf;
  let cnum_end = String.length line_from in
  let line_from, adjust = unprintable_escape ~color:Util.(fun e -> e |> magenta |> clear) line_from in
  format_endline (line_from_prefix ^ line_from) ppf;
  format_endline (blank_prefix ^ underline_double_from ppf.loc_color (adjust cnum_from) (adjust cnum_end)) ppf;
  let line_to, adjust = unprintable_escape ~color:Util.(fun e -> e |> magenta |> clear) line_to in
  format_endline (line_to_prefix ^ line_to) ppf;
  format_endline (blank_prefix ^ underline_double_to ppf.loc_color (adjust cnum_to)) ppf;
  contents { ppf with indent = ppf.indent ^ blank_prefix ^ " " }

let format_code_single_fallback prefix fname lnum cnum_from cnum_to contents ppf =
  let blank_prefix = String.make (String.length (string_of_int lnum)) ' ' ^ Util.(clear (ppf.loc_color " |")) in
  format_endline (Printf.sprintf "%s%s:%d.%d-%d:" prefix (format_filename fname) lnum cnum_from cnum_to) ppf;
  contents { ppf with indent = ppf.indent ^ blank_prefix ^ " " }

let format_code_single prefix hint fname lnum cnum_from cnum_to contents ppf =
  try
    let handle = Sail_file.open_file fname in
    let in_chan = Sail_file.In_channel.from_file handle in
    format_code_single' prefix hint fname in_chan lnum cnum_from cnum_to contents ppf
  with _ -> format_code_single_fallback prefix fname lnum cnum_from cnum_to contents ppf

let format_code_double_fallback prefix fname lnum_from cnum_from lnum_to cnum_to contents ppf =
  let blank_prefix = String.make (String.length (string_of_int lnum_to)) ' ' ^ Util.(clear (ppf.loc_color " |")) in
  format_endline
    (Printf.sprintf "%s%s:%d.%d-%d.%d:" prefix (format_filename fname) lnum_from cnum_from lnum_to cnum_to)
    ppf;
  contents { ppf with indent = ppf.indent ^ blank_prefix ^ " " }

let format_code_double prefix fname lnum_from cnum_from lnum_to cnum_to contents ppf =
  try
    let handle = Sail_file.open_file fname in
    let in_chan = Sail_file.In_channel.from_file handle in
    format_code_double' prefix fname in_chan lnum_from cnum_from lnum_to cnum_to contents ppf
  with _ -> format_code_double_fallback prefix fname lnum_from cnum_from lnum_to cnum_to contents ppf

let format_pos prefix hint p1 p2 contents ppf =
  let open Lexing in
  if p1.pos_lnum == p2.pos_lnum then
    format_code_single prefix hint p1.pos_fname p1.pos_lnum (p1.pos_cnum - p1.pos_bol) (p2.pos_cnum - p2.pos_bol)
      contents ppf
  else
    format_code_double prefix p1.pos_fname p1.pos_lnum (p1.pos_cnum - p1.pos_bol) p2.pos_lnum (p2.pos_cnum - p2.pos_bol)
      contents ppf

let rec format_loc prefix hint l contents =
  match l with
  | Parse_ast.Unknown -> contents
  | Parse_ast.Range (p1, p2) -> format_pos prefix hint p1 p2 contents
  | Parse_ast.Unique (_, l) -> format_loc prefix hint l contents
  | Parse_ast.Hint (hint', l1, l2) ->
      fun ppf ->
        format_loc prefix (Some hint') l1 (fun _ -> ()) { ppf with loc_color = Util.green };
        format_loc prefix hint l2 contents ppf
  | Parse_ast.Generated l ->
      fun ppf ->
        format_endline "Code generated nearby:" ppf;
        format_loc prefix hint l contents ppf

type severity = Sev_warn | Sev_error

type message =
  | Location of string * string option * Parse_ast.l * message
  | Line of string
  | List of (string * message) list
  | Seq of message list
  | Severity of severity * message

let bullet = Util.(clear (blue "*"))

let rec format_message msg ppf =
  match msg with
  | Location (prefix, hint, l, msg) -> format_loc prefix hint l (format_message msg) ppf
  | Line str -> format_endline str ppf
  | Seq messages -> List.iter (fun msg -> format_message msg ppf) messages
  | List list ->
      let format_list_item ppf (header, msg) =
        format_endline (Util.(clear (blue "*")) ^ " " ^ header) ppf;
        format_message msg { ppf with indent = ppf.indent ^ "  " }
      in
      List.iter (format_list_item ppf) list
  | Severity (Sev_error, msg) -> format_message msg { ppf with loc_color = Util.red }
  | Severity (Sev_warn, msg) -> format_message msg { ppf with loc_color = Util.yellow }
OCaml

Innovation. Community. Security.