search for: demotephi

Displaying 5 results from an estimated 5 matches for "demotephi".

2008 Feb 04
1
[LLVMdev] Question to Chris
...ot; loops but you can hack on it to do that. I wonder if you mean "goto elimination technique" by Ana Maria Erosa ( http://citeseer.ist.psu.edu/317208.html ) for this? >3) The way you are converting out of SSA is wrong. You will suffer >from lost copies. You should look at using demotePHI(). see include/ >llvm/Transforms/Utils/Local.h I use LLVM 1.9 where I can't find demotePHI(). Is it a function available at later versions? >4) LLVM will compute your trip counts for you, use LoopInfo. You >need to be in SSA form to do this. > >-Tanya > Do you mean -loo...
2008 Mar 25
1
[LLVMdev] What is "strong phi elimination"
Do you mean that "normal" SSA phi elimination algorithm is DemotePHI()? Thx, Seung ---- Original message ---- >Date: Mon, 24 Mar 2008 21:43:06 -0700 >From: Chris Lattner <sabre at nondot.org> >Subject: Re: [LLVMdev] What is "strong phi elimination" >To: LLVM Developers Mailing List <llvmdev at cs.uiuc.edu> >Cc: Christopher...
2008 Feb 02
0
[LLVMdev] Question to Chris
...do everything that you are trying to re-implement. 2) Have you looked at the C backend? It recreates loops. It may not create "for" loops but you can hack on it to do that. 3) The way you are converting out of SSA is wrong. You will suffer from lost copies. You should look at using demotePHI(). see include/ llvm/Transforms/Utils/Local.h 4) LLVM will compute your trip counts for you, use LoopInfo. You need to be in SSA form to do this. -Tanya On Feb 1, 2008, at 11:51 PM, Seung Jae Lee wrote: > Dear Prof.Adve and Bill, > > I deeply appreciate your comments and concerns. &...
2008 Feb 02
4
[LLVMdev] Question to Chris
Dear Prof.Adve and Bill, I deeply appreciate your comments and concerns. (Please forgive my late response. I've tried some more cases to make this issue) As Prof.Adve mentioned, I need to explain exactly what my problem is, but I have no good ability that I can explain it in this plain text space. For this reason, I made a .pdf file and linked it as follows:
2008 Feb 04
0
[LLVMdev] Question to Chris
Hello, Wojtek. I owe much to you. Thank you. My HL code should be simple without any 'goto','break' and so on. Simple as just loops with 'for' and 'if's inside it, so your comment looks helpful. I'll try. Just one thing which concerning me is demotePHI() I couldn't find it in 1.9 so seems to me another installation of the newest version of LLVM. Anyway, Thank you. Truly yours, Seung ---- Original message ---- >Date: Sun, 03 Feb 2008 20:54:24 +0100 >From: Wojciech Matyjewicz <wmatyjewicz at fastmail.fm> >Subject: Re: [LLVMde...