aboutsummaryrefslogtreecommitdiffstats
path: root/debug/Debug.mli
diff options
context:
space:
mode:
authorBernhard Schommer <bernhardschommer@gmail.com>2015-10-02 17:10:48 +0200
committerBernhard Schommer <bernhardschommer@gmail.com>2015-10-02 17:10:48 +0200
commitb511f66bee59d2792427322b7cbaa47c2590358a (patch)
tree92908b19153a10816810012002727899901ef3f1 /debug/Debug.mli
parente005c477da2f9ac9b9490cc30e59412cc626b54d (diff)
parent2bfa77d9eb3940b9b46865f7ebe760365164d312 (diff)
downloadcompcert-b511f66bee59d2792427322b7cbaa47c2590358a.tar.gz
compcert-b511f66bee59d2792427322b7cbaa47c2590358a.zip
Merge branch 'gnu-debug'
Conflicts: debug/DebugInformation.ml
Diffstat (limited to 'debug/Debug.mli')
-rw-r--r--debug/Debug.mli8
1 files changed, 6 insertions, 2 deletions
diff --git a/debug/Debug.mli b/debug/Debug.mli
index e9b566a5..98a13b30 100644
--- a/debug/Debug.mli
+++ b/debug/Debug.mli
@@ -43,11 +43,13 @@ type implem =
mutable function_end: atom -> positive -> unit;
mutable add_label: atom -> positive -> int -> unit;
mutable atom_parameter: ident -> ident -> atom -> unit;
- mutable add_compilation_section_start: string -> (int * int * int * string) -> unit;
+ mutable add_compilation_section_start: string -> int -> unit;
+ mutable add_compilation_section_end: string -> int -> unit;
mutable compute_file_enum: (string -> int) -> (string-> int) -> (unit -> unit) -> unit;
mutable exists_section: string -> bool;
mutable remove_unused: ident -> unit;
mutable variable_printed: string -> unit;
+ mutable add_diab_info: string -> (int * int * string) -> unit;
}
val implem: implem
@@ -75,8 +77,10 @@ val function_end: atom -> positive -> unit
val add_label: atom -> positive -> int -> unit
val generate_debug_info: (atom -> string) -> string -> debug_entries option
val atom_parameter: ident -> ident -> atom -> unit
-val add_compilation_section_start: string -> (int * int * int * string) -> unit
+val add_compilation_section_start: string -> int -> unit
+val add_compilation_section_end: string -> int -> unit
val compute_file_enum: (string -> int) -> (string-> int) -> (unit -> unit) -> unit
val exists_section: string -> bool
val remove_unused: ident -> unit
val variable_printed: string -> unit
+val add_diab_info: string -> (int * int * string) -> unit