aboutsummaryrefslogtreecommitdiffstats
path: root/driver
diff options
context:
space:
mode:
Diffstat (limited to 'driver')
-rw-r--r--driver/Clflags.ml1
-rw-r--r--driver/Driver.ml18
2 files changed, 17 insertions, 2 deletions
diff --git a/driver/Clflags.ml b/driver/Clflags.ml
index 8899c2b0..d9c21a9c 100644
--- a/driver/Clflags.ml
+++ b/driver/Clflags.ml
@@ -59,3 +59,4 @@ let option_small_data =
then 8 else 0)
let option_small_const = ref (!option_small_data)
let option_timings = ref false
+let option_rename_static = ref false
diff --git a/driver/Driver.ml b/driver/Driver.ml
index 480cf665..352483bf 100644
--- a/driver/Driver.ml
+++ b/driver/Driver.ml
@@ -155,6 +155,15 @@ let dump_asm asm destfile =
output_value oc C2C.decl_atom;
close_out oc
+let jdump_magic_number = "CompCertJDUMP" ^ Configuration.version
+
+let dump_jasm asm destfile =
+ let oc = open_out_bin destfile in
+ fprintf oc "{\n\"Version\":\"%s\",\n\"Asm Ast\":%a}"
+ jdump_magic_number AsmToJSON.p_program asm;
+ close_out oc
+
+
(* From CompCert C AST to asm *)
let compile_c_ast sourcename csyntax ofile debug =
@@ -176,9 +185,12 @@ let compile_c_ast sourcename csyntax ofile debug =
| Errors.Error msg ->
print_error stderr msg;
exit 2 in
- (* Dump Asm in binary format *)
+ (* Dump Asm in binary and JSON format *)
if !option_sdump then
- dump_asm asm (output_filename sourcename ".c" ".sdump");
+ begin
+ dump_asm asm (output_filename sourcename ".c" ".sdump");
+ dump_jasm asm (output_filename sourcename ".c" ".json")
+ end;
(* Print Asm in text form *)
let oc = open_out ofile in
PrintAsm.print_program oc asm debug;
@@ -423,6 +435,7 @@ Language support options (use -fno-<opt> to turn off -f<opt>) :
-fnone Turn off all language support options above
Debugging options:
-g Generate debugging information
+ -frename-static Rename static functions and declarations
Optimization options: (use -fno-<opt> to turn off -f<opt>)
-O Optimize the compiled code [on by default]
-O0 Do not optimize the compiled code
@@ -518,6 +531,7 @@ let cmdline_actions =
Exact "-fnone", Self (fun _ -> unset_all language_support_options);
(* Debugging options *)
Exact "-g", Self (fun s -> option_g := true);
+ Exact "-frename-static", Self (fun s -> option_rename_static:= true);
(* Code generation options -- more below *)
Exact "-O0", Self (fun _ -> unset_all optimization_options);
Exact "-O", Self (fun _ -> set_all optimization_options);