<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css" style="display:none;"> P {margin-top:0;margin-bottom:0;} </style>
</head>
<body dir="ltr">
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
>From what I remember, and from looking at the code, the way things are supposed to work is:</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
 * GVN uses MemoryDependenceAnalysis</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
 * MemoryDependenceAnalysis has PhiValuesWrapperPass as a required dependency</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
 * The alias analysis used by <span style="background-color:rgb(255, 255, 255);display:inline !important">MemoryDependenceAnalysis therefore makes use of PhiValuesWrapperPass</span></div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
<span style="background-color:rgb(255, 255, 255);display:inline !important"><br>
</span></div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
<span style="background-color:rgb(255, 255, 255);display:inline !important">I don't remember if the alias analysis used by MemoryDependenceAnalysis also getting and</span></div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
<span style="background-color:rgb(255, 255, 255);display:inline !important">using the result of PhiValuesWrapperPass was an intended consequence of this or not.</span></div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
<span style="background-color:rgb(255, 255, 255);display:inline !important">Possibly it would make sense for GVN to directly require PhiValuesWrapperPass, which may</span></div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
<span style="background-color:rgb(255, 255, 255);display:inline !important">fix the problem.</span></div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
<span style="background-color:rgb(255, 255, 255);display:inline !important"><br>
</span></div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
<span style="background-color:rgb(255, 255, 255);display:inline !important">John</span></div>
<div>
<div id="appendonsend"></div>
<div style="font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)">
<br>
</div>
<hr tabindex="-1" style="display:inline-block; width:98%">
<div id="divRplyFwdMsg" dir="ltr"><font face="Calibri, sans-serif" color="#000000" style="font-size:11pt"><b>From:</b> Alexey Zhikhartsev <alexey.zhikhar@gmail.com><br>
<b>Sent:</b> 27 April 2021 19:15<br>
<b>To:</b> via Llvm-dev <llvm-dev@lists.llvm.org><br>
<b>Cc:</b> John Brawn <John.Brawn@arm.com>; dberlin@dberlin.org <dberlin@dberlin.org><br>
<b>Subject:</b> BasicAA depending on PhiValues analysis</font>
<div> </div>
</div>
<div>
<div dir="ltr">
<div>Hi all,</div>
<div><br>
</div>
<div>I encountered a problem where an optimization that uses BasicAA is very fragile due to BasicAA's "weak" reliance on the PhiValues analysis.</div>
<div><br>
</div>
<div>The whole story is this: our team is in the process of upgrading to the newest version of LLVM, and I discovered that on the newest LLVM, Global Value Numbering doesn't apply an important optimization anymore.</div>
<div><br>
</div>
<div>A little bit of background: GVN depends on Basic Alias Analysis, and BasicAA depends on PhiValues. However, the dependence between GVN and AA is "strong":</div>
<div><br>
</div>
<div>   getAnalysis<AAResultsWrapperPass>().getAAResults()</div>
<div><br>
</div>
<div>Whereas between BasicAA and PhiValues it is "weak" (note "IfAvailable"):</div>
<div><br>
</div>
<div><span class="x_gmail-keyword">   auto</span> *PVWP = getAnalysisIfAvailable<PhiValuesWrapperPass>();</div>
<div><br>
</div>
<div>So, in the old LLVM, BasicAA that runs before GVN, happens to find cached PhiValues analysis, gives good results to GVN, and GVN applies the optimization. But on the new LLVM, BasicAA doesn't have PhiValues, gives poor results to GVN, and GVN gives up.
 It looks to me that whether BasicAA gets its hands on PhiValues is almost entirely up to chance, which makes the clients of BasicAA very fragile, meaning that it's hard to be sure if an optimization you need will get applied.</div>
<div><br>
</div>
<div>I see the discussion in <a href="https://reviews.llvm.org/D44564">https://reviews.llvm.org/D44564</a> but I'm pretty much out of my depth there and I'm not sure if a solution to the problem above has been mentioned.</div>
<div><br>
</div>
<div>Maybe the new pass manager has this problem solved?</div>
<div><br>
</div>
<div>Anyhow, I would appreciate any input, thank you in advance.</div>
<div><br>
</div>
<div>Best,</div>
<div>Alex<br>
</div>
<div><br>
</div>
<div><br>
</div>
</div>
</div>
</div>
</body>
</html>