aboutsummaryrefslogtreecommitdiffstats
path: root/debug/DebugInit.ml
blob: 17a90536ac7c2bb5b62e3440186fcff759887f1e (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
(* *********************************************************************)
(*                                                                     *)
(*              The Compcert verified compiler                         *)
(*                                                                     *)
(*          Bernhard Schommer, AbsInt Angewandte Informatik GmbH       *)
(*                                                                     *)
(*  AbsInt Angewandte Informatik GmbH. All rights reserved. This file  *)
(*  is distributed under the terms of the INRIA Non-Commercial         *)
(*  License Agreement.                                                 *)
(*                                                                     *)
(* *********************************************************************)

open AST
open BinNums
open C
open Camlcoq
open Dwarfgen
open DwarfTypes
open Debug

let default_debug =
  {
   init = DebugInformation.init;
   atom_global = DebugInformation.atom_global;
   set_composite_size = DebugInformation.set_composite_size;
   set_member_offset = DebugInformation.set_member_offset;
   set_bitfield_offset = DebugInformation.set_bitfield_offset;
   insert_global_declaration = DebugInformation.insert_global_declaration;
   add_fun_addr = (fun _ _ _ -> ());
   generate_debug_info = (fun _ _  -> None);
   all_files_iter = (fun f -> DebugInformation.StringSet.iter f !DebugInformation.all_files);
   insert_local_declaration = DebugInformation.insert_local_declaration;
   atom_local_variable = DebugInformation.atom_local_variable;
   enter_scope = DebugInformation.enter_scope;
   enter_function_scope = DebugInformation.enter_function_scope;
   add_lvar_scope = DebugInformation.add_lvar_scope;
   open_scope = DebugInformation.open_scope;
   close_scope = DebugInformation.close_scope;
   start_live_range = DebugInformation.start_live_range;
   end_live_range = DebugInformation.end_live_range;
   stack_variable = DebugInformation.stack_variable;
   add_label = DebugInformation.add_label;
   atom_parameter = DebugInformation.atom_parameter;
   compute_diab_file_enum = DebugInformation.compute_diab_file_enum;
   compute_gnu_file_enum = DebugInformation.compute_gnu_file_enum;
   exists_section = DebugInformation.exists_section;
   remove_unused = DebugInformation.remove_unused;
   remove_unused_function = DebugInformation.remove_unused_function;
   variable_printed = DebugInformation.variable_printed;
   add_diab_info = (fun _ _ _ _ -> ());
 }

let init_debug () =
  implem :=
  if Configuration.system = "diab" then
    let gen = (fun a b -> Some (Dwarfgen.gen_diab_debug_info a b)) in
    Clflags.option_gdwarf := 2; (* Dwarf 2 is the only supported target *)
    {default_debug with generate_debug_info = gen;
     add_diab_info = DebugInformation.add_diab_info;
     add_fun_addr = DebugInformation.diab_add_fun_addr;}
  else
    {default_debug with generate_debug_info = (fun a b -> Some (Dwarfgen.gen_gnu_debug_info a b));
     add_fun_addr = DebugInformation.gnu_add_fun_addr}

let init_none () =
  implem := default_implem

let init () =
  if !Clflags.option_g && Configuration.advanced_debug then
    init_debug ()
  else
    init_none ()