Tagged Questions
0
votes
1answer
115 views
Trace every instruction in java bytecode using BCEL
I am using BCEL for ByteCode generation, I just want to print out (println) before every line in the static methods of the input class. I tried instrumentation using BCEL but it result in different ...
2
votes
0answers
87 views
Tomcat class load exception after bytecode injection
I inject a invoke statement(cajolingMe.cajoleMe();) to One of the webgoat's class(HammerHead.class). This method is a static method that called from a jar file which crated by fat-jar. I copy that jar ...
1
vote
1answer
160 views
How do I get the line number of the source code from a byte offset in java?
I am manipulating a .class file. I am using the InstrutionHandle package to get the instructions one at a time. I have the byte offset of the instruction via getPosition() method
, can i get the ...
3
votes
1answer
360 views
Adding a field to Java class
Looked at using CGLib, ASM, BCEL (aspect) and Javassist to add a field to a class during runtime....
Just to get my head straight it looks like these bytecode manipulators don't update the actual ...
0
votes
2answers
115 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
78 views
How can I get the generic information of class using BCEL?
I would like to get the generic information (Counter class) of my CounterPersistence class using BCEL 6.0-SNAPSHOT. The signature is like this:
public interface CounterPersistence extends ...
0
votes
1answer
187 views
How to determine the Method invoked by an InvokeInstruction (BCEL)?
I am trying to determine the MethodGen of the callee for a given InvokeInstruction in the BCEL library. The problem is that I don't know how to use the InvokeInstruction to get to the MethodGen that ...
0
votes
2answers
1k 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 ...
0
votes
2answers
170 views
Extracting and executing an arbitrary sequence of Java bytecodes
Given the .class file of Java Class A, is there a way (with BCEL, ASM, etc. for instance) to extract a given bytecode sequence (assuming it's a basic block), place it in a separate location, and then ...
2
votes
1answer
204 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 ...
0
votes
1answer
77 views
missing classes in classfiles constant pool
i am using bytecode analysis to get all imported classes of a classfile (with BCEL). Now, when i read the constant pool, not all imported classes are mentioned as CONSTANT_Class (see spec) but only as ...
4
votes
3answers
162 views
How can one tell if a local variable is 'final' from Java bytecode? (Related to BCEL)
Where is information such as if a local variable is "final" stored in Java bytecode? I know that for fields (global variables) and methods these are found in the access flag bits, but cannot seem to ...
1
vote
1answer
138 views
JAVA BCEL NEWARRAY getType Basic Type
How do I in BCEL check for this..
Say the bytecode in java is
newarray 10 (int)
I got this already done for visitor
instruction instanceof NEWARRAY
public boolean visit(Instruction instr) {
...
0
votes
3answers
183 views
Could I add the comments to my java class with the BCEL?
1.Could I add the comments to my existing java class with the BCEL?
2.Could I add the comments to my newly manually generated java class with the BCEL?
0
votes
1answer
250 views
java trace of all runtime variable access
I need to log all run-time access to any variable or object
My current direction is to markup the classfile with modified bytecode
Performance is not currently an issue
BCEL looks nice to add some ...
2
votes
1answer
259 views
Can we push a Custom Type Object on Stack Operand in BCEL?
In BCEL we can push primitive types on Operand Stack. BUT now I want to know if it is possible to push a Custom Type Object on Stack in BCEL?
I am giving some code so that it can explain the Problem ...
2
votes
1answer
219 views
How to push integer on Stack in BCEL
I am facing a problem in context of pushing a integer on stack in BCEL.
I have a method _square of someClass i.e. "mathClass"
ilist = new InstructionList();
...
0
votes
1answer
375 views
Invoking Method using BCEL
is there any expert in this community who have worked with BCEL and can guide me about invocation of method using BCEL just like we use to do with java reflection.
Note:to support your answer any ...
2
votes
5answers
7k views
Create simple POJO classes (bytecode) at runtime (dynamically)
I've the following scenario..
I am writing some tool that run user-entered query against the database and return the result..
The simplest way is to return the result as: List<String[]> but I ...
1
vote
2answers
412 views
Java: adding debug call to every method with BCEL
I'm working with BCEL trying to add System.out.println() invoke to every method's first line (except init and clinit methods), to see what methods are called and when
This is my code atm (with some ...
1
vote
1answer
156 views
Getting weird errors on stack manipulation
As part of some simulations that I am running using a tool called JIST/SWANS I am getting some weird errors. This simulator has been written for Java 1.4 and I am attempting to port it to 1.5.
What ...
4
votes
1answer
567 views
Bytecode: LOOKUPSWITCH and TABLESWITCH
I am currently instrumenting bytecode using BCEL. In the BCEL API, the two instructions types LOOKUPSWITCH and TABLESWITCH (package org.apache.bcel.generic) are implementing interface StackProducer. I ...
3
votes
2answers
877 views
Create a BCEL JavaClass object from arbitrary .class file
I'm playing around with BCEL. I'm not using it to generate bytecode, but instead I'm trying to inspect the structure of existing compiled classes.
I need to be able to point to an arbitrary .class ...
2
votes
5answers
821 views
Is BCEL == monkeypatching for java?
a colleague pointed me the other day to BCEL which , as best I can tell from his explanation and a quick read, a way to modify at run time the byte code. My first thought was that it sounded ...