Tagged Questions
The interpreters tag has no wiki summary.
15
votes
7answers
914 views
JIT code generation techniques
How does a virtual machine generate native machine code on the fly and execute it?
Assuming you can figure out what are the native machine op-codes you want to emit, how do you go about actually ...
13
votes
4answers
2k views
Is there any Ruby or Python interpreter for Lego Mindstorm?
I want to start coding in Python or Ruby. Since I own a Lego Midstorms kit I thought it would be nice to program against it. Are there any good translators / interpeters for the Mindstorms brick?
12
votes
13answers
1k views
What's a good resource for starting to write a programming language, that's not context free?
I'm looking to write a programming language for fun, however most of the resource I have seen are for writing a context free language, however I wish to write a language that, like python, uses ...
4
votes
4answers
142 views
Interpreters written in standard C or C++
Are there any extensible interpreted programming languages written in standard, platform-independent C or C++?
I would like to be able to simply put all the sources in one directory, compile the ...
3
votes
3answers
104 views
In an interpreter, what (usually) comes after the lexer?
For a programming language interpreter, I am wondering about the sequence of events that the interpreter goes through. For instance, I think this is how it goes:
Interpreter gets some input
The ...
3
votes
2answers
186 views
Order of functions in JavaScript
My question is based on the example from a book "Object Oriented JavaScript" (page 81 - Lexical Scope)
So, i understand from this example ...
function f1(){var a = 1; f2();}
function f2(){return a;}
...
3
votes
5answers
614 views
Are there any simple languages implemented using ANTLR or similar?
I'm trying to build a simple interpreted language for learning purposes. I've read countless theory and tutorials on ANTLR and JavaCC, but I can't figure out how to actually make it do something ...
2
votes
2answers
456 views
Scheme & Smalltalk
Not really a question as such in here regarding Smalltalk and Scheme. I only started playing in Smalltalk 3 weeks ago and have been bouncing between Squeak and Pharo. Both are amazing its hard to ...
1
vote
7answers
400 views
How can I get this Python code to run more quickly? [Project Euler Problem #7]
I'm trying to complete this Project Euler challenge:
By listing the first six prime numbers: 2, 3, 5, 7, 11, and 13, we can
see that the 6th prime is 13.
What is the 10 001st prime number?
...
1
vote
6answers
693 views
Dynamic (?) parser
Does there exist a parser that generates an AST/parse tree at runtime? Kind of like a library that would accept a string of EBNF grammar or something analogous and spit out a data structure?
I'm ...
0
votes
2answers
54 views
Deciding the type of a custom langauge [closed]
I am thinking about small language specifically for graphs that would provide a lot of functionality to manipulate graphs and the like.
So when I was pondering over the syntax of the language, I ...
0
votes
6answers
261 views
Why do language converters suck?
Why do language converters/interpreters function poorly. Its seems that if you have function x(,) and functions x() takes blah, blah, for parameters and can return x,x and x, then it should be easy ...