2
votes
2answers
125 views

Creating a new language within the Python virtual machine [closed]

Is it possible to create a new language for the Python Virtual Machine? I was reading over http://late.am/post/2012/03/26/exploring-python-code-objects , where the blogger discusses Python code ...
0
votes
1answer
68 views

can bytecode be run without a virtual machine

can bytecode be run without a virtual machine? Could an micro kernel operating system for example have a Execution server that can JIT(convert bytecode into native code and run) it without the need ...
1
vote
1answer
152 views

Visual Basic 6 Bytecode Specification

Where can I find a list of official and unofficial Visual Basic 6 specifications that can allow me to, say, fully interpret the contents of a VB6 EXE file and analyze them, or interpret them on my ...
3
votes
1answer
414 views

Native code in C#?

I was watching the Microsoft build conference from October last year and I noticed they announced that for building the new Metro style apps, developers can write native code in C#. How is this ...
2
votes
3answers
75 views

Is it possible to gain performance in vm-based languages by hand-writing code in their assembly?

I know it probably wouldn't make much sense to do it as usually it's faster and more logical to just rewrite performance-critical sections in a faster language, but setting that aside, is it possible ...
6
votes
2answers
462 views

How can a JVM decide if a class “belongs” (e.g. inner or nested classes) to another class?

I want to understand class files and inner/nested classes a bit better and I'm wondering about the following things: Is the InnerClasses attribute used to refer tothe inner/nested classes in the ...
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 ...
2
votes
4answers
690 views

python bytecode, the interpreter and virtual machine

This is a really vast question and I'm mostly looking for resources where I can learn more about the following. I know the python interpreter is written in C and produces bytecode to be run on the ...
5
votes
2answers
643 views

What are alternatives to the Java VM?

As Oracle sues Google over the Dalvik VM it becomes clear, that you cannot implement a Java VM without license from Oracle (EDIT: Matthew Flaschen points out, that the claims of Oracle may not be ...
3
votes
2answers
323 views

How can be bytecode used for optimizing the execution time of dynamic langauges?

I am interested in some optimization methods or general bytecode designs, which might help speed up execution using VM in comparison to interpretation of an AST.
0
votes
2answers
99 views

How are strings embedded in binary files?

I'm writing my own bytecode and virtual machine (on .NET) and one thing i can't figure out is how to embed strings into my bytecode. Any ideas now how i should do it?
21
votes
5answers
6k views

Java's Virtual Machine and CLR

As a sort of follow up to the question called Differences between MSIL and Java bytecode?, what is the (major) differences or similarity in how the Java Virtual Machine works versus how the .NET ...