search for: aliasanalisys

Displaying 5 results from an estimated 5 matches for "aliasanalisys".

2008 Dec 09
0
[LLVMdev] AliasAnalysis tutorial 2
...*if* a pass requests an AliasAnalysis group pass *and* your pass has already been executed, the pass requesting an AliasAnalysis group pass will find your pass and use it. That is why you need to add it explicitly. If you don't add it explicitly, the PassManager will simply use the default AliasAnalisys group pass, which I believe is BasicAA. Does this help answer your question, or am I misunderstanding something? -- John T. > Thank you ! > > Julien > > > > > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu...
2008 Dec 09
1
[LLVMdev] AliasAnalysis tutorial 2
Hi ! In my quest of implementing my own AA, i understood that it doesn't work because i don't use the 'opt' tool but i create my own PassManager (this for other reasons). The problem is the same with other existing AA (AndersensPass or globalModRefPass) : these AApasses are not chained with the basicAA when they are created in PassManager ... So my question is now : how to
2008 Dec 10
2
[LLVMdev] AliasAnalysis tutorial 2
...ests an AliasAnalysis group pass *and* > your pass has already been executed, the pass requesting an > AliasAnalysis group pass will find your pass and use it. That is why you > need to add it explicitly. If you don't add it explicitly, the > PassManager will simply use the default AliasAnalisys group pass, which > I believe is BasicAA. > > Does this help answer your question, or am I misunderstanding something? > > -- John T. > >
2008 Dec 10
0
[LLVMdev] AliasAnalysis tutorial 2
...lysis group pass *and* >> your pass has already been executed, the pass requesting an >> AliasAnalysis group pass will find your pass and use it. That is why you >> need to add it explicitly. If you don't add it explicitly, the >> PassManager will simply use the default AliasAnalisys group pass, which >> I believe is BasicAA. >> >> Does this help answer your question, or am I misunderstanding something? >> >> -- John T. >> >> >> > _______________________________________________ > LLVM Developers mailing list > LLVMde...
2008 Dec 09
2
[LLVMdev] AliasAnalysis tutorial
Hi ! I'm writting an AliasAnalysis using the online tutorial (http://www.llvm.org/docs/AliasAnalysis.html). My problem is to chain this pass (function Pass in my case) with the basicAA ... I know that my pass is running (runOnFunction) but the virtual methods derived from AliasAnalysis (alias, getModRefInfo, etc ... ) are never called (even in the case wherer the basicAA reaches the end