Tagged Questions
1
vote
3answers
33 views
How to easily create Java bytecode dependent regression tests?
I have identified a bug in my application (which processes bytecode using soot) that only arises on specific bytecode instructions.
I want to create a test for that specific case. However, I'm not ...
1
vote
2answers
659 views
Open Java Byte Code in readable format and edit it [closed]
I want to open the Byte code (Java Binaries) generated by Java Compiler using some kind of editor, which allows me to view the byte code (Raw, but human understandable, in the format defined here) ...
6
votes
3answers
294 views
Generating JVM bytecode for a unary not expression
Let's say you're writing a Java (or subset-of-Java) compiler and you want to generate bytecode for a unary not expression, !E. You're past type checking so you know E has type boolean, i.e. it will ...
0
votes
1answer
151 views
compiler output (.class files) differs if sources were compiled in different directories
I have the following problem: While compiling some set of classes different .class files are generated if compilation was executed in different directories. The diff between generated .class files is ...
2
votes
1answer
375 views
Hacking the Open JDK - Emit LLVM Assembler rather than Java Bytecode
I have got the opportunity to work at the university and to help hacking javac from the OpenJDK. The goal is to read custom sourcecode (for "our" programming language in combination with antlr) and ...
2
votes
4answers
208 views
5 questions on java
1) Is it true that javac.exe is sun's implementation of a java compiler,
2) and a java compiler is defined as something that translates java source code into java bytecode,
3) and a JVM is defined ...
9
votes
2answers
1k 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 ...
1
vote
5answers
323 views
Why are there 4 separate bytecodes for executing static/virtual/interface/special methods when one would suffice?
Since each method call includes the target method signature it seems to me that the class verifying step could tell by analysing the target whether its invoking a static, virtual etc and do the right ...
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 ...
2
votes
1answer
336 views
Classpath of classes compiled with Javassist
As the title suggests, what is the classpath of classes compiled with Javassist?
My scenario is: Class A is compiled with Javassist. Class B is compiled with Java Compiler API and references Class A. ...
4
votes
3answers
436 views
Java bytecode compiler benchmarks
Q.1. What free compiler produces the most optimal Java bytecode?
Q.2. What free virtual machine executes Java bytecode the fastest (on 64-bit multi-core CPUs)?
Q.3. What other (currently active) ...
5
votes
1answer
161 views
Why does javac checkcast arrays twice?
Examining bytecode, I've noticed javac seems to duplicate checkcast instructions when casting to array types.
Cast.java:
class Cast {
void test(Object a) {
Object[] b = (Object[])b;
}
}
...
6
votes
8answers
2k 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 ...
4
votes
8answers
610 views
What settings affect the layout of compiled java .class files? How can you tell if two compiled classes are equal?
I have an app that was compiled with the built-in Eclipse "Compile" task. Then I decided to move the build procedure into Ant's javac, and the result ended being smaller files.
Later I discovered ...