Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
2answers
355 views

Is “final” final at runtime?

I've been toying with ASM, and I believe I succeeded in adding the final modifier to an instance field of a class; however I then proceeded to instantiate said class and invoke a setter on it, which ...
8
votes
5answers
1k views

Improving field get and set performance with ASM or Javassist

I would like to avoid reflection in an open source project I am developing. Here I have classes like the following. public class PurchaseOrder { @Property private Customer customer; ...
8
votes
5answers
13k views

Error : java.lang.NoSuchMethodError: org.objectweb.asm.ClassWriter.<init>(I)V

Hiii.... I am developing small spring application. I have to store the details of the student information in the database. I have develop one simpleformcontroller.I have used netbeans + hibernate ...
7
votes
2answers
409 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 ...
7
votes
2answers
570 views

Generating methods with generic types with Asm bytecode generator (ClassWriter)

Defining simple getters and setters is easy using Asm (and fortunately it is even explained in their FAQ). But one thing that is not mentioned, and for which I have been unable to find documentation, ...
5
votes
3answers
297 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?
3
votes
2answers
869 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, ...
3
votes
2answers
287 views

Can ASM method-visitors be used with interfaces?

I need to write a tool that lists the classes that call methods of specified interfaces. It will be used as part of the build process of a large java application consisting of many modules. The goal ...
2
votes
2answers
37 views

dynamic java bytecode manipulation framework comparisions

There are some frameworks out there for dynamic bytecode generation, manipulation and weavering (BCEL, CGLIB, javassist, ASM, MPS). I want to learn about them, but since I don't have much time to know ...
2
votes
0answers
84 views

ASM or CGLIB analog for Dalvic

I'm looking for a CGLIB analog usable for Dalvic bytecode. Is there such library in Android World ? Maybe, there is a way to translate CGLIB result to Davlic bytecode on-the-fly ?
2
votes
3answers
102 views

Implementing abstract methods at runtime?

Let's say I have an abstract class: abstract class Foo extends Bar { public abstract int foo(); } that I want to extend at runtime to create a Class object. The hope would be that I could ...
2
votes
2answers
219 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 ...
2
votes
3answers
409 views

Understanding javap's output for the Constant Pool

When running javap on a very simple HelloWorld application I have some confusion on the output around the constant pool. Test Code public class TestClass { public static void main(String[] args) ...
2
votes
2answers
612 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 ...
2
votes
1answer
147 views

Instrumentation

I am new to ASM(byte code manipulation kit) and am using it to instrument java byte code. I want to access the methods of a class and change their access modifiers using ASM. Does someone have an idea ...
2
votes
2answers
1k views

Get java.lang.IllegalAccessError when accessing the private field of a outside class via ASM Java Bytecode

in reflection, the private field can be access via getDeclaredField() and setAccessible(true). How to access the private field of a outside class via Objectweb ASM bytecode API? I set to get the ...
2
votes
3answers
179 views

How to check that bytecode operation PUTFIELD is reassigning a field belonging to 'this' object using ObjectWeb ASM?

I am using the ASM bytecode manipulation framework to perform static analysis on Java code. I wish to detect when fields of an object are reassigned, i.e. when this kind of code occurs: class ...
2
votes
1answer
224 views

Change root package of Java JAR

I am writing a Java Agent which makes use of the Java ASM library for handling byte code. This is a common library and I want to be sure about the version of ASM which my code is using at runtime. ...
2
votes
2answers
904 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, I can set fields on ...
1
vote
3answers
50 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 ...
1
vote
1answer
42 views

Java to Java Bytecode Compiler: How Do I Get Java Class Library Information?

I'm writing a Java to Java Bytecode compiler by compiling to Jasmin code, and assembling that. I'm creating it with the intention that source code files will be able to reference and use Java Library ...
1
vote
2answers
52 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
38 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
75 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
35 views

Eclipse shows up non informing parameter names with ASM 4.0. How to fix this?

When using ASM 4.0 from the Eclipse IDE, all I get are these non informing parameter names: How can I fix this? I've had a look in the past to part of the source code of the library and from what I ...
1
vote
1answer
35 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
79 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 ...
1
vote
1answer
230 views

Java Byte code Manipulation with ASM

I’m using ASM 3.3.1. I am trying to intercept a class and change one of it’s methods. I am using the org.objectweb.asm.util.ASMifierClassVisitor to get ASM code to make the new method. Everything ...
1
vote
1answer
372 views

Invoke a bytecode class method, java

Im new to java, (i use to program in .NET, Lua ...) and i started to use ASM. so i can't use any methods of the class "Foo", how can i invoke these methods? many thanks... code: package com.teste; ...
1
vote
2answers
670 views

Java ASM help need

I write a simple program using Java ASM to generate the byte code which is generated by compiling the following class. public class Main { public static void main(String[] args) { ...
1
vote
2answers
168 views

Retro-actively add Java annotations to methods?

Is there a way to modify .class files in order to add Java annotations to certain methods? Basically I want to traverse methods of each class file in a jar file and annotate certain ones. Note that ...
1
vote
3answers
425 views

Is there a Java byte code reader implemented in javascript?

I know there are lots of libraries that read byte codes that are written in Java. Does someone know of a byte code library that is implemented in Javascript?
1
vote
1answer
214 views

java local variables - how do i get a variable name or type using its index

I'm using the asm instrumentation library. Using visitVarInsn I get the index of a local variable. I want to use that index and recieve more useful information like the name of the variable and the ...
1
vote
2answers
332 views

Bytecode manipulation to intercept setting the value of a field

Using a library like ASM or cglib, is there a way to add bytecode instructions to a class to execute code whenever the value of a class field is set? For example, let’s say I have this class: ...
1
vote
4answers
3k views

ASM jar - Why my java project has a dependency on this?

I have a Java project and internally it is dependent on asm jar. Strangely, I don't even know why my project somehow is dependent on this library (might be brought in by maven as a transitive ...
0
votes
0answers
33 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
41 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 ...
0
votes
1answer
18 views

ClassFormatError error while invoking method added using Java ASM

I am using Java ASM to add a method to compiled class. During run time I am getting below error, when the newly added method is invoked. ClassFormatError: Field "valueEquals" in class ...
0
votes
1answer
38 views

ASM checking for usage of a class or package

Using ASM how can I know whether the compiled code in jar is using specific packages or classes rather than checking for a specific method in a class
0
votes
1answer
77 views

Eclipse: Error (Bytecode Outline) SOURCE FILE [in PROJECT] is not on its project's build path

I've just installer the ASM Eclipse Plugin (and restarted), which give an improved Bytecode Outline, and I can use it for the JRE classes, but looking at my own code, I get the error message in the ...
0
votes
3answers
147 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 ...
0
votes
1answer
51 views

Asm ClassReader accept

I am using Asm to visit the java byte code to get the method infomation.It seems that accept method of class ClassReader is called in a asynchronized manner.So it is impossible to obtain method ...
0
votes
3answers
59 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
60 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
195 views

Byte code instrumentation - implement native or java agent?

If I want to realize a profiler using byte code instrumentation, should I write a native agent using JVMTI or should I write a java agent using the java.lang.instrument package? If I want to use ...
0
votes
1answer
219 views

hibernate org.objectweb.asm.classwriter

i get this error when i run my java application i work with hibernate : java.lang.NoSuchMethodError: org.objectweb.asm.ClassWriter and i added all jars of asm console: 12 mai 2011 09:57:53 ...
0
votes
1answer
186 views

BCEL,Objectweb asm & java refelction comparison

Can anyone give an elaborative comparison between BCEL, ObjectWeb Asm and java reflection regarding every aspects(their pros and cons) but specially for invoking a method of a .class file. thanks in ...
0
votes
1answer
231 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 ...
0
votes
3answers
328 views

How To Populate A JavaBean Other Than Using Reflection

do you know if there is anyway that I can populate a javabean but i don't want to use reflection. For example I have this xml template to pouplate it Sample XML File <property name = "card" ...
0
votes
1answer
132 views

Adding an interface to a transformed class if annotation is present

I'm writing a bytecode transformer using the ClassAdapter of the asm framework. If a custom annotation is present on the class I want to add some methods and make the class implement an interface. ...

1 2