Displaying 3 results from an estimated 3 matches for "ace5f47c".
Did you mean:
ac59f47c
2011 Nov 21
0
[LLVMdev] Order of Basic Blocks
...t cs.uiuc.edu http://llvm.cs.uiuc.edu
>>> > http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev
>>>
>>>
>>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20111121/ace5f47c/attachment.html>
2011 Nov 20
3
[LLVMdev] Order of Basic Blocks
LLVMers,
Is there any way to guarantee iteration of the basic blocks from top down
or path to path? Currently it looks sort of semi-random, sometimes visiting
loop heads first and other times loop tails, is there a way I can visit the
BBs top down or path to path?
Thank you.
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2011 Nov 20
1
[LLVMdev] Order of Basic Blocks
Sorry, forgot to add group to CC.
On Sun, Nov 20, 2011 at 6:14 PM, Ryan Taylor <ryta1203 at gmail.com> wrote:
> Cameron,
>
> To make it less vague, I would ideally like to traverse top down. I
> believe what you suggested is what I want, I will have a look at it.
>
> Currently, I am iterating over the BBs in a Function, so
> Function::iterator BBitr=F->begin(),