diff options
| author | Maxime Dénès | 2015-06-23 18:02:30 +0200 |
|---|---|---|
| committer | Maxime Dénès | 2015-06-23 18:04:11 +0200 |
| commit | 5f7adad4af7d526aed3a97f8b24b2d9811f9fea7 (patch) | |
| tree | d64fd513d3233715ad4d9c14b6e65672e60e1030 /lib/flags.mli | |
| parent | b28bafb1d2003558c916c75d36784f94e9aa1684 (diff) | |
Add a Set Dump Bytecode command for debugging purposes.
Prints the VM bytecode produced by compilation of a constant or a call to
vm_compute.
Diffstat (limited to 'lib/flags.mli')
| -rw-r--r-- | lib/flags.mli | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/lib/flags.mli b/lib/flags.mli index 544e2a72ae..8e37136560 100644 --- a/lib/flags.mli +++ b/lib/flags.mli @@ -130,12 +130,17 @@ val set_inline_level : int -> unit val get_inline_level : unit -> int val default_inline_level : int -(* Native code compilation for conversion and normalization *) +(** Native code compilation for conversion and normalization *) val native_compiler : bool ref -(* Print the mod uid associated to a vo file by the native compiler *) +(** Print the mod uid associated to a vo file by the native compiler *) val print_mod_uid : bool ref val tactic_context_compat : bool ref (** Set to [true] to trigger the compatibility bugged context matching (old context vs. appcontext) is set. *) + +(** Dump the bytecode after compilation (for debugging purposes) *) +val dump_bytecode : bool ref +val set_dump_bytecode : bool -> unit +val get_dump_bytecode : unit -> bool |
