caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
From: Gerd Stolpmann <info@gerd-stolpmann.de>
To: Norman Hardy <norm@cap-lore.com>
Cc: Caml List <caml-list@inria.fr>
Subject: AW: [Caml-list] Compiled code that uses the stack when it can.
Date: Mon, 05 Nov 2012 20:33:35 +0100	[thread overview]
Message-ID: <1352144015.29929.0@samsung> (raw)
In-Reply-To: <20D75025-C0A1-43A0-89BE-30AD5ED04545@cap-lore.com> (from norm@cap-lore.com on Mon Nov  5 20:21:13 2012)

Am 05.11.2012 20:21:13 schrieb(en) Norman Hardy:
> Is there a way to get ocamlopt to leave the C sources behind?
> Does ocamlopt ever use the stack to call functions that it compiled?

Yes, this is even part of the normal way: Arguments are passed in  
registers, and if exceeding the number of registers, via the stack.  
Same as in C (but different details).

Only when a closure needs to be built because of incomplete arguments,  
the closure is allocated on the heap, and when the remaining arguments  
"arrive", a generated helper function shuffles the arguments back to  
registers/stack, and the function is finally called.

Gerd

> Does anyone know of compilers that use the stack when they can but  
> uses the heap when it must?
> Is there literature on this?
> This slide set is very useful but seems to suggest that internal  
> functions representations are treated uniformly.
> http://pauillac.inria.fr/~xleroy/talks/compilation-agay.pdf
> 
> I am thinking about static code analysis to determine two or perhaps  
> three ways free variables in a function might be handled.
> It is hard enough that I would like to see if it has been done before.
> 
> 
> 
> --
> Caml-list mailing list.  Subscription management and archives:
> https://sympa.inria.fr/sympa/arc/caml-list
> Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
> Bug reports: http://caml.inria.fr/bin/caml-bugs
> 



-- 
------------------------------------------------------------
Gerd Stolpmann, Darmstadt, Germany    gerd@gerd-stolpmann.de
Creator of GODI and camlcity.org.
Contact details:        http://www.camlcity.org/contact.html
Company homepage:       http://www.gerd-stolpmann.de
------------------------------------------------------------

  reply	other threads:[~2012-11-05 19:33 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-11-05 19:21 Norman Hardy
2012-11-05 19:33 ` Gerd Stolpmann [this message]
2012-11-05 22:25 ` Pierre Chambart

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=1352144015.29929.0@samsung \
    --to=info@gerd-stolpmann.de \
    --cc=caml-list@inria.fr \
    --cc=norm@cap-lore.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).