similar to: [LLVMdev] doubt regarding gvnpre

Displaying 20 results from an estimated 300 matches similar to: "[LLVMdev] doubt regarding gvnpre"

2010 Apr 11
0
[LLVMdev] doubt...sample program not working
Hello, I am doing a course project of "Adding the strength reduction in existing GVNPRE implementation". I know GVNPRE is not maintained and has been removed from trunk. But still can I get a single sample program for which it works correctly? Because for all the programs which I have tried it does not perform PRE.One such program is attached with this mail. It is important for my
2009 Nov 17
1
[LLVMdev] GVNPRE removed from main line?
It seems the GVNPRE pass has been removed from the main trunk, though it is present in the 2.6 release. From the llvm-commits archive, I found that it was removed  with this checkin: http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20090928/088214.html "remove the GVNPRE pass. It has been subsumed by the GVN pass." Does the GVN pass optimize all the partial redundancies
2010 Mar 04
1
[LLVMdev] Doubt with GVNPRE
Hi, I have a program as: int main(int argc, char **argv) { int a,b,k,l; scanf("%d%d",&a,&b); if (argc > 1) { k=a+b; } else { k=5; } l=a+b; printf("%d,%d",k,l); return 0; } Now i run the following on it: llvm-gcc -O1 -emit-llvm -c -o 1.bc 1.c llvm-dis 1.bc -o 1.ll opt
2017 Apr 05
2
[NewGVN] Plan for GVNPRE?
Hi Daniel, Got it. If that's the case, can I implement it under the guidance of your insights/prototype? I think I can spend more time on implementation. Thanks, Taewook ________________________________ From: Daniel Berlin <dberlin at dberlin.org> Sent: Tuesday, April 4, 2017 9:41:30 PM To: Taewook Oh Cc: llvm-dev at lists.llvm.org Subject: Re: [llvm-dev] [NewGVN] Plan for GVNPRE? Of
2017 Apr 05
2
[NewGVN] Plan for GVNPRE?
Hi Daniel, Thank you for your detailed reply, and thank you for working on GVNPRE. I’d more than happy to test/evaluate it with our benchmark once it is ready. Please let me know if you need any help. Thanks, Taewook From: Daniel Berlin <dberlin at dberlin.org> Date: Tuesday, April 4, 2017 at 6:13 PM To: Taewook Oh <twoh at fb.com> Cc: "llvm-dev at lists.llvm.org"
2002 Apr 29
3
Organizing the help files in a package
Dear all!! I am using R1.4.1 on windows 98. I had been trying to organize the package and has already been able to document some of the functions in to .Rd (R documentation) files. From these .Rd files I generated plain text files as well as html files. I have also given the 00Index file in each of the directories: html/ help/ data/ man/ Problem: I don't get the help using comand
2010 Sep 15
3
How to use PV on HVM
Hi, I am trying to setup Xen to use "PV on HVM". For this, I did the following. (1) I followed the tutorial at http://wiki.xensource.com/xenwiki/Fedora13Xen4Tutorial to setup Xen4.0.1 on Fedora13. I am able to run virt-manager and create a Fedora 13 guest. (2) I followed the tutorial at http://bderzhavets.wordpress.com/2010/05/27/pv-on-hvm-at-xen-4-0-on-top-of-fedora-13/to use PV on
2013 Dec 13
0
[LLVMdev] GVNPRE /PRE is not effective
Hi All, The PRE or GVNPRE is not effective for the below use case. int sum; int phi =30; void f (int i, int *a) { if ((a[i] << (1)) > -15) sum =(phi+ 0x7fffffffL )/ a[i]; if ((a[i] << (2)) > -15) sum =(phi + 0x7fffffffL) /a[i]; } respective asm (clang on trunk ) #clang -O3 -S test.c BB#0: # %entry pushl %edi pushl %esi
2006 Apr 26
0
[LLVMdev] Summer of Code
On Wed, 26 Apr 2006, andreas burman wrote: > I'm planning to apply for SoC and I would like some hints on which projects > the community are most interested in. > > The two projects that I right now think looks most interesting is: > > * Writing an backend for MIPS > and > * New Transformations and Analyses > - Implement GVN-PRE > - Value range propagation
2006 Apr 26
1
[LLVMdev] Summer of Code
> To me, GVN-PRE and a MIPS backend would be the most useful ones. Do you > have MIPS hardware to test on? If not, a GVNPRE pass might be better, > though you could do the port with a good simulator. Daniel Berlin knows > much about GVNPRE, so he could probably comment more on it. I implemented GVN-PRE for GCC. You could probably do an implementation for LLVM in three months,
2017 Apr 04
2
[NewGVN] Plan for GVNPRE?
Hello, In some of our internal benchmarks, I observe that LLVM performs worse than GCC because LLVM fails to perform PRE when GCC can. I hope this problem goes away when NewGVN equipped with PRE, and wonder if anyone has an idea about the status of PRE on top of NewGVN. Thanks! Best, Taewook -------------- next part -------------- An HTML attachment was scrubbed... URL:
2013 Nov 04
1
[LLVMdev] DominanceFrontier/PostDominanceFrontier for PRE
On Sun, Nov 3, 2013 at 9:19 AM, Christopher Wood <christopherwood07 at gmail.com> wrote: > On Sun, Nov 3, 2013 at 1:02 AM, Daniel Berlin <dberlin at dberlin.org> wrote: >> >> As for a "better" way to implement PRE, it depends on what algorithm >> you want to use. If you just want to write a PRE pass, that's easy >> enough without dominance
2010 Aug 21
2
[LLVMdev] How to add a pass inside LLVM pass list
I have written a simple pass. I have been successful to execute it. I want LLVM to execute it. I don't know how to include a pass in llvm actual pass list, such it automatically invokes it just like GVNPre pass or some other pass. They have already been limked in llvm actual pass list. -- regards, soumya prasad ukil -------------- next part -------------- An HTML attachment was scrubbed...
2006 Mar 16
1
rsync: connection unexpectedly closed.
Dear Mr. Samir, We are using RedHat 7.2. We are getting same error as reported by you some time back (given below). Did you get any solution? Regards C Jagadish Your original message: ====================== I m running RedHat 9 Linux and I have the rsync-2.5.5-4 package. When I m trying to the following: [root at myhost_name root]# /usr/bin/rsync -va 10.0.8.190:usr/local/src
2002 Mar 08
1
passing the reference in R functions
Hello! is it possible to send the vector in the r functions without making the function frame to actually have the replicate copy of it ? -Jag Jagadish Rangrej ( Statistician ) CHEO Research Institute, Ottawa, ON 613-7383951 -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send
2002 May 24
1
How to increases the Memory size for R in Batch mode
hello everybody!! I am using "Rcmd BATCH" command to run simulation on R in batch mode on win98 machine. Would it be possible to increase the memory size of R; if so how and what is the default memory size used, and what is the limit to which I can increase the memory size. My machine configurations: 512MB Ram with Intel P-III processor working at 1GHz speed. Win98 and R 1.4.1
2002 Jul 30
1
Unable to install new package using local zip file (PR#1854)
Full_Name: Jagadish Rangrej Version: 1.5.1 OS: windows 2000 Submission from: (NULL) (192.139.231.5) I have produced one package using >Rcmd install pubbias (pubbias is the name of pkg), to move it to any new computer, I take the zip file of, "Program file\R\rw1051\library\pubbias" and install it using menu option in R for installing from local zip files. It gives the error :
2010 Aug 22
2
[LLVMdev] How to add a pass inside LLVM pass list
Soumya_Prasad_Ukil wrote: > Pls help. You didn't say what was actually running the passes. (llvm-gcc? clang? opt -some -passes?) What you probably want is to modify one of the lists in include/llvm/Support/StandardPasses.h. Nick > > On 21 August 2010 17:32, Soumya_Prasad_Ukil <ukil.soumya at gmail.com > <mailto:ukil.soumya at gmail.com>> wrote: > > I have
2010 Aug 22
0
[LLVMdev] How to add a pass inside LLVM pass list
Pls help. On 21 August 2010 17:32, Soumya_Prasad_Ukil <ukil.soumya at gmail.com> wrote: > I have written a simple pass. I have been successful to execute it. I want > LLVM to execute it. I don't know how to include a pass in llvm actual pass > list, such it automatically invokes it just like GVNPre pass or some other > pass. They have already been limked in llvm actual pass
2011 Nov 25
0
[LLVMdev] SSAPRE for LLVM
On Fri, Nov 25, 2011 at 6:41 AM, josey's...JJ frm kollam nw @ calicut.... <joseykollam at gmail.com> wrote: > i wish to develop llvm SSAPRE compiler optimization for my engineering > academic project .for,that i have a sample c++ program and its .ll > file.anyone have SSAPRE implementation in c++. if anyone have, please give > me that implementation immediately. In the old