0
votes
0answers
26 views

Is there a Java bytecode debugging tool which seems like OllyDbg on windows platform?

Is there a Java bytecode debugging tool which seems like OllyDbg on windows platform? I have a bunch of java bytecode instructions at hand and I want to know how to debug them efficiently. I wonder ...
0
votes
0answers
28 views

Getting an error using Krakatau disassembler/assembler

I'm getting this error when trying to run my modified class http://oi43.tinypic.com/sbmw5g.jpg I changed a string from "www." to "wwwh7." so from what I've read on bytecode editing sites, this ...
0
votes
1answer
36 views

Detect if the method in an invoke instruction is native, or not, in ASM/java bytecode

Is there a way to know if the method in an invoke instruction in bytecode is a native method or not? I am looking for an ASM specific solution. The visitMethodInsn(int opcode, ...
2
votes
2answers
77 views

Invisible java bytecode lines

I am wondering why the line numbers of Java Bytecode are not consecutive. What happens for example in the (not listed) lines 2 and 3 of the following getter? public java.lang.String getX(); Code: ...
3
votes
1answer
39 views

IJVM ILOAD instruction does not load proper value

I am writing a simple program to compute the absolute value of a few integers in IJVM for the MIC1 architecture. I am using the emulator located here. Here is the code: BIPUSH 0xC0 DUP ISTORE i1 ...
1
vote
1answer
49 views

Remove LineNumberTable and filter LocalVariableTable?

Some frameworks read method argument names using debug information from the bytecode. But debug information contains much more. In order to minimize class size (just wondering), we might remove all ...
6
votes
2answers
119 views

Is it possible to inherit a final class modifying bytecode somehow?

Is it possible to inherit a final class using bytecode manipulations?
1
vote
1answer
85 views

ASM 4.0 Tree API: mapping of bytecodes in InsnNodes?

Presumably the entire method body gets processed, and converted in the InsnList which contains a bunch of AbstractInsnNodes, along with some non-bytecode nodes (like FrameNode, LineNumberNode, etc.). ...
2
votes
2answers
140 views

ASM: how to easily get proper Opcode based on type

I am using ASM to generate Java bytecode. I have a need to create a dynamic proxy which can override basically any kind of method with additional post-processing. I am able to do it all, but there is ...
2
votes
1answer
137 views

Recommended bytecode manipulation library for rewriting class files to change types e. g. of fields?

I'm looking for a way to generate a class file from an existing one, while allowing me to replace the type of a field by another type. Consider this example snippet, in which I'd like to every usage ...
1
vote
3answers
109 views

Can JVM bytecode be manipulated at compile time?

Is it possible to use a bytecode manipulation library like ASM at compile time? Specifically, I'd like to use Java's annotation processing API to implement boilerplate-heavy methods on annotated ...
4
votes
1answer
146 views

Incompatible argument to function with ASM bytecode instrumentation

I am having some troubles running a simple main program with Guava libraries. I have instrumented the classes to get the methods parameters using my code from here : Java method parameters values in ...
2
votes
1answer
392 views

Java method parameters values in ASM

I am trying to get the values of a Java program's method's parameters. I am using ASM to instrument the bytecode and getting these values. However, I'm running into some troubles. Here is the ...
1
vote
2answers
143 views

Corrupted LocalVariableTable in JBoss classes

I am using ASM 4.0 and have encountered a strange problem with org/jboss/jms/client/delegate/ClientClusteredConnectionFactoryDelegate.class class from JBoss distribution The problem is that after ...
0
votes
1answer
307 views

How to create a local variable with ASM?

I'm trying to patch a class with ASM. I need to add some logic in a function. This logic needs a new local variable. Here is what I've done: class CreateHashTableMethodAdapter extends MethodAdapter { ...
0
votes
1answer
234 views

ASM Tree API insert into InsnList giving StackOverflowError?

I'm trying to follow the delegation example on page 112 of the ASM user manual (http://download.forge.objectweb.org/asm/asm4-guide.pdf). So far I have something that looks like this: class ...
1
vote
1answer
148 views

Using ASM 4.0 how could I create a simple Getter?

Say I had a class like this: public class Example{ private String secret = "Secret String"; } How would I be able to add a getter to return this string (No reflection to be used), so I'd ...
0
votes
1answer
173 views

Considerations for using ASM and Javassist in the same project

ASM and Javassist seem to have different advantages and shortcomings for generating/transforming Java bytecode. For example, the byte code generation facility of Javassist is really easy to use since ...
0
votes
1answer
82 views

ASM method execution listener

Is it possible to implement an adapter capable to intercept all inner method invocations inside main method? If we have this class... class Zombie { private Grave grave = new Grave(); public ...
1
vote
1answer
161 views

Java ASM4: super(ASM4);?

Well I was reading the PDF tutorial/documentation/book(if you will) on the ASM4 Bytecode library. I was trying out the examples and learn as I went by, by reading, and actually typing out the code, ...
4
votes
1answer
2k views

Java ASM Bytecode Modification-Changing method bodies

[EDIT] SOLVED[/EDIT] The java bytecode was never the problem. It is the way I was loading the jar which made it impossible to instrument the code. Thanks to Ame for helping me tackle it. The ...
1
vote
3answers
196 views

How to find an empty local variable in a method for instrumenting using asm library

While instrumenting a class for its different methods In order to make a method do a write operation in a text file. I first stored the string in a local variable 3160 explicitly defined. How to ...
0
votes
2answers
108 views

Java find out what imports a .class has

Is there a way to find out what imports a class has? In this question: Jon Skeet says that you can't do this using reflection, but If you want to find all the types used within the compiled code, ...
0
votes
1answer
135 views

ClassNotFound error during class verification with ASM's Class Verifier (org.objectweb.asm.util.CheckClassAdapter)

So here is a snippet of bytecode which i am trying to verify using ASM's class Verifier: public <init>(Ljava/io/InputStream;)V ALOAD 0 ALOAD 1 SIPUSH 2048 NEW ...
4
votes
2answers
1k views

Bad local variable type in method

I'm using ASM 4 to generate some classes on the fly. Everything went quite well until I got to generating code to do exception handling. The generated bytecode is at the bottom. Here is the error I'm ...
4
votes
2answers
369 views

How do I compile JVM assembly code into bytecode?

If I ran javap -c ASM.class > ASM.java to get the assembly code, how would I recompile this back into JVM bytecode?
1
vote
1answer
143 views

ASM transformation to find concrete class type

I'm working on a project that will trace method calls from a class within a package to any other class. It's important that I can identify concrete types, and I'd prefer to have a minimum tracing ...
0
votes
2answers
967 views

Adding code to a Java class w/ Instrumentation: ASM or BCEL?

I am writing a game engine/library in which I have an event dispatcher class which dispatches events by calling listener methods of "registered" event handler classes. One can register an event ...
6
votes
2answers
246 views

Replace java operators by methods in bytecode using javassist

My Goal To be able to detect when, at runtime, a comparison is made (or any other operation like, *, - , /, >, < ,... This should be achieved to edit the bytecode of a class using Javassist or ...
2
votes
1answer
197 views

How to verify Java Bytecode before injecting into the JVM?

I'm trying to verify "on the fly" generated bytecode! I already had several attempts, one attempt was to compile my classes in runtime with the eclipse compiler another was to compile from memory as ...
3
votes
1answer
362 views

How do I use Instrumentation.retransformClasses() correctly from within asm code?

I'm using the asm library to perform some Java bytecode modification - specifically to modify my classes to implement a new interface and associated methods. My current approach is using the core asm ...
1
vote
3answers
254 views

Best choice? Edit bytecode (asm) or edit java file before compiling

Goal Detecting where comparisons between and copies of variables are made Inject code near the line where the operation has happened The purpose of the code: everytime the class is ran make a ...
0
votes
1answer
101 views

java bytecode:two for-loop on onmethodExit

i have a test method: public List<User> getUsers(){ List list = new ArrayList(); return list; } so,I want insert two for-loop code to the method, to new list before and after, asm code same ...
0
votes
2answers
173 views

Using ASM to find generic signatures of “implicit” variables

I am building a dependency search tool using ASM 4.0 and I have found a corner case which I have been unable to solve. The problem I'm having has to do with identifing usages of MyClass in the code ...
1
vote
2answers
104 views

Polymorphic call: resolving target method from bytecode

Given Java bytecode and ASM bytecode analysis framework, how can I resolve a target method when polymorphic call occurs? For instance: class ClassA { public void foo() {…} } class ClassB ...
1
vote
3answers
1k views

Pretty printing a method in ASM Bytecode

I am trying (with no success) to print only the contents of a given method. The following code almost does the trick: class MyTraceMethodVisitor extends MethodVisitor { public ...
1
vote
3answers
87 views

Formatting the output of a TraceClassVisitor

Let's say I want to pretty print the bytecode of a method with the asm library. public int get777() { return 777; } through TraceClassVisitor will look as // access flags 0x1 public get777()I ...
1
vote
1answer
193 views

Testing with ASM Bytecode

Let's say I am instrumenting a class, in which I want to add a couple of instructions to some parts of a method. For instance, let's consider the case where I want develop a visitor V to rename method ...
1
vote
1answer
92 views

Easy way to stack up a couple of ASM-Bytecode visitors?

I'm currently implementing some code that should, for each method of a class, run a couple of visitors on a .class file, as to instrument its bytecode. At the moment, I've just implemented a ...
1
vote
2answers
410 views

Trouble understanding method renaming with ASM Bytecode in Java

I am currently trying to understand how the ASM library works. I've decided to try to rename all the methods of a given class, so I wrote a mini MethodRenamer visitor: class MethodRenamer extends ...
0
votes
3answers
113 views

grep for specific jvm bytecode pattern

I am working on a legacy java project which has a number of design issues. As a result, some parts of the code don't behave as expected. Consider the following piece of code: public enum Parent{ ...
0
votes
1answer
237 views

Java OW2 ASM using interface to access byte code class

I've been trying to search around web for guides/help for accessing byte code classes via interface that the byte code class is casted to in ASM. I've seen this done on RuneScape bot called powerbot ...
0
votes
1answer
517 views

variable definition and assignment detect asm bytecode

I am trying to use the ASM bytecode tree API for static analysis of Java Code. I have a ClassNode cn, MethodNode m and the list of instructions in that method say InsnList list. Suppose for a given ...
2
votes
2answers
433 views

Asm bytecode queries

Hey all, I am trying to use the ASM bytecode Tree Api to do static analysis for a class. I guess I have a pretty basic question. In a method say foobar(), I have a list of instructions within foobar ...
4
votes
2answers
3k views

Generating a 'Hello, World!' class with the Java ASM library

I have started messing around with the ASM API for a compiler project I am working on. However, I am finding that the documentation is less than clear for a newcomer in many places and I thought ...
7
votes
2answers
576 views

ASM: Stateful Transformation

I want to write a MethodVisitor that transforms LDC instructions that are for multiplication. Example bytecode: ldc #26 imul This basically pushes a constant and then multiplies it. It has to be ...
5
votes
3answers
572 views

Java: new instance from bytecode

ClassWriter cw = new ClassWriter(...); byte[] bytes = cw.toByteArray(); I would like to create new class instance from bytes array. How do I do this? Is it possible at all?
0
votes
2answers
158 views

How to map binary instructions back to statements or expressions using ASM library?

I am trying to parse java bytecodes into an intermediate data structure for later use. I stumbled into ASM. It is powerful and stable. However, I am difficult time translating the binary instructions ...
0
votes
2answers
446 views

Static Initializer in asm

I want to initialize a static field which I added to a class using asm. If I could access the static initializer then I could to the initialization. How can I initialize a static field?
6
votes
3answers
3k views

Java: Getting Bytecode of Class at Runtime from within the Same JVM

Related to: Java: Is there a way to obtain the bytecode for a class at runtime? I'm adding durability to Clojure, and I'm finally at the point where I'm ready to add functions. In Clojure, ...

1 2