Tagged Questions

0
votes
4answers
49 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 …
3
votes
2answers
51 views

Compiling for the Java Virtual Machine

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 tips on how to get started in producing Java …
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 …
2
votes
4answers
106 views

exec() bytecode with arbitrary locals?

Suppose I want to execute code, for example value += 5 inside a namespace of my own (so the result is essentially mydict['value'] += 5). There's a function exec(), but I have to pass a string …
0
votes
2answers
48 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 …
30
votes
26answers
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 …
3
votes
6answers
97 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) …
2
votes
8answers
84 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?
1
vote
6answers
445 views

Flash app depends on Flex. Are there any SWF bytecode size optimizers?

Hello world application that uses Flex, compiled with optimize=true has size 178K. How to reduce application size? We do not like to use RSL, we don't like to avoid Flex. Largest part of resulting …
0
votes
0answers
33 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
133 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
78 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 …
1
vote
4answers
94 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 …
8
votes
3answers
261 views

How does bytecode get verified in the JVM?

How does bytecode get verified in the JVM?
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 2 3 4 5 6 next
15 30 50 per page