[llvm] Do not treat llvm.fake.use as a debug instruction (PR #128684)
Stephen Tozer via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 25 04:48:57 PST 2025
================
@@ -0,0 +1,67 @@
+; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --version 5
+; RUN: opt -p="simplifycfg<sink-common-insts>" -S < %s | FileCheck %s
+
+;; Verify that fake uses are not ignored when sinking instructions in
+;; SimplifyCFG; when a fake use appears in only one incoming block they prevent
+;; further sinking, and when identical fake uses appear on both sides they
+;; are sunk normally.
----------------
SLTozer wrote:
The basic reason here is that fake uses must be treated as any other instruction by default. As an optimization we can create specific exceptions for fake uses in cases where we know it's either safe or beneficial to treat them differently, but we wouldn't want to do so "generally" as we do by skipping them in `getPrevNonDebugInstruction`.
For sinking common instructions specifically, I imagine it's safe to sink fake uses separate to the other instructions in their block, but that specialization should exist in the sinking code (and would be beyond the scope of this patch).
https://github.com/llvm/llvm-project/pull/128684
More information about the llvm-commits
mailing list