blob: c4629a78a5af1eec3a4fc6d83b086b76e5e243ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
(**************************************************************************)
(* *)
(* OCaml *)
(* *)
(* Xavier Leroy and Damien Doligez, projet Cambium, INRIA Paris *)
(* Sadiq Jaffer, OCaml Labs Consultancy Ltd *)
(* Stephen Dolan and Mark Shinwell, Jane Street Europe *)
(* *)
(* Copyright 2021 Institut National de Recherche en Informatique et *)
(* en Automatique. *)
(* Copyright 2021 OCaml Labs Consultancy Ltd *)
(* Copyright 2021 Jane Street Group LLC *)
(* *)
(* 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. *)
(* *)
(**************************************************************************)
(** Analyses related to the insertion of [Ipoll] operations. *)
val instrument_fundecl : future_funcnames:Misc.Stdlib.String.Set.t
-> Mach.fundecl -> Mach.fundecl
val requires_prologue_poll : future_funcnames:Misc.Stdlib.String.Set.t
-> fun_name:string -> Mach.instruction -> bool
|