search for: ba448454

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

2018 Jun 03
2
Retrieving the name of a indirect virtual method call in LLVM pass
Hi, I have been implementing a CallGraphSCCPass that analyzes each function invocation. Direct calls are not a problem, but currently I also need to retrieve the name of the function in the case of virtual method calls. For example: struct A { A() {} virtual foo() {} virtual ~A() {} }; int main() { A* a = new A; a->foo(); } In the pass, I can determine