caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
From: "Jeff Henrikson" <jehenrik@yahoo.com>
To: "malc" <malc@pulsesoft.com>
Cc: <caml-list@inria.fr>
Subject: [Caml-list] Shared object generation patch feedback
Date: Sun, 7 Oct 2001 22:25:10 -0400	[thread overview]
Message-ID: <002901c14fa0$73f85220$0b01a8c0@mit.edu> (raw)
In-Reply-To: <Pine.LNX.4.21.0110060608470.9755-100000@oyster>

> At http://algol.prosalg.no/~malc/scaml you will find a patch against
> OCaml 3.02 and some information suitable for producing shared objects
> on i386 ELF systems.

Nice!  It compiled right out of the box, no unexpected difficulties.

Is there a way to get a asm runtime in a shared lib?  (Either for the purposes of having small executables or for calling from
non-caml)

I am having a hard time understanding how this works due to the fact that I don't understand the ocaml calling/symbol naming
convention.  I've been reading some assembly intermediary files and nm dumps, but I am still confused and am wondering if there's
some general documentation somewhere.

Here's an example of something that confuses me.  I make a file testlib.ml:

> open Printf;;
>
> let rec print_int_list x =
>   match x with
>     [] -> ()
>   | hd::tl -> printf "%d " hd; (print_int_list tl);;
>
> let rec mymap f l =
>   match l with
>     [] -> []
>   | hd::tl -> (f hd)::(mymap f tl);;

and I nm testlib.so and get

> 000010c0 T Testlib_code_begin
> 0000118a T Testlib_code_end
> 000023f4 D Testlib_data_begin
> 00002424 D Testlib_data_end
> 00001170 T Testlib_entry
> 00002428 D Testlib_frametable
> 00001100 T Testlib_mymap_53
> 000010c0 T Testlib_print_int_list_49

So I wonder:

1) where do the numbers 53 and 49 come from, and do I care?  For example, if they are arbitrary (as I surmise) and socked away in
testlib.so.cmxa, then don't I get screwed if I try to build an program linked against testlib.so.cmxa and then decide that I want
to change the implementation of testlib?  If so, is there a way to define a symbol table just from an mli?  (A .so.cmi file or
something?)  This command only produces a .cmi:

ocamlopt -shared -o foo.so foo.mli

2) what do the other entry points mean, eg Testlib_entry, and do I care?

Great work if this actually is heading down the path to real system deployment with ocaml!


Jeff Henrikson



-------------------
Bug reports: http://caml.inria.fr/bin/caml-bugs  FAQ: http://caml.inria.fr/FAQ/
To unsubscribe, mail caml-list-request@inria.fr  Archives: http://caml.inria.fr


  reply	other threads:[~2001-10-08  2:12 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2001-10-06  2:11 [Caml-list] Shared object generation patch malc
2001-10-08  2:25 ` Jeff Henrikson [this message]
2001-10-08  9:18   ` [Caml-list] Shared object generation patch feedback malc

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='002901c14fa0$73f85220$0b01a8c0@mit.edu' \
    --to=jehenrik@yahoo.com \
    --cc=caml-list@inria.fr \
    --cc=malc@pulsesoft.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).