Tagged Questions
The language-implementation tag has no wiki summary.
35
votes
8answers
1k views
Why is the main method entry point in most C# programs static?
Why is the main method entry point in most C# programs static?
34
votes
4answers
4k views
PyPy — How can it possibly beat CPython?
From the Google Open Source Blog:
PyPy is a reimplementation of Python
in Python, using advanced techniques
to try to attain better performance
than CPython. Many years of hard work
have ...
29
votes
17answers
19k views
What's a good Common Lisp implementation for Windows?
What's your favourite?
See also this related question.
22
votes
7answers
4k views
19
votes
6answers
3k 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 caught? Is it stored ...
17
votes
2answers
812 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. Primarily, I'm a bit more ...
15
votes
3answers
500 views
Is there a book which teaches about compilers using Haskell?
There are many books which teach compiler design using C or Java (Dragon book). Are there any which teach compilers based on haskell?
EDIT It should be about traditional compiler techniques, and not ...
15
votes
6answers
1k 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 been shown to ...
14
votes
7answers
2k 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 multiple inheritance, the ...
14
votes
4answers
3k views
How are associative arrays implemented in PHP?
Can someone explain how PHP implements associative arrays? What underlying data structure does PHP use? Does PHP hash the key and store it in some kind of hash map? I am curious because I was ...
13
votes
4answers
325 views
Is there a Scheme implementation that parallelizes?
Is there a R5RS-or-higher Scheme implementation that does parallelization? For example, if I say to do:
(map (lambda (x)
(pure-functional-stuff x))
'(1 3 5 7 11 13))
it will process ...
12
votes
2answers
378 views
How are arrays implemented in Perl?
The Perl array is an abstract data type. What's the internal mechanism for the Perl array? Is it implemented with dynamic array or linked list?
Since the array elements have random access, I would ...
10
votes
2answers
214 views
Compiling functional languages to C
Suppose you're compiling a functional language to portable C, and suppose also that for various reasons you want precise rather than conservative garbage collection. There is no portable way (perhaps ...
10
votes
3answers
816 views
How are java interfaces implemented internally? (vtables?)
C++ has multiple inheritance. The implementation of multiple inheritance at the assembly level can be quite complicated, but there are good descriptions online on how this is normally done (vtables, ...
10
votes
5answers
768 views
How does a haskell compiler works?
Okay, just another doku question:
Where can I get some paper/doc/whatever which describes how a Haskell compiler actually works? I read much of the docs of GHC, but stopped with headache somewhat ...
9
votes
4answers
906 views
How could one implement C++ virtual functions in C [closed]
Possible Duplicate:
Object oriented programming in C
The C++ language provides virtual functions. Within the constraints of a pure C language implementation, how can a similar effect be ...
8
votes
6answers
264 views
How does a macro-enabled language keep track of the source code for debugging?
This is a more theoretical question about macros (I think). I know macros take source code and produce object code without evaluating it, enabling programmers to create more versatile syntactic ...
8
votes
5answers
2k views
range for integer values of chars in c++
I'm reading The C++ Programming Language and in it Stroustrup states that the int value of a char can range from 0 to 255 or -127 to 127, depending on implementation. Is this correct? It seems like it ...
7
votes
4answers
165 views
A smart garbage collector for sharing subranges of arrays?
In this popular question about why substring takes O(n) in C#, one of the main answers provided argued that if a large array were allocated and substrings computed by having the new strings just ...
6
votes
1answer
151 views
Is 'yield' keyword a syntactic sugar ? What is its Implementation [closed]
Possible Duplicate:
yield statement implementation
I've seen msdn docs and it says:
The yield keyword signals to the compiler that the method in which it appears is an iterator block. ...
6
votes
5answers
207 views
Byte code stack versus three address
When designing a byte code interpreter, is there a consensus these days on whether stack or three address format (or something else?) is better? I'm looking at these considerations:
The objective ...
6
votes
1answer
126 views
Where is it specified whether Unicode identifiers should be allowed in a Haskell implementation?
I wanted to write some educational code in Haskell with Unicode characters (non-Latin) in the identifiers. (So that the identifiers look nice and natural for speakers of a natural language other than ...
5
votes
9answers
18k 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 importance of the ...
5
votes
3answers
2k 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 of an interface but ...
5
votes
7answers
1k 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 initialize just before ...
5
votes
1answer
229 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 reproduce it:
...
5
votes
1answer
897 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:
switch (opcode) {
...
5
votes
2answers
580 views
Unexpected list comprehension behaviour in Python
I believe I'm getting bitten by some combination of nested scoping rules and list comprehensions. Jeremy Hylton's blog post is suggestive about the causes, but I don't really understand CPython's ...
4
votes
2answers
93 views
Garbage collection implementation in compiled languages
When implementing precise garbage collection, there is always the issue of figuring out which words on the stack are pointers and which are other kinds of data such as integers or floating point ...
4
votes
4answers
195 views
In Lisp and other functional languages, why is length not O(1)
The list primitives in Lisp have the opperator length defined as follows:
(define (length lst)
(if (null? lst) 0 (+ 1 (length (cdr lst)))))
Why can't implementers of some Lisp make length a ...
4
votes
1answer
142 views
Why can you omit the surrounding parentheses for generators in Python when passing it into a function?
I was just experimenting in Python with different syntax for passing in a generator as an argument to a function, and I realized that although I've been doing this,
>>> sum((j for j in ...
4
votes
1answer
87 views
How is @private implemented?
In Objective-C, I'm curious how access controls for instance variables, like @private,@protected, etc. are implemented.
I had considered that separate structures were being generated in some way like ...
3
votes
6answers
229 views
Python: the mechanism behind list comprehension
When using list comprehension or the in keyword in a for loop context, i.e:
for o in X:
do_something_with(o)
or
l=[o for o in X]
How does the mechanism behind in works?
Which ...
3
votes
2answers
146 views
What systems out there use non-uniform pointer representation? [closed]
Possible Duplicate:
Are there are any platforms where pointers to different types have different sizes?
I have read in several places that pointers of different types may have different ...
3
votes
4answers
1k views
C/C++ Control Structure Limitations?
I have heard of a limitation in VC++ (not sure which version) on the number of nested if statements (somewhere in the ballpark of 300). The code was of the form:
if (a) ...
else if (b) ...
else if ...
3
votes
2answers
1k 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"><option ...
3
votes
11answers
3k views
C pointers in C#
Is this function declaration in C#:
void foo(string mystring)
the same as this one in C:
void foo(char *)
i.e. In C#, does the called function receive a pointer behind the scenes?
2
votes
3answers
863 views
Matlab: how to implement a dynamic vector
I am refering to an example like this
I have a function to analize the elements of a vector, 'input'. If these elements have a special property I store their values in a vector, 'output'.
The problem ...
2
votes
3answers
791 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 whole set of holes ...
2
votes
2answers
195 views
Unicode strings in process memory
What is the most preferred format of unicode strings in memory when they are being processed? And why?
I am implementing a programming language by producing an executable file image for it. Obviously ...
1
vote
1answer
28 views
Does handling recursion need special treatment when designing a compiler?
Function calls are handled via a stack data structure. Is this enough for supporting recursion?
1
vote
1answer
39 views
What are the versions of cpython which different implementations(jython/ironpython/pypy/ect.) are roughly compatible with
i.e. jython(or other implementation) version x.y is roughly equivalent to cpython version a.b
Please list version of alternative implementation, and feel free to list multiple versions so this list ...
1
vote
2answers
73 views
basic question about structure
struct
{
int integer;
float real;
}
first_structure;
So we can refer to a member of the first_structure by writing
first_structure.integer = 7
If I write:
struct two_numbers
{
int ...
1
vote
2answers
33 views
Looking for suggestions and ideas on picking a tool and architecture for a “soft” real-time system
I've been tasked with building a "soft" real-time application. By that I mean that
it should be able to receive a fairly large amount of data each second, process
and aggregate the output, and ...
1
vote
2answers
61 views
What are the possible ways to do garbage collection in concurrent systems?
I need to write a garbage collector for an interpreter that will support concurrency, but I can only find information about garbage collection without anything to do with concurrency.
Are there ...
1
vote
2answers
237 views
How does the decimal accuracy of Python compare to that of C?
I was looking at the Golden Ratio formula for finding the nth Fibonacci number, and it made me curious.
I know Python handles arbitrarily large integers, but what sort of precision do you get with ...
1
vote
2answers
234 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 information can be ...
0
votes
0answers
57 views
How to map a complex SQL SELECT command into a sequential set of fundamental operations… and why?
I have dabbled with SQL while writing my website and all that is fine. When I need more complex queries, I rely on the magic of Rails to construct them for me. That is fine too.
But what I lack is a ...
0
votes
0answers
27 views
Which Curry implementations support Unicode identifiers, and which don't?
Which implementations of Curry programming language do support identifiers written with Unicode characters (non-Latin) in the source code, and which are known not to accept Unicode identifiers?
I'm ...
0
votes
1answer
79 views
How is a Java object constructed?
If I create a class like:
public class Test{
int id;
String name;
}
Now, if I have to use the class, we have to just create a instance of the class as
Test testObj = new Test();
I ...