"bytecode" is a blanket term for opcodes that are consumed by a virtual machine. For example, the JVM runs bytecode stored in .class files and the CPython interpreter runs bytecode stored in .pyc files.
46
votes
9answers
42k views
Can you “compile” PHP code?
I know that PHP is compiled to byte code before it is run on the server, and then that byte code can be cached so that the whole script doesn't have to be re-interpreted with every web access.
But ...
89
votes
5answers
20k views
Java 7 language features with Android
Just wondering if anyone has tried using new Java 7 language features with Android?
I know that Android reads the bytecode that Java spits out and turns it to dex. So I guess my question is can it ...
11
votes
4answers
8k views
java bytecode editor? [closed]
What's a good free bytecode editor? I want an editor, something with a GUI...
I tried jbe-0.1b with no luck (can't save the bytecode changes).
21
votes
5answers
7k 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 ...
8
votes
3answers
8k views
How do I get the byte values of a string in PHP?
Say I have a string in php, that prints out to a text file like this:
nÖ§9q1Fª£
How do I get the byte codes of this to my text file rather than the funky ascii characters?
17
votes
7answers
2k views
is it possible to disable javac's inlining of static final variables?
The Java static compiler (javac) inlines some static final variables and brings the values directly to the constant pool. Consider the following example. Class A defines some constants (public static ...
13
votes
6answers
4k views
Compile to java bytecode (without using Java)
My compilers class is creating a language that we intend to compile to Java Bytecode. We have made plenty of progress and are nearing the time where it's time for code generation.
We are having ...
8
votes
1answer
2k views
Compiler optimization: Java bytecode
I'm currently writing a toy compiler targeting Java bytecode in the translation.
I would like to know if there is some kind of catalog, maybe a summary, of various simple peephole optimizations that ...
20
votes
2answers
2k views
How are Scala traits compiled into Java bytecode?
I have played around with Scala for a while now, and I know that traits can act as the Scala equivalent of both interfaces and abstract classes. How exactly are traits compiled into Java bytecode?
I ...
9
votes
4answers
1k views
How to identify a missing method (Binary Compatibility) in a JAR statically
I want to verify binary compatibility between 2 JARs.
Following the suggestions in this answer I used jboss tattletale but it can find only missing classes.
How can I find if there are missing ...
34
votes
9answers
7k views
Differences between MSIL and Java bytecode?
I'm new to .Net and I'm trying to understand the basics first. What is the difference between MSIL and Java bytecode?
35
votes
7answers
6k views
Why the Global Interpreter Lock?
What is exactly the function of Python's Global Interpreter Lock?
Do other languages that are compiled to bytecode employ a similar mechanism?
12
votes
4answers
5k views
Is there a java classfile / bytecode editor to edit instructions?
Is there a utility (or eclipse plugin) for editing java class files?
I'd like to manipulate the bytecode of a java class file without recompiling it nor having a complete buildpath.
E.g. to rename ...
10
votes
2answers
2k views
What is a bytecode cache and how can I use one in PHP?
I searched on the Web and came to know that PHP code can be compiled to have performance boost.
But how to do it?
Can I compile both procedural and object oriented PHP code?
10
votes
9answers
917 views
Why are compiled Java class files smaller than C compiled files?
I would like to know why the .o file that we get from compiling a .c file that prints "Hello, World!" is larger than a Java .class file that also prints "Hello, World!"?
6
votes
2answers
2k views
Check if Java bytecode contains debug symbols
I would like to know how can I check if a compiled Java class contains debug symbols. The problem is that I compile an application from ant with debug="on", but a specific JVM throws an exception: it ...
8
votes
4answers
9k views
How to view Java's byte code?
Sometimes, in Eclipse , i press a combination of keys which take me to the editor page that shows contents of my .class file (bytecode). I never seem to be able to remember what that key combination ...
3
votes
2answers
1k views
What is the meaning of “static synthetic”?
I am looking at some disassembled code obtained from Java bytecode. I see some declaration as follows:
.method static synthetic access$0()Lcom/package/Sample;
I am not able to figure out what the ...
36
votes
3answers
2k views
How is pattern matching in Scala implemented at the bytecode level?
How is pattern matching in Scala implemented at the bytecode level?
Is it like a series of if (x instanceof Foo) constructs, or something else? What are its performance implications?
For example, ...
13
votes
4answers
4k views
How to emit and execute Java bytecode at runtime?
I am writing an interpreter in Java for a domain-specific language with some scripting capabilities. I have already implemented a parser and now need to do a back end. To this end I am considering ...
22
votes
8answers
10k views
What are advantages of bytecode over native code? [closed]
It seems like anything you can do with bytecode you can do just as easily and much faster in native code. In theory, you could even retain platform and language independence by distributing programs ...
18
votes
5answers
2k views
Programming in Java bytecode
I'm looking to write a short program (maybe a Hello World) in Java bytecode. I just want to write the bytecode using my text editor and run it. How would I do this? Got an example? Thanks!
10
votes
3answers
2k views
Identify loops in java byte code
I am trying to instrument java byte code.
I want to recognize the entry and exit of a java loop, but I have found the identification of loops to be quite challenging.
I have spent a good few hours ...
4
votes
5answers
3k views
From C Source to Java Bytecode?
I'm looking for a way to compile C source code into high-performance Java bytecode. I've successfully used NestedVM, but the performance hit is not acceptable for a project I'm working on. I've also ...
11
votes
2answers
935 views
What is the Java 7 try-with-resources bytecode equivalent using try-catch-finally?
I'm trying to understand how the new try-with-resources statement works by recreating it using regular try-catch-finally statements. Given the following test class using Java 7 try-with-resources:
...
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
5answers
7k views
Is it possible to view bytecode of Class file? [duplicate]
Possible Duplicate:
Is there a java classfile / bytecode editor to edit instructions?
Java source code is compiled into bytecode, which is actually in the class file. Is it possible to ...
16
votes
9answers
648 views
Why isn't more Java software compiled natively?
I realize the benefits of bytecode vs. native code (portability).
But say you always know that your code will run on a x86 architecture, why not then compile for x86 and get the performance ...
11
votes
6answers
2k views
Best Library for programatically inspecting Java class files
I'm working on a project where we're doing a lot of remote object transfer between a Java service and clients written in other various languages. Given our current constraints I've decided to see ...
8
votes
2answers
884 views
Is there a way to obtain the bytecode for a class at runtime?
In Java, is there a way (at runtime) to obtain the bytecode which defined a particular class?
Put another way, is there a way to obtain the byte[] array passed to ClassLoader.defineClass(String name, ...
6
votes
3answers
653 views
Difference between JVM'a LookupSwitch and TableSwitch?
I have some difficulty to understand LookUpSwitch and TableSwitch in Java bytecode. If I understand well, both LookUpSwitch and TableSwitch correspond to the "switch" statement of Java source? Why ...
6
votes
8answers
1k views
Find out which classes of a given API are used
In a Java Project of mine, I would like to find out programmatically which classes from a given API are used. Is there a good way to do that? Through source code parsing or byte code parsing maybe? ...
2
votes
4answers
1k views
Is it possible to inject code in an android application?
I would like to inject code in an android application at runtime. I have tried to use dx tool to generate a dexfile in the sdcard but when i want to instantiate, it fails. Are there any tools to ...
12
votes
3answers
4k views
12
votes
6answers
3k views
Can compiled bytecode files (.pyc) get generated in different directory? [duplicate]
Possible Duplicate:
Way to have compiled python files in a separate folder?
When python compiles modules to bytecode, it produces .pyc files from your .py files.
My question is, is it ...
5
votes
3answers
1k views
running jython bytecode using java
It looks like I'm missing something.
When using Jython to run my Python code in Java, Java bytecode files are generated (test.py -> test@py.class).
Can I run these classes directly using java?
In ...
3
votes
3answers
914 views
CPython is bytecode interpreter?
I don't really get the concept of "bytecode interpreter" in the context of CPython. Can someone shed some light over the whole picture?
Does it mean that CPython will compile and execute pyc file ...
2
votes
6answers
3k views
Is it possible to have the System ClassLoader load .class files specified at run time?
I am writing a static analysis tool for an assignment, it analyses Java bytecode using the ASM library. One of the parts of ASM that we use requires (or at least, appears to require) that the class be ...
0
votes
5answers
323 views
Mixing Java 1.4 and 1.6 bytecode in a class hierarchy
The question first, the story will follow:
Is it safe to mix different bytecode version in a class hierarchy? What are the risks?
For a case, Class C extends B, Class B extends Class A. Class A ...
3
votes
5answers
2k views
What are bytecodes and how does the JVM handle them
I heard many times that Java implemments JIT(just-in-time) compilation, and its bytecodes which are portable across platforms get "interpreted" by JVM. However, I don't really know what the bytecodes ...
2
votes
1answer
2k views
JavaScript bytecode compiler?
For a project I'm tangentially working on, I need a way to compile JavaScript into some intermediate language or bytecode so that I can single-step through it. I know that many of the JavaScript ...
2
votes
3answers
546 views
Methodologies for designing a simple programming language
In my ongoing effort to quench my undying thirst for more programming knowledge I have come up with the idea of attempting to write a (at least for now) simple programming language that compiles into ...
1
vote
3answers
1k views
Pretty printing a method in ASM Bytecode
I am trying (with no success) to print only the contents of a given method. The following code almost does the trick:
class MyTraceMethodVisitor extends MethodVisitor {
public ...
18
votes
10answers
5k views
Java bytecode specification
Is there a nice place for learning the JVM bytecode instruction set. The specification perhaps and maybe some tutorials?
I ask because I would like to design a toy language and a compiler for it that ...
40
votes
14answers
2k views
In the 13 years that Java has been around, are there any specific examples of backward incompatibilities?
It has been thirteen years between the initial public release of Java 1.0 (1996) and the current stable release 1.6.0_16 (2009).
During those thirteen years the following notable releases have been ...
11
votes
5answers
3k views
Learning about Java bytecode and the JVM
Hey all,
In a recent question asked recently my simple minded answer highlighted many of my misconceptions about Java, the JVM, and how the code gets compiled and run. This has created a desire in ...
4
votes
2answers
652 views
How can I see in what [Java/Scala?] code does Scala compiler rewrites original Scala-code
Following Scala mailing lists, different people often say: "compiler rewrites this [scala] code into this [java/scala??] code". For example, from one of the latest threads, if Scala sees
class C(i: ...
12
votes
5answers
2k views
Why is it so easy to decompile .NET IL code?
Why is it so easy to decompile .NET IL-code into source code, compared to decompiling native x86 binaries? (Reflector produces quite good source code most of the time, while decompiling the output of ...
7
votes
2answers
407 views
How is scala generating byte code? Using some libraries like ASM, or write binary directly?
I'm wondering how is scala generating byte code, does it use some libraries like ASM? Or just write binary to .class files for performance?
6
votes
8answers
3k views
Disabling compile-time dependency checking when compiling Java classes
Consider the following two Java classes:
a.) class Test { void foo(Object foobar) { } }
b.) class Test { void foo(pkg.not.in.classpath.FooBar foobar) { } }
Furthermore, assume that ...

