0
votes
4answers
53 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
0answers
7 views
Infering number of bytecodes interpreted by Java runtime?
I'm trying to infer the number of bytecodes that the JVM "interprets"; In quotes because surely they are also compiled. Is there any way or JVMTI/JVMPI interface or instrumentation which can provide …
3
votes
2answers
61 views
Compiling for the Java Virtual Machine [closed]
Possible Duplicate:
Best books on JVM
Are there any good resources, particularly books and tutorials, on learning how to write a compiler targeting the Java Virtual Machine? Can you give some …
0
votes
2answers
50 views
How to inspect the stack using an ASM visitor?
I am attempting to use the Java byte code engineering library ASM to perform static analysis. I have the situation where I would like to inspect the variables being assigned to a field.
I have …
2
votes
8answers
85 views
Byte code to java
Is it possible to convert a .class file to .java file. If yes then how? What about the correctness of the code extracted from this option?
3
votes
6answers
99 views
Generating .class file for JVM
Hello Everybody,
I am working on a project that requires me to generate a java ".class" file on the go that can be later on compiled on the JVM. After learning and working with MSIL (Microsoft IL) …
0
votes
0answers
37 views
localy execute actionscript bytecode
i want to execute a piece of bytecode so that it will run in a specific scope ?
for example
i want to be able to run this code
label.x = 100+label.width
and have it react to a label instance that …
3
votes
5answers
146 views
What is the difference between assembly code and bytecode?
While in the search for the various differences in the meanings of source code, bytecode, assembly code, machine code, compilers, linkers, interpreters, assemblers and all the rest, I only got …
3
votes
2answers
82 views
Local variables in java bytecode
I am trying to learn java bytecode and I stumbled on this:
I compiled this very simple code with the -g option:
public class Test
{
public static void main(String args[])
{
double a = 1.0;
int …
3
votes
3answers
99 views
What is ILLegal Byte code ?
While reading Java Security I came across the below sentences but could not get any satisfactory explanation on the Internet. Can anyone please explain
Prevents loading of classes with bytecode
…
1
vote
4answers
126 views
How to determine the Java byte code version of the current class programatically?
I have a situation where the deployment platform is Java 5 and the development happens with Eclipse under Java 6 where we have established a procedure of having a new workspace created when beginning …
7
votes
6answers
193 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 …
3
votes
4answers
72 views
What are some interesting, free, open-source Dynamic Analysis tools for Java?
I am looking for some interesting dynamic analysers to use and report on for a university assignment. The tools should be:
Open-source (so I can learn from them)
Free (both as in speech and beer, …
1
vote
1answer
134 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 …
27
votes
13answers
1k 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 …
