1995-08-09 08:06:35 -07:00
|
|
|
(***********************************************************************)
|
|
|
|
(* *)
|
1996-04-30 07:53:58 -07:00
|
|
|
(* Objective Caml *)
|
1995-08-09 08:06:35 -07:00
|
|
|
(* *)
|
|
|
|
(* Xavier Leroy, projet Cristal, INRIA Rocquencourt *)
|
|
|
|
(* *)
|
1996-04-30 07:53:58 -07:00
|
|
|
(* Copyright 1996 Institut National de Recherche en Informatique et *)
|
1999-11-17 10:59:06 -08:00
|
|
|
(* en Automatique. All rights reserved. This file is distributed *)
|
|
|
|
(* under the terms of the Q Public License version 1.0. *)
|
1995-08-09 08:06:35 -07:00
|
|
|
(* *)
|
|
|
|
(***********************************************************************)
|
|
|
|
|
|
|
|
(* $Id$ *)
|
|
|
|
|
1995-07-02 09:41:48 -07:00
|
|
|
(* Translation from closed lambda to C-- *)
|
|
|
|
|
|
|
|
open Misc
|
|
|
|
open Arch
|
|
|
|
open Asttypes
|
1995-07-27 10:38:53 -07:00
|
|
|
open Primitive
|
1996-09-23 04:29:48 -07:00
|
|
|
open Types
|
1995-07-02 09:41:48 -07:00
|
|
|
open Lambda
|
|
|
|
open Clambda
|
|
|
|
open Cmm
|
|
|
|
|
1995-07-10 02:48:27 -07:00
|
|
|
(* Local binding of complex expressions *)
|
|
|
|
|
|
|
|
let bind name arg fn =
|
|
|
|
match arg with
|
2000-03-17 05:24:17 -08:00
|
|
|
Cvar _ | Cconst_int _ | Cconst_natint _ | Cconst_symbol _
|
|
|
|
| Cconst_pointer _ | Cconst_natpointer _ -> fn arg
|
1996-04-22 04:15:41 -07:00
|
|
|
| _ -> let id = Ident.create name in Clet(id, arg, fn (Cvar id))
|
1995-07-10 02:48:27 -07:00
|
|
|
|
1999-11-09 06:41:24 -08:00
|
|
|
let bind_nonvar name arg fn =
|
|
|
|
match arg with
|
2000-03-17 05:24:17 -08:00
|
|
|
Cconst_int _ | Cconst_natint _ | Cconst_symbol _
|
|
|
|
| Cconst_pointer _ | Cconst_natpointer _ -> fn arg
|
1999-11-09 06:41:24 -08:00
|
|
|
| _ -> let id = Ident.create name in Clet(id, arg, fn (Cvar id))
|
|
|
|
|
2002-01-20 14:20:58 -08:00
|
|
|
(* Block headers. Meaning of the tag field: see stdlib/obj.ml *)
|
|
|
|
|
|
|
|
let float_tag = Cconst_int Obj.double_tag
|
|
|
|
let floatarray_tag = Cconst_int Obj.double_array_tag
|
1995-07-27 10:38:53 -07:00
|
|
|
|
1997-03-04 02:19:51 -08:00
|
|
|
let block_header tag sz =
|
2000-02-11 07:09:27 -08:00
|
|
|
Nativeint.add (Nativeint.shift_left (Nativeint.of_int sz) 10)
|
|
|
|
(Nativeint.of_int tag)
|
2002-01-20 14:20:58 -08:00
|
|
|
let closure_header sz = block_header Obj.closure_tag sz
|
|
|
|
let infix_header ofs = block_header Obj.infix_tag ofs
|
|
|
|
let float_header = block_header Obj.double_tag (size_float / size_addr)
|
|
|
|
let floatarray_header len =
|
|
|
|
block_header Obj.double_array_tag (len * size_float / size_addr)
|
|
|
|
let string_header len =
|
|
|
|
block_header Obj.string_tag ((len + size_addr) / size_addr)
|
|
|
|
let boxedint_header = block_header Obj.custom_tag 2
|
1995-07-10 02:48:27 -07:00
|
|
|
|
1997-03-04 02:19:51 -08:00
|
|
|
let alloc_block_header tag sz = Cconst_natint(block_header tag sz)
|
|
|
|
let alloc_float_header = Cconst_natint(float_header)
|
|
|
|
let alloc_floatarray_header len = Cconst_natint(floatarray_header len)
|
|
|
|
let alloc_closure_header sz = Cconst_natint(closure_header sz)
|
|
|
|
let alloc_infix_header ofs = Cconst_natint(infix_header ofs)
|
2000-02-21 10:14:56 -08:00
|
|
|
let alloc_boxedint_header = Cconst_natint(boxedint_header)
|
1995-07-02 09:41:48 -07:00
|
|
|
|
|
|
|
(* Integers *)
|
|
|
|
|
1997-03-04 02:19:51 -08:00
|
|
|
let max_repr_int = max_int asr 1
|
|
|
|
let min_repr_int = min_int asr 1
|
|
|
|
|
1995-10-26 09:23:25 -07:00
|
|
|
let int_const n =
|
2000-02-28 01:03:00 -08:00
|
|
|
if n <= max_repr_int && n >= min_repr_int
|
1995-10-26 09:23:25 -07:00
|
|
|
then Cconst_int((n lsl 1) + 1)
|
2000-02-11 07:09:27 -08:00
|
|
|
else Cconst_natint(Nativeint.add
|
|
|
|
(Nativeint.shift_left (Nativeint.of_int n) 1)
|
|
|
|
Nativeint.one)
|
1995-07-02 09:41:48 -07:00
|
|
|
|
|
|
|
let add_const c n =
|
|
|
|
if n = 0 then c else Cop(Caddi, [c; Cconst_int n])
|
|
|
|
|
|
|
|
let incr_int = function
|
1995-10-26 09:23:25 -07:00
|
|
|
Cconst_int n when n < max_int -> Cconst_int(n+1)
|
1999-01-29 00:50:10 -08:00
|
|
|
| Cop(Caddi, [c; Cconst_int n]) when n < max_int -> add_const c (n + 1)
|
1995-07-02 09:41:48 -07:00
|
|
|
| c -> add_const c 1
|
|
|
|
|
|
|
|
let decr_int = function
|
1995-10-26 09:23:25 -07:00
|
|
|
Cconst_int n when n > min_int -> Cconst_int(n-1)
|
1999-01-29 00:50:10 -08:00
|
|
|
| Cop(Caddi, [c; Cconst_int n]) when n > min_int -> add_const c (n - 1)
|
1995-07-02 09:41:48 -07:00
|
|
|
| c -> add_const c (-1)
|
|
|
|
|
|
|
|
let add_int c1 c2 =
|
|
|
|
match (c1, c2) with
|
|
|
|
(Cop(Caddi, [c1; Cconst_int n1]),
|
1995-10-26 09:23:25 -07:00
|
|
|
Cop(Caddi, [c2; Cconst_int n2])) when no_overflow_add n1 n2 ->
|
1995-07-02 09:41:48 -07:00
|
|
|
add_const (Cop(Caddi, [c1; c2])) (n1 + n2)
|
|
|
|
| (Cop(Caddi, [c1; Cconst_int n1]), c2) ->
|
|
|
|
add_const (Cop(Caddi, [c1; c2])) n1
|
|
|
|
| (c1, Cop(Caddi, [c2; Cconst_int n2])) ->
|
|
|
|
add_const (Cop(Caddi, [c1; c2])) n2
|
1998-11-11 01:38:40 -08:00
|
|
|
| (Cconst_int _, _) ->
|
|
|
|
Cop(Caddi, [c2; c1])
|
|
|
|
| (_, _) ->
|
1995-07-02 09:41:48 -07:00
|
|
|
Cop(Caddi, [c1; c2])
|
|
|
|
|
|
|
|
let sub_int c1 c2 =
|
|
|
|
match (c1, c2) with
|
|
|
|
(Cop(Caddi, [c1; Cconst_int n1]),
|
1995-10-26 09:23:25 -07:00
|
|
|
Cop(Caddi, [c2; Cconst_int n2])) when no_overflow_sub n1 n2 ->
|
1995-07-02 09:41:48 -07:00
|
|
|
add_const (Cop(Csubi, [c1; c2])) (n1 - n2)
|
|
|
|
| (Cop(Caddi, [c1; Cconst_int n1]), c2) ->
|
|
|
|
add_const (Cop(Csubi, [c1; c2])) n1
|
1995-10-26 09:23:25 -07:00
|
|
|
| (c1, Cop(Caddi, [c2; Cconst_int n2])) when n2 <> min_int ->
|
1995-07-02 09:41:48 -07:00
|
|
|
add_const (Cop(Csubi, [c1; c2])) (-n2)
|
1995-10-26 09:23:25 -07:00
|
|
|
| (c1, Cconst_int n) when n <> min_int ->
|
1995-07-02 09:41:48 -07:00
|
|
|
add_const c1 (-n)
|
|
|
|
| (c1, c2) ->
|
|
|
|
Cop(Csubi, [c1; c2])
|
|
|
|
|
2000-02-28 07:45:50 -08:00
|
|
|
let mul_int c1 c2 =
|
|
|
|
match (c1, c2) with
|
|
|
|
(Cconst_int 0, _) -> c1
|
|
|
|
| (Cconst_int 1, _) -> c2
|
|
|
|
| (_, Cconst_int 0) -> c2
|
|
|
|
| (_, Cconst_int 1) -> c1
|
|
|
|
| (_, _) -> Cop(Cmuli, [c1; c2])
|
|
|
|
|
1995-07-02 09:41:48 -07:00
|
|
|
let tag_int = function
|
1995-10-26 09:23:25 -07:00
|
|
|
Cconst_int n -> int_const n
|
1995-07-02 09:41:48 -07:00
|
|
|
| c -> Cop(Caddi, [Cop(Clsl, [c; Cconst_int 1]); Cconst_int 1])
|
|
|
|
|
2001-02-05 00:48:13 -08:00
|
|
|
let force_tag_int = function
|
|
|
|
Cconst_int n -> int_const n
|
|
|
|
| c -> Cop(Cor, [Cop(Clsl, [c; Cconst_int 1]); Cconst_int 1])
|
|
|
|
|
1995-07-02 09:41:48 -07:00
|
|
|
let untag_int = function
|
|
|
|
Cconst_int n -> Cconst_int(n asr 1)
|
|
|
|
| Cop(Caddi, [Cop(Clsl, [c; Cconst_int 1]); Cconst_int 1]) -> c
|
1999-02-01 01:28:52 -08:00
|
|
|
| Cop(Cor, [Cop(Casr, [c; Cconst_int n]); Cconst_int 1])
|
|
|
|
when n > 0 && n < size_int * 8 ->
|
1999-01-29 00:50:10 -08:00
|
|
|
Cop(Casr, [c; Cconst_int (n+1)])
|
1999-02-01 01:28:52 -08:00
|
|
|
| Cop(Cor, [Cop(Clsr, [c; Cconst_int n]); Cconst_int 1])
|
|
|
|
when n > 0 && n < size_int * 8 ->
|
|
|
|
Cop(Clsr, [c; Cconst_int (n+1)])
|
1999-01-29 00:50:10 -08:00
|
|
|
| Cop(Cor, [c; Cconst_int 1]) -> Cop(Casr, [c; Cconst_int 1])
|
1995-07-02 09:41:48 -07:00
|
|
|
| c -> Cop(Casr, [c; Cconst_int 1])
|
|
|
|
|
1999-01-29 00:50:10 -08:00
|
|
|
let lsl_int c1 c2 =
|
|
|
|
match (c1, c2) with
|
|
|
|
(Cop(Clsl, [c; Cconst_int n1]), Cconst_int n2)
|
|
|
|
when n1 > 0 && n2 > 0 && n1 + n2 < size_int * 8 ->
|
|
|
|
Cop(Clsl, [c; Cconst_int (n1 + n2)])
|
|
|
|
| (_, _) ->
|
|
|
|
Cop(Clsl, [c1; c2])
|
|
|
|
|
2000-02-21 10:14:56 -08:00
|
|
|
let ignore_low_bit_int = function
|
|
|
|
Cop(Caddi, [(Cop(Clsl, [_; Cconst_int 1]) as c); Cconst_int 1]) -> c
|
|
|
|
| Cop(Cor, [c; Cconst_int 1]) -> c
|
|
|
|
| c -> c
|
|
|
|
|
1995-07-02 09:41:48 -07:00
|
|
|
(* Bool *)
|
|
|
|
|
|
|
|
let test_bool = function
|
|
|
|
Cop(Caddi, [Cop(Clsl, [c; Cconst_int 1]); Cconst_int 1]) -> c
|
|
|
|
| Cop(Clsl, [c; Cconst_int 1]) -> c
|
|
|
|
| c -> Cop(Ccmpi Cne, [c; Cconst_int 1])
|
|
|
|
|
|
|
|
(* Float *)
|
|
|
|
|
1997-03-04 02:19:51 -08:00
|
|
|
let box_float c = Cop(Calloc, [alloc_float_header; c])
|
1995-07-02 09:41:48 -07:00
|
|
|
|
|
|
|
let unbox_float = function
|
|
|
|
Cop(Calloc, [header; c]) -> c
|
2000-03-10 06:31:06 -08:00
|
|
|
| c -> Cop(Cload Double_u, [c])
|
1995-07-02 09:41:48 -07:00
|
|
|
|
2002-02-10 09:01:27 -08:00
|
|
|
(* Complex *)
|
|
|
|
|
|
|
|
let box_complex c_re c_im =
|
|
|
|
Cop(Calloc, [alloc_floatarray_header 2; c_re; c_im])
|
|
|
|
|
|
|
|
let complex_re c = Cop(Cload Double_u, [c])
|
|
|
|
let complex_im c = Cop(Cload Double_u,
|
|
|
|
[Cop(Cadda, [c; Cconst_int size_float])])
|
|
|
|
|
1995-07-02 09:41:48 -07:00
|
|
|
(* Unit *)
|
|
|
|
|
2000-03-17 05:24:17 -08:00
|
|
|
let return_unit c = Csequence(c, Cconst_pointer 1)
|
1995-07-02 09:41:48 -07:00
|
|
|
|
|
|
|
let rec remove_unit = function
|
2000-03-17 05:24:17 -08:00
|
|
|
Cconst_pointer 1 -> Ctuple []
|
|
|
|
| Csequence(c, Cconst_pointer 1) -> c
|
1995-07-02 09:41:48 -07:00
|
|
|
| Csequence(c1, c2) ->
|
|
|
|
Csequence(c1, remove_unit c2)
|
|
|
|
| Cifthenelse(cond, ifso, ifnot) ->
|
|
|
|
Cifthenelse(cond, remove_unit ifso, remove_unit ifnot)
|
|
|
|
| Cswitch(sel, index, cases) ->
|
|
|
|
Cswitch(sel, index, Array.map remove_unit cases)
|
2000-10-02 07:08:30 -07:00
|
|
|
| Ccatch(io, ids, body, handler) ->
|
|
|
|
Ccatch(io, ids, remove_unit body, remove_unit handler)
|
1995-07-02 09:41:48 -07:00
|
|
|
| Ctrywith(body, exn, handler) ->
|
|
|
|
Ctrywith(remove_unit body, exn, remove_unit handler)
|
1995-11-25 07:38:43 -08:00
|
|
|
| Clet(id, c1, c2) ->
|
|
|
|
Clet(id, c1, remove_unit c2)
|
1996-07-25 06:15:16 -07:00
|
|
|
| Cop(Capply mty, args) ->
|
1998-04-06 02:07:57 -07:00
|
|
|
Cop(Capply typ_void, args)
|
1996-07-25 06:15:16 -07:00
|
|
|
| Cop(Cextcall(proc, mty, alloc), args) ->
|
1998-04-06 02:07:57 -07:00
|
|
|
Cop(Cextcall(proc, typ_void, alloc), args)
|
2000-10-02 07:08:30 -07:00
|
|
|
| Cexit (_,_) as c -> c
|
1996-07-25 06:15:16 -07:00
|
|
|
| Ctuple [] as c -> c
|
|
|
|
| c -> Csequence(c, Ctuple [])
|
1995-07-02 09:41:48 -07:00
|
|
|
|
|
|
|
(* Access to block fields *)
|
|
|
|
|
|
|
|
let field_address ptr n =
|
|
|
|
if n = 0
|
|
|
|
then ptr
|
|
|
|
else Cop(Cadda, [ptr; Cconst_int(n * size_addr)])
|
|
|
|
|
|
|
|
let get_field ptr n =
|
2000-02-04 04:43:18 -08:00
|
|
|
Cop(Cload Word, [field_address ptr n])
|
1995-07-02 09:41:48 -07:00
|
|
|
|
|
|
|
let set_field ptr n newval =
|
2000-02-04 04:43:18 -08:00
|
|
|
Cop(Cstore Word, [field_address ptr n; newval])
|
1995-07-02 09:41:48 -07:00
|
|
|
|
1995-07-27 10:38:53 -07:00
|
|
|
let header ptr =
|
2000-02-04 04:43:18 -08:00
|
|
|
Cop(Cload Word, [Cop(Cadda, [ptr; Cconst_int(-size_int)])])
|
1995-07-27 10:38:53 -07:00
|
|
|
|
1995-07-02 09:41:48 -07:00
|
|
|
let tag_offset =
|
1995-07-25 04:37:38 -07:00
|
|
|
if big_endian then -1 else -size_int
|
1995-07-02 09:41:48 -07:00
|
|
|
|
|
|
|
let get_tag ptr =
|
1995-07-25 04:37:38 -07:00
|
|
|
if Proc.word_addressed then (* If byte loads are slow *)
|
1995-07-27 10:38:53 -07:00
|
|
|
Cop(Cand, [header ptr; Cconst_int 255])
|
1995-07-25 04:37:38 -07:00
|
|
|
else (* If byte loads are efficient *)
|
2000-02-04 04:43:18 -08:00
|
|
|
Cop(Cload Byte_unsigned,
|
1995-07-25 04:37:38 -07:00
|
|
|
[Cop(Cadda, [ptr; Cconst_int(tag_offset)])])
|
1995-07-02 09:41:48 -07:00
|
|
|
|
|
|
|
(* Array indexing *)
|
|
|
|
|
|
|
|
let log2_size_addr = Misc.log2 size_addr
|
1995-07-27 10:38:53 -07:00
|
|
|
let log2_size_float = Misc.log2 size_float
|
|
|
|
|
|
|
|
let wordsize_shift = 9
|
|
|
|
let numfloat_shift = 9 + log2_size_float - log2_size_addr
|
|
|
|
|
1998-04-06 02:07:57 -07:00
|
|
|
let is_addr_array_hdr hdr =
|
1995-09-13 05:27:41 -07:00
|
|
|
Cop(Ccmpi Cne, [Cop(Cand, [hdr; Cconst_int 255]); floatarray_tag])
|
1995-07-27 10:38:53 -07:00
|
|
|
|
1998-04-06 02:07:57 -07:00
|
|
|
let is_addr_array_ptr ptr =
|
|
|
|
Cop(Ccmpi Cne, [get_tag ptr; floatarray_tag])
|
|
|
|
|
1995-07-27 10:38:53 -07:00
|
|
|
let addr_array_length hdr = Cop(Clsr, [hdr; Cconst_int wordsize_shift])
|
|
|
|
let float_array_length hdr = Cop(Clsr, [hdr; Cconst_int numfloat_shift])
|
1995-07-02 09:41:48 -07:00
|
|
|
|
|
|
|
let lsl_const c n =
|
|
|
|
Cop(Clsl, [c; Cconst_int n])
|
|
|
|
|
1995-07-27 10:38:53 -07:00
|
|
|
let array_indexing log2size ptr ofs =
|
1995-07-02 09:41:48 -07:00
|
|
|
match ofs with
|
|
|
|
Cconst_int n ->
|
1995-07-27 10:38:53 -07:00
|
|
|
let i = n asr 1 in
|
|
|
|
if i = 0 then ptr else Cop(Cadda, [ptr; Cconst_int(i lsl log2size)])
|
1995-07-02 09:41:48 -07:00
|
|
|
| Cop(Caddi, [Cop(Clsl, [c; Cconst_int 1]); Cconst_int 1]) ->
|
1995-07-27 10:38:53 -07:00
|
|
|
Cop(Cadda, [ptr; lsl_const c log2size])
|
1995-07-02 09:41:48 -07:00
|
|
|
| Cop(Caddi, [c; Cconst_int n]) ->
|
1995-07-27 10:38:53 -07:00
|
|
|
Cop(Cadda, [Cop(Cadda, [ptr; lsl_const c (log2size - 1)]);
|
1998-04-06 02:07:57 -07:00
|
|
|
Cconst_int((n-1) lsl (log2size - 1))])
|
1995-07-02 09:41:48 -07:00
|
|
|
| _ ->
|
1995-07-27 10:38:53 -07:00
|
|
|
Cop(Cadda, [Cop(Cadda, [ptr; lsl_const ofs (log2size - 1)]);
|
1998-04-06 02:07:57 -07:00
|
|
|
Cconst_int((-1) lsl (log2size - 1))])
|
1995-07-27 10:38:53 -07:00
|
|
|
|
|
|
|
let addr_array_ref arr ofs =
|
2000-02-04 04:43:18 -08:00
|
|
|
Cop(Cload Word, [array_indexing log2_size_addr arr ofs])
|
1995-07-27 10:38:53 -07:00
|
|
|
let unboxed_float_array_ref arr ofs =
|
2000-03-10 06:31:06 -08:00
|
|
|
Cop(Cload Double_u, [array_indexing log2_size_float arr ofs])
|
1995-07-27 10:38:53 -07:00
|
|
|
let float_array_ref arr ofs =
|
|
|
|
box_float(unboxed_float_array_ref arr ofs)
|
|
|
|
|
|
|
|
let addr_array_set arr ofs newval =
|
|
|
|
Cop(Cextcall("modify", typ_void, false),
|
|
|
|
[array_indexing log2_size_addr arr ofs; newval])
|
|
|
|
let int_array_set arr ofs newval =
|
2000-02-04 04:43:18 -08:00
|
|
|
Cop(Cstore Word, [array_indexing log2_size_addr arr ofs; newval])
|
1995-07-27 10:38:53 -07:00
|
|
|
let float_array_set arr ofs newval =
|
2000-03-10 06:31:06 -08:00
|
|
|
Cop(Cstore Double_u, [array_indexing log2_size_float arr ofs; newval])
|
1995-07-02 09:41:48 -07:00
|
|
|
|
1995-07-10 02:48:27 -07:00
|
|
|
(* String length *)
|
|
|
|
|
|
|
|
let string_length exp =
|
|
|
|
bind "str" exp (fun str ->
|
1996-04-22 04:15:41 -07:00
|
|
|
let tmp_var = Ident.create "tmp" in
|
1995-07-10 02:48:27 -07:00
|
|
|
Clet(tmp_var,
|
|
|
|
Cop(Csubi,
|
|
|
|
[Cop(Clsl,
|
1998-04-06 02:07:57 -07:00
|
|
|
[Cop(Clsr, [header str; Cconst_int 10]);
|
|
|
|
Cconst_int log2_size_addr]);
|
1995-07-10 02:48:27 -07:00
|
|
|
Cconst_int 1]),
|
|
|
|
Cop(Csubi,
|
|
|
|
[Cvar tmp_var;
|
2000-02-04 04:43:18 -08:00
|
|
|
Cop(Cload Byte_unsigned,
|
1998-04-06 02:07:57 -07:00
|
|
|
[Cop(Cadda, [str; Cvar tmp_var])])])))
|
1995-07-10 02:48:27 -07:00
|
|
|
|
1996-04-22 04:15:41 -07:00
|
|
|
(* Message sending *)
|
|
|
|
|
|
|
|
let lookup_label obj lab =
|
|
|
|
bind "lab" lab (fun lab ->
|
2000-02-04 04:43:18 -08:00
|
|
|
let table = Cop (Cload Word, [obj]) in
|
1996-04-22 04:15:41 -07:00
|
|
|
let buck_index = Cop(Clsr, [lab; Cconst_int 16]) in
|
2000-02-04 04:43:18 -08:00
|
|
|
let bucket = Cop(Cload Word, [Cop (Cadda, [table; buck_index])]) in
|
1998-04-06 02:07:57 -07:00
|
|
|
let item_index = Cop(Cand, [lab; Cconst_int (255 * size_addr)]) in
|
2000-02-04 04:43:18 -08:00
|
|
|
Cop (Cload Word, [Cop (Cadda, [bucket; item_index])]))
|
1996-04-22 04:15:41 -07:00
|
|
|
|
2003-03-06 03:55:55 -08:00
|
|
|
(* Allocation *)
|
|
|
|
|
|
|
|
let make_alloc_generic set_fn tag wordsize args =
|
|
|
|
if wordsize <= Config.max_young_wosize then
|
|
|
|
Cop(Calloc, Cconst_natint(block_header tag wordsize) :: args)
|
|
|
|
else begin
|
|
|
|
let id = Ident.create "alloc" in
|
|
|
|
let rec fill_fields idx = function
|
|
|
|
[] -> Cvar id
|
|
|
|
| e1::el -> Csequence(set_fn (Cvar id) (Cconst_int idx) e1,
|
|
|
|
fill_fields (idx + 2) el) in
|
|
|
|
Clet(id,
|
|
|
|
Cop(Cextcall("alloc", typ_addr, true),
|
|
|
|
[Cconst_int wordsize; Cconst_int tag]),
|
|
|
|
fill_fields 1 args)
|
|
|
|
end
|
|
|
|
|
|
|
|
let make_alloc tag args =
|
|
|
|
make_alloc_generic addr_array_set tag (List.length args) args
|
|
|
|
let make_float_alloc tag args =
|
|
|
|
make_alloc_generic float_array_set tag
|
|
|
|
(List.length args * size_float / size_addr) args
|
|
|
|
|
1995-07-07 05:07:07 -07:00
|
|
|
(* To compile "let rec" over values *)
|
|
|
|
|
|
|
|
let fundecls_size fundecls =
|
|
|
|
let sz = ref (-1) in
|
|
|
|
List.iter
|
|
|
|
(fun (label, arity, params, body) ->
|
|
|
|
sz := !sz + 1 + (if arity = 1 then 2 else 3))
|
|
|
|
fundecls;
|
|
|
|
!sz
|
1995-07-02 09:41:48 -07:00
|
|
|
|
2002-11-07 09:57:23 -08:00
|
|
|
type rhs_kind =
|
|
|
|
| RHS_block of int
|
|
|
|
| RHS_nonrec
|
|
|
|
;;
|
1998-04-06 02:07:57 -07:00
|
|
|
let rec expr_size = function
|
2002-11-07 09:57:23 -08:00
|
|
|
| Uclosure(fundecls, clos_vars) ->
|
|
|
|
RHS_block (fundecls_size fundecls + List.length clos_vars)
|
1995-07-02 09:41:48 -07:00
|
|
|
| Ulet(id, exp, body) ->
|
1998-04-06 02:07:57 -07:00
|
|
|
expr_size body
|
1997-08-22 01:53:12 -07:00
|
|
|
| Uletrec(bindings, body) ->
|
1998-04-06 02:07:57 -07:00
|
|
|
expr_size body
|
2002-11-07 09:57:23 -08:00
|
|
|
| Uprim(Pmakeblock(tag, mut), args) ->
|
|
|
|
RHS_block (List.length args)
|
|
|
|
| Uprim(Pmakearray(Paddrarray | Pintarray), args) ->
|
|
|
|
RHS_block (List.length args)
|
1998-06-24 12:22:26 -07:00
|
|
|
| Usequence(exp, exp') ->
|
|
|
|
expr_size exp'
|
2002-11-07 09:57:23 -08:00
|
|
|
| _ -> RHS_nonrec
|
1996-06-04 08:12:08 -07:00
|
|
|
|
1995-07-02 09:41:48 -07:00
|
|
|
(* Record application and currying functions *)
|
|
|
|
|
|
|
|
let apply_function n =
|
|
|
|
Compilenv.need_apply_fun n; "caml_apply" ^ string_of_int n
|
|
|
|
let curry_function n =
|
1996-10-22 06:36:12 -07:00
|
|
|
Compilenv.need_curry_fun n;
|
|
|
|
if n >= 0
|
|
|
|
then "caml_curry" ^ string_of_int n
|
|
|
|
else "caml_tuplify" ^ string_of_int (-n)
|
1995-07-02 09:41:48 -07:00
|
|
|
|
|
|
|
(* Comparisons *)
|
|
|
|
|
|
|
|
let transl_comparison = function
|
|
|
|
Lambda.Ceq -> Ceq
|
|
|
|
| Lambda.Cneq -> Cne
|
|
|
|
| Lambda.Cge -> Cge
|
|
|
|
| Lambda.Cgt -> Cgt
|
|
|
|
| Lambda.Cle -> Cle
|
|
|
|
| Lambda.Clt -> Clt
|
|
|
|
|
|
|
|
(* Translate structured constants *)
|
|
|
|
|
|
|
|
let const_label = ref 0
|
|
|
|
|
|
|
|
let new_const_label () =
|
|
|
|
incr const_label;
|
|
|
|
!const_label
|
|
|
|
|
|
|
|
let new_const_symbol () =
|
|
|
|
incr const_label;
|
2002-02-08 08:55:44 -08:00
|
|
|
Compilenv.current_unit_name () ^ "__" ^ string_of_int !const_label
|
1995-07-02 09:41:48 -07:00
|
|
|
|
2001-04-02 05:13:58 -07:00
|
|
|
let structured_constants = ref ([] : (string * structured_constant) list)
|
1995-07-02 09:41:48 -07:00
|
|
|
|
|
|
|
let transl_constant = function
|
|
|
|
Const_base(Const_int n) ->
|
1995-10-26 09:40:23 -07:00
|
|
|
int_const n
|
1995-07-02 09:41:48 -07:00
|
|
|
| Const_base(Const_char c) ->
|
|
|
|
Cconst_int(((Char.code c) lsl 1) + 1)
|
2000-10-02 07:08:30 -07:00
|
|
|
| Const_pointer n ->
|
2000-03-17 05:24:17 -08:00
|
|
|
if n <= max_repr_int && n >= min_repr_int
|
|
|
|
then Cconst_pointer((n lsl 1) + 1)
|
|
|
|
else Cconst_natpointer(Nativeint.add
|
|
|
|
(Nativeint.shift_left (Nativeint.of_int n) 1)
|
|
|
|
Nativeint.one)
|
1995-07-02 09:41:48 -07:00
|
|
|
| cst ->
|
2001-04-02 05:13:58 -07:00
|
|
|
let lbl = new_const_symbol() in
|
|
|
|
structured_constants := (lbl, cst) :: !structured_constants;
|
|
|
|
Cconst_symbol lbl
|
1995-07-02 09:41:48 -07:00
|
|
|
|
1999-01-27 02:52:33 -08:00
|
|
|
(* Translate constant closures *)
|
|
|
|
|
|
|
|
let constant_closures =
|
|
|
|
ref ([] : (string * (string * int * Ident.t list * ulambda) list) list)
|
|
|
|
|
2000-02-21 10:14:56 -08:00
|
|
|
(* Boxed integers *)
|
|
|
|
|
|
|
|
let operations_boxed_int bi =
|
|
|
|
match bi with Pnativeint -> "nativeint_ops"
|
|
|
|
| Pint32 -> "int32_ops"
|
|
|
|
| Pint64 -> "int64_ops"
|
|
|
|
|
|
|
|
let constant_boxed_ints =
|
2000-02-21 11:38:09 -08:00
|
|
|
ref ([] : (string * boxed_integer * nativeint) list)
|
2000-02-21 10:14:56 -08:00
|
|
|
|
|
|
|
let label_constant_boxed_int bi n =
|
|
|
|
let s = new_const_symbol() in
|
|
|
|
constant_boxed_ints := (s, bi, n) :: !constant_boxed_ints;
|
|
|
|
s
|
|
|
|
|
|
|
|
let box_int bi arg =
|
|
|
|
match arg with
|
|
|
|
Cconst_int n ->
|
|
|
|
Cconst_symbol(label_constant_boxed_int bi (Nativeint.of_int n))
|
|
|
|
| Cconst_natint n ->
|
|
|
|
Cconst_symbol(label_constant_boxed_int bi n)
|
|
|
|
| _ ->
|
|
|
|
if bi = Pint32 && size_int = 8 && big_endian then
|
|
|
|
let id = Ident.create "bint" in
|
|
|
|
Clet(id, Cop(Calloc, [alloc_boxedint_header;
|
|
|
|
Cconst_symbol(operations_boxed_int bi);
|
|
|
|
Cconst_int 0]),
|
|
|
|
Csequence(Cop(Cstore Thirtytwo_signed,
|
|
|
|
[Cop(Cadda, [Cvar id; Cconst_int size_addr]);
|
|
|
|
arg]),
|
|
|
|
Cvar id))
|
|
|
|
else
|
|
|
|
Cop(Calloc, [alloc_boxedint_header;
|
|
|
|
Cconst_symbol(operations_boxed_int bi);
|
|
|
|
arg])
|
|
|
|
|
|
|
|
let unbox_int bi arg =
|
|
|
|
match arg with
|
|
|
|
Cop(Calloc, [hdr; ops; contents]) ->
|
|
|
|
if bi = Pint32 && size_int = 8 then
|
|
|
|
(* Force sign-extension of low-order 32 bits *)
|
|
|
|
Cop(Casr, [Cop(Clsl, [contents; Cconst_int 32]); Cconst_int 32])
|
|
|
|
else
|
|
|
|
contents
|
|
|
|
| _ ->
|
|
|
|
Cop(Cload(if bi = Pint32 then Thirtytwo_signed else Word),
|
|
|
|
[Cop(Cadda, [arg; Cconst_int size_addr])])
|
|
|
|
|
2000-02-21 11:38:09 -08:00
|
|
|
let unbox_unsigned_int bi arg =
|
|
|
|
match arg with
|
|
|
|
Cop(Calloc, [hdr; ops; contents]) ->
|
|
|
|
if bi = Pint32 && size_int = 8 then
|
|
|
|
(* Force zero-extension of low-order 32 bits *)
|
|
|
|
Cop(Clsr, [Cop(Clsl, [contents; Cconst_int 32]); Cconst_int 32])
|
|
|
|
else
|
|
|
|
contents
|
|
|
|
| _ ->
|
|
|
|
Cop(Cload(if bi = Pint32 then Thirtytwo_unsigned else Word),
|
|
|
|
[Cop(Cadda, [arg; Cconst_int size_addr])])
|
|
|
|
|
2000-02-28 07:45:50 -08:00
|
|
|
(* Big arrays *)
|
|
|
|
|
2002-02-10 09:01:27 -08:00
|
|
|
let bigarray_elt_size = function
|
|
|
|
Pbigarray_unknown -> assert false
|
|
|
|
| Pbigarray_float32 -> 4
|
|
|
|
| Pbigarray_float64 -> 8
|
|
|
|
| Pbigarray_sint8 -> 1
|
|
|
|
| Pbigarray_uint8 -> 1
|
|
|
|
| Pbigarray_sint16 -> 2
|
|
|
|
| Pbigarray_uint16 -> 2
|
|
|
|
| Pbigarray_int32 -> 4
|
|
|
|
| Pbigarray_int64 -> 8
|
|
|
|
| Pbigarray_caml_int -> size_int
|
|
|
|
| Pbigarray_native_int -> size_int
|
|
|
|
| Pbigarray_complex32 -> 8
|
|
|
|
| Pbigarray_complex64 -> 16
|
|
|
|
|
2000-02-28 07:45:50 -08:00
|
|
|
let bigarray_indexing elt_kind layout b args =
|
|
|
|
let rec ba_indexing dim_ofs delta_ofs = function
|
|
|
|
[] -> assert false
|
|
|
|
| [arg] ->
|
|
|
|
bind "idx" (untag_int arg)
|
|
|
|
(fun idx ->
|
|
|
|
Csequence(
|
|
|
|
Cop(Ccheckbound, [Cop(Cload Word,[field_address b dim_ofs]); idx]),
|
|
|
|
idx))
|
|
|
|
| arg1 :: argl ->
|
|
|
|
let rem = ba_indexing (dim_ofs + delta_ofs) delta_ofs argl in
|
|
|
|
bind "idx" (untag_int arg1)
|
|
|
|
(fun idx ->
|
|
|
|
bind "bound" (Cop(Cload Word, [field_address b dim_ofs]))
|
|
|
|
(fun bound ->
|
|
|
|
Csequence(Cop(Ccheckbound, [bound; idx]),
|
|
|
|
add_int (mul_int rem bound) idx))) in
|
|
|
|
let offset =
|
|
|
|
match layout with
|
|
|
|
Pbigarray_unknown_layout ->
|
|
|
|
assert false
|
|
|
|
| Pbigarray_c_layout ->
|
|
|
|
ba_indexing (4 + List.length args) (-1) (List.rev args)
|
|
|
|
| Pbigarray_fortran_layout ->
|
|
|
|
ba_indexing 5 1 (List.map (fun idx -> sub_int idx (Cconst_int 2)) args)
|
|
|
|
and elt_size =
|
2002-02-10 09:01:27 -08:00
|
|
|
bigarray_elt_size elt_kind in
|
2000-02-28 07:45:50 -08:00
|
|
|
let byte_offset =
|
|
|
|
if elt_size = 1
|
|
|
|
then offset
|
|
|
|
else Cop(Clsl, [offset; Cconst_int(log2 elt_size)]) in
|
|
|
|
Cop(Cadda, [Cop(Cload Word, [field_address b 1]); byte_offset])
|
|
|
|
|
|
|
|
let bigarray_word_kind = function
|
|
|
|
Pbigarray_unknown -> assert false
|
|
|
|
| Pbigarray_float32 -> Single
|
|
|
|
| Pbigarray_float64 -> Double
|
|
|
|
| Pbigarray_sint8 -> Byte_signed
|
|
|
|
| Pbigarray_uint8 -> Byte_unsigned
|
|
|
|
| Pbigarray_sint16 -> Sixteen_signed
|
|
|
|
| Pbigarray_uint16 -> Sixteen_unsigned
|
|
|
|
| Pbigarray_int32 -> Thirtytwo_signed
|
|
|
|
| Pbigarray_int64 -> Word
|
|
|
|
| Pbigarray_caml_int -> Word
|
|
|
|
| Pbigarray_native_int -> Word
|
2002-02-10 09:01:27 -08:00
|
|
|
| Pbigarray_complex32 -> Single
|
|
|
|
| Pbigarray_complex64 -> Double
|
2000-02-28 07:45:50 -08:00
|
|
|
|
|
|
|
let bigarray_get elt_kind layout b args =
|
2002-02-10 09:01:27 -08:00
|
|
|
match elt_kind with
|
|
|
|
Pbigarray_complex32 | Pbigarray_complex64 ->
|
|
|
|
let kind = bigarray_word_kind elt_kind in
|
|
|
|
let sz = bigarray_elt_size elt_kind / 2 in
|
|
|
|
bind "addr" (bigarray_indexing elt_kind layout b args) (fun addr ->
|
|
|
|
box_complex
|
|
|
|
(Cop(Cload kind, [addr]))
|
|
|
|
(Cop(Cload kind, [Cop(Cadda, [addr; Cconst_int sz])])))
|
|
|
|
| _ ->
|
|
|
|
Cop(Cload (bigarray_word_kind elt_kind),
|
|
|
|
[bigarray_indexing elt_kind layout b args])
|
2000-02-28 07:45:50 -08:00
|
|
|
|
|
|
|
let bigarray_set elt_kind layout b args newval =
|
2002-02-10 09:01:27 -08:00
|
|
|
match elt_kind with
|
|
|
|
Pbigarray_complex32 | Pbigarray_complex64 ->
|
|
|
|
let kind = bigarray_word_kind elt_kind in
|
|
|
|
let sz = bigarray_elt_size elt_kind / 2 in
|
|
|
|
bind "newval" newval (fun newv ->
|
|
|
|
bind "addr" (bigarray_indexing elt_kind layout b args) (fun addr ->
|
|
|
|
Csequence(
|
|
|
|
Cop(Cstore kind, [addr; complex_re newv]),
|
|
|
|
Cop(Cstore kind,
|
|
|
|
[Cop(Cadda, [addr; Cconst_int sz]); complex_im newv]))))
|
|
|
|
| _ ->
|
|
|
|
Cop(Cstore (bigarray_word_kind elt_kind),
|
|
|
|
[bigarray_indexing elt_kind layout b args; newval])
|
2000-02-28 07:45:50 -08:00
|
|
|
|
2000-02-21 10:14:56 -08:00
|
|
|
(* Simplification of some primitives into C calls *)
|
|
|
|
|
|
|
|
let default_prim name =
|
|
|
|
{ prim_name = name; prim_arity = 0 (*ignored*);
|
|
|
|
prim_alloc = true; prim_native_name = ""; prim_native_float = false }
|
|
|
|
|
2000-02-28 07:45:50 -08:00
|
|
|
let simplif_primitive_32bits = function
|
2000-02-21 10:14:56 -08:00
|
|
|
Pbintofint Pint64 -> Pccall (default_prim "int64_of_int")
|
|
|
|
| Pintofbint Pint64 -> Pccall (default_prim "int64_to_int")
|
2000-03-05 11:17:54 -08:00
|
|
|
| Pcvtbint(Pint32, Pint64) -> Pccall (default_prim "int64_of_int32")
|
|
|
|
| Pcvtbint(Pint64, Pint32) -> Pccall (default_prim "int64_to_int32")
|
|
|
|
| Pcvtbint(Pnativeint, Pint64) -> Pccall (default_prim "int64_of_nativeint")
|
|
|
|
| Pcvtbint(Pint64, Pnativeint) -> Pccall (default_prim "int64_to_nativeint")
|
2000-02-21 10:14:56 -08:00
|
|
|
| Pnegbint Pint64 -> Pccall (default_prim "int64_neg")
|
|
|
|
| Paddbint Pint64 -> Pccall (default_prim "int64_add")
|
|
|
|
| Psubbint Pint64 -> Pccall (default_prim "int64_sub")
|
|
|
|
| Pmulbint Pint64 -> Pccall (default_prim "int64_mul")
|
|
|
|
| Pdivbint Pint64 -> Pccall (default_prim "int64_div")
|
|
|
|
| Pmodbint Pint64 -> Pccall (default_prim "int64_mod")
|
|
|
|
| Pandbint Pint64 -> Pccall (default_prim "int64_and")
|
|
|
|
| Porbint Pint64 -> Pccall (default_prim "int64_or")
|
|
|
|
| Pxorbint Pint64 -> Pccall (default_prim "int64_xor")
|
|
|
|
| Plslbint Pint64 -> Pccall (default_prim "int64_shift_left")
|
|
|
|
| Plsrbint Pint64 -> Pccall (default_prim "int64_shift_right_unsigned")
|
|
|
|
| Pasrbint Pint64 -> Pccall (default_prim "int64_shift_right")
|
|
|
|
| Pbintcomp(Pint64, Lambda.Ceq) -> Pccall (default_prim "equal")
|
|
|
|
| Pbintcomp(Pint64, Lambda.Cneq) -> Pccall (default_prim "notequal")
|
|
|
|
| Pbintcomp(Pint64, Lambda.Clt) -> Pccall (default_prim "lessthan")
|
|
|
|
| Pbintcomp(Pint64, Lambda.Cgt) -> Pccall (default_prim "greaterthan")
|
|
|
|
| Pbintcomp(Pint64, Lambda.Cle) -> Pccall (default_prim "lessequal")
|
|
|
|
| Pbintcomp(Pint64, Lambda.Cge) -> Pccall (default_prim "greaterequal")
|
2000-02-28 07:45:50 -08:00
|
|
|
| Pbigarrayref(n, Pbigarray_int64, layout) ->
|
|
|
|
Pccall (default_prim ("bigarray_get_" ^ string_of_int n))
|
|
|
|
| Pbigarrayset(n, Pbigarray_int64, layout) ->
|
|
|
|
Pccall (default_prim ("bigarray_set_" ^ string_of_int n))
|
2000-02-21 10:14:56 -08:00
|
|
|
| p -> p
|
|
|
|
|
2000-02-28 07:45:50 -08:00
|
|
|
let simplif_primitive p =
|
|
|
|
match p with
|
|
|
|
Pbigarrayref(n, Pbigarray_unknown, layout) ->
|
|
|
|
Pccall (default_prim ("bigarray_get_" ^ string_of_int n))
|
|
|
|
| Pbigarrayset(n, Pbigarray_unknown, layout) ->
|
|
|
|
Pccall (default_prim ("bigarray_set_" ^ string_of_int n))
|
|
|
|
| Pbigarrayref(n, kind, Pbigarray_unknown_layout) ->
|
|
|
|
Pccall (default_prim ("bigarray_get_" ^ string_of_int n))
|
|
|
|
| Pbigarrayset(n, kind, Pbigarray_unknown_layout) ->
|
|
|
|
Pccall (default_prim ("bigarray_set_" ^ string_of_int n))
|
|
|
|
| p ->
|
|
|
|
if size_int = 8 then p else simplif_primitive_32bits p
|
|
|
|
|
2000-10-02 07:08:30 -07:00
|
|
|
(* Build switchers both for constants and blocks *)
|
|
|
|
|
|
|
|
(* constants first *)
|
|
|
|
|
|
|
|
let transl_isout h arg = tag_int (Cop(Ccmpa Clt, [h ; arg]))
|
|
|
|
|
|
|
|
exception Found of int
|
|
|
|
|
|
|
|
let make_switch_gen arg cases acts =
|
2001-04-30 09:31:09 -07:00
|
|
|
let lcases = Array.length cases in
|
|
|
|
let new_cases = Array.create lcases 0 in
|
2001-02-19 12:15:42 -08:00
|
|
|
let store = Switch.mk_store (=) in
|
2000-10-02 07:08:30 -07:00
|
|
|
|
|
|
|
for i = 0 to Array.length cases-1 do
|
2001-04-30 09:31:09 -07:00
|
|
|
let act = cases.(i) in
|
2001-02-19 12:15:42 -08:00
|
|
|
let new_act = store.Switch.act_store act in
|
2001-04-30 09:31:09 -07:00
|
|
|
new_cases.(i) <- new_act
|
2000-10-02 07:08:30 -07:00
|
|
|
done ;
|
|
|
|
Cswitch
|
|
|
|
(arg, new_cases,
|
|
|
|
Array.map
|
|
|
|
(fun n -> acts.(n))
|
2001-02-19 12:15:42 -08:00
|
|
|
(store.Switch.act_get ()))
|
2000-10-02 07:08:30 -07:00
|
|
|
|
|
|
|
|
|
|
|
(* Then for blocks *)
|
|
|
|
|
|
|
|
module SArgBlocks =
|
|
|
|
struct
|
|
|
|
type primitive = operation
|
|
|
|
|
|
|
|
let eqint = Ccmpi Ceq
|
|
|
|
let neint = Ccmpi Cne
|
|
|
|
let leint = Ccmpi Cle
|
|
|
|
let ltint = Ccmpi Clt
|
|
|
|
let geint = Ccmpi Cge
|
|
|
|
let gtint = Ccmpi Cgt
|
|
|
|
|
|
|
|
type act = expression
|
|
|
|
|
|
|
|
let default = Cexit (0,[])
|
|
|
|
let make_prim p args = Cop (p,args)
|
|
|
|
let make_offset arg n = add_const arg n
|
|
|
|
let make_isout h arg = Cop (Ccmpa Clt, [h ; arg])
|
2001-04-30 09:31:09 -07:00
|
|
|
let make_isin h arg = Cop (Ccmpa Cge, [h ; arg])
|
2000-10-02 07:08:30 -07:00
|
|
|
let make_if cond ifso ifnot = Cifthenelse (cond, ifso, ifnot)
|
|
|
|
let make_switch arg cases actions =
|
|
|
|
make_switch_gen arg cases actions
|
|
|
|
let bind arg body = bind "switcher" arg body
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
module SwitcherBlocks = Switch.Make(SArgBlocks)
|
|
|
|
|
2001-01-13 03:55:43 -08:00
|
|
|
(* Auxiliary functions for optimizing "let" of boxed numbers (floats and
|
|
|
|
boxed integers *)
|
|
|
|
|
|
|
|
type unboxed_number_kind =
|
|
|
|
No_unboxing
|
|
|
|
| Boxed_float
|
|
|
|
| Boxed_integer of boxed_integer
|
|
|
|
|
|
|
|
let is_unboxed_number = function
|
|
|
|
Uconst(Const_base(Const_float f)) ->
|
|
|
|
Boxed_float
|
|
|
|
| Uprim(p, _) ->
|
|
|
|
begin match simplif_primitive p with
|
|
|
|
Pccall p -> if p.prim_native_float then Boxed_float else No_unboxing
|
|
|
|
| Pfloatfield _ -> Boxed_float
|
|
|
|
| Pfloatofint -> Boxed_float
|
|
|
|
| Pnegfloat -> Boxed_float
|
|
|
|
| Pabsfloat -> Boxed_float
|
|
|
|
| Paddfloat -> Boxed_float
|
|
|
|
| Psubfloat -> Boxed_float
|
|
|
|
| Pmulfloat -> Boxed_float
|
|
|
|
| Pdivfloat -> Boxed_float
|
|
|
|
| Parrayrefu Pfloatarray -> Boxed_float
|
|
|
|
| Parrayrefs Pfloatarray -> Boxed_float
|
|
|
|
| Pbintofint bi -> Boxed_integer bi
|
|
|
|
| Pcvtbint(src, dst) -> Boxed_integer dst
|
|
|
|
| Pnegbint bi -> Boxed_integer bi
|
|
|
|
| Paddbint bi -> Boxed_integer bi
|
|
|
|
| Psubbint bi -> Boxed_integer bi
|
|
|
|
| Pmulbint bi -> Boxed_integer bi
|
|
|
|
| Pdivbint bi -> Boxed_integer bi
|
|
|
|
| Pmodbint bi -> Boxed_integer bi
|
|
|
|
| Pandbint bi -> Boxed_integer bi
|
|
|
|
| Porbint bi -> Boxed_integer bi
|
|
|
|
| Pxorbint bi -> Boxed_integer bi
|
|
|
|
| Plslbint bi -> Boxed_integer bi
|
|
|
|
| Plsrbint bi -> Boxed_integer bi
|
|
|
|
| Pasrbint bi -> Boxed_integer bi
|
|
|
|
| Pbigarrayref(_, (Pbigarray_float32 | Pbigarray_float64), _) ->
|
|
|
|
Boxed_float
|
|
|
|
| Pbigarrayref(_, Pbigarray_int32, _) -> Boxed_integer Pint32
|
|
|
|
| Pbigarrayref(_, Pbigarray_int64, _) -> Boxed_integer Pint64
|
|
|
|
| Pbigarrayref(_, Pbigarray_native_int, _) -> Boxed_integer Pnativeint
|
|
|
|
| _ -> No_unboxing
|
|
|
|
end
|
|
|
|
| _ -> No_unboxing
|
|
|
|
|
|
|
|
let subst_boxed_number unbox_fn boxed_id unboxed_id exp =
|
|
|
|
let need_boxed = ref false in
|
|
|
|
let assigned = ref false in
|
|
|
|
let rec subst = function
|
|
|
|
Cvar id as e ->
|
|
|
|
if Ident.same id boxed_id then need_boxed := true; e
|
|
|
|
| Clet(id, arg, body) -> Clet(id, subst arg, subst body)
|
|
|
|
| Cassign(id, arg) ->
|
|
|
|
if Ident.same id boxed_id then begin
|
|
|
|
assigned := true;
|
|
|
|
Cassign(unboxed_id, subst(unbox_fn arg))
|
|
|
|
end else
|
|
|
|
Cassign(id, subst arg)
|
|
|
|
| Ctuple argv -> Ctuple(List.map subst argv)
|
|
|
|
| Cop(Cload _, [Cvar id]) as e ->
|
|
|
|
if Ident.same id boxed_id then Cvar unboxed_id else e
|
|
|
|
| Cop(Cload _, [Cop(Cadda, [Cvar id; _])]) as e ->
|
|
|
|
if Ident.same id boxed_id then Cvar unboxed_id else e
|
|
|
|
| Cop(op, argv) -> Cop(op, List.map subst argv)
|
|
|
|
| Csequence(e1, e2) -> Csequence(subst e1, subst e2)
|
|
|
|
| Cifthenelse(e1, e2, e3) -> Cifthenelse(subst e1, subst e2, subst e3)
|
|
|
|
| Cswitch(arg, index, cases) ->
|
|
|
|
Cswitch(subst arg, index, Array.map subst cases)
|
|
|
|
| Cloop e -> Cloop(subst e)
|
|
|
|
| Ccatch(nfail, ids, e1, e2) -> Ccatch(nfail, ids, subst e1, subst e2)
|
|
|
|
| Cexit (nfail, el) -> Cexit (nfail, List.map subst el)
|
|
|
|
| Ctrywith(e1, id, e2) -> Ctrywith(subst e1, id, subst e2)
|
|
|
|
| e -> e in
|
|
|
|
let res = subst exp in
|
|
|
|
(res, !need_boxed, !assigned)
|
|
|
|
|
1995-07-02 09:41:48 -07:00
|
|
|
(* Translate an expression *)
|
|
|
|
|
1996-04-22 04:15:41 -07:00
|
|
|
let functions = (Queue.create() : (string * Ident.t list * ulambda) Queue.t)
|
1995-07-02 09:41:48 -07:00
|
|
|
|
|
|
|
let rec transl = function
|
|
|
|
Uvar id ->
|
|
|
|
Cvar id
|
|
|
|
| Uconst sc ->
|
|
|
|
transl_constant sc
|
1999-01-27 02:52:33 -08:00
|
|
|
| Uclosure(fundecls, []) ->
|
|
|
|
let lbl = new_const_symbol() in
|
|
|
|
constant_closures := (lbl, fundecls) :: !constant_closures;
|
|
|
|
List.iter
|
|
|
|
(fun (label, arity, params, body) ->
|
2000-10-02 07:08:30 -07:00
|
|
|
Queue.add (label, params, body) functions)
|
1999-01-27 02:52:33 -08:00
|
|
|
fundecls;
|
|
|
|
Cconst_symbol lbl
|
1995-07-07 05:07:07 -07:00
|
|
|
| Uclosure(fundecls, clos_vars) ->
|
|
|
|
let block_size =
|
|
|
|
fundecls_size fundecls + List.length clos_vars in
|
|
|
|
let rec transl_fundecls pos = function
|
2000-10-02 07:08:30 -07:00
|
|
|
[] ->
|
|
|
|
List.map transl clos_vars
|
|
|
|
| (label, arity, params, body) :: rem ->
|
|
|
|
Queue.add (label, params, body) functions;
|
|
|
|
let header =
|
|
|
|
if pos = 0
|
|
|
|
then alloc_closure_header block_size
|
|
|
|
else alloc_infix_header pos in
|
|
|
|
if arity = 1 then
|
|
|
|
header ::
|
|
|
|
Cconst_symbol label ::
|
|
|
|
int_const 1 ::
|
|
|
|
transl_fundecls (pos + 3) rem
|
|
|
|
else
|
|
|
|
header ::
|
|
|
|
Cconst_symbol(curry_function arity) ::
|
|
|
|
int_const arity ::
|
|
|
|
Cconst_symbol label ::
|
|
|
|
transl_fundecls (pos + 4) rem in
|
1995-07-07 05:07:07 -07:00
|
|
|
Cop(Calloc, transl_fundecls 0 fundecls)
|
|
|
|
| Uoffset(arg, offset) ->
|
|
|
|
field_address (transl arg) offset
|
1995-07-02 09:41:48 -07:00
|
|
|
| Udirect_apply(lbl, args) ->
|
|
|
|
Cop(Capply typ_addr, Cconst_symbol lbl :: List.map transl args)
|
|
|
|
| Ugeneric_apply(clos, [arg]) ->
|
1995-07-10 02:48:27 -07:00
|
|
|
bind "fun" (transl clos) (fun clos ->
|
|
|
|
Cop(Capply typ_addr, [get_field clos 0; transl arg; clos]))
|
1995-07-02 09:41:48 -07:00
|
|
|
| Ugeneric_apply(clos, args) ->
|
|
|
|
let arity = List.length args in
|
1998-04-06 02:07:57 -07:00
|
|
|
let cargs = Cconst_symbol(apply_function arity) ::
|
2000-10-02 07:08:30 -07:00
|
|
|
List.map transl (args @ [clos]) in
|
1998-04-06 02:07:57 -07:00
|
|
|
Cop(Capply typ_addr, cargs)
|
1996-04-22 04:15:41 -07:00
|
|
|
| Usend(met, obj, []) ->
|
|
|
|
bind "obj" (transl obj) (fun obj ->
|
2000-10-02 07:08:30 -07:00
|
|
|
bind "met" (lookup_label obj (transl met)) (fun clos ->
|
|
|
|
Cop(Capply typ_addr, [get_field clos 0; obj; clos])))
|
1996-04-22 04:15:41 -07:00
|
|
|
| Usend(met, obj, args) ->
|
|
|
|
let arity = List.length args + 1 in
|
|
|
|
bind "obj" (transl obj) (fun obj ->
|
2000-10-02 07:08:30 -07:00
|
|
|
bind "met" (lookup_label obj (transl met)) (fun clos ->
|
|
|
|
let cargs = Cconst_symbol(apply_function arity) ::
|
|
|
|
obj :: (List.map transl args) @ [clos] in
|
|
|
|
Cop(Capply typ_addr, cargs)))
|
1995-07-02 09:41:48 -07:00
|
|
|
| Ulet(id, exp, body) ->
|
2001-01-13 03:55:43 -08:00
|
|
|
begin match is_unboxed_number exp with
|
|
|
|
No_unboxing ->
|
1995-11-25 07:38:43 -08:00
|
|
|
Clet(id, transl exp, transl body)
|
2001-01-13 03:55:43 -08:00
|
|
|
| Boxed_float ->
|
|
|
|
transl_unbox_let box_float unbox_float transl_unbox_float
|
|
|
|
id exp body
|
|
|
|
| Boxed_integer bi ->
|
|
|
|
transl_unbox_let (box_int bi) (unbox_int bi) (transl_unbox_int bi)
|
|
|
|
id exp body
|
|
|
|
end
|
1995-07-02 09:41:48 -07:00
|
|
|
| Uletrec(bindings, body) ->
|
1995-07-17 09:10:15 -07:00
|
|
|
transl_letrec bindings (transl body)
|
1995-07-27 10:38:53 -07:00
|
|
|
|
|
|
|
(* Primitives *)
|
2000-02-21 10:14:56 -08:00
|
|
|
| Uprim(prim, args) ->
|
|
|
|
begin match (simplif_primitive prim, args) with
|
|
|
|
(Pgetglobal id, []) ->
|
|
|
|
Cconst_symbol(Ident.name id)
|
|
|
|
| (Pmakeblock(tag, mut), []) ->
|
|
|
|
transl_constant(Const_block(tag, []))
|
|
|
|
| (Pmakeblock(tag, mut), args) ->
|
2003-03-06 03:55:55 -08:00
|
|
|
make_alloc tag (List.map transl args)
|
2000-02-21 10:14:56 -08:00
|
|
|
| (Pccall prim, args) ->
|
|
|
|
if prim.prim_native_float then
|
|
|
|
box_float
|
|
|
|
(Cop(Cextcall(prim.prim_native_name, typ_float, false),
|
|
|
|
List.map transl_unbox_float args))
|
|
|
|
else begin
|
|
|
|
let name =
|
|
|
|
if prim.prim_native_name <> ""
|
|
|
|
then prim.prim_native_name
|
|
|
|
else prim.prim_name in
|
|
|
|
Cop(Cextcall(name, typ_addr, prim.prim_alloc),
|
|
|
|
List.map transl args)
|
|
|
|
end
|
|
|
|
| (Pmakearray kind, []) ->
|
|
|
|
transl_constant(Const_block(0, []))
|
|
|
|
| (Pmakearray kind, args) ->
|
|
|
|
begin match kind with
|
|
|
|
Pgenarray ->
|
|
|
|
Cop(Cextcall("make_array", typ_addr, true),
|
2003-03-06 03:55:55 -08:00
|
|
|
[make_alloc 0 (List.map transl args)])
|
2000-02-21 10:14:56 -08:00
|
|
|
| Paddrarray | Pintarray ->
|
2003-03-06 03:55:55 -08:00
|
|
|
make_alloc 0 (List.map transl args)
|
2000-02-21 10:14:56 -08:00
|
|
|
| Pfloatarray ->
|
2003-03-06 03:55:55 -08:00
|
|
|
make_float_alloc Obj.double_array_tag
|
|
|
|
(List.map transl_unbox_float args)
|
2000-02-21 10:14:56 -08:00
|
|
|
end
|
2000-02-28 07:45:50 -08:00
|
|
|
| (Pbigarrayref(num_dims, elt_kind, layout), arg1 :: argl) ->
|
|
|
|
let elt =
|
|
|
|
bigarray_get elt_kind layout
|
2000-10-02 07:08:30 -07:00
|
|
|
(transl arg1) (List.map transl argl) in
|
2000-02-28 07:45:50 -08:00
|
|
|
begin match elt_kind with
|
|
|
|
Pbigarray_float32 | Pbigarray_float64 -> box_float elt
|
2002-02-10 09:01:27 -08:00
|
|
|
| Pbigarray_complex32 | Pbigarray_complex64 -> elt
|
2000-02-28 07:45:50 -08:00
|
|
|
| Pbigarray_int32 -> box_int Pint32 elt
|
|
|
|
| Pbigarray_int64 -> box_int Pint64 elt
|
|
|
|
| Pbigarray_native_int -> box_int Pnativeint elt
|
2001-02-05 00:48:13 -08:00
|
|
|
| Pbigarray_caml_int -> force_tag_int elt
|
2000-02-28 07:45:50 -08:00
|
|
|
| _ -> tag_int elt
|
|
|
|
end
|
|
|
|
| (Pbigarrayset(num_dims, elt_kind, layout), arg1 :: argl) ->
|
|
|
|
let (argidx, argnewval) = split_last argl in
|
2002-08-19 05:23:55 -07:00
|
|
|
return_unit(bigarray_set elt_kind layout
|
2000-02-28 07:45:50 -08:00
|
|
|
(transl arg1)
|
|
|
|
(List.map transl argidx)
|
|
|
|
(match elt_kind with
|
2000-10-02 07:08:30 -07:00
|
|
|
Pbigarray_float32 | Pbigarray_float64 ->
|
|
|
|
transl_unbox_float argnewval
|
2002-02-10 09:01:27 -08:00
|
|
|
| Pbigarray_complex32 | Pbigarray_complex64 -> transl argnewval
|
2000-10-02 07:08:30 -07:00
|
|
|
| Pbigarray_int32 -> transl_unbox_int Pint32 argnewval
|
|
|
|
| Pbigarray_int64 -> transl_unbox_int Pint64 argnewval
|
|
|
|
| Pbigarray_native_int -> transl_unbox_int Pnativeint argnewval
|
2002-08-19 05:23:55 -07:00
|
|
|
| _ -> untag_int (transl argnewval)))
|
2000-02-21 10:14:56 -08:00
|
|
|
| (p, [arg]) ->
|
|
|
|
transl_prim_1 p arg
|
|
|
|
| (p, [arg1; arg2]) ->
|
|
|
|
transl_prim_2 p arg1 arg2
|
|
|
|
| (p, [arg1; arg2; arg3]) ->
|
|
|
|
transl_prim_3 p arg1 arg2 arg3
|
|
|
|
| (_, _) ->
|
|
|
|
fatal_error "Cmmgen.transl:prim"
|
|
|
|
end
|
|
|
|
|
|
|
|
(* Control structures *)
|
|
|
|
| Uswitch(arg, s) ->
|
|
|
|
(* As in the bytecode interpreter, only matching against constants
|
|
|
|
can be checked *)
|
|
|
|
if Array.length s.us_index_blocks = 0 then
|
2001-02-19 12:15:42 -08:00
|
|
|
Cswitch
|
|
|
|
(untag_int (transl arg),
|
|
|
|
s.us_index_consts,
|
|
|
|
Array.map transl s.us_actions_consts)
|
2000-02-21 10:14:56 -08:00
|
|
|
else if Array.length s.us_index_consts = 0 then
|
|
|
|
transl_switch (get_tag (transl arg))
|
2001-02-19 12:15:42 -08:00
|
|
|
s.us_index_blocks s.us_actions_blocks
|
2000-02-21 10:14:56 -08:00
|
|
|
else
|
|
|
|
bind "switch" (transl arg) (fun arg ->
|
|
|
|
Cifthenelse(
|
2000-10-02 07:08:30 -07:00
|
|
|
Cop(Cand, [arg; Cconst_int 1]),
|
2001-02-19 12:15:42 -08:00
|
|
|
transl_switch
|
|
|
|
(untag_int arg) s.us_index_consts s.us_actions_consts,
|
|
|
|
transl_switch
|
|
|
|
(get_tag arg) s.us_index_blocks s.us_actions_blocks))
|
2000-10-02 07:08:30 -07:00
|
|
|
| Ustaticfail (nfail, args) ->
|
|
|
|
Cexit (nfail, List.map transl args)
|
|
|
|
| Ucatch(nfail, [], body, handler) ->
|
|
|
|
make_catch nfail (transl body) (transl handler)
|
|
|
|
| Ucatch(nfail, ids, body, handler) ->
|
|
|
|
Ccatch(nfail, ids, transl body, transl handler)
|
2000-02-21 10:14:56 -08:00
|
|
|
| Utrywith(body, exn, handler) ->
|
|
|
|
Ctrywith(transl body, exn, transl handler)
|
|
|
|
| Uifthenelse(Uprim(Pnot, [arg]), ifso, ifnot) ->
|
|
|
|
transl (Uifthenelse(arg, ifnot, ifso))
|
2000-10-02 07:08:30 -07:00
|
|
|
| Uifthenelse(cond, ifso, Ustaticfail (nfail, [])) ->
|
|
|
|
exit_if_false cond (transl ifso) nfail
|
|
|
|
| Uifthenelse(cond, Ustaticfail (nfail, []), ifnot) ->
|
|
|
|
exit_if_true cond nfail (transl ifnot)
|
2000-02-21 10:14:56 -08:00
|
|
|
| Uifthenelse(Uprim(Psequand, _) as cond, ifso, ifnot) ->
|
2000-10-02 07:08:30 -07:00
|
|
|
let raise_num = next_raise_count () in
|
|
|
|
make_catch
|
|
|
|
raise_num
|
|
|
|
(exit_if_false cond (transl ifso) raise_num)
|
|
|
|
(transl ifnot)
|
2000-02-21 10:14:56 -08:00
|
|
|
| Uifthenelse(Uprim(Psequor, _) as cond, ifso, ifnot) ->
|
2000-10-02 07:08:30 -07:00
|
|
|
let raise_num = next_raise_count () in
|
|
|
|
make_catch
|
|
|
|
raise_num
|
|
|
|
(exit_if_true cond raise_num (transl ifnot))
|
|
|
|
(transl ifso)
|
|
|
|
| Uifthenelse (Uifthenelse (cond, condso, condnot), ifso, ifnot) ->
|
|
|
|
let num_true = next_raise_count () in
|
|
|
|
make_catch
|
|
|
|
num_true
|
|
|
|
(make_catch2
|
|
|
|
(fun shared_false ->
|
|
|
|
Cifthenelse
|
|
|
|
(test_bool (transl cond),
|
|
|
|
exit_if_true condso num_true shared_false,
|
|
|
|
exit_if_true condnot num_true shared_false))
|
|
|
|
(transl ifnot))
|
|
|
|
(transl ifso)
|
2000-02-21 10:14:56 -08:00
|
|
|
| Uifthenelse(cond, ifso, ifnot) ->
|
|
|
|
Cifthenelse(test_bool(transl cond), transl ifso, transl ifnot)
|
|
|
|
| Usequence(exp1, exp2) ->
|
|
|
|
Csequence(remove_unit(transl exp1), transl exp2)
|
|
|
|
| Uwhile(cond, body) ->
|
2000-10-02 07:08:30 -07:00
|
|
|
let raise_num = next_raise_count () in
|
2000-08-11 12:50:59 -07:00
|
|
|
return_unit
|
|
|
|
(Ccatch
|
2000-10-02 07:08:30 -07:00
|
|
|
(raise_num, [],
|
|
|
|
Cloop(exit_if_false cond (remove_unit(transl body)) raise_num),
|
2000-08-11 12:50:59 -07:00
|
|
|
Ctuple []))
|
2000-02-21 10:14:56 -08:00
|
|
|
| Ufor(id, low, high, dir, body) ->
|
|
|
|
let tst = match dir with Upto -> Cgt | Downto -> Clt in
|
|
|
|
let inc = match dir with Upto -> Caddi | Downto -> Csubi in
|
2000-10-02 07:08:30 -07:00
|
|
|
let raise_num = next_raise_count () in
|
2002-11-18 02:50:49 -08:00
|
|
|
let id_prev = Ident.rename id in
|
2000-02-21 10:14:56 -08:00
|
|
|
return_unit
|
2000-10-02 07:08:30 -07:00
|
|
|
(Clet
|
|
|
|
(id, transl low,
|
|
|
|
bind_nonvar "bound" (transl high) (fun high ->
|
|
|
|
Ccatch
|
|
|
|
(raise_num, [],
|
|
|
|
Cifthenelse
|
|
|
|
(Cop(Ccmpi tst, [Cvar id; high]), Cexit (raise_num, []),
|
|
|
|
Cloop
|
|
|
|
(Csequence
|
|
|
|
(remove_unit(transl body),
|
2002-11-18 02:50:49 -08:00
|
|
|
Clet(id_prev, Cvar id,
|
2000-10-02 07:08:30 -07:00
|
|
|
Csequence
|
2002-11-18 02:50:49 -08:00
|
|
|
(Cassign(id,
|
|
|
|
Cop(inc, [Cvar id; Cconst_int 2])),
|
2000-10-02 07:08:30 -07:00
|
|
|
Cifthenelse
|
2002-11-18 02:50:49 -08:00
|
|
|
(Cop(Ccmpi Ceq, [Cvar id_prev; high]),
|
|
|
|
Cexit (raise_num,[]), Ctuple [])))))),
|
2000-10-02 07:08:30 -07:00
|
|
|
Ctuple []))))
|
2000-02-21 10:14:56 -08:00
|
|
|
| Uassign(id, exp) ->
|
|
|
|
return_unit(Cassign(id, transl exp))
|
|
|
|
|
|
|
|
and transl_prim_1 p arg =
|
|
|
|
match p with
|
|
|
|
(* Generic operations *)
|
|
|
|
Pidentity ->
|
1995-07-02 09:41:48 -07:00
|
|
|
transl arg
|
2000-02-21 10:14:56 -08:00
|
|
|
| Pignore ->
|
1999-11-03 10:29:20 -08:00
|
|
|
return_unit(remove_unit (transl arg))
|
2000-02-21 10:14:56 -08:00
|
|
|
(* Heap operations *)
|
|
|
|
| Pfield n ->
|
1995-07-02 09:41:48 -07:00
|
|
|
get_field (transl arg) n
|
2000-02-21 10:14:56 -08:00
|
|
|
| Pfloatfield n ->
|
1995-07-27 10:38:53 -07:00
|
|
|
let ptr = transl arg in
|
1998-04-06 02:07:57 -07:00
|
|
|
box_float(
|
2000-03-10 06:31:06 -08:00
|
|
|
Cop(Cload Double_u,
|
1998-04-06 02:07:57 -07:00
|
|
|
[if n = 0 then ptr
|
|
|
|
else Cop(Cadda, [ptr; Cconst_int(n * size_float)])]))
|
2000-02-21 10:14:56 -08:00
|
|
|
(* Exceptions *)
|
|
|
|
| Praise ->
|
|
|
|
Cop(Craise, [transl arg])
|
|
|
|
(* Integer operations *)
|
|
|
|
| Pnegint ->
|
|
|
|
Cop(Csubi, [Cconst_int 2; transl arg])
|
|
|
|
| Poffsetint n ->
|
2002-01-10 07:52:40 -08:00
|
|
|
if no_overflow_lsl n then
|
|
|
|
add_const (transl arg) (n lsl 1)
|
|
|
|
else
|
|
|
|
transl_prim_2 Paddint arg (Uconst (Const_base(Const_int n)))
|
2000-02-21 10:14:56 -08:00
|
|
|
| Poffsetref n ->
|
|
|
|
return_unit
|
|
|
|
(bind "ref" (transl arg) (fun arg ->
|
|
|
|
Cop(Cstore Word,
|
|
|
|
[arg; add_const (Cop(Cload Word, [arg])) (n lsl 1)])))
|
|
|
|
(* Floating-point operations *)
|
|
|
|
| Pfloatofint ->
|
|
|
|
box_float(Cop(Cfloatofint, [untag_int(transl arg)]))
|
|
|
|
| Pintoffloat ->
|
|
|
|
tag_int(Cop(Cintoffloat, [transl_unbox_float arg]))
|
|
|
|
| Pnegfloat ->
|
|
|
|
box_float(Cop(Cnegf, [transl_unbox_float arg]))
|
|
|
|
| Pabsfloat ->
|
|
|
|
box_float(Cop(Cabsf, [transl_unbox_float arg]))
|
|
|
|
(* String operations *)
|
|
|
|
| Pstringlength ->
|
|
|
|
tag_int(string_length (transl arg))
|
|
|
|
(* Array operations *)
|
|
|
|
| Parraylength kind ->
|
|
|
|
begin match kind with
|
|
|
|
Pgenarray ->
|
|
|
|
let len =
|
|
|
|
if wordsize_shift = numfloat_shift then
|
|
|
|
Cop(Clsr, [header(transl arg); Cconst_int wordsize_shift])
|
|
|
|
else
|
|
|
|
bind "header" (header(transl arg)) (fun hdr ->
|
|
|
|
Cifthenelse(is_addr_array_hdr hdr,
|
|
|
|
Cop(Clsr, [hdr; Cconst_int wordsize_shift]),
|
|
|
|
Cop(Clsr, [hdr; Cconst_int numfloat_shift]))) in
|
|
|
|
Cop(Cor, [len; Cconst_int 1])
|
|
|
|
| Paddrarray | Pintarray ->
|
|
|
|
Cop(Cor, [addr_array_length(header(transl arg)); Cconst_int 1])
|
|
|
|
| Pfloatarray ->
|
|
|
|
Cop(Cor, [float_array_length(header(transl arg)); Cconst_int 1])
|
|
|
|
end
|
|
|
|
(* Boolean operations *)
|
|
|
|
| Pnot ->
|
|
|
|
Cop(Csubi, [Cconst_int 4; transl arg]) (* 1 -> 3, 3 -> 1 *)
|
|
|
|
(* Test integer/block *)
|
|
|
|
| Pisint ->
|
|
|
|
tag_int(Cop(Cand, [transl arg; Cconst_int 1]))
|
|
|
|
(* Boxed integers *)
|
|
|
|
| Pbintofint bi ->
|
|
|
|
box_int bi (untag_int (transl arg))
|
|
|
|
| Pintofbint bi ->
|
2001-02-05 00:48:13 -08:00
|
|
|
force_tag_int (transl_unbox_int bi arg)
|
2000-03-05 11:17:54 -08:00
|
|
|
| Pcvtbint(bi1, bi2) ->
|
|
|
|
box_int bi2 (transl_unbox_int bi1 arg)
|
2000-02-21 10:14:56 -08:00
|
|
|
| Pnegbint bi ->
|
|
|
|
box_int bi (Cop(Csubi, [Cconst_int 0; transl_unbox_int bi arg]))
|
|
|
|
| _ ->
|
|
|
|
fatal_error "Cmmgen.transl_prim_1"
|
|
|
|
|
|
|
|
and transl_prim_2 p arg1 arg2 =
|
|
|
|
match p with
|
|
|
|
(* Heap operations *)
|
|
|
|
Psetfield(n, ptr) ->
|
|
|
|
if ptr then
|
|
|
|
return_unit(Cop(Cextcall("modify", typ_void, false),
|
|
|
|
[field_address (transl arg1) n; transl arg2]))
|
|
|
|
else
|
|
|
|
return_unit(set_field (transl arg1) n (transl arg2))
|
|
|
|
| Psetfloatfield n ->
|
|
|
|
let ptr = transl arg1 in
|
1998-04-06 02:07:57 -07:00
|
|
|
return_unit(
|
2000-03-10 06:31:06 -08:00
|
|
|
Cop(Cstore Double_u,
|
1998-04-06 02:07:57 -07:00
|
|
|
[if n = 0 then ptr
|
|
|
|
else Cop(Cadda, [ptr; Cconst_int(n * size_float)]);
|
2000-02-21 10:14:56 -08:00
|
|
|
transl_unbox_float arg2]))
|
1995-07-27 10:38:53 -07:00
|
|
|
|
|
|
|
(* Boolean operations *)
|
2000-02-21 10:14:56 -08:00
|
|
|
| Psequand ->
|
1995-07-02 09:41:48 -07:00
|
|
|
Cifthenelse(test_bool(transl arg1), transl arg2, Cconst_int 1)
|
2000-02-21 10:14:56 -08:00
|
|
|
| Psequor ->
|
1995-07-02 09:41:48 -07:00
|
|
|
Cifthenelse(test_bool(transl arg1), Cconst_int 3, transl arg2)
|
1995-07-27 10:38:53 -07:00
|
|
|
|
|
|
|
(* Integer operations *)
|
2000-02-21 10:14:56 -08:00
|
|
|
| Paddint ->
|
1995-07-02 09:41:48 -07:00
|
|
|
decr_int(add_int (transl arg1) (transl arg2))
|
2000-02-21 10:14:56 -08:00
|
|
|
| Psubint ->
|
1995-07-02 09:41:48 -07:00
|
|
|
incr_int(sub_int (transl arg1) (transl arg2))
|
2000-02-21 10:14:56 -08:00
|
|
|
| Pmulint ->
|
1995-07-02 09:41:48 -07:00
|
|
|
incr_int(Cop(Cmuli, [decr_int(transl arg1); untag_int(transl arg2)]))
|
2000-02-21 10:14:56 -08:00
|
|
|
| Pdivint ->
|
1995-07-02 09:41:48 -07:00
|
|
|
tag_int(Cop(Cdivi, [untag_int(transl arg1); untag_int(transl arg2)]))
|
2000-02-21 10:14:56 -08:00
|
|
|
| Pmodint ->
|
1995-07-02 09:41:48 -07:00
|
|
|
tag_int(Cop(Cmodi, [untag_int(transl arg1); untag_int(transl arg2)]))
|
2000-02-21 10:14:56 -08:00
|
|
|
| Pandint ->
|
1995-07-02 09:41:48 -07:00
|
|
|
Cop(Cand, [transl arg1; transl arg2])
|
2000-02-21 10:14:56 -08:00
|
|
|
| Porint ->
|
1995-07-02 09:41:48 -07:00
|
|
|
Cop(Cor, [transl arg1; transl arg2])
|
2000-02-21 10:14:56 -08:00
|
|
|
| Pxorint ->
|
|
|
|
Cop(Cor, [Cop(Cxor, [ignore_low_bit_int(transl arg1);
|
|
|
|
ignore_low_bit_int(transl arg2)]);
|
|
|
|
Cconst_int 1])
|
|
|
|
| Plslint ->
|
1999-01-29 00:50:10 -08:00
|
|
|
incr_int(lsl_int (decr_int(transl arg1)) (untag_int(transl arg2)))
|
2000-02-21 10:14:56 -08:00
|
|
|
| Plsrint ->
|
1997-10-15 02:20:44 -07:00
|
|
|
Cop(Cor, [Cop(Clsr, [transl arg1; untag_int(transl arg2)]);
|
1999-01-29 00:50:10 -08:00
|
|
|
Cconst_int 1])
|
2000-02-21 10:14:56 -08:00
|
|
|
| Pasrint ->
|
1997-10-15 02:20:44 -07:00
|
|
|
Cop(Cor, [Cop(Casr, [transl arg1; untag_int(transl arg2)]);
|
1999-01-29 00:50:10 -08:00
|
|
|
Cconst_int 1])
|
2000-02-21 10:14:56 -08:00
|
|
|
| Pintcomp cmp ->
|
1995-07-02 09:41:48 -07:00
|
|
|
tag_int(Cop(Ccmpi(transl_comparison cmp), [transl arg1; transl arg2]))
|
2000-10-02 07:08:30 -07:00
|
|
|
| Pisout ->
|
|
|
|
transl_isout (transl arg1) (transl arg2)
|
1995-07-27 10:38:53 -07:00
|
|
|
(* Float operations *)
|
2000-02-21 10:14:56 -08:00
|
|
|
| Paddfloat ->
|
1998-04-06 02:07:57 -07:00
|
|
|
box_float(Cop(Caddf,
|
|
|
|
[transl_unbox_float arg1; transl_unbox_float arg2]))
|
2000-02-21 10:14:56 -08:00
|
|
|
| Psubfloat ->
|
1998-04-06 02:07:57 -07:00
|
|
|
box_float(Cop(Csubf,
|
|
|
|
[transl_unbox_float arg1; transl_unbox_float arg2]))
|
2000-02-21 10:14:56 -08:00
|
|
|
| Pmulfloat ->
|
1998-04-06 02:07:57 -07:00
|
|
|
box_float(Cop(Cmulf,
|
|
|
|
[transl_unbox_float arg1; transl_unbox_float arg2]))
|
2000-02-21 10:14:56 -08:00
|
|
|
| Pdivfloat ->
|
1998-04-06 02:07:57 -07:00
|
|
|
box_float(Cop(Cdivf,
|
|
|
|
[transl_unbox_float arg1; transl_unbox_float arg2]))
|
2000-02-21 10:14:56 -08:00
|
|
|
| Pfloatcomp cmp ->
|
1995-07-10 02:48:27 -07:00
|
|
|
tag_int(Cop(Ccmpf(transl_comparison cmp),
|
|
|
|
[transl_unbox_float arg1; transl_unbox_float arg2]))
|
1995-07-27 10:38:53 -07:00
|
|
|
|
|
|
|
(* String operations *)
|
2000-02-21 10:14:56 -08:00
|
|
|
| Pstringrefu ->
|
2000-02-04 04:43:18 -08:00
|
|
|
tag_int(Cop(Cload Byte_unsigned,
|
1995-07-02 09:41:48 -07:00
|
|
|
[add_int (transl arg1) (untag_int(transl arg2))]))
|
2000-02-21 10:14:56 -08:00
|
|
|
| Pstringrefs ->
|
1995-07-10 02:48:27 -07:00
|
|
|
tag_int
|
|
|
|
(bind "str" (transl arg1) (fun str ->
|
|
|
|
bind "index" (untag_int (transl arg2)) (fun idx ->
|
|
|
|
Csequence(
|
|
|
|
Cop(Ccheckbound, [string_length str; idx]),
|
2000-02-04 04:43:18 -08:00
|
|
|
Cop(Cload Byte_unsigned, [add_int str idx])))))
|
1995-07-27 10:38:53 -07:00
|
|
|
|
|
|
|
(* Array operations *)
|
2000-02-21 10:14:56 -08:00
|
|
|
| Parrayrefu kind ->
|
1995-07-27 10:38:53 -07:00
|
|
|
begin match kind with
|
|
|
|
Pgenarray ->
|
|
|
|
bind "arr" (transl arg1) (fun arr ->
|
|
|
|
bind "index" (transl arg2) (fun idx ->
|
1998-04-06 02:07:57 -07:00
|
|
|
Cifthenelse(is_addr_array_ptr arr,
|
1995-07-27 10:38:53 -07:00
|
|
|
addr_array_ref arr idx,
|
|
|
|
float_array_ref arr idx)))
|
|
|
|
| Paddrarray | Pintarray ->
|
|
|
|
addr_array_ref (transl arg1) (transl arg2)
|
|
|
|
| Pfloatarray ->
|
|
|
|
float_array_ref (transl arg1) (transl arg2)
|
|
|
|
end
|
2000-02-21 10:14:56 -08:00
|
|
|
| Parrayrefs kind ->
|
1995-07-27 10:38:53 -07:00
|
|
|
begin match kind with
|
|
|
|
Pgenarray ->
|
1995-07-10 02:48:27 -07:00
|
|
|
bind "index" (transl arg2) (fun idx ->
|
1995-07-27 10:38:53 -07:00
|
|
|
bind "arr" (transl arg1) (fun arr ->
|
|
|
|
bind "header" (header arr) (fun hdr ->
|
1998-04-06 02:07:57 -07:00
|
|
|
Cifthenelse(is_addr_array_hdr hdr,
|
1995-07-27 10:38:53 -07:00
|
|
|
Csequence(Cop(Ccheckbound, [addr_array_length hdr; idx]),
|
|
|
|
addr_array_ref arr idx),
|
|
|
|
Csequence(Cop(Ccheckbound, [float_array_length hdr; idx]),
|
|
|
|
float_array_ref arr idx)))))
|
|
|
|
| Paddrarray | Pintarray ->
|
|
|
|
bind "index" (transl arg2) (fun idx ->
|
|
|
|
bind "arr" (transl arg1) (fun arr ->
|
|
|
|
Csequence(Cop(Ccheckbound, [addr_array_length(header arr); idx]),
|
|
|
|
addr_array_ref arr idx)))
|
|
|
|
| Pfloatarray ->
|
|
|
|
box_float(
|
|
|
|
bind "index" (transl arg2) (fun idx ->
|
|
|
|
bind "arr" (transl arg1) (fun arr ->
|
|
|
|
Csequence(Cop(Ccheckbound,
|
|
|
|
[float_array_length(header arr); idx]),
|
|
|
|
unboxed_float_array_ref arr idx))))
|
|
|
|
end
|
2000-02-21 10:14:56 -08:00
|
|
|
|
|
|
|
(* Operations on bitvects *)
|
|
|
|
| Pbittest ->
|
|
|
|
bind "index" (untag_int(transl arg2)) (fun idx ->
|
|
|
|
tag_int(
|
|
|
|
Cop(Cand, [Cop(Clsr, [Cop(Cload Byte_unsigned,
|
|
|
|
[add_int (transl arg1)
|
|
|
|
(Cop(Clsr, [idx; Cconst_int 3]))]);
|
|
|
|
Cop(Cand, [idx; Cconst_int 7])]);
|
|
|
|
Cconst_int 1])))
|
|
|
|
|
|
|
|
(* Boxed integers *)
|
|
|
|
| Paddbint bi ->
|
|
|
|
box_int bi (Cop(Caddi,
|
|
|
|
[transl_unbox_int bi arg1; transl_unbox_int bi arg2]))
|
|
|
|
| Psubbint bi ->
|
|
|
|
box_int bi (Cop(Csubi,
|
|
|
|
[transl_unbox_int bi arg1; transl_unbox_int bi arg2]))
|
|
|
|
| Pmulbint bi ->
|
|
|
|
box_int bi (Cop(Cmuli,
|
|
|
|
[transl_unbox_int bi arg1; transl_unbox_int bi arg2]))
|
|
|
|
| Pdivbint bi ->
|
|
|
|
box_int bi (Cop(Cdivi,
|
|
|
|
[transl_unbox_int bi arg1; transl_unbox_int bi arg2]))
|
|
|
|
| Pmodbint bi ->
|
|
|
|
box_int bi (Cop(Cmodi,
|
|
|
|
[transl_unbox_int bi arg1; transl_unbox_int bi arg2]))
|
|
|
|
| Pandbint bi ->
|
|
|
|
box_int bi (Cop(Cand,
|
|
|
|
[transl_unbox_int bi arg1; transl_unbox_int bi arg2]))
|
|
|
|
| Porbint bi ->
|
|
|
|
box_int bi (Cop(Cor,
|
|
|
|
[transl_unbox_int bi arg1; transl_unbox_int bi arg2]))
|
|
|
|
| Pxorbint bi ->
|
|
|
|
box_int bi (Cop(Cxor,
|
|
|
|
[transl_unbox_int bi arg1; transl_unbox_int bi arg2]))
|
|
|
|
| Plslbint bi ->
|
|
|
|
box_int bi (Cop(Clsl,
|
|
|
|
[transl_unbox_int bi arg1; untag_int(transl arg2)]))
|
|
|
|
| Plsrbint bi ->
|
|
|
|
box_int bi (Cop(Clsr,
|
2000-02-21 11:38:09 -08:00
|
|
|
[unbox_unsigned_int bi (transl arg1);
|
|
|
|
untag_int(transl arg2)]))
|
2000-02-21 10:14:56 -08:00
|
|
|
| Pasrbint bi ->
|
|
|
|
box_int bi (Cop(Casr,
|
|
|
|
[transl_unbox_int bi arg1; untag_int(transl arg2)]))
|
|
|
|
| Pbintcomp(bi, cmp) ->
|
|
|
|
tag_int (Cop(Ccmpi(transl_comparison cmp),
|
|
|
|
[transl_unbox_int bi arg1; transl_unbox_int bi arg2]))
|
|
|
|
| _ ->
|
|
|
|
fatal_error "Cmmgen.transl_prim_2"
|
|
|
|
|
|
|
|
and transl_prim_3 p arg1 arg2 arg3 =
|
|
|
|
match p with
|
|
|
|
(* String operations *)
|
|
|
|
Pstringsetu ->
|
|
|
|
return_unit(Cop(Cstore Byte_unsigned,
|
|
|
|
[add_int (transl arg1) (untag_int(transl arg2));
|
|
|
|
untag_int(transl arg3)]))
|
|
|
|
| Pstringsets ->
|
|
|
|
return_unit
|
|
|
|
(bind "str" (transl arg1) (fun str ->
|
|
|
|
bind "index" (untag_int (transl arg2)) (fun idx ->
|
|
|
|
Csequence(
|
|
|
|
Cop(Ccheckbound, [string_length str; idx]),
|
|
|
|
Cop(Cstore Byte_unsigned,
|
|
|
|
[add_int str idx; untag_int(transl arg3)])))))
|
|
|
|
|
|
|
|
(* Array operations *)
|
|
|
|
| Parraysetu kind ->
|
|
|
|
return_unit(begin match kind with
|
|
|
|
Pgenarray ->
|
|
|
|
bind "newval" (transl arg3) (fun newval ->
|
|
|
|
bind "index" (transl arg2) (fun index ->
|
|
|
|
bind "arr" (transl arg1) (fun arr ->
|
|
|
|
Cifthenelse(is_addr_array_ptr arr,
|
|
|
|
addr_array_set arr index newval,
|
|
|
|
float_array_set arr index (unbox_float newval)))))
|
|
|
|
| Paddrarray ->
|
|
|
|
addr_array_set (transl arg1) (transl arg2) (transl arg3)
|
|
|
|
| Pintarray ->
|
|
|
|
int_array_set (transl arg1) (transl arg2) (transl arg3)
|
|
|
|
| Pfloatarray ->
|
|
|
|
float_array_set (transl arg1) (transl arg2) (transl_unbox_float arg3)
|
|
|
|
end)
|
|
|
|
| Parraysets kind ->
|
1995-07-27 10:38:53 -07:00
|
|
|
return_unit(begin match kind with
|
|
|
|
Pgenarray ->
|
|
|
|
bind "newval" (transl arg3) (fun newval ->
|
|
|
|
bind "index" (transl arg2) (fun idx ->
|
|
|
|
bind "arr" (transl arg1) (fun arr ->
|
|
|
|
bind "header" (header arr) (fun hdr ->
|
1998-04-06 02:07:57 -07:00
|
|
|
Cifthenelse(is_addr_array_hdr hdr,
|
1995-07-27 10:38:53 -07:00
|
|
|
Csequence(Cop(Ccheckbound, [addr_array_length hdr; idx]),
|
|
|
|
addr_array_set arr idx newval),
|
|
|
|
Csequence(Cop(Ccheckbound, [float_array_length hdr; idx]),
|
1995-07-28 05:19:50 -07:00
|
|
|
float_array_set arr idx
|
|
|
|
(unbox_float newval)))))))
|
1995-07-27 10:38:53 -07:00
|
|
|
| Paddrarray ->
|
|
|
|
bind "index" (transl arg2) (fun idx ->
|
|
|
|
bind "arr" (transl arg1) (fun arr ->
|
|
|
|
Csequence(Cop(Ccheckbound, [addr_array_length(header arr); idx]),
|
|
|
|
addr_array_set arr idx (transl arg3))))
|
|
|
|
| Pintarray ->
|
|
|
|
bind "index" (transl arg2) (fun idx ->
|
|
|
|
bind "arr" (transl arg1) (fun arr ->
|
|
|
|
Csequence(Cop(Ccheckbound, [addr_array_length(header arr); idx]),
|
|
|
|
int_array_set arr idx (transl arg3))))
|
|
|
|
| Pfloatarray ->
|
|
|
|
bind "index" (transl arg2) (fun idx ->
|
|
|
|
bind "arr" (transl arg1) (fun arr ->
|
|
|
|
Csequence(Cop(Ccheckbound, [float_array_length(header arr);idx]),
|
|
|
|
float_array_set arr idx (transl_unbox_float arg3))))
|
|
|
|
end)
|
2000-02-21 10:14:56 -08:00
|
|
|
| _ ->
|
|
|
|
fatal_error "Cmmgen.transl_prim_3"
|
1995-07-27 10:38:53 -07:00
|
|
|
|
1995-07-02 09:41:48 -07:00
|
|
|
and transl_unbox_float = function
|
|
|
|
Uconst(Const_base(Const_float f)) -> Cconst_float f
|
|
|
|
| exp -> unbox_float(transl exp)
|
|
|
|
|
2000-02-21 10:14:56 -08:00
|
|
|
and transl_unbox_int bi = function
|
|
|
|
Uprim(Pbintofint bi', [Uconst(Const_base(Const_int i))]) when bi = bi' ->
|
|
|
|
Cconst_int i
|
|
|
|
| exp -> unbox_int bi (transl exp)
|
|
|
|
|
2001-01-13 03:55:43 -08:00
|
|
|
and transl_unbox_let box_fn unbox_fn transl_unbox_fn id exp body =
|
|
|
|
let unboxed_id = Ident.create (Ident.name id) in
|
|
|
|
let (tr_body, need_boxed, is_assigned) =
|
|
|
|
subst_boxed_number unbox_fn id unboxed_id (transl body) in
|
|
|
|
if need_boxed && is_assigned then
|
2001-01-25 06:40:54 -08:00
|
|
|
Clet(id, transl exp, transl body)
|
2001-01-13 03:55:43 -08:00
|
|
|
else
|
|
|
|
Clet(unboxed_id, transl_unbox_fn exp,
|
|
|
|
if need_boxed
|
|
|
|
then Clet(id, box_fn(Cvar unboxed_id), tr_body)
|
2001-01-25 06:40:54 -08:00
|
|
|
else tr_body)
|
2001-01-13 03:55:43 -08:00
|
|
|
|
2000-10-02 07:08:30 -07:00
|
|
|
and make_catch ncatch body handler = match body with
|
|
|
|
| Cexit (nexit,[]) when nexit=ncatch -> handler
|
|
|
|
| _ -> Ccatch (ncatch, [], body, handler)
|
|
|
|
|
|
|
|
and make_catch2 mk_body handler = match handler with
|
|
|
|
| Cexit (_,[])|Ctuple []|Cconst_int _|Cconst_pointer _ ->
|
|
|
|
mk_body handler
|
|
|
|
| _ ->
|
|
|
|
let nfail = next_raise_count () in
|
|
|
|
make_catch
|
|
|
|
nfail
|
|
|
|
(mk_body (Cexit (nfail,[])))
|
|
|
|
handler
|
|
|
|
|
2000-08-11 12:50:59 -07:00
|
|
|
and exit_if_true cond nfail otherwise =
|
1995-07-02 09:41:48 -07:00
|
|
|
match cond with
|
2000-10-02 07:08:30 -07:00
|
|
|
| Uconst (Const_pointer 0) -> otherwise
|
|
|
|
| Uconst (Const_pointer 1) -> Cexit (nfail,[])
|
|
|
|
| Uprim(Psequor, [arg1; arg2]) ->
|
2000-08-11 12:50:59 -07:00
|
|
|
exit_if_true arg1 nfail (exit_if_true arg2 nfail otherwise)
|
2000-10-02 07:08:30 -07:00
|
|
|
| Uprim(Psequand, _) ->
|
|
|
|
begin match otherwise with
|
|
|
|
| Cexit (raise_num,[]) ->
|
|
|
|
exit_if_false cond (Cexit (nfail,[])) raise_num
|
|
|
|
| _ ->
|
|
|
|
let raise_num = next_raise_count () in
|
|
|
|
make_catch
|
|
|
|
raise_num
|
|
|
|
(exit_if_false cond (Cexit (nfail,[])) raise_num)
|
|
|
|
otherwise
|
|
|
|
end
|
1999-03-10 05:50:24 -08:00
|
|
|
| Uprim(Pnot, [arg]) ->
|
2000-08-11 12:50:59 -07:00
|
|
|
exit_if_false arg otherwise nfail
|
2000-10-02 07:08:30 -07:00
|
|
|
| Uifthenelse (cond, ifso, ifnot) ->
|
|
|
|
make_catch2
|
|
|
|
(fun shared ->
|
|
|
|
Cifthenelse
|
|
|
|
(test_bool (transl cond),
|
|
|
|
exit_if_true ifso nfail shared,
|
|
|
|
exit_if_true ifnot nfail shared))
|
|
|
|
otherwise
|
1995-07-02 09:41:48 -07:00
|
|
|
| _ ->
|
2000-10-02 07:08:30 -07:00
|
|
|
Cifthenelse(test_bool(transl cond), Cexit (nfail, []), otherwise)
|
1995-07-02 09:41:48 -07:00
|
|
|
|
2000-08-11 12:50:59 -07:00
|
|
|
and exit_if_false cond otherwise nfail =
|
1995-07-02 09:41:48 -07:00
|
|
|
match cond with
|
2000-10-02 07:08:30 -07:00
|
|
|
| Uconst (Const_pointer 0) -> Cexit (nfail,[])
|
|
|
|
| Uconst (Const_pointer 1) -> otherwise
|
|
|
|
| Uprim(Psequand, [arg1; arg2]) ->
|
2000-08-11 12:50:59 -07:00
|
|
|
exit_if_false arg1 (exit_if_false arg2 otherwise nfail) nfail
|
2000-10-02 07:08:30 -07:00
|
|
|
| Uprim(Psequor, _ ) ->
|
|
|
|
begin match otherwise with
|
|
|
|
| Cexit (raise_num,[]) ->
|
|
|
|
exit_if_true cond raise_num (Cexit (nfail,[]))
|
|
|
|
| _ ->
|
|
|
|
let raise_num = next_raise_count () in
|
|
|
|
make_catch
|
|
|
|
raise_num
|
|
|
|
(exit_if_true cond raise_num (Cexit (nfail,[])))
|
|
|
|
otherwise
|
|
|
|
end
|
1999-03-10 05:50:24 -08:00
|
|
|
| Uprim(Pnot, [arg]) ->
|
2000-08-11 12:50:59 -07:00
|
|
|
exit_if_true arg nfail otherwise
|
2000-10-02 07:08:30 -07:00
|
|
|
| Uifthenelse (cond, ifso, ifnot) ->
|
|
|
|
make_catch2
|
|
|
|
(fun shared ->
|
|
|
|
Cifthenelse
|
|
|
|
(test_bool (transl cond),
|
|
|
|
exit_if_false ifso shared nfail,
|
|
|
|
exit_if_false ifnot shared nfail))
|
|
|
|
otherwise
|
1995-07-02 09:41:48 -07:00
|
|
|
| _ ->
|
2000-10-02 07:08:30 -07:00
|
|
|
Cifthenelse(test_bool(transl cond), otherwise, Cexit (nfail, []))
|
|
|
|
|
|
|
|
and transl_switch arg index cases = match Array.length cases with
|
2001-02-19 12:15:42 -08:00
|
|
|
| 0 -> fatal_error "Cmmgen.transl_switch"
|
2000-10-02 07:08:30 -07:00
|
|
|
| 1 -> transl cases.(0)
|
|
|
|
| _ ->
|
|
|
|
let n_index = Array.length index in
|
|
|
|
let actions = Array.map transl cases in
|
|
|
|
|
|
|
|
let inters = ref []
|
|
|
|
and this_high = ref (n_index-1)
|
|
|
|
and this_low = ref (n_index-1)
|
|
|
|
and this_act = ref index.(n_index-1) in
|
|
|
|
for i = n_index-2 downto 0 do
|
|
|
|
let act = index.(i) in
|
|
|
|
if act = !this_act then
|
|
|
|
decr this_low
|
|
|
|
else begin
|
|
|
|
inters := (!this_low, !this_high, !this_act) :: !inters ;
|
|
|
|
this_high := i ;
|
|
|
|
this_low := i ;
|
|
|
|
this_act := act
|
|
|
|
end
|
|
|
|
done ;
|
|
|
|
inters := (0, !this_high, !this_act) :: !inters ;
|
|
|
|
bind "switcher" arg
|
|
|
|
(fun a ->
|
|
|
|
SwitcherBlocks.zyva
|
2001-09-21 08:59:16 -07:00
|
|
|
(0,n_index-1)
|
2000-10-02 07:08:30 -07:00
|
|
|
(fun i -> Cconst_int i)
|
2001-04-30 09:31:09 -07:00
|
|
|
a
|
2000-10-02 07:08:30 -07:00
|
|
|
(Array.of_list !inters) actions)
|
2002-11-07 09:57:23 -08:00
|
|
|
|
1995-07-17 09:10:15 -07:00
|
|
|
and transl_letrec bindings cont =
|
2002-11-07 09:57:23 -08:00
|
|
|
let bsz = List.map (fun (id, exp) -> (id, exp, expr_size exp)) bindings in
|
1995-07-17 09:10:15 -07:00
|
|
|
let rec init_blocks = function
|
2002-12-15 15:28:52 -08:00
|
|
|
| [] -> fill_nonrec bsz
|
2002-11-07 09:57:23 -08:00
|
|
|
| (id, exp, RHS_block sz) :: rem ->
|
|
|
|
Clet(id, Cop(Cextcall("alloc_dummy", typ_addr, true), [int_const sz]),
|
1998-04-06 02:07:57 -07:00
|
|
|
init_blocks rem)
|
2002-11-07 09:57:23 -08:00
|
|
|
| (id, exp, RHS_nonrec) :: rem ->
|
2002-12-15 15:28:52 -08:00
|
|
|
Clet (id, Cconst_int 0, init_blocks rem)
|
|
|
|
and fill_nonrec = function
|
|
|
|
| [] -> fill_blocks bsz
|
|
|
|
| (id, exp, RHS_block sz) :: rem -> fill_nonrec rem
|
|
|
|
| (id, exp, RHS_nonrec) :: rem ->
|
|
|
|
Clet (id, transl exp, fill_nonrec rem)
|
1995-07-17 09:10:15 -07:00
|
|
|
and fill_blocks = function
|
2002-11-07 09:57:23 -08:00
|
|
|
| [] -> cont
|
|
|
|
| (id, exp, RHS_block _) :: rem ->
|
1998-04-06 02:07:57 -07:00
|
|
|
Csequence(Cop(Cextcall("update_dummy", typ_void, false),
|
|
|
|
[Cvar id; transl exp]),
|
|
|
|
fill_blocks rem)
|
2002-11-07 09:57:23 -08:00
|
|
|
| (id, exp, RHS_nonrec) :: rem ->
|
|
|
|
fill_blocks rem
|
|
|
|
in init_blocks bsz
|
1995-07-17 09:10:15 -07:00
|
|
|
|
1995-07-02 09:41:48 -07:00
|
|
|
(* Translate a function definition *)
|
|
|
|
|
|
|
|
let transl_function lbl params body =
|
|
|
|
Cfunction {fun_name = lbl;
|
|
|
|
fun_args = List.map (fun id -> (id, typ_addr)) params;
|
|
|
|
fun_body = transl body;
|
1995-07-13 10:16:20 -07:00
|
|
|
fun_fast = !Clflags.optimize_for_speed}
|
1995-07-02 09:41:48 -07:00
|
|
|
|
|
|
|
(* Translate all function definitions *)
|
|
|
|
|
1995-07-12 08:32:09 -07:00
|
|
|
module StringSet =
|
|
|
|
Set.Make(struct
|
|
|
|
type t = string
|
|
|
|
let compare = compare
|
|
|
|
end)
|
|
|
|
|
|
|
|
let rec transl_all_functions already_translated cont =
|
1995-07-02 09:41:48 -07:00
|
|
|
try
|
|
|
|
let (lbl, params, body) = Queue.take functions in
|
1995-07-12 08:32:09 -07:00
|
|
|
if StringSet.mem lbl already_translated then
|
|
|
|
transl_all_functions already_translated cont
|
2001-02-19 12:15:42 -08:00
|
|
|
else begin
|
1995-07-12 08:32:09 -07:00
|
|
|
transl_all_functions (StringSet.add lbl already_translated)
|
|
|
|
(transl_function lbl params body :: cont)
|
2001-02-19 12:15:42 -08:00
|
|
|
end
|
1995-07-02 09:41:48 -07:00
|
|
|
with Queue.Empty ->
|
|
|
|
cont
|
|
|
|
|
|
|
|
(* Emit structured constants *)
|
|
|
|
|
|
|
|
let rec emit_constant symb cst cont =
|
|
|
|
match cst with
|
|
|
|
Const_base(Const_float s) ->
|
2000-02-04 04:43:18 -08:00
|
|
|
Cint(float_header) :: Cdefine_symbol symb :: Cdouble s :: cont
|
1995-07-02 09:41:48 -07:00
|
|
|
| Const_base(Const_string s) ->
|
|
|
|
Cint(string_header (String.length s)) ::
|
|
|
|
Cdefine_symbol symb ::
|
|
|
|
emit_string_constant s cont
|
|
|
|
| Const_block(tag, fields) ->
|
|
|
|
let (emit_fields, cont1) = emit_constant_fields fields cont in
|
|
|
|
Cint(block_header tag (List.length fields)) ::
|
|
|
|
Cdefine_symbol symb ::
|
|
|
|
emit_fields @ cont1
|
1995-07-27 10:38:53 -07:00
|
|
|
| Const_float_array(fields) ->
|
|
|
|
Cint(floatarray_header (List.length fields)) ::
|
|
|
|
Cdefine_symbol symb ::
|
2000-02-04 04:43:18 -08:00
|
|
|
Misc.map_end (fun f -> Cdouble f) fields cont
|
1995-07-02 09:41:48 -07:00
|
|
|
| _ -> fatal_error "gencmm.emit_constant"
|
|
|
|
|
|
|
|
and emit_constant_fields fields cont =
|
|
|
|
match fields with
|
|
|
|
[] -> ([], cont)
|
|
|
|
| f1 :: fl ->
|
|
|
|
let (data1, cont1) = emit_constant_field f1 cont in
|
|
|
|
let (datal, contl) = emit_constant_fields fl cont1 in
|
|
|
|
(data1 :: datal, contl)
|
|
|
|
|
|
|
|
and emit_constant_field field cont =
|
|
|
|
match field with
|
|
|
|
Const_base(Const_int n) ->
|
2000-02-11 07:09:27 -08:00
|
|
|
(Cint(Nativeint.add (Nativeint.shift_left (Nativeint.of_int n) 1)
|
|
|
|
Nativeint.one),
|
1997-03-04 02:19:51 -08:00
|
|
|
cont)
|
1995-07-02 09:41:48 -07:00
|
|
|
| Const_base(Const_char c) ->
|
2000-02-11 07:09:27 -08:00
|
|
|
(Cint(Nativeint.of_int(((Char.code c) lsl 1) + 1)), cont)
|
1995-07-02 09:41:48 -07:00
|
|
|
| Const_base(Const_float s) ->
|
|
|
|
let lbl = new_const_label() in
|
|
|
|
(Clabel_address lbl,
|
2000-02-04 04:43:18 -08:00
|
|
|
Cint(float_header) :: Cdefine_label lbl :: Cdouble s :: cont)
|
1995-07-02 09:41:48 -07:00
|
|
|
| Const_base(Const_string s) ->
|
|
|
|
let lbl = new_const_label() in
|
|
|
|
(Clabel_address lbl,
|
|
|
|
Cint(string_header (String.length s)) :: Cdefine_label lbl ::
|
|
|
|
emit_string_constant s cont)
|
|
|
|
| Const_pointer n ->
|
2002-06-08 08:19:16 -07:00
|
|
|
(Cint(Nativeint.add (Nativeint.shift_left (Nativeint.of_int n) 1)
|
|
|
|
Nativeint.one),
|
|
|
|
cont)
|
1995-07-02 09:41:48 -07:00
|
|
|
| Const_block(tag, fields) ->
|
|
|
|
let lbl = new_const_label() in
|
|
|
|
let (emit_fields, cont1) = emit_constant_fields fields cont in
|
|
|
|
(Clabel_address lbl,
|
|
|
|
Cint(block_header tag (List.length fields)) :: Cdefine_label lbl ::
|
|
|
|
emit_fields @ cont1)
|
1995-07-27 10:38:53 -07:00
|
|
|
| Const_float_array(fields) ->
|
|
|
|
let lbl = new_const_label() in
|
|
|
|
(Clabel_address lbl,
|
|
|
|
Cint(floatarray_header (List.length fields)) :: Cdefine_label lbl ::
|
2000-02-04 04:43:18 -08:00
|
|
|
Misc.map_end (fun f -> Cdouble f) fields cont)
|
1995-07-02 09:41:48 -07:00
|
|
|
|
|
|
|
and emit_string_constant s cont =
|
|
|
|
let n = size_int - 1 - (String.length s) mod size_int in
|
|
|
|
Cstring s :: Cskip n :: Cint8 n :: cont
|
|
|
|
|
2000-02-21 10:14:56 -08:00
|
|
|
(* Emit boxed integer constants *)
|
|
|
|
|
|
|
|
let emit_boxedint_constant lbl bi n =
|
|
|
|
Cint boxedint_header ::
|
|
|
|
Cdefine_symbol lbl ::
|
|
|
|
Csymbol_address(operations_boxed_int bi) ::
|
|
|
|
(if bi = Pint32 && size_int = 8
|
|
|
|
then [Cint32 n; Cint32 Nativeint.zero]
|
|
|
|
else [Cint n])
|
|
|
|
|
1999-01-27 02:52:33 -08:00
|
|
|
(* Emit constant closures *)
|
|
|
|
|
|
|
|
let emit_constant_closure symb fundecls cont =
|
|
|
|
match fundecls with
|
|
|
|
[] -> assert false
|
|
|
|
| (label, arity, params, body) :: remainder ->
|
|
|
|
let rec emit_others pos = function
|
|
|
|
[] -> cont
|
|
|
|
| (label, arity, params, body) :: rem ->
|
|
|
|
if arity = 1 then
|
|
|
|
Cint(infix_header pos) ::
|
|
|
|
Csymbol_address label ::
|
2000-02-11 07:09:27 -08:00
|
|
|
Cint(Nativeint.of_int 3) ::
|
1999-01-27 02:52:33 -08:00
|
|
|
emit_others (pos + 3) rem
|
|
|
|
else
|
|
|
|
Cint(infix_header pos) ::
|
|
|
|
Csymbol_address(curry_function arity) ::
|
2000-02-11 07:09:27 -08:00
|
|
|
Cint(Nativeint.of_int (arity lsl 1 + 1)) ::
|
1999-01-27 02:52:33 -08:00
|
|
|
Csymbol_address label ::
|
|
|
|
emit_others (pos + 4) rem in
|
|
|
|
Cint(closure_header (fundecls_size fundecls)) ::
|
|
|
|
Cdefine_symbol symb ::
|
|
|
|
if arity = 1 then
|
|
|
|
Csymbol_address label ::
|
2000-02-11 07:09:27 -08:00
|
|
|
Cint(Nativeint.of_int 3) ::
|
1999-01-27 02:52:33 -08:00
|
|
|
emit_others 3 remainder
|
|
|
|
else
|
|
|
|
Csymbol_address(curry_function arity) ::
|
2000-02-11 07:09:27 -08:00
|
|
|
Cint(Nativeint.of_int (arity lsl 1 + 1)) ::
|
1999-01-27 02:52:33 -08:00
|
|
|
Csymbol_address label ::
|
|
|
|
emit_others 4 remainder
|
|
|
|
|
1995-07-02 09:41:48 -07:00
|
|
|
(* Emit all structured constants *)
|
|
|
|
|
1997-01-01 07:35:28 -08:00
|
|
|
let emit_all_constants cont =
|
|
|
|
let c = ref cont in
|
2001-04-02 05:13:58 -07:00
|
|
|
List.iter
|
|
|
|
(fun (lbl, cst) -> c := Cdata(emit_constant lbl cst []) :: !c)
|
|
|
|
!structured_constants;
|
|
|
|
structured_constants := [];
|
2000-02-21 10:14:56 -08:00
|
|
|
List.iter
|
|
|
|
(fun (symb, bi, n) ->
|
|
|
|
c := Cdata(emit_boxedint_constant symb bi n) :: !c)
|
|
|
|
!constant_boxed_ints;
|
|
|
|
constant_boxed_ints := [];
|
1999-01-27 02:52:33 -08:00
|
|
|
List.iter
|
|
|
|
(fun (symb, fundecls) ->
|
|
|
|
c := Cdata(emit_constant_closure symb fundecls []) :: !c)
|
|
|
|
!constant_closures;
|
|
|
|
constant_closures := [];
|
1997-01-01 07:35:28 -08:00
|
|
|
!c
|
1995-07-02 09:41:48 -07:00
|
|
|
|
|
|
|
(* Translate a compilation unit *)
|
|
|
|
|
1996-02-18 06:42:27 -08:00
|
|
|
let compunit size ulam =
|
1995-07-02 09:41:48 -07:00
|
|
|
let glob = Compilenv.current_unit_name () in
|
1996-02-18 06:42:27 -08:00
|
|
|
let init_code = transl ulam in
|
2002-02-08 08:55:44 -08:00
|
|
|
let c1 = [Cfunction {fun_name = glob ^ "__entry"; fun_args = [];
|
1995-07-17 09:10:15 -07:00
|
|
|
fun_body = init_code; fun_fast = false}] in
|
1995-07-12 08:32:09 -07:00
|
|
|
let c2 = transl_all_functions StringSet.empty c1 in
|
1995-07-02 09:41:48 -07:00
|
|
|
let c3 = emit_all_constants c2 in
|
1996-02-18 06:42:27 -08:00
|
|
|
Cdata [Cint(block_header 0 size);
|
2002-11-24 07:55:26 -08:00
|
|
|
Cglobal_symbol glob;
|
1995-07-17 09:10:15 -07:00
|
|
|
Cdefine_symbol glob;
|
1996-02-18 06:42:27 -08:00
|
|
|
Cskip(size * size_addr)] :: c3
|
1995-07-02 09:41:48 -07:00
|
|
|
|
|
|
|
(* Generate an application function:
|
|
|
|
(defun caml_applyN (a1 ... aN clos)
|
|
|
|
(if (= clos.arity N)
|
|
|
|
(app clos.direct a1 ... aN clos)
|
|
|
|
(let (clos1 (app clos.code a1 clos)
|
|
|
|
clos2 (app clos1.code a2 clos)
|
|
|
|
...
|
|
|
|
closN-1 (app closN-2.code aN-1 closN-2))
|
|
|
|
(app closN-1.code aN closN-1))))
|
|
|
|
*)
|
|
|
|
|
|
|
|
let apply_function arity =
|
1996-04-22 04:15:41 -07:00
|
|
|
let arg = Array.create arity (Ident.create "arg") in
|
|
|
|
for i = 1 to arity - 1 do arg.(i) <- Ident.create "arg" done;
|
|
|
|
let clos = Ident.create "clos" in
|
1995-07-02 09:41:48 -07:00
|
|
|
let rec app_fun clos n =
|
|
|
|
if n = arity-1 then
|
|
|
|
Cop(Capply typ_addr,
|
|
|
|
[get_field (Cvar clos) 0; Cvar arg.(n); Cvar clos])
|
|
|
|
else begin
|
1996-04-22 04:15:41 -07:00
|
|
|
let newclos = Ident.create "clos" in
|
1995-07-02 09:41:48 -07:00
|
|
|
Clet(newclos,
|
|
|
|
Cop(Capply typ_addr,
|
|
|
|
[get_field (Cvar clos) 0; Cvar arg.(n); Cvar clos]),
|
|
|
|
app_fun newclos (n+1))
|
|
|
|
end in
|
|
|
|
let all_args = Array.to_list arg @ [clos] in
|
|
|
|
let body =
|
|
|
|
Cifthenelse(
|
|
|
|
Cop(Ccmpi Ceq, [get_field (Cvar clos) 1; int_const arity]),
|
|
|
|
Cop(Capply typ_addr,
|
|
|
|
get_field (Cvar clos) 2 :: List.map (fun s -> Cvar s) all_args),
|
|
|
|
app_fun clos 0) in
|
|
|
|
Cfunction
|
|
|
|
{fun_name = "caml_apply" ^ string_of_int arity;
|
|
|
|
fun_args = List.map (fun id -> (id, typ_addr)) all_args;
|
|
|
|
fun_body = body;
|
|
|
|
fun_fast = true}
|
|
|
|
|
1996-10-22 06:36:12 -07:00
|
|
|
(* Generate tuplifying functions:
|
|
|
|
(defun caml_tuplifyN (arg clos)
|
|
|
|
(app clos.direct #0(arg) ... #N-1(arg) clos)) *)
|
|
|
|
|
|
|
|
let tuplify_function arity =
|
|
|
|
let arg = Ident.create "arg" in
|
|
|
|
let clos = Ident.create "clos" in
|
|
|
|
let rec access_components i =
|
|
|
|
if i >= arity
|
|
|
|
then []
|
|
|
|
else get_field (Cvar arg) i :: access_components(i+1) in
|
|
|
|
Cfunction
|
|
|
|
{fun_name = "caml_tuplify" ^ string_of_int arity;
|
|
|
|
fun_args = [arg, typ_addr; clos, typ_addr];
|
|
|
|
fun_body =
|
|
|
|
Cop(Capply typ_addr,
|
|
|
|
get_field (Cvar clos) 2 :: access_components 0 @ [Cvar clos]);
|
|
|
|
fun_fast = true}
|
|
|
|
|
1995-07-02 09:41:48 -07:00
|
|
|
(* Generate currying functions:
|
|
|
|
(defun caml_curryN (arg clos)
|
|
|
|
(alloc HDR caml_curryN_1 arg clos))
|
|
|
|
(defun caml_curryN_1 (arg clos)
|
|
|
|
(alloc HDR caml_curryN_2 arg clos))
|
|
|
|
...
|
|
|
|
(defun caml_curryN_N-1 (arg clos)
|
|
|
|
(let (closN-2 clos.cdr
|
|
|
|
closN-3 closN-2.cdr
|
|
|
|
...
|
|
|
|
clos1 clos2.cdr
|
|
|
|
clos clos1.cdr)
|
|
|
|
(app clos.direct
|
|
|
|
clos1.car clos2.car ... closN-2.car clos.car arg clos))) *)
|
|
|
|
|
|
|
|
let final_curry_function arity =
|
1996-04-22 04:15:41 -07:00
|
|
|
let last_arg = Ident.create "arg" in
|
|
|
|
let last_clos = Ident.create "clos" in
|
1995-07-02 09:41:48 -07:00
|
|
|
let rec curry_fun args clos n =
|
|
|
|
if n = 0 then
|
|
|
|
Cop(Capply typ_addr,
|
|
|
|
get_field (Cvar clos) 2 ::
|
|
|
|
args @ [Cvar last_arg; Cvar clos])
|
|
|
|
else begin
|
1996-04-22 04:15:41 -07:00
|
|
|
let newclos = Ident.create "clos" in
|
1995-07-02 09:41:48 -07:00
|
|
|
Clet(newclos,
|
|
|
|
get_field (Cvar clos) 3,
|
|
|
|
curry_fun (get_field (Cvar clos) 2 :: args) newclos (n-1))
|
|
|
|
end in
|
|
|
|
Cfunction
|
|
|
|
{fun_name = "caml_curry" ^ string_of_int arity ^
|
|
|
|
"_" ^ string_of_int (arity-1);
|
|
|
|
fun_args = [last_arg, typ_addr; last_clos, typ_addr];
|
|
|
|
fun_body = curry_fun [] last_clos (arity-1);
|
|
|
|
fun_fast = true}
|
|
|
|
|
|
|
|
let rec intermediate_curry_functions arity num =
|
|
|
|
if num = arity - 1 then
|
|
|
|
[final_curry_function arity]
|
|
|
|
else begin
|
|
|
|
let name1 = "caml_curry" ^ string_of_int arity in
|
|
|
|
let name2 = if num = 0 then name1 else name1 ^ "_" ^ string_of_int num in
|
1996-04-22 04:15:41 -07:00
|
|
|
let arg = Ident.create "arg" and clos = Ident.create "clos" in
|
1995-07-02 09:41:48 -07:00
|
|
|
Cfunction
|
|
|
|
{fun_name = name2;
|
|
|
|
fun_args = [arg, typ_addr; clos, typ_addr];
|
|
|
|
fun_body = Cop(Calloc,
|
1995-07-07 05:07:07 -07:00
|
|
|
[alloc_closure_header 4;
|
1995-07-02 09:41:48 -07:00
|
|
|
Cconst_symbol(name1 ^ "_" ^ string_of_int (num+1));
|
|
|
|
int_const 1; Cvar arg; Cvar clos]);
|
|
|
|
fun_fast = true}
|
|
|
|
:: intermediate_curry_functions arity (num+1)
|
|
|
|
end
|
|
|
|
|
|
|
|
let curry_function arity =
|
1996-10-22 06:36:12 -07:00
|
|
|
if arity >= 0
|
|
|
|
then intermediate_curry_functions arity 0
|
|
|
|
else [tuplify_function (-arity)]
|
1995-07-02 09:41:48 -07:00
|
|
|
|
|
|
|
(* Generate the entry point *)
|
|
|
|
|
|
|
|
let entry_point namelist =
|
2000-01-05 05:16:31 -08:00
|
|
|
let incr_global_inited =
|
2000-02-04 04:43:18 -08:00
|
|
|
Cop(Cstore Word,
|
|
|
|
[Cconst_symbol "caml_globals_inited";
|
|
|
|
Cop(Caddi, [Cop(Cload Word, [Cconst_symbol "caml_globals_inited"]);
|
|
|
|
Cconst_int 1])]) in
|
1995-07-02 09:41:48 -07:00
|
|
|
let body =
|
|
|
|
List.fold_right
|
|
|
|
(fun name next ->
|
2002-02-08 08:55:44 -08:00
|
|
|
Csequence(Cop(Capply typ_void, [Cconst_symbol(name ^ "__entry")]),
|
2000-01-05 05:16:31 -08:00
|
|
|
Csequence(incr_global_inited, next)))
|
|
|
|
namelist (Cconst_int 1) in
|
1995-07-02 09:41:48 -07:00
|
|
|
Cfunction {fun_name = "caml_program";
|
|
|
|
fun_args = [];
|
|
|
|
fun_body = body;
|
|
|
|
fun_fast = false}
|
|
|
|
|
1996-02-20 02:59:12 -08:00
|
|
|
(* Generate the table of globals *)
|
1995-07-02 09:41:48 -07:00
|
|
|
|
2000-02-11 07:09:27 -08:00
|
|
|
let cint_zero = Cint(Nativeint.zero)
|
1997-03-04 02:19:51 -08:00
|
|
|
|
1995-07-02 09:41:48 -07:00
|
|
|
let global_table namelist =
|
2002-11-24 07:55:26 -08:00
|
|
|
Cdata(Cglobal_symbol "caml_globals" ::
|
|
|
|
Cdefine_symbol "caml_globals" ::
|
1995-07-02 09:41:48 -07:00
|
|
|
List.map (fun name -> Csymbol_address name) namelist @
|
1997-03-04 02:19:51 -08:00
|
|
|
[cint_zero])
|
1995-07-02 09:41:48 -07:00
|
|
|
|
1998-11-20 07:35:04 -08:00
|
|
|
let globals_map namelist =
|
2002-11-24 07:55:26 -08:00
|
|
|
Cdata(Cglobal_symbol "globals_map" ::
|
|
|
|
emit_constant "globals_map"
|
1998-11-20 07:35:04 -08:00
|
|
|
(Const_base (Const_string (Marshal.to_string namelist []))) [])
|
|
|
|
|
1996-02-20 02:59:12 -08:00
|
|
|
(* Generate the master table of frame descriptors *)
|
|
|
|
|
1995-07-02 09:41:48 -07:00
|
|
|
let frame_table namelist =
|
2002-11-24 07:55:26 -08:00
|
|
|
Cdata(Cglobal_symbol "caml_frametable" ::
|
|
|
|
Cdefine_symbol "caml_frametable" ::
|
2002-02-08 08:55:44 -08:00
|
|
|
List.map (fun name -> Csymbol_address(name ^ "__frametable")) namelist
|
|
|
|
@ [cint_zero])
|
1995-07-18 01:40:44 -07:00
|
|
|
|
1997-07-02 11:16:15 -07:00
|
|
|
(* Generate the table of module data and code segments *)
|
1996-02-20 02:59:12 -08:00
|
|
|
|
1997-07-02 11:16:15 -07:00
|
|
|
let segment_table namelist symbol begname endname =
|
2002-11-24 07:55:26 -08:00
|
|
|
Cdata(Cglobal_symbol symbol ::
|
|
|
|
Cdefine_symbol symbol ::
|
1996-02-20 02:59:12 -08:00
|
|
|
List.fold_right
|
|
|
|
(fun name lst ->
|
1997-07-02 11:16:15 -07:00
|
|
|
Csymbol_address(name ^ begname) ::
|
|
|
|
Csymbol_address(name ^ endname) :: lst)
|
1996-02-20 02:59:12 -08:00
|
|
|
namelist
|
1997-03-04 02:19:51 -08:00
|
|
|
[cint_zero])
|
1996-02-20 02:59:12 -08:00
|
|
|
|
1997-07-02 11:16:15 -07:00
|
|
|
let data_segment_table namelist =
|
2002-02-08 08:55:44 -08:00
|
|
|
segment_table namelist "caml_data_segments" "__data_begin" "__data_end"
|
1997-07-02 11:16:15 -07:00
|
|
|
|
|
|
|
let code_segment_table namelist =
|
2002-02-08 08:55:44 -08:00
|
|
|
segment_table namelist "caml_code_segments" "__code_begin" "__code_end"
|
1997-07-02 11:16:15 -07:00
|
|
|
|
1995-07-18 01:40:44 -07:00
|
|
|
(* Initialize a predefined exception *)
|
|
|
|
|
|
|
|
let predef_exception name =
|
2002-11-24 07:55:26 -08:00
|
|
|
Cdata(Cglobal_symbol name ::
|
|
|
|
emit_constant name (Const_block(0,[Const_base(Const_string name)])) [])
|