2
votes
3answers
92 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 classe …
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 …
7
votes
6answers
182 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. …
1
vote
4answers
95 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 cre …
1
vote
1answer
97 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 …
3
votes
4answers
57 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 …
2
votes
2answers
137 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 …
0
votes
4answers
69 views
Resolve class name from bytecode
Is it possible to dig up a classes name from bytecode which is formed from the class' source code?
The situation is this: I get a classes bytecode remotely from somewhere, it doe …
1
vote
4answers
85 views
Switching between bytecode versions for a Java class file
Given a Java class file (ClassName.class) with bytecode version X is there a general way to convert this class file from being represented in bytecode version X to being represente …
2
votes
6answers
196 views
Understanding Java Byte Code
Often I am stuck with a java class file with no source and I am trying to understand the problem I have at hand.
Note a decompiler is useful but not sufficient in all situation... …
1
vote
3answers
139 views
Did OCaml get any Serious Promotion last few Years?
Did you hear something about any corporate investments or enlargement of OCaml community? (not F# please)
29
votes
22answers
5k 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 atop a virtual machine which abstracts …
3
votes
8answers
171 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 …
1
vote
1answer
79 views
unboxing using the ASM Java library
I'm using the ASM Java library to replace some reflection. I generate the body of this method:
void set(Object object, int fieldIndex, Object value);
With this generated method, …
2
votes
4answers
269 views
Lua’s bytecode specification
Can anyone tell me where to find Lua's bytecode specification? I've been searching for 15 minutes, and I can't find anything.
