Displaying 2 results from an estimated 2 matches for "c1c381dc".
2018 Jun 08
1
Retrieving the name of a indirect virtual method call in LLVM pass
...VM Developers mailing list
llvm-dev at lists.llvm.org <mailto:llvm-dev at lists.llvm.org>
http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20180608/c1c381dc/attachment.html>
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