[llvm-dev] Allowed operations for passes that report "no change"

Roman Lebedev via llvm-dev llvm-dev at lists.llvm.org
Fri Jul 17 12:57:25 PDT 2020


On Fri, Jul 17, 2020 at 10:52 PM Nikita Popov via llvm-dev
<llvm-dev at lists.llvm.org> wrote:
>
> On Fri, Jul 17, 2020 at 9:30 PM Jonathan Roelofs via llvm-dev <llvm-dev at lists.llvm.org> wrote:
>>
>> I’m digging through a build failure [1], and it looks like the loop idiom recognizer adds some instructions [2], and then removes them again [3]. I don’t understand why yet, but the LegacyPassManager detects that the structural hash of the function has changed, and complains that the pass didn’t correctly report that it changed the function [4] (even though materially, it didn’t).
>>
>> This raises a broader question of what we really mean when we say that a pass is allowed to report it made no changes through its runOn* function(s):
>>
>> A) The obvious, and most restrictive condition would be that the pass can only return false if it treated the Function/Module/etc that it visited purely as read-only. From what I can tell, a lot of passes conservatively assume this is the required condition.
>>
>> B) Less obvious would be that we allow passes to add instructions speculatively, so long as they remove whatever they added before returning false. If one were to dump the IR before & after such a pass, you should see no change in the text/bitcode. If you compared the in-memory representations, you should see no semantic differences in the two, modulo “allowed” differences like unordered lists of pointers (I vaguely remember a few cases of this existing, but can’t remember the details).
>>
>> C) Even less obvious would be that we allow a pass that removes instructions / globals, and then re-adds them. These changes would be semantics-preserving, but would of course not preserve the removed bits of IR’s addresses in memory.
>>
>> I believe (A) to be the spirit of the contract between passes and the pass manager. (B) seems like a stretch, but depending on the analysis invalidation needs of the PM, might still be ok. (C) seems totally off base, and does not seem like a productive interpretation.
>>
>> Does this match everyone else’s intuition, and is (B) even a valid interpretation?
>
>
> This concern was brought up in the relevant review (https://reviews.llvm.org/D81230) as well.

> I think we can safely go with (A) here. It's unambiguous, and I don't think there's any practical benefit to be had from (B) or (C).
+1

> Regards,
> Nikita
Roman

> _______________________________________________
> LLVM Developers mailing list
> llvm-dev at lists.llvm.org
> https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev


More information about the llvm-dev mailing list