Viewing profile — nominolo
nominolo
HN member- Joined
- Wed, Mar 10, 2010, 6:28 PM UTC
- HN karma
- 11
- Public activity
- 6 items
- HN profile
- View on Hacker News ↗
About nominolo
No profile information was provided.
Recent public activity
-
comment
Comment #2480931
Here's some related work from 2005: http://www.google.co.uk/search?ie=UTF-8&q=%22A+Nitpicker...
-
comment
Comment #1660349
GHC has a comparatively expensive write barrier. That could be seen as taking advantage of immutability. The runtime system takes more advantage of purity, though. For example, it'…
-
comment
Comment #1427815
Incidentally fusion won't work for this example (at least not as currently implemented.) Only `foldr` is fusable. Fortunately, regular inlining does just fine. There is of course a…
-
comment
Comment #1239115
No, the problem with Itanium is/was that it's no-one knew how to write good compilers for them. Also, VLIW is incredibly close to the hardware and thus bound to be outdated very qu…
-
comment
Comment #1181637
JIT simply stands for Just-in-time compilation or optimisation, that is you delay optimising parts of your program until the program executes. Most systems start of by interpreting…
-
comment
Comment #1181585
A closure is a function + environment, i.e., the values of its free variables at the time of creation. A thunk is a suspended computation together with an environment. That is, a t…