search for: ac2c7182

Displaying 3 results from an estimated 3 matches for "ac2c7182".

2013 Apr 19
0
[LLVMdev] How to implement list in llvm
> In my compiler I want to give user a list of user defined classes. I tried > to use generated bitcode of my own wrapper of std::vector, but there is no > possibility to generate bitcode of template, so I finally build it with > std::vector<void*>. Does this mean you wrote a wrapper around std::vector, generated LLVM IR for it, and then inserted this IR into your compiled code
2013 Apr 19
1
[LLVMdev] How to implement list in llvm
...ach > one is expected to implement its own requirements. > > In principle, some kind of library could be developed, of course. > > Tim -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130419/ac2c7182/attachment.html>
2013 Apr 19
2
[LLVMdev] How to implement list in llvm
Hi! In my compiler I want to give user a list of user defined classes. I tried to use generated bitcode of my own wrapper of std::vector, but there is no possibility to generate bitcode of template, so I finally build it with std::vector<void*>. Do you know about any better solutions how to build such a type with llvm? Maybe there is a llvm built in type that is better choice than external