diff options
author | Rahman Lavaee <rahmanl@google.com> | 2023-08-22 22:00:03 +0000 |
---|---|---|
committer | Rahman Lavaee <rahmanl@google.com> | 2023-08-22 22:42:19 +0000 |
commit | e280e406c2e34ce29e1e71da7cd3a284ea112ce8 (patch) | |
tree | 4fe28feba2d251c85b773b3210b02172517bcd2e /llvm/lib/CodeGen/BasicBlockSections.cpp | |
parent | 7e1afab1b1821550c5f8d0d6a50636236fa02e2c (diff) | |
download | llvm-e280e406c2e34ce29e1e71da7cd3a284ea112ce8.zip llvm-e280e406c2e34ce29e1e71da7cd3a284ea112ce8.tar.gz llvm-e280e406c2e34ce29e1e71da7cd3a284ea112ce8.tar.bz2 |
Add a pass to garbage-collect empty basic blocks after code generation.
Propeller and pseudo-probes map profiles back to Machine IR via basic block addresses that are stored in metadata sections.
Empty basic blocks (basic blocks without real code) obfuscate the profile mapping because their addresses collide with their next basic blocks.
For instance, the fallthrough block of an empty block should always be adjacent to it. Otherwise, a completely unnecessary jump would be added.
This patch adds a MachineFunction pass named `GCEmptyBasicBlocks` which attempts to garbage-collect the empty blocks before the `BasicBlockSections` and pass.
This pass removes each empty basic block after redirecting its incoming edges to its fall-through block.
The garbage-collection is not complete. We keep the empty block in 4 cases:
1. The empty block is an exception handling pad.
2. The empty block has its address taken.
3. The empty block is the last block of the function and it has
predecessors.
4. The empty block is the only block of the function.
The first three cases are extremely rare in normal code (no cases for the clang binary). Removing the blocks under the first two cases requires modifying exception handling structures and operands of non-terminator instructions -- which is doable but not worth the additional complexity in the pass.
Reviewed By: tmsriram
Differential Revision: https://reviews.llvm.org/D107534
Diffstat (limited to 'llvm/lib/CodeGen/BasicBlockSections.cpp')
0 files changed, 0 insertions, 0 deletions