From: David LONY <david.lony@pragmadev.com>
To: Alain Frisch <alain@frisch.fr>
Cc: caml-list@yquem.inria.fr
Subject: Re: [Caml-list] Interface between Ocaml and Assembler
Date: Fri, 04 Jan 2008 17:45:53 +0100 [thread overview]
Message-ID: <477E62C1.8060301@pragmadev.com> (raw)
In-Reply-To: <477DFFC7.8@frisch.fr>
Ok ok..
But it will be easier to make a "bridge" like this one : "asm code" ->
"C code"->"Ocaml code" ?
For instance I made 3 program :
The first one in assembly (gas.S):
.text
.global _start
_start:
call main
ret
The second in C (test.c):
#include <stdio.h>
#include <caml/mlvalues.h>
#include <caml/callback.h>
int test_char(int n)
{
static value * test_char_closure = NULL;
if (test_char_closure == NULL)
{
test_char_closure = caml_named_value("caml_test_char");
}
return Int_val(caml_callback(*test_char_closure, Val_int(n)));
}
int main(int argc, char ** argv)
{
int result;
caml_startup(argv);
result = test_char(10);
printf("%d\n", result);
return 0;
}
and the last in Ocaml (truc.ml) :
let test_char a = a+1
let _ = Callback.register "caml_test_char" test_char;;
But when I try to compile and link all object it fails...
as gas.S -o gas.o
gcc -c test.c -o test.o
ocamlopt -output-obj truc.ml -o truc_main.o
ld -o test gas.o test.o truc_main.o -L/usr/lib/ocaml/3.09.2/ -lasmrun
-lm -ldl
/usr/lib/ocaml/3.09.2//libasmrun.a(ints.o): In function
`caml_int64_of_string':
(.text+0xb4b): undefined reference to `__udivdi3'
/usr/lib/ocaml/3.09.2//libasmrun.a(ints.o): In function `caml_int64_mod':
(.text+0xe55): undefined reference to `__moddi3'
/usr/lib/ocaml/3.09.2//libasmrun.a(ints.o): In function `caml_int64_div':
(.text+0xe9e): undefined reference to `__divdi3'
Does anyone has a solution ?
Regards.
David LONY
Alain Frisch a écrit :
> David LONY wrote:
>> Is it possible to interface assembler code with an Ocaml code ? I
>> mean..is it possible to call a Ocaml function from an assembler code
>> by using the asm instruction "call my_function" (gas asm)?
>
> Yes, you can call an OCaml function from assembler using the same
> method as from C, that is through caml_callback* functions (see
> Section 18.7.1 in the OCaml manual). However, dealing with the GC
> properly in assembler is tricky: you'll have to reproduce the behavior
> of the CAMLlocal and CAMLparam macros.
>
> -- Alain
>
>
>
next prev parent reply other threads:[~2008-01-04 16:40 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-01-04 9:42 David LONY
2008-01-04 9:43 ` [Caml-list] " Alain Frisch
2008-01-04 16:45 ` David LONY [this message]
2008-01-04 16:58 ` Xavier Leroy
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=477E62C1.8060301@pragmadev.com \
--to=david.lony@pragmadev.com \
--cc=alain@frisch.fr \
--cc=caml-list@yquem.inria.fr \
/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