Tagged Questions
3
votes
1answer
30 views
Make a Scala interpreter oblivious between interpret calls
Is it possible to configure a Scala interpreter (tools.nsc.IMain) so that it "forgets" the previously executed code, whenever I run the next interpret() call?
Normally when it compiles the sources, ...
2
votes
3answers
178 views
Are there any Stackless Python like projects for other languages (Java, Lisp, Haskell, Go etc) [closed]
Well thats the question. Are there any projects for other languages which try to imitate what stackless python is doing for python?
0
votes
1answer
34 views
Why numbers can't be used for variable's first character?
I'm just wondering why most(maybe all) interpreter/compiler does not allow numeric character at the beginning of a variable?
My guess is that when a number is parsed after a white space or operator, ...
0
votes
1answer
69 views
Compiling my scripting language
I have developed a frame work for a scripting language and I am trying to make a compiler for it to output onto a certain file a custom Hex code to be read by an interpreter for applications such as ...
1
vote
0answers
32 views
write a REPL: where to start?
I learned Ruby and Scala, and they both have a great REPLs. The interactive tools help me a lot when learning a language.
Recently I'm learning Haxe and found it doesn't have a real REPL(just a ...
3
votes
3answers
100 views
Is there any way to create a high level language interpreter implmented in hardware?
Some random thoughts caught me and I just cannot get it out. I am thinking since morden processors are just interpreters for different kinds of assembly languages, is there anyway to create some ...
0
votes
1answer
137 views
Executing LLVM IR during runtime on Windows
During some research across the internet and Stackoverflow the only example on how to execute IR code during runtime was this one on SO. I have now compiled llvm and clang with Visual Studio 2012 and ...
0
votes
0answers
60 views
Semantic for a command
I'm building an interpreter for an imperative language, i don't know how to write the semantics for a command.
com = Nope |Stop |Assign (id,exp) | Cseq(com,com)| If(exp,com,com)| Loop(com)
the ...
0
votes
1answer
59 views
which skill required for making a new programming language [closed]
I am new in programming. I only know c and python basics. But i want to make a new programming language, compiler and interpreter for other language (Bengali). So which skills should i acquire first ...
0
votes
4answers
85 views
Interpreting Java and converting it to another language
I work with a language similar to JavaScript that is used for point-of-sale device programming. This language really s*cks and I'm trying to build some kind of framework in Java that "converts" Java ...
5
votes
0answers
127 views
System.Plugins loader seems to assume failure after seeing a failure once
I am currently working on a haskell program which takes a users input from a text box, then
compiles and loads it using the System.Plugins library in order to extract a picture to draw to the screen. ...
7
votes
2answers
221 views
How does each browser expose intermediary representation of JavaScript?
Question:
I've heard people use the terms dynamic compilation and interpretation interchangeably. This isn't a question about semantics.
Obviously by the time the code hits the processor it is in ...
0
votes
0answers
49 views
AST representation of user-defined functions
Let's say we have a simple, minimalistic, fully declarative, functional expression language. Let's focus on just the abstract syntax and its interpretation and forget about lexing, parsing, target ...
0
votes
2answers
71 views
Why are debuggers much more specific when an error occurs as compared to compilers?
From Thinking in C++ - Vol. 1:
Interpreters have many advantages. The transition from writing code to
executing code is almost immediate, and the source code is always
available so the ...
4
votes
2answers
119 views
What does it mean to say that the source code is always available to interpreters?
From Thinking in C++ - Vol. 1:
Interpreters have many advantages. The transition from writing code to
executing code is almost immediate, and the source code is always
available so the ...
1
vote
2answers
134 views
Picking a parser generator for building an interpreter for a custom language using C#? [closed]
This is the first time I go into actually trying to implement a Domain Specific Language.
I know the basics of language grammars and Abstract Syntax Trees, however I didn't get my hands dirty in ...
2
votes
2answers
105 views
Compiler Python, why are some wrong things overlooked?
I wrote a Python routine with a mistake in it: false instead of False. However, it was not discovered at compilation. The program had to run until this line to notify the wrongdoing.
Why is it so? ...
4
votes
3answers
200 views
Haskell at a user level
I love coding in Haskell, but often am on a computer where I cannot install software, and which has some restrictions about what you can run. I would like to write Haskell code and test it while on ...
6
votes
3answers
363 views
Why is java both compiled and interpreted [duplicate]
Possible Duplicate:
Is Java a Compiled or an interpreted programming language?
Why is Java both compiled and interpreted language?
We first compiles the java program using javac(compiling) ...
2
votes
1answer
307 views
Linux ELF 32 Bits Loading
I'm writing an x86 binary interpreter.
At the moment I'm dealing with loading the executable file and shared objects. However I'm stuck with some doubts:
1) Does the dynamic linker/loader ...
-3
votes
2answers
247 views
Interpreter design in python [closed]
I am new to pytohn, and I want to make a small interpretor/compiler with it. just a hobby project initially. I would like to know how good is it in comparison to c/c++ to accomplish such a job? it has ...
4
votes
3answers
197 views
Compiling Lisp code with read macros
I'm having a bit of trouble understanding what becomes of read macros when compiling a file of lisp code into a bytecode or raw assembly (or a fasl file for that matter). Or maybe I do understand it ...
0
votes
0answers
91 views
Testcases for a C interpreter
I would like to test a little ANSI C interpreter.
My tool interprets my C program. It doesn't produce machine code; and I can't access the heap/stack after execution!
I was thinking of validating ...
2
votes
3answers
310 views
Writing first interpreter with Python - choice of OCaml language
I am reading code for Scheme interpreters with Python by P. Norvig, and I would like to try to write an interpreter with Python. This is properly the subject of post: What language can a junior ...
0
votes
3answers
144 views
Python interpretation model in comparison to direct and virtual machine compilation
I have been compiling diagrams (pun intended) in hope of understanding the different implementations of common programming languages. I understand whether code is compiled or interpreted depends on ...
1
vote
1answer
64 views
ANTLR return group of lexical rules?
Can I replace indent_loop[3] in following grammar with the the group of 3 INDENT?
Where INDENT is lexical rule for indentation.
I just want to write number of INDENT based on the number.
match_node
...
-1
votes
4answers
217 views
Write OS in interpreted language
Is it possible to write an OS using a language that is not compiled [i.e. interpreted like python] or does not use a runtime [like Java] ? Wouldn't the virtual machine need to run on top of an OS ...
2
votes
2answers
182 views
A Scheme interpreter that passes only relevant subsets of environments to eval
Is there an efficient way to build a Scheme interpreter that passes only the relevant subset of an environment to recursive eval calls?
For example, consider the following expression:
(let ([x 1]
...
1
vote
3answers
507 views
Compiler versus Interpreter
So, let me see if I get this clearly or not.
When we say the differences between a compiler and an interpreter is that an interpreter translates high-level instructions into an intermediate form, ...
0
votes
3answers
244 views
Bootstrapping an interpreter?
We know that a compiler can be written in its own language using a trick known as bootstrapping. My question is whether this trick can be applied to interpreters as well?
In theory the answer is ...
0
votes
4answers
77 views
An efficient compiler compiles to the exact same result every time?
I would ask a question regarding compilers, specifically how they work. I would believe that compilers would always compile to the same machine code for code that is written differently syntactically ...
0
votes
6answers
2k views
Why does java have an interpreter? and not a compiler? [closed]
Iam a newbie to java and was wondering why java have a interpreter and not a compiler?
While shifting from c++ to java we come across the differences between these two
Compilation process being one ...
0
votes
0answers
32 views
How to call an entity in the database?
There are two concepts of "compiler" and "interpreter," I need to merge them into one entity in the database. How would you call this entity?
Thank you for answers!
6
votes
3answers
441 views
Brainfuck compiler in scala
Want to make some Domain Specific Language(DSL) for practice, first idea it is to write interpreter or compiler of Brainfuck.
First idea was to override functions such as they will behave as ...
0
votes
2answers
763 views
Free compiler or interpreter for TCL, and TCL serial port (COM1) commands
1) Is there any freeware which combine tcl editor and compiler (or interpenter)?
2) After opening of the serial connection (COM1) using fconfigure , how can I send via the connection, a string of ...
1
vote
1answer
267 views
Small/toy language compiler/interpreter implemented in Java
I'm looking for a small/toy programming language that is implemented in Java. The implementation should preferably not be much more than around a 1000 lines or so. It might e.g. be a simple imperative ...
0
votes
2answers
347 views
Why does interpreter with JIT produce faster codes than the one without?
I'm still not clear about the concept of compiling byte codes into machine codes by a JIT compiler. I want to know why it produce faster codes v.s a non-JIT interpreter. Can somebody give me a good ...
0
votes
3answers
198 views
Design a compiler or interpreter [closed]
Suppose I have to design a compiler or interpreter for a functional language. I would like to know the things I will have to study for this and some resources. This is a new language and the idea for ...
0
votes
3answers
108 views
syntax error checking in php on a project level rather than file
I have a large php project and different developers work on the same project. Changes in php file e.g syntax error can lead to 500 internal server error if another developer tries to run the same ...
1
vote
6answers
306 views
Will PHP be slower if we add too many comments in code files? [duplicate]
Possible Duplicate:
Commenting interpreted code and performance
Does comments affect when including files in PHP?
Let's say we have 100 class files and everytime when a page is requested, ...
2
votes
1answer
447 views
compiler vs interpreter ( on basis of construction and design )
After viewing lots of posts about the difference between compilers and interpreters, I'm still not able to figure out the difference in their construction and internal mechanism.
The most common ...
3
votes
2answers
552 views
Prolog-based interpreter
I've already gotten my feet wet with functional programming; I am familiar (though not proficient) in Haskell and PLT Scheme. I've used PLT Scheme to build little interpreters for toy languages ...
3
votes
7answers
746 views
Why is an interpreter slower than a compiler in practice?
Don't they both have to convert to machine code at some point to execute or am i missing something more basic?
EDIT:
Please consider more sophisticated interpreting schemes e.g. cases where the ...
-4
votes
2answers
106 views
Technological and framework choice for implementing a dynamic programming language [closed]
What is the best way to implement a dynamic language (inspired from JavaScript) compiler?
Translate this language code to C code and then compile the C code to x86
LLVM Compiler Infrastructure
...
3
votes
7answers
572 views
Functional Language for Untyped Lambda Calculus
Is there an interpreter (or compiler) for untyped lambda calculus? (According to this thread it's possible.) I recognize that it would be of little use as a programming language, particularly if much ...
-1
votes
1answer
182 views
Why some languages return last evaluated expression as default return value? [closed]
I have been trying to find the answer to this. Why do some languages, especially scripting(Perl, Ruby etc.) languages have the default return from the subroutines as the last evaluated expression. ...
3
votes
2answers
212 views
How to replace macros with a grammar-based parser?
I need a parser for an exotic programming language. I wrote a grammar for it and used a parser generator (PEGjs) to generate the parser. That works perfectly... except for one thing: macros (that ...
1
vote
2answers
314 views
How to write a C++ program on a mac that compiles and runs C++ code in a separate text file
I apologize in advance for asking this relatively uninformed question:
How can I get started learning to write a program in C++ that can compile C++ code that is stored elsewhere, for instance in a ...
0
votes
2answers
59 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
2answers
198 views
Stand alone C# compiler [closed]
We have a software which we use in-house for our day to day work.
It is like a customize CRM (sort of) and Bug Tracking software. We had a small team of 3 developers who had developed this software. ...


