Displaying 3 results from an estimated 3 matches for "xbaruc00".
2013 Jul 03
2
[LLVMdev] CallGraph in immutable pass
Hello,
is there any way I can access CallGraph from immutable pass via
getAnalysis?
As I understand it, this may not be possible, because immutable pass
don't have runOn method and is never actually planned. But I'm not 100%
sure how this works, so I don't know if there is some other way.
Thanks,
Robert Barucak
2013 Jul 03
0
[LLVMdev] CallGraph in immutable pass
Your understanding is correct -- this is impossible. What are you really
trying to do?
On Jul 3, 2013 9:15 AM, "Robert Baručák" <xbaruc00 at stud.fit.vutbr.cz> wrote:
> Hello,
> is there any way I can access CallGraph from immutable pass via
> getAnalysis?
> As I understand it, this may not be possible, because immutable pass don't
> have runOn method and is never actually planned. But I'm not 100% sure how...
2013 Jul 04
1
[LLVMdev] CallGraph in immutable pass
On 07/03/2013 06:18 PM, Chandler Carruth wrote:
>
> Your understanding is correct -- this is impossible. What are you
> really trying to do?
>
I'm working on implementation of some fancier alias analysis algorithm.
I have experienced strange behavior when I registered my AA (as module
pass) into AA group. Somehow I was unable to get correct DataLayout from
AA interface. So I