Tagged Questions
2
votes
3answers
40 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 ...
2
votes
1answer
96 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
93 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();
...
2
votes
4answers
924 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 ...
2
votes
1answer
548 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
4answers
556 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 ...
1
vote
1answer
54 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) {
...
1
vote
2answers
196 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
93 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 ...
1
vote
0answers
333 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 ...
0
votes
1answer
17 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 ...
0
votes
3answers
36 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
0answers
71 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 ...
0
votes
1answer
165 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 ...