search for: ratnesh

Displaying 7 results from an estimated 7 matches for "ratnesh".

2018 Aug 25
3
PATypeHolder, refineAbstractTypeTo(), addTypeName not found
...Can someone please suggest me the alternative approach of these function in latest llvm version. Here are those classes and functions : 1) PATypeHolder 2) refineAbstractTypeTo() 3) addTypeName() 4) getLayoutType() 5) getInterfaceIndex() 6) OpaqueType::get() Many thanks in advance. With Regards, Ratnesh Tiwari -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20180825/4caab194/attachment.html>
2018 Aug 14
2
Error: ‘class llvm::PassManager<llvm::Module>’ has no member named ‘add’
Hi Philip, I also tried that including file: #include "llvm/IR/LegacyPassManager.h" but error remain same. Please help. On Tue, Aug 14, 2018, 2:58 AM Philip Pfaffe <philip.pfaffe at gmail.com> wrote: > Hi Ratnesh, > > the PassManager used in that example has moved into the legacy namespace: > http://llvm.org/doxygen/classllvm_1_1legacy_1_1PassManager.html > > Cheers, > Philip > > On Mon, Aug 13, 2018 at 8:49 PM Ratnesh Tiwari via llvm-dev < > llvm-dev at lists.llvm.org> wrot...
2018 Jul 31
2
LLJVM make error
...^ compilation terminated. make[1]: *** [main.o] Error 1 make[1]: Leaving directory `/home/rtiwari1/llvm_new/lljvm/backend' make: *** [all] Error 2 Any reincarnated version of this or similar or any help to get it running please? Greatly appreciated. Thanks & Regards, Ratnesh -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20180801/343d7e6b/attachment.html>
2018 Aug 01
2
LLJVM make error
...there is no expectation that a project built against LLVM's C++ API in 2015 would build or reasonably function against LLVM trunk. The project probably works against LLVM 3.6.2 which was (I believe) the last LLVM release to contain that header file. -Chris > On Jul 31, 2018, at 12:05 PM, Ratnesh Tiwari via llvm-dev <llvm-dev at lists.llvm.org> wrote: > > It is similar to the problem asked by Ammar Naqvi via llvm-dev Sat Mar 26 23:29:03 PDT 2016 > > http://lists.llvm.org/pipermail/llvm-dev/2016-March/097665.html <http://lists.llvm.org/pipermail/llvm-dev/2016-March/...
2018 Aug 20
2
Using VMKit to convert Java Bytecode to LLVM IR
...is unmaintained might have a lot of bug to meet latest llvm version. Also tell me if I have to write it from scratch to convert from Java Bytecode to LLVM IR, what is the basic code flow approach ,how to start and related guidance. Please help me by suggesting above queries. Thanks & Regards Ratnesh Tiwari -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20180820/329e61aa/attachment.html>
2018 Aug 24
3
OpaqueType:: get()
...lvm/IR/DerivedType.h , but it is removed now. What should I use for it replacement. Also, it is using #include <llvm/Bytecode/WriteBytecodePass.h> , but I do not found any WriteBytecodePass.h in my source code. Please tell me, what should I use in replacement of these. Thanks& Regards, Ratnesh Tiwari -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20180824/cfeaa1c8/attachment.html>
2018 Aug 13
2
Error: ‘class llvm::PassManager<llvm::Module>’ has no member named ‘add’
Hi, I am begineer to llvm, implementing a main.cpp from https://github.com/davidar/lljvm/blob/master/backend/main.cpp A) : When I am declaring a command: * PassManager PM* * PM.add(new DataLayout td)* It shows error: > *error: missing template arguments before ‘PM’* * PassManager PM;* ^ >*main_test.cpp:48:2: error: ‘PM’ was not declared in this scope* *