Mailing list for all users of the OCaml language and system.
 help / color / mirror / Atom feed
From: John Gerard Malecki <johnm@artisan.com>
To: "Lukasz Stafiniak" <luk_stafi@wp.pl>
Cc: <caml-list@inria.fr>
Subject: RE: [Caml-list] Let-in vs beta-redex
Date: Mon, 1 Sep 2003 11:09:42 -0700	[thread overview]
Message-ID: <16211.35686.771730.386438@barrow.artisan.com> (raw)
In-Reply-To: <000e01c370a4$592d6300$3bef4dd5@ppp>

Lukasz Stafiniak wrote (2003-09-01T18:15:54+0200):
 > Hi,
 > 
 > Is let-in more efficient than beta-redex or are they computationally
 > equivalent? Is let-in a syntax-sugar of beta-redex?

They may be conceptually different but they compile to pretty much teh
same thing.  A nice trick to learn about the code that ocamlc
generates is to use 'ocaml -dinstr'.  For example,


:; ocaml -dinstr
        Objective Caml version 3.07+beta 2

# let x = sin 2. in x *. x *. x;;
        const 2.
        ccall sin_float, 1
        push
        acc 0
        push
        acc 1
        push
        acc 2
        ccall mul_float, 2
        ccall mul_float, 2
        return 2

- : float = 0.751826944668992803
# (fun x -> x *. x *. x) (sin 2.);;
        const 2.
        ccall sin_float, 1
        push
        closure L1, 0
        appterm 1, 2
L1:     acc 0
        push
        acc 1
        push
        acc 2
        ccall mul_float, 2
        ccall mul_float, 2
        return 1

- : float = 0.751826944668992803
# 

-------------------
To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr
Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners


  reply	other threads:[~2003-09-01 18:09 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2003-09-01 16:15 Lukasz Stafiniak
2003-09-01 18:09 ` John Gerard Malecki [this message]
2003-09-02 10:26 ` Michal Moskal

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=16211.35686.771730.386438@barrow.artisan.com \
    --to=johnm@artisan.com \
    --cc=caml-list@inria.fr \
    --cc=luk_stafi@wp.pl \
    /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