Displaying 4 results from an estimated 4 matches for "runonfunctionbodi".
Did you mean:
runonfunctionbody
2006 Nov 07
3
[LLVMdev] PassManager
Hi Vikram,
On Nov 7, 2006, at 10:19 AM, Vikram Adve wrote:
> Chris and Devang,
>
> Before you implement the LoopPassManager class, I'd like to discuss
> this a little bit. I have a suggestion and a question; we can
> discuss this now or later, as you wish:
>
> 1. The LoopPassManager might become much simpler if the more complex
> loop passes are given control over
2006 Nov 07
0
[LLVMdev] PassManager
Devang,
I read Chris's notes so I got all this information there already. My
comments were in response to that.
--Vikram
http://www.cs.uiuc.edu/~vadve
http://llvm.cs.uiuc.edu/
On Nov 7, 2006, at 12:34 PM, Devang Patel wrote:
> Hi Vikram,
>
> On Nov 7, 2006, at 10:19 AM, Vikram Adve wrote:
>
>> Chris and Devang,
>>
>> Before you implement the
2006 Nov 07
0
[LLVMdev] PassManager
Chris and Devang,
Before you implement the LoopPassManager class, I'd like to discuss
this a little bit. I have a suggestion and a question; we can
discuss this now or later, as you wish:
1. The LoopPassManager might become much simpler if the more complex
loop passes are given control over how they iterate over the loops,
rather always rely on the manager to enumerate the loops in
2006 Nov 07
4
[LLVMdev] PassManager
Hi All,
I am planning to re-implement PassManager in llvm 2.0. The goal is to
address
http://nondot.org/sabre/LLVMNotes/Inliner-PassManager.txt and
http://nondot.org/sabre/LLVMNotes/LoopOptimizerNotes.txt
and other crazy ideas Chris has. Current implementation of PassManager
is very complex. Initially I attempted to update it to address above
notes but realized that redoing