2
votes
6answers
77 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) …
3
votes
5answers
117 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 …
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 …
0
votes
0answers
28 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
2answers
71 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
95 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
…
7
votes
6answers
187 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 …
1
vote
4answers
107 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 …
1
vote
1answer
110 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 …
3
votes
4answers
63 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, …
2
votes
2answers
145 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 …
0
votes
4answers
71 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 doesn't matter where it …
1
vote
4answers
88 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 represented in bytecode …
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 away the native …
2
votes
6answers
200 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...
I have two …
