0
votes
8answers
138 views
Internal implementation of java.util.HashMap and HashSet
I have been trying to understand the internal implementation of java.util.HashMap and java.util.HashSet.
Following are the doubts popping in my mind for a while:
Whats is the im …
2
votes
4answers
193 views
Java - Why all fields in an interface are implicitly static and final?
I am just trying to understand why all fields defined in an Interface are implicitly static and final. The idea of keeping fields static makes sense to me as you can't have objects …
13
votes
2answers
288 views
What Lisp is better at parsing?
I'd like to implement a Lisp interpreter in a Lisp dialect mainly as a learning exercise. The one thing I'm thrown off by is just how many choices there are in this area. Primari …
12
votes
15answers
2k views
What’s a good Common Lisp implementation for Windows?
What's your favourite?
See also this related question.
10
votes
6answers
230 views
what exactly is a “register machine” ?
From http://code.google.com/p/unladen-swallow/wiki/ProjectPlan I quote:
"Using a JIT will also allow us to move Python from a stack-based machine to a register machine, which has …
9
votes
5answers
547 views
Are there any Common Lisp implementations for .Net?
Related to my other CL question.
2
votes
2answers
203 views
IE8 JavaScript: select.options behaviour
I've today discovered some strange behaviour in IE8's implementation of the DOM select element's JavaScript 'options' property.
Given the following HTML:
<select id="sel">& …
0
votes
5answers
201 views
C: Behaviour of the `const` keyword
I've been told that if I'm coding in ANSI-C to declare in the order that the variables will be used, assert that pointers are not null and that indices are within bounds, and to in …
13
votes
5answers
857 views
How is the C++ exception handling runtime implemented?
I am intrigued by how the C++ exception handling mechanism works. Specifically, where is the exception object stored and how does it propagate through several scopes until it is ca …
5
votes
1answer
114 views
Private inner class synthesizes unexpected anonymous class
When you compile a Java class with a private inner class, it appears that an anonymous class is automatically synthesized along with it for some reason. This class is sufficient to …
8
votes
7answers
485 views
How is C++’s multiple inheritance implemented?
Single inheritance is easy to implement. For example, in C, the inheritance can be simulated as:
struct Base { int a; }
struct Descendant { Base parent; int b; }
But with multip …
1
vote
2answers
164 views
How to implement a practical fiber scheduler?
I know the very basics about using coroutines as a base and implementing a toy scheduler. But I assume it's oversimplified view about asynchronous schedulers in whole. There are wh …
0
votes
2answers
172 views
Garbage collection and runtime type information
The fixnum question brought my mind to an other question I've wondered for a long time.
Many online material about garbage collection does not tell about how runtime type informat …
0
votes
1answer
74 views
Dynamic linking with smalltalk objects
I plan about implementing a dynamic linking into my smalltalk dialect. The problem is about getting message passing to work with dynamic linking.
Message passing itself is as simp …
2
votes
1answer
281 views
How would you re-use C opcode implementations when writing a JIT with LLVM ?
In the llvm tutorials and examples, the compiler outputs LLVM IR by making calls like this
return Builder.CreateAdd(L, R, "addtmp");
but many interpreters are written like this: …
