2
votes
0answers
100 views

Python compiler for simple language to java vm code algorithm

I have a simple language that I am trying to write a compiler for (yes it is homework) to compile a simple language I shall describe if necessary to java vm code. It currently works pretty well I've ...
0
votes
1answer
29 views

Data Segment in Compiler Construction

i am developing a compiler for my own defined language , i have generated 3 address code and now i am going to develop a virtual machine which can run that 3 address code. but for that i need Data ...
5
votes
3answers
266 views

How can I compile and run this 1989 written C program?

I found this amazing piece of work by Arthur Whitney - http://www.jsoftware.com/jwiki/Essays/Incunabulum It compiled with a few warnings $ gcc-4.7 incuna.c -o incuna.o incuna.c: In function 'ma': ...
-1
votes
1answer
70 views

Ceylon compiler and VM

Are there any Ceylon specific VMs? Or do all available ceylon compilers produce JVM bytecode?
1
vote
3answers
44 views

Order of frames being pushed on the stack

Suppose you have the following code. def square(x): print ("Just before square returns") for k in dir(): print ("{0} -------> {1}".format(k, eval(k))) return x*x def cube(x): ...
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 ...
8
votes
3answers
251 views

Output language/format for toy compiler

I took a compilers course in university, and it was very informative and a lot of fun, although also a lot of work. Since we were given a language specification to implement, one thing I didn't learn ...
1
vote
0answers
121 views

machine code reuse in JavaScript VM's

Current JavaScript VMs run a JIT compiler, which compiles the JS source code at runtime. The compilation overhead is typically on critical path, although it is possible to do the compilation in ...
22
votes
4answers
469 views

C++: doubles, precision, virtual machines and GCC

I have the following piece of code: #include <cstdio> int main() { if ((1.0 + 0.1) != (1.0 + 0.1)) printf("not equal\n"); else printf("equal\n"); return 0; } When ...
7
votes
1answer
703 views

Why is it hard to beat AOT compiler with a JIT compiler (in terms of app. performance)?

I was thinking that JIT compilers will eventually beat AOT compilers in terms of the performance of the compiled code, due to the inherent advantage of JIT (can use information available only at ...
2
votes
3answers
70 views

Overwriting vs. Lookup

I was reading through the SparseArray class in android, and came across the following method: public void removeAt(int index) { if (mValues[index] != DELETED) { mValues[index] = DELETED; ...
4
votes
5answers
1k views

Custom programming language: how?

Hopefully this question won't be too convoluted or vague. I know what I want in my head, so fingers crossed I can get this across in text. I'm looking for a language with a syntax of my own ...
3
votes
4answers
838 views

Does machine-code needs an runtime environment? MoSync SDK

Can anyone explain the The Runtime Architecture of MoSync? The VM Core isn´t the Problem. I think it´s a virtual machine which is running in the java vm and interprets the code line by line. But ...
2
votes
1answer
408 views

What is the size of a program using LLVM/CLANG for a custom bytecode VM?

I'm evaluating different possibilities for a custom VM, and I left out LLVM from another question. Since I'm still working on the evaluation of embedded language VMs I can't test/check this myself for ...
0
votes
4answers
219 views

VM for Scheme with support for parallelisation

I have written a Scheme evaluator in Java that does some parallelisation tricks. It's not usable by anyone but me for the moment, but I'm getting some results. The frontend and middle-end are ok for ...
8
votes
4answers
318 views

How to find out what optimizations the JVM applied to my code?

The JVM (especially the HotSpot VM) is famous for having a huge number of optimizations it can apply at runtime. Is there a way to look at a certain piece of code and see what the JVM has actually ...
4
votes
1answer
411 views

How do polymorphic inline caches work with mutable types?

A polymorphic inline cache works by caching the actual method by the type of the object, in order to avoid the expensive lookup procedures (usually a hashtable lookup). How does one handle the type ...
4
votes
7answers
190 views

Unable to understand a statement about compilers' optimization

I am interested in optimization at runtime by a VM and at compile-time. I have had the idea that optimizations are most efficient and easiest at compile-time. However, my thought seems to be false in ...
19
votes
10answers
1k views

Why are Virtual Machines necessary?

I was reading this question to find out the differences between the Java Virtual Machine and the .NET CLR and Benji's answer got me wondering why Virtual Machines are necessary in the first place. ...