Displaying 3 results from an estimated 3 matches for "td16073995".
2011 Dec 14
2
[LLVMdev] Adding dependency on MemoryDependenceAnalysis pass to LICM causes opt to get stuck in addPass
...rImpl<PMDataManager *>::iterator
I = IndirectPassManagers.begin(),
E = IndirectPassManagers.end(); I != E; ++I)
if (Pass *P = (*I)->findAnalysisPass(AID, false))
return P;
This old post on the list :
http://old.nabble.com/Array-Dependence-Analysis-td16073995.html says
that "Loop passes can use function passes, but not visaversa."
so as far as I can tell this should be OK.
Am I doing something wrong? (perhaps ordering of the addRequired
calls or the initialization macros?)
Is there something else I need to add to allow the memdep pass to be...
2012 Mar 20
1
[LLVMdev] Array Dependence Analysis
Sir,
I was going through the following link about Array dependence analysis in
Old Nabble where they mentioned about some work going on array dependence
analysis. It was posted in 2008.
Array-Dependency-Analysis<http://old.nabble.com/Array-Dependence-Analysis-td16073995.html>
I need to know whether array dependence analysis has been implemented in
LLVM.
Regards,
Adarsh Konchady
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20120320/4872b467/attachment.html>
2011 Dec 14
0
[LLVMdev] Adding dependency on MemoryDependenceAnalysis pass to LICM causes opt to get stuck in addPass
...if (Pass *P = (*I)->findAnalysisPass(AID, false))
> return P;
>
Do you see a repeated pattern of pass sequence the pass manager is trying to handle ? P->getPassName() is handy.
-
Devang
> This old post on the list :
> http://old.nabble.com/Array-Dependence-Analysis-td16073995.html says
> that "Loop passes can use function passes, but not visaversa."
> so as far as I can tell this should be OK.
>
> Am I doing something wrong? (perhaps ordering of the addRequired
> calls or the initialization macros?)
> Is there something else I need to add t...