-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Optimise "include struct ... end" in more cases (ocaml/ocaml#11134)
- Loading branch information
Showing
3 changed files
with
69 additions
and
5 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
49 changes: 49 additions & 0 deletions
49
testsuite/tests/typing-modules/struct_include_optimisation.ml
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,49 @@ | ||
(* TEST | ||
* native *) | ||
type alloc_count = { mutable total: float } | ||
let allocs = Sys.opaque_identity { total = 0. } | ||
let[@inline never] set_allocs () = | ||
allocs.total <- Gc.minor_words () | ||
|
||
let[@inline never] count txt = | ||
let now = int_of_float (Gc.minor_words () -. allocs.total) in | ||
Printf.printf "%20s: %d\n" txt now; | ||
set_allocs () | ||
|
||
let v = Sys.opaque_identity (ref 0) | ||
|
||
let next () = | ||
let r = !v in incr v; r | ||
|
||
let () = set_allocs () | ||
|
||
include struct | ||
let x = next () | ||
let y = next () | ||
end | ||
|
||
let () = count "no signature" | ||
|
||
include (struct | ||
let a = next () | ||
let b = next () | ||
end : sig val a : int val b : int end) | ||
|
||
let () = count "trivial coercion" | ||
|
||
include (struct | ||
let c = next () | ||
let d = next () | ||
end : sig val c : int end) | ||
|
||
let () = count "prefix coercion" | ||
|
||
include (struct | ||
let c = next () | ||
let d = next () | ||
end : sig val d : int end) | ||
|
||
let () = count "reordering coercion" | ||
|
||
let () = | ||
Printf.printf "%20s: %d%d%d%d%d%d\n" "outputs" x y a b c d |
5 changes: 5 additions & 0 deletions
5
testsuite/tests/typing-modules/struct_include_optimisation.reference
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,5 @@ | ||
no signature: 0 | ||
trivial coercion: 0 | ||
prefix coercion: 0 | ||
reordering coercion: 0 | ||
outputs: 012347 |