search for: _zn1a5helloev

Displaying 1 result from an estimated 1 matches for "_zn1a5helloev".

2017 Sep 22
0
Get function implementation for indirect CallInst.
...e C++ codes. I need to find the related function implementation for a given indirect CallInst. To make my question a little bit clear, I construct a simple example here. For “ call void %3(%class.Base* %1)”, I need to figure out Which implementation is called ( it can be manually figured out that _ZN1A5helloEv (A::hello() is called,how to figure it out in a pass ?) My initial thinking is trace back from "call void %3(%class.Base* %1)” until find %obj1 = alloca %class.A, align 8, but how can I associate %class.A with @_ZTV1A, so I can get the function from @_ZTV1A ? Thanks! ;virtual tables @_ZTV1A...