-
Notifications
You must be signed in to change notification settings - Fork 191
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Benchmarks: fix extra bc exe for size report
- Loading branch information
Showing
5 changed files
with
78 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
(**************************************************************************) | ||
(* *) | ||
(* OCaml *) | ||
(* *) | ||
(* Xavier Leroy, projet Gallium, INRIA Paris *) | ||
(* *) | ||
(* Copyright 2015 Institut National de Recherche en Informatique et *) | ||
(* en Automatique. *) | ||
(* *) | ||
(* All rights reserved. This file is distributed under the terms of *) | ||
(* the GNU Lesser General Public License version 2.1, with the *) | ||
(* special exception on linking described in the file LICENSE. *) | ||
(* *) | ||
(**************************************************************************) | ||
|
||
(* Copy a bytecode executable, removing debugging information | ||
and #! header from the copy. | ||
Usage: stripdebug <source file> <dest file> | ||
*) | ||
|
||
open Printf | ||
open Misc | ||
|
||
let stripdebug infile outfile = | ||
let ic = open_in_bin infile in | ||
Bytesections.read_toc ic; | ||
let toc = Bytesections.toc () in | ||
let pos_first_section = Bytesections.pos_first_section ic in | ||
let oc = | ||
open_out_gen [ Open_wronly; Open_creat; Open_trunc; Open_binary ] 0o777 outfile | ||
in | ||
(* Skip the #! header, going straight to the first section. *) | ||
seek_in ic pos_first_section; | ||
(* Copy each section except DBUG *) | ||
Bytesections.init_record oc; | ||
List.iter | ||
(fun (name, len) -> | ||
if name = "DBUG" | ||
then seek_in ic (pos_in ic + len) | ||
else ( | ||
copy_file_chunk ic oc len; | ||
Bytesections.record oc name)) | ||
toc; | ||
(* Rewrite the toc and trailer *) | ||
Bytesections.write_toc_and_trailer oc; | ||
(* Done *) | ||
close_in ic; | ||
close_out oc | ||
|
||
let _ = | ||
if Array.length Sys.argv = 3 | ||
then stripdebug Sys.argv.(1) Sys.argv.(2) | ||
else ( | ||
eprintf "Usage: stripdebug <source file> <destination file>\n"; | ||
exit 2) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters