0
votes
1answer
39 views

to get start and end time of application hosted in tomcat using javaagent

I have written a javaagent application to get the execution time of a java application and it works fine. i tried to use this application to get the execution time of a application hosted in tomcat ...
3
votes
1answer
74 views

How can this instrumentation be done

I have different Java applications running on my system and want to instrument classes from one of these applications While trying to do this using dynamically loaded Java agent I found that we can ...
1
vote
0answers
32 views

Agent loading fine but instrumentation not occuring

In order to load and attach my agent to a process the following statement vm.loadAgent("pathToAgent",""); executes properly as no exception is thrown. But the class files responsible for ...
1
vote
3answers
194 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
964 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 ...
4
votes
1answer
212 views

Is is possible to instrument with javassist java core classes? Classes loaded by the bootstrap classloader

I want to add an "insertBefore" on a method of a core JDK 5 class. For some reason it´s not working. Here's an example of the code: ClassPool pool = ClassPool.getDefault(); CtClass ctClass = ...
0
votes
0answers
59 views

About keeping the instrumented version of bytecode using javaagent

The issue is like this: 1> I have an java agent JA that does some instrumentation to a file F. 2> What I need is that after full instrumentation I can keep the instrumented codes. 3> The reason ...
0
votes
0answers
158 views

How and where can I access the .ec files that EMMA generates?

"Emma uses a feature called bytecode manipulation during its instrumentation phase. If you open up the instrumented class files in a decompiler, you'll notice that it would've introduced several ...
1
vote
3answers
299 views

Instrumenting a Java anonymous inner class object

So, given the following code: public MyInterface getMyInterface() { return new MyInterface() { public SomethingElse getSomethingElse() { // .... } } } ... ...
1
vote
3answers
811 views

native java bytecode instrumentation

for bytecode instrumentation in java, there is the asm framework and the bcel and javaassist libraries. However I need to do instrumentation in native code, since some java classes are already loaded ...
5
votes
2answers
175 views

Wrong number of arguments in stack when trying to instrument java bytecode

I am working on a small java bytecode instrumentation tool. The general idea is to have all of a class methods renamed with a _CONGU suffix, creating then proxy methods with the original method ...
2
votes
3answers
211 views

is it possible to change this java code at runtime to insert some small code

I have a quite large codebase. In many places I have a piece of code like this: for (MyObjectType myobj : myList) { //...do something with myobj } MyObjectType is the basic object in my ...
1
vote
1answer
258 views

Instrumentation-based logging framewok for Java

I am trying to track down an issue in one of my Java projects and I am currently facing the possibility of having to manually add a lot of logging statements to a whole bunch of methods. As you can ...
10
votes
3answers
2k views

Identify loops in java byte code

I am trying to instrument java byte code. I want to recognize the entry and exit of a java loop, but I have found the identification of loops to be quite challenging. I have spent a good few hours ...
0
votes
1answer
98 views

inject bytecode into java.lang.StringBuilder

I'm doing some experiment with StringBuilder, and I intend to inject some bytecode into the class using ASM. But I could not find the location of the class. Can anyone point out the location of this ...
1
vote
2answers
1k views

Location of javaagent jar in bootclasspath

I have a javaagent jar that I put on the bootclasspath using Boot-Class-Path: myagent.jar inside the MANIFEST.MF file. I need to find out the directory on the filesystem in which the jar is ...
0
votes
1answer
516 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 ...
1
vote
3answers
548 views

Why does this simple Java bytecode cause a StackOverflow error?

I need to instrument native methods to make a simple static call before executing normally. Because the methods are native, I have to use the "setNativePrefix" feature and wrap the native methods with ...
2
votes
1answer
300 views

How make Eclipse instrument classes at build time?

Sometimes I have to perform some custom bytecode transformation. I have used mainly asm and javaassit. Inside eclipse usually I run my code with the -javaagent jvm parameter. Outside eclipse I use ...
4
votes
2answers
216 views

Bytecode and Objects

I am working on a bytecode instrumentation project. Currently when handling objects, the verifier throws an error most of the time. So I would like to get things clear concerning rules with objects (I ...
0
votes
1answer
608 views

Bytecode instrumentation generating java verifier error

I am using ASM in order to do bytecode instrumentation for Java programs. What I'm doing is simple - When instrumenting a method, if the instruction is a PUTFIELD, simply do a DUP_X1 right before the ...
1
vote
2answers
2k views

ASM bytecode instrumentation for method entry / exit

I've created a JVMTI agent that does the following at a high level: onClassLoadHook send the bytecodes for the loaded class to a separate Java process that will instrument the class using ASM get ...
4
votes
1answer
2k views

Dynamic bytecode instrumentation - issue

I have a problem I am not able to solve. Let's assume we have the following two classes and an inheritance relationship: public class A { } public class B extends A { public void foo() {} } I ...