I would like to execute a MachineFunctionPass after all other passes
which modify the machine code.
In other words, if we call llc to generate assembly file, that pass
should run right before the "Assembly Printer" pass.
Is there any official way to enforce this ?
This makes sense and has come up before in discussions. I can envision a set of analyses that need to run after all MI modification but before asm printing. The StackMapLiveness pass is one such example. No enforcement mechanism exists yet, but it’s safe to say that nothing with modify MI after the addPreEmitPasses hook. For now you can just schedule your pass at the end with comments.
We could introduce a fake MI analysis that should be invalidated by any pass that mutates the MI. Then check that it’s valid during code emission. That part is trivial.
I think the real issue is that MC lowering can potentially change opcodes, so you can never really do this reliably in general
I’m not sure how fixable that problem is. Maybe others can provide more suggestions.
I would like to execute a MachineFunctionPass after all other passes
which modify the machine code.
In other words, if we call llc to generate assembly file, that pass
should run right before the "Assembly Printer" pass.
Is there any official way to enforce this ?
This makes sense and has come up before in discussions. I can envision a set of analyses that need to run after all MI modification but before asm printing. The StackMapLiveness pass is one such example. No enforcement mechanism exists yet, but it’s safe to say that nothing with modify MI after the addPreEmitPasses hook. For now you can just schedule your pass at the end with comments.
We could introduce a fake MI analysis that should be invalidated by any pass that mutates the MI. Then check that it’s valid during code emission. That part is trivial.
I think the real issue is that MC lowering can potentially change opcodes, so you can never really do this reliably in general
I’m not sure how fixable that problem is. Maybe others can provide more suggestions.
You can add your pass to the end of
X86PassConfig::addPreEmitPass()
and it will currently be the last thing to run before the asm printer, but I don’t know if thats a guarantee or not.
In theory anyone could add something after the call to preEmitPass and before this code
Please don’t yell at me Pete, but I already did that with the StackMapLiveness pass
Although the pass only touches STACKMAP and PATCHPOINT instructions, so it shouldn’t be an issue.
Please don’t yell at me Pete, but I already did that with the StackMapLiveness pass
Although the pass only touches STACKMAP and PATCHPOINT instructions, so it shouldn’t be an issue.
That doesn’t really count since we’re only “annotating” the instruction with a register mask. For the purpose of code emission it’s just metadata.
-Andy