10
votes
1answer
160 views

What is the purpose of bytecode in Java?

Given that I can compile 300 classes in seconds, an implementation of Java could just compile and cache any new source it sees (e.g python does this, and lots of language implementations do the same ...
3
votes
3answers
150 views

What happens to Java object reference variable types after compilation?

I don't recall ever seeing any notion of reference variable types in Java bytecode. I know a bit about type erasure, but this term seems tightly linked to generics, whereas my question is about object ...
1
vote
3answers
120 views

Can JVM bytecode be manipulated at compile time?

Is it possible to use a bytecode manipulation library like ASM at compile time? Specifically, I'd like to use Java's annotation processing API to implement boilerplate-heavy methods on annotated ...
1
vote
3answers
184 views

Compile Java in memory

Is there a way to emit Java bytecode in memory and execute it? I know that there's JavaCompiler class, but I'm asking something like Reflection.Emit of .NET platform.
2
votes
5answers
297 views

Is C# code compiled to native binaries?

I know that Java code is compiled into byte-code, that is executed by the JVM. What is the case with C# ? I have noticed that applications written in C# have the .exe extension what would suggest ...
4
votes
4answers
444 views

Why does Java code need to be compiled but JavaScript code does not

How come code written in Java needs to be compiled in byte-code that is interpreted by the JVM, but code written in a language like JavaScript does not need to be compiled and can run directly in a ...
0
votes
0answers
100 views

Linq like expressions library for java with the ability to compile expression trees to executable JVM bytecode

The System.Linq.Expressions namespace contains a lot of Expression classes for all the constructs that are used in .Net languages. You can build expression trees using objects of these classes which ...
0
votes
1answer
229 views

Compiling python for ubuntu linux, cx_python

I need to be able to distribute my python script, preferably in linux byte code. It has several dependencies that are located in directories as such: extensions python >> run.py python ...
1
vote
3answers
258 views

Best choice? Edit bytecode (asm) or edit java file before compiling

Goal Detecting where comparisons between and copies of variables are made Inject code near the line where the operation has happened The purpose of the code: everytime the class is ran make a ...
12
votes
1answer
4k views

Compile lua code, store bytecode then load and execute it

I'm trying to compile a lua script that calls some exported functions, save the resulting bytecode to a file and then load this bytecode and execute it, but I haven't found any example on how to do ...
8
votes
4answers
792 views

Why doesn't Perl compile to binary files like python

It strikes me as a Good Thing™ (ie. in terms of compilation time), that the Python interpreter will create bytecode .pyc files. I believe python uses some sort of hash to determine if the source has ...
1
vote
1answer
452 views

Code generation from three address code to JVM bytecode

I'm working on the byte code compiler for Renjin (R for the JVM) and am experimenting with translating our intermediate three address code (TAC) representation to byte code. All the textbooks on ...
4
votes
6answers
305 views

Why doesn't java have a non-bytecode compiler? [duplicate]

Possible Duplicate: Why isn't more Java software compiled natively? I know that Java is byte code compiled, but when using the JIT, it will compile the 'hotspots' to native code. Why is ...
0
votes
2answers
250 views

Error using bytecode-compiling filter, PERL

When I compile using: pp -I lib -f Bytecode -o myapp_binary_bytecode myapp I get this error: "my" variable $fh masks earlier declaration in same scope at /Library/Perl/5.12/PAR/Filter/Bytecode.pm ...
17
votes
4answers
3k views

`goto` in Python

I must use goto in Python. I read this but my Python implementation (CPython 2.7.1 on Mac) does not have this module, so it doesn't seem to be portable. It should at least work in all Python ...
5
votes
1answer
104 views

What is the precedence of python compiled files in imports?

Python files are compiled to bytecode (*.pyc). Using Cython you can compile them to machine code (*.so in Linux). If you use have both files in the same folder, under the same name what is the ...
6
votes
3answers
234 views

Why is bytecode JIT compiled at execution time and not at installation time?

Compiling a program to bytecode instead of native code enables a certain level of portability, so long a fitting Virtual Machine exists. But I'm kinda wondering, why delay the compilation? Why not ...
6
votes
5answers
422 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 ...
6
votes
4answers
397 views

Why doesn't the JVM compile the entire program up front, instead of compiling it piece-by-piece?

For this thread Herbert Schildt writes: It is important to understand that it is not practical to compile an entire Java program into executable code all at once, because Java performs various ...
0
votes
3answers
494 views

Closed source websites / web apps with (compiled) javascript. Possible?

I would like to use open web standards like javascript / extjs / ... to create a cross platform web app or interactive website as an alternative to adobe flash / flex but I don't want to give away my ...
4
votes
2answers
3k views

Generating a 'Hello, World!' class with the Java ASM library

I have started messing around with the ASM API for a compiler project I am working on. However, I am finding that the documentation is less than clear for a newcomer in many places and I thought ...
5
votes
1answer
667 views

How does Google App Engine precompile Java?

App Engine uses a "precompilation" process with the Java bytecode of an app to enhance the performance of the app in the Java runtime environment. Precompiled code functions identically to the ...
4
votes
5answers
4k views

How to protect Python source code?

Is it possible to distribute only the bytecode version (.pyc file) of a Python script instead of the original .py file? My app embeds the Python interpreter and calls PyImport_Import to load a script. ...