search for: 5ba01f7c

Displaying 3 results from an estimated 3 matches for "5ba01f7c".

2011 Jul 07
1
[LLVMdev] Identifying classes and its member functions
...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/20110707/5ba01f7c/attachment.html>
2011 Jul 07
0
[LLVMdev] Identifying classes and its member functions
> > On looking into the IR (dumped out in human readable format), I see that > the class defined in the source code has been stripped out of its member > functions and only a structure containing the member variables is created. > The member functions are written out separately with their mangled names. > Hence, I suspect if it is possible to iterate over only the member
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