Given an c++ object pointer and compatible method pointer to a virtual method, is there any remotely robust/portable way to get a pointer to the actual concert function that would be called?
The use case is that I want to run said pointer thought the debug symbols to get the name of the type/function that would be called (without actually calling it).
If this is only possible via implementation specific solutions, then I'm primarily interested in supporting GCC/LLVM.