Tagged Questions
bytecode is a blanket term for binary that is consumed by a virtual machine. For example, the JVM runs bytecode stored in .class files and the CPython intrepreter runs bytecode stored in .pyc files.
119
votes
31answers
39k views
C++ performance vs. Java/C#
My understanding is that C/C++ produces native code to run on a particular machine architecture. Conversely, languages like Java and C# run on top of a virtual machine which abstracts away the native ...
47
votes
3answers
837 views
Strange exception table entry produced by Sun's javac
Given this program:
class Test {
public static void main(String[] args) {
try {
throw new NullPointerException();
} catch (NullPointerException npe) {
...
38
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 ...
29
votes
3answers
3k 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 ...
25
votes
7answers
4k 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?
24
votes
7answers
3k 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?
20
votes
2answers
1k views
How is pattern matching in Scala implemented at bytecode level?
How is pattern matching in Scala implemented at bytecode level? Is it like a series of if (x instanceof Foo) constructs, or something else? What are its performance implications?
For example, given ...
19
votes
2answers
301 views
Are explicitly Infinite Loops handled in .NET as a special case?
Earlier today, as I was coding a method and it struck me that I wasn't sure exactly why the idiom I was implementing compiles. If everything else is abstracted away, it would look something like ...
19
votes
3answers
4k views
How do I byte-compile everything in my .emacs.d directory?
I have decided to check out Emacs, and I liked it very much. Now, I'm using the Emacs Starter Kit, which sort of provides better defaults and some nice customizations to default install of Emacs.
I ...
18
votes
7answers
5k views
What are advantages of bytecode over native code?
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 ...
15
votes
9answers
499 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 ...
15
votes
7answers
942 views
Is there a Java bytecode optimizer that removes useless gotos?
Problem: I have a method that compiles to over 8000 bytes of Java bytecode. HotSpot has a magic limit that makes the JIT not kick in for methods that exceed 8000 bytes. (Yes, it is reasonable to have ...
15
votes
9answers
2k views
How can I strip Python logging calls without commenting them out?
Today I was thinking about a Python project I wrote about a year back where I used logging pretty extensively. I remember having to comment out a lot of logging calls in inner-loop-like scenarios (the ...
14
votes
3answers
365 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 ...
14
votes
4answers
644 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!
13
votes
4answers
274 views
Bytecode features not available in the Java language
Are there currently (Java 6) things you can do in Java bytecode that you can't do from within the Java language?
I know both are Turing complete, so read "can do" as "can do significantly ...
13
votes
9answers
7k 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 ...
13
votes
5answers
2k 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 ...
12
votes
4answers
1k 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 ...
12
votes
3answers
1k views
12
votes
3answers
492 views
11
votes
2answers
199 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:
...
11
votes
1answer
196 views
How to recompile the Python 2.5 bytecode to 2.7?
How can I recompile some .pyc files made by Python 2.5 with Python 2.7?
I do not have the source files and I cannot obtain it.
I am looking for a free solution.
11
votes
1answer
131 views
Best practice for detecting changes to functions in Scala programs?
I'm working on a Scala-based script language (internal DSL) that allows users to define multiple data transformations functions in a Scala script file. Since the application of these functions could ...
11
votes
3answers
207 views
How to statically analyze reference types passed to each bytecode instruction?
I have rewritten the question (the question remains the same, just with less background noise) in hopes of creating less confusion directed at all the wrong things - due to this, some of the comments ...
11
votes
2answers
793 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. Recently I've been wondering how exactly traits are ...
11
votes
4answers
224 views
Which low level tasks can be accomplished on the JVM, but not expressed in java?
Which useful (for performance or otherwise) constructions are valid bytecode, but not expressable in Java?
11
votes
6answers
565 views
What is the use of Python's basic optimizations mode? (`python -O`)
Python has a flag -O that you can execute the interpreter with. The option will generate "optimized" bytecode (written to .pyo files), and given twice, it will discard docstrings. From Python's man ...
10
votes
6answers
849 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 ...
10
votes
6answers
1k 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 ...
9
votes
3answers
96 views
What are the tradeoffs of performing static analysis on source code, byte code, machine code, etc?
What are the various tradeoffs for performing static analysis on various levels of code? For instance for Java, why would someone perform static analysis on Java source code vs. Jasmin code vs. Java ...
9
votes
9answers
475 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!"?
9
votes
2answers
610 views
Any C/C++ to non-native bytecode compiler/interpreters?
As the title indicates, are there any C/C++ bytecode compilers/interpreters? I'm writing an application in an interpreted language that depends on certain libraries that are fully cross-compilable ...
9
votes
6answers
16k views
pyc to py files
I wrote a lot of important python code for my project.
unfortunately, I ran sed with wrong options and lost my files :(
In repo these files are very old, but I have the pyc files.
How can I convert ...
9
votes
9answers
2k 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 ...
8
votes
6answers
242 views
Compile to byte code takes up too much memory
I need to import a very large dictionary into python and I'm running into some unexpected memory bottlenecks. The dictionary has the form,
d = {(1,2,3):(1,2,3,4), (2,5,6)=(4,2,3,4,5,6), ... }
So ...
8
votes
2answers
635 views
Using JRuby/Jython for Ruby/Python interoperability?
Quite-probably a silly question, as I don't know much about Java/Jython/JRuby/bytecode, but..
I stumbled across _why's unholy again today.. It allows you to output Python bytecode from Ruby code.. ...
8
votes
4answers
522 views
How to identify a missing method (Binary Compatibility) in a JAR without running it?
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 ...
8
votes
1answer
998 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 ...
8
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 ...
8
votes
5answers
1k views
Can compiled bytecode files (.pyc) get generated in different directory?
When python compiles modules to bytecode, it produces .pyc files from your .py files.
My question is, is it possible to have these .pyc files written to a different directory than where the module ...
7
votes
4answers
213 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 ...
7
votes
1answer
270 views
How to check if a class file version 50.0 (Java 6) has been preverified?
I "upgraded" some jar files from class file version 49.0 to 50.0 with ProGuard.
Because preverification is optional with version 50.0, I wonder if there is a way to check if the class file has really ...
7
votes
2answers
369 views
Why is Java 6 compiled class size larger than Java 5?
We are noticing that when we compile our classes on Java 6, they are consistently larger than Java 5.
I understand that there has not been a change to the byte code to date, so I assume the Java 6 ...
7
votes
2answers
260 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?
7
votes
5answers
331 views
How to emit newer class file versions with Scala (50.0/51.0)?
I want to test the new type-checking bytecode verifier with classes created by scalac.
scalac currently outputs version 49.0 class files, but the new type-checking verifier is only mandatory since ...
7
votes
2answers
255 views
Avoiding getfield opcode
In Java's String class, the trim method contains this:
int off = offset; /* avoid getfield opcode */
char[] val = value; /* avoid getfield opcode */
I'm a bit puzzled by the comment "avoid ...
7
votes
2answers
398 views
ASM: Stateful Transformation
I want to write a MethodVisitor that transforms LDC instructions that are for multiplication.
Example bytecode:
ldc #26
imul
This basically pushes a constant and then multiplies it.
It has to be ...
7
votes
8answers
784 views
Why do almost all OO languages compile to bytecode?
Of the object-oriented languages I know, pretty much all but C++ and Objective-C compile to bytecode running on some sort of virtual machine. Why have so many different languages settled on compiling ...
7
votes
3answers
2k views
Java 6 - Annotation processor and code addition
I wrote a custom annotation containing metadata for a property and an AnnotationProcessor:
@SupportedAnnotationTypes({"<package>.Property"})
public class PropertyProcessor extends ...