Displaying 3 results from an estimated 3 matches for "dominancefront".
Did you mean:
dominancefronter
2013 Nov 02
2
[LLVMdev] DominanceFrontier/PostDominanceFrontier for PRE
Hi all,
Does anyone know how to recreate the DominanceFronter and
PostDominanceFrontier structures using the API of the latest release? To my
knowledge, these are needed to implement a PRE pass (as done in the
past<https://llvm.org/svn/llvm-project/llvm/tags/RELEASE_13/lib/Transforms/Scalar/PRE.cpp>),
but they were removed a while ago for efficiency r...
2013 Nov 02
0
[LLVMdev] DominanceFrontier/PostDominanceFrontier for PRE
...be represented by some integers)
o. step 3 is nothing as normally a block only have two immediate succ.
Again this algorithm is just random idea. It is at your own risk if
you try it.
On 11/1/13 9:18 PM, Christopher Wood wrote:
> Hi all,
>
> Does anyone know how to recreate the DominanceFronter and
> PostDominanceFrontier structures using the API of the latest release?
> To my knowledge, these are needed to implement a PRE pass (as done in
> the past
> <https://llvm.org/svn/llvm-project/llvm/tags/RELEASE_13/lib/Transforms/Scalar/PRE.cpp>),
> but they were remov...
2013 Nov 03
4
[LLVMdev] DominanceFrontier/PostDominanceFrontier for PRE
...rs)
> o. step 3 is nothing as normally a block only have two immediate succ.
>
> Again this algorithm is just random idea. It is at your own risk if you
> try it.
>
> On 11/1/13 9:18 PM, Christopher Wood wrote:
>
> Hi all,
>
> Does anyone know how to recreate the DominanceFronter and
> PostDominanceFrontier structures using the API of the latest release? To my
> knowledge, these are needed to implement a PRE pass (as done in the past),
> but they were removed a while ago for efficiency reasons. Is there a better
> way to implement PRE using the current API, or...