<div dir="ltr"><div>SimplifyCFG FoldTwoEntryPhiNode looks to simplify all 2 entry phi nodes in a block, if it can't do them all then it won't do any and returns. There is a lot of code that is directly in this function geared toward this requirement. Is it possible currently to get this function (or pass) to simply fold "some" of the phis (without having to fold them all?). I understand that "Simplify"CFG isn't really meant for this type of thing but there is a lot of code that is re-usable to do this with some refactoring of this function and potentially some addition of target specifics. </div><div><br></div><div>For some phis, it's beneficial to keep them as the generated COPYs can be coalesced away later in the pipe. For other phis (for example, phis with all or potentially partial imm ops), it would be nice to opt these to selects (cmovs). It would also be nice to have this opt prior to the rest of SimplifyCFG as it might enable SimplifyCFG to do a better job of simplifying by reducing the number of phis, etc...</div><div> </div><div>We could fold the imm ops in the target backend but there are complications/complexities with doing that and we'd also potentially miss out on earlier optimizations.</div><div><br></div><div>Thanks.</div></div>