search for: abhishekr

Displaying 10 results from an estimated 10 matches for "abhishekr".

Did you mean: abhishek
2012 Jun 02
3
[LLVMdev] llvm-tv
I am trying to compile llvm-tv as per the instructions from the link - http://llvm.org/svn/llvm-project/television/trunk/README.txt The poolalloc doesn't seem to be in synch with the llvm svn version mentioned (78786). It is giving lot of errors during compilation. I fixed a few of them by bringing in functions/header files etc. wherever required from the mainline llvm. But this exercise
2012 Jun 06
0
[LLVMdev] llvm-tv
I fixed all the other build errors. This is the only one pending. On Tue, Jun 5, 2012 at 8:33 PM, AbhishekR <abhishekr1982 at gmail.com> wrote: > I fixed most of the errors. > > There is a weird error I am seeing and seems to be some incompatibility in > expanding macros between FileSystem.h in LLVM and intl.h in wxWidgets. Any > idea how to fix this? > > In file included from...
2012 Jun 06
3
[LLVMdev] llvm-tv
...ot;scandir"); ^ /home/arhishee/work/llvm-tv/llvm-tv/lib/Snapshot/FileUtils.cpp:50:5: error: use of undeclared identifier 'perror' perror("scandir"); ^ On Tue, Jun 5, 2012 at 8:23 AM, John Criswell <criswell at illinois.edu> wrote: > On 6/1/12 7:33 PM, AbhishekR wrote: > > I am trying to compile llvm-tv as per the instructions from the link - > http://llvm.org/svn/llvm-project/television/trunk/README.txt > > The poolalloc doesn't seem to be in synch with the llvm svn version > mentioned (78786). It is giving lot of errors during comp...
2012 Jun 06
2
[LLVMdev] llvm-tv
.../wx-2.8/wx/cpp.h:17:37: note: expanded from: #define wxCONCAT_HELPER(text, line) text ## line ^ <scratch space>:61:1: note: expanded from: Lv ^ On Tue, Jun 5, 2012 at 6:00 PM, John Criswell <criswell at illinois.edu> wrote: > On 6/5/12 7:45 PM, AbhishekR wrote: > > Thanks John. I verified that and poolalloc builds with LLVM 3.0. I used > clang for compiling wxWidgets, LLVM 3.0 and poolalloc. > > But llvm-tv build still gives build error. I take it that llvm-tv is > still incompatible with these versions of poolalloc and LLVM 3.0....
2012 Jun 05
0
[LLVMdev] llvm-tv
On 6/1/12 7:33 PM, AbhishekR wrote: > I am trying to compile llvm-tv as per the instructions from the link - > http://llvm.org/svn/llvm-project/television/trunk/README.txt > > The poolalloc doesn't seem to be in synch with the llvm svn version > mentioned (78786). It is giving lot of errors during compilat...
2012 Jul 30
0
[LLVMdev] global control flow graph at machine code level
Hi Abhishek, On Sunday, July 29, 2012 18:32:11 AbhishekR wrote: > It seems like I may have to modify the way MachineFunction is instantiated in MachineFunctionAnalysis. Instead of doing it per Function, it may have to be done for the entire Module by instantiating MachineFunction objects for every Function inside the Module. This might require major c...
2012 Jul 29
3
[LLVMdev] global control flow graph at machine code level
Hi all, I am trying to build a global control flow graph at machine code level. Essentially, I need the handles to the MachineFunction's corresponding to every call site inside a MachineFunction in order to get the handles to MachineBasicBlock's with return statements inside the callee. Currently, the codegen module processes one MachineFunction at a time and hence I can't find a way
2012 Jun 06
0
[LLVMdev] llvm-tv
On 6/5/12 7:45 PM, AbhishekR wrote: > Thanks John. I verified that and poolalloc builds with LLVM 3.0. I > used clang for compiling wxWidgets, LLVM 3.0 and poolalloc. > > But llvm-tv build still gives build error. I take it that llvm-tv is > still incompatible with these versions of poolalloc and LLVM 3.0. I...
2012 Jun 02
0
[LLVMdev] DFG of machine functions
...3 types - NodeType &Node, NodeType *const *Node, NodeType *Node, where NodeType corresponds to llvm::Value) and the llvm::MachineInstr type passed through the mc_inst_iterator template. But I am not sure how to fix it. Can someone provide some debug pointers? On Wed, May 30, 2012 at 8:21 PM, AbhishekR <abhishekr1982 at gmail.com> wrote: > Hi, > I am trying to generate the DFG of machine functions. > > Initially, I added a pass to generate the DFG of LLVM IR functions. This > was based on the mail thread - > http://lists.cs.uiuc.edu/pipermail/llvmdev/2009-September/025582...
2012 May 31
2
[LLVMdev] DFG of machine functions
Hi, I am trying to generate the DFG of machine functions. Initially, I added a pass to generate the DFG of LLVM IR functions. This was based on the mail thread - http://lists.cs.uiuc.edu/pipermail/llvmdev/2009-September/025582.html. This pass worked fine and I was able to generate DFG of LLVM IR functions. Later, I ported the DFG pass code for machine functions. I ported the InstIterator.h