Displaying 3 results from an estimated 3 matches for "addchildloop".
Did you mean:
addchildloops
2010 Jan 08
1
[LLVMdev] Make LoopBase inherit from "RegionBase"?
On 01/08/10 14:20, ether wrote:
> sorry that i forgot to change the subjuect
Hi ether,
sounds interesting. Actually is/may be some kind of region. If you want
you can have a look at the analysis, that I wrote. It is not yet
finished, not completely documented and work in progress. However the
first big comment might be interesting for you. Or seeing the results of
opt -regions -analyze
2020 Jul 24
2
Regarding the project "Create LoopNestPass"
...nToLoopUnitPassAdaptor` and they operates on `Loop`, and the
`FunctionToLoopNestPassAdaptor` will construct the `LoopNest` object lazily
for the given `LoopNestPass` to run on.
The `LNPMUpdater` only support `revisitCurrentLoopNest()` and
`markLoopNestAsDeleted()` since other functionalities like
`addChildLoops()` and `addSiblingLoops()` that `LPMUpdater` provide don't
seem to be meaningful since we're dealing with outer-most `LoopNest`s.
Still, an analogy of `addSiblingLoops()` can be implemented as something
like `addAllLoopNests()`. What's your opinion on that?
Currently, `LoopNestToLoopP...
2020 Jul 18
3
Regarding the project "Create LoopNestPass"
Hi,
Thanks for your help! I've checked the sources that you mentioned.
Currently, I think that I would need to implement a
FunctionToLoopNestPassAdaptor which is essentially the same as the
FunctionToLoopPassAdaptor but operates only on LI.getTopLevelLoops().
We might also need a LNPMUpdater (LoopNestPassManagerUpdater) which
disallows adding inner-loops back into the pipeline, and