summaryrefslogtreecommitdiff
path: root/compiler/Errors.ml
blob: 4c51720ff3f947855173a8b1864a3976c71aa4a1 (plain)
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
let meta_to_string (span : Meta.span ) = 
  let file = match span.file with Virtual s | Local s -> s in
  let loc_to_string (l : Meta.loc) : string =
    string_of_int l.line ^ ":" ^ string_of_int l.col
  in
    "Source: '" ^ file ^ "', lines " ^ loc_to_string span.beg_loc ^ "-"
    ^ loc_to_string span.end_loc

let format_error_message (meta : Meta.meta) msg =
  msg ^ ":" ^ meta_to_string meta.span

exception CFailure of string


let error_list : (Meta.meta option * string) list ref = ref []
let save_error (meta : Meta.meta option) (msg : string) = error_list := (meta, msg)::(!error_list)

let craise (meta : Meta.meta) (msg : string) =
  if !Config.fail_hard then
    raise (Failure (format_error_message meta msg))
  else
    let () = save_error (Some meta) msg in  
    raise (CFailure msg)

let cassert (b : bool) (meta : Meta.meta) (msg : string) =
  if b then
    craise meta msg

let craise_opt_meta (meta : Meta.meta option) (msg : string) =
  match meta with 
  | Some m -> craise m msg
  | None -> 
      let () = save_error (None) msg in  
      raise (CFailure msg)

let cassert_opt_meta (b : bool) (meta : Meta.meta option) (msg : string) =
  match meta with 
  | Some m -> cassert b m msg
  | None -> 
    if b then 
      let () = save_error (None) msg in  
      raise (CFailure msg)

let sanity_check b meta = cassert b meta "Internal error, please file an issue"
let sanity_check_opt_meta b meta = cassert_opt_meta b meta "Internal error, please file an issue"

let exec_raise = craise
let exec_assert = cassert