search for: 59b29bac

Displaying 2 results from an estimated 2 matches for "59b29bac".

2011 Jul 07
0
[LLVMdev] Identifying classes and its member functions
...imization, but instead try to process source code in some way (indexing, source to source transformations, etc) then you might want to use clang instead. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20110706/59b29bac/attachment.html>
2011 Jul 07
2
[LLVMdev] Identifying classes and its member functions
Hi, I am new to LLVM and am trying to identify all the member functions of a class. Currently, I am converting the source code into the IR using a llvm frontend. I have written a module-pass which will take in the IR thus generated and iterate over the various types (classes/structs) defined in the source. For every such type, I will iterate over the sub-types (types of its members). I was