Let's say I have a particular instruction address for a Java program (for whatever reason) and I want to know which function it belongs to.
If this was from a C++ program for example, I could use binutils (addr2line etc) to get this.
Is this even possible for a Java program as there's no ELF file as the bytecode is JIT-ted?