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 extends ClassA {
    public void foo() {…}
}
…
ClassA inst = new ClassB();
inst.foo();

The following bytecode is generated for the latter line:

…
INVOKEVIRTUAL ClassA.foo()V
…

This instructure targets a parent method.
But the actual method is ClassB.foo().

How can I resolve the "real" method that will be called?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

In general: you can't. It's undecidable. But there are special case which can be analyzed. One way to do it is to apply a points-to-analysis. Which usually is a whole program analysis. In the presence of bytecode rewriting and or reflection additional problems occur.

So basically you have to decide how much effort you are willing to spend. You have the following options:

  • You perform an ad-hoc analysis which would be able to detect your trivial case from above.
  • You apply a lot of theory of static analysis to this problem.
  • You find someone else who already performed the second option.

What do you want to achieve in the first place?

link|improve this answer
feedback

I don't know anything about ASM, but I suspect that you can't. Bytecode is interpreted at runtime. As such, the method that's invoked will be invoked at runtime. So foo() might be invoked on ClassB and on ClassC depending on the state of the application.

Disclaimer if ASM allows interrogation of a running JVM (like a debugger) then you should be able to!

link|improve this answer
Even if you use ASM to analyze the bytecode of classes at runtime, you have to assume that no other classes are loaded later, and no proxy objects of relevant type are instantiated, etc. – jmg Nov 25 '11 at 14:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.