The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
4answers
105 views

Compiling via C/C++ and compiler bugs/limits

I'm looking at the possibility of implementing a high-level (Lisp-like) language by compiling via C (or possibly C++ if exceptions turn out to be useful enough); this is a strategy a number of ...
0
votes
1answer
105 views

How does System.String save his string [closed]

I'am not a beginner in .Net, but far away from being a 'guru'. So to become better I find it helpful to discover the .Net-Framework in self and how Microsoft implements all the nice things. So last ...
11
votes
2answers
204 views

Why is __FILE__ uppercase and __dir__ lowercase?

In Ruby 2.0.0-p0, the __dir__ variable was introduced for easy access to the directory of the file currently being executed. Why is __dir__ lowercase when __FILE__ is uppercase?
0
votes
3answers
134 views

How to implement a functional language [closed]

I'm trying to learn the differences between imperative and functional languages. And also, I want to learn about closures and how garbage collectors are implemented. So I decided to try to implement ...
0
votes
2answers
157 views

ArrayList internal implementation

Hopefully this is not a duplicate. Before anything, I know ArrayList are not the best choice but this is just curiosity. Simply, I was wondering about the implementation of ArrayList. I looked and ...
23
votes
4answers
431 views

Why must Python list addition be homogenous?

Can anyone familiar with Python's internals (CPython, or other implementations) why list addition is required to be homogenous: In [1]: x = [1] In [2]: x+"foo" ...
0
votes
1answer
80 views

Programming languages that accept Microsoft Word documents as source code

The Slate article Where's _why? has the author making the mistake of trying to use a Microsoft Word document as source code for Ruby. This makes me wonder - are there any implementations of ...
2
votes
1answer
121 views

Implementation of Prolog in a Pure Functional Language [closed]

I would be greatly appreciative of a simple pseudo-code algorithm for implementing Prolog, where the pseudo-code is taken to be for a pure functional language.
13
votes
1answer
172 views

Why does binding affect the type of my map?

I was playing around in the REPL and I got some weird behavior: Clojure 1.4.0 user=> (type {:a 1}) clojure.lang.PersistentArrayMap user=> (def x {:a 1}) #'user/x user=> (type x) ...
1
vote
2answers
80 views

What would the consequences be of allowing special forms to be treated as normal values?

I discovered that special forms can not be passed as arguments or saved in variables, both in Clojure: user=> (defn my-func [op] (op 1 2 3)) #'user/my-func user=> (my-func ...
13
votes
1answer
199 views

Why does `vector` implementation have multiple cases?

Here's clojure's definition of vector: (defn vector "Creates a new vector containing the args." {:added "1.0" :static true} ([] []) ([a] [a]) ([a b] [a b]) ([a b c] [a b c]) ([a b c ...
3
votes
1answer
275 views

How is foreach implemented in C#?

How exactly is foreach implemented in C#? I imagine a part of it looking like: var enumerator = TInput.GetEnumerator(); while(enumerator.MoveNext()) { // do some stuff here } However I'm unsure ...
1
vote
1answer
170 views

Default size of priority queue in java

I am wondering why the default size of a PriorityQueue in Java is 11. I looked up the implementation and it made things more confusingly for me. The priority queue is implemented as a heap. Its ...
2
votes
1answer
343 views

What's meant by a thread-safe Ruby interpreter?

In a 2000 interview (that is, pre-YARV), Matz said Matz: I'd like to make it faster and more stable. I'm planning a full rewrite of the interpreter for Ruby 2.0, code-named "Rite". It will be ...
1
vote
1answer
200 views

inspect.currentframe() may not work under some implementations?

According to the docs: inspect.currentframe() Return the frame object for the caller’s stack frame. CPython implementation detail: This function relies on Python stack frame support ...
2
votes
3answers
184 views

Shift operation implementation in java

I recently used the shift operators in Java and noticed that the >> operator does not have the same meaning as >> in C. In Java >> is Signed shift that keeps the first bit at the ...
4
votes
1answer
99 views

How to add traceback/debugging capabilities to a language implemented in python?

I'm using python to implement another programming language named 'foo'. All of foo's code will be translated to python, and will also be run in the same python interpreter, so it will JIT translate to ...
5
votes
5answers
274 views

How can an implementation of a language in the same language be faster than the language?

If I make a JVM in Java, for example, is it possible to make the implementation I made actually faster than the original implementation I used to build this implementation, even though my ...
-3
votes
1answer
340 views

where python store global and local variables?

Almost same as question where the local, global, static, auto, register, extern, const, volatile variables are stored?, the difference is this thread is asking how Python language implement this.
2
votes
4answers
111 views

X is enum - is this according to spec?

Test if an object is an Enum discusses testing an object with is Enum to see if it contains an enum value. Is this specified anywhere in the spec? The entry on is (7.10.10 in Version 4.0) lists the ...
0
votes
0answers
155 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 ...
1
vote
2answers
200 views

How is “letrec” implemented without using “set!”?

How can letrec be implemented without using set!? It seems to me that set! is an imperative programming construct, and that by using it, one loses the benefits of functional programming.
6
votes
1answer
237 views

Is 'yield' keyword a syntactic sugar ? What is its Implementation [duplicate]

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. ...
1
vote
1answer
53 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?
6
votes
2answers
301 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 ...
11
votes
2answers
331 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 ...
1
vote
1answer
90 views

What are the versions of cpython which different implementations(jython/ironpython/pypy/etc) 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 ...
10
votes
5answers
235 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 ...
4
votes
4answers
282 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 ...
6
votes
5answers
410 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 ...
1
vote
2answers
136 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 ...
6
votes
1answer
232 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 ...
0
votes
1answer
91 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 ...
19
votes
3answers
1k views

Is there a book which teaches about compilers using Haskell? [closed]

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 ...
0
votes
1answer
52 views

Interpreted standard library

It's common for a programming language to come with a standard library implemented at least partly in the language itself. In the case of an interpreted language, the obvious implementation is to ...
4
votes
6answers
424 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 ...
4
votes
1answer
268 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 ...
3
votes
3answers
4k 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 ...
17
votes
1answer
3k 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, ...
11
votes
5answers
1k views

How does a Haskell compiler work?

Okay, just another doku question: Where can I get some paper/doc/whatever which describes how a Haskell compiler actually works? I read quite a few of the docs of GHC, but stopped after getting a ...
4
votes
1answer
112 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 ...
2
votes
3answers
112 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 ...
3
votes
2answers
193 views

What systems out there use non-uniform pointer representation? [duplicate]

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 ...
0
votes
1answer
51 views

Javascript implementation question: how to make this function display values

Please forgive me, but I do know js basics and how to write/call a basic function, but in this case I'm trying to match an alpha sorted list of categories from the DB to match against my set ...
13
votes
4answers
400 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 ...
8
votes
6answers
356 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 ...
1
vote
2answers
554 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 ...
15
votes
2answers
760 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 ...
12
votes
4answers
3k views

How could one implement C++ virtual functions in C [duplicate]

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 ...
83
votes
4answers
16k 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 ...

1 2