Browse thread
Re: [Caml-list] Polymorphic Variants and Number Parameterized Typ es
[
Home
]
[ Index:
by date
|
by threads
]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
| Date: | -- (:) |
| From: | Francois Pottier <francois.pottier@i...> |
| Subject: | Re: [Caml-list] Modules and typing |
Hello, Noel Welsh wrote: > > adopt specialized representations only, > > duplicating polymorphic functions > > if they have to be used at several types whose > > representations differ > > I believe MLTon does this, at the cost of no separate > compilation. MLton does a bit more than that, really. It specializes *all* polymorphic code, so that, after the transformation, the program can be typed in a monomorphic type discipline. My suggestion, on the other hand, was to duplicate polymorphic code only on a ``per-kind'' basis; for instance, if all product types are of kind POINTER and (unboxed) integers are of kind INT, then a polymorphic function (say, the identity) that is used at types (say) int * int, float * float and int would only be compiled twice. I believe this would severely limit the ``code size explosion'' problem that is sometimes feared when doing monomorphization. -- François Pottier Francois.Pottier@inria.fr http://pauillac.inria.fr/~fpottier/ ------------------- 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