Hi, How do I create a function in llvm IR which returns a StringMap datastructure? thanks, Bhavani
bhavani krishnan wrote:> Hi, > > How do I create a function in llvm IR which returns a StringMap datastructure?I think the simplest way to answer these sorts of questions is to write such a function in C++, then use llvm-g++ to compile it, with -emit-llvm. You can disassemble the bitcode and see how to create one, or you can use llc -march=cpp to turn the bitcode into the C++ code that creates the equivalent bitcode. Hope that helps, Nick Lewycky> thanks, > Bhavani > > > > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev >
Hi, I need to use Value Numbering in my optimization pass. I dont see this being used by any other passes. Please let me know which passes to include in addRequired and how to getAnalysis for value numbering. addRequired<GVN> doesn't seem to work. Any help is appreciated! Thanks in advance! Bhavani
Seemingly Similar Threads
- [LLVMdev] Using map structure in llvm IR
- [LLVMdev] Assertion `InReg && "Value not in map!"' failed
- [LLVMdev] Assertion `InReg && "Value not in map!"' failed
- [LLVMdev] Is it possible to use EE within optimization pass?
- [LLVMdev] Is it possible to use EE within optimization pass?