Files
clang-p2996/llvm/test/Transforms/PhaseOrdering/dae-dce.ll
Nikita Popov fb5683449e [Pipelines] Restore old DAE position in LTO pipeline
This is a partial revert of D128830, restoring the previous
position of DeadArgElim in the fat LTO pipeline. The motivation
for this is a major code size regression observed in Rust and
illustrated in the PhaseOrdering test.

This is a conservative fix restoring the previous pipeline order.
The real problem is that the LTO pipeline is conceptually broken:
It doesn't have a CGSCC function simplification pipeline. The
inliner is just being run by itself. This wouldn't be a problem
if fat LTO used a standard design where ArgPromotion and DAE are
only run after functions have already been simplified by the
CGSCC inliner pipeline.

Differential Revision: https://reviews.llvm.org/D146051
2023-03-14 17:00:17 +01:00

53 lines
1.3 KiB
LLVM

; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
; RUN: opt -S -passes='default<O3>' < %s | FileCheck %s --check-prefixes=CHECK,DEFAULT
; RUN: opt -S -passes='lto<O3>' < %s | FileCheck %s --check-prefixes=CHECK,LTO
declare void @llvm.trap()
define void @do_trap(ptr %ptr) {
; CHECK-LABEL: @do_trap(
; CHECK-NEXT: tail call void @llvm.trap()
; CHECK-NEXT: unreachable
;
call void @llvm.trap()
unreachable
}
define internal void @capture_and_trap(ptr %ptr) noinline {
; CHECK-LABEL: @capture_and_trap(
; CHECK-NEXT: tail call void @llvm.trap()
; CHECK-NEXT: unreachable
;
%alloca = alloca ptr, align 4
store ptr %ptr, ptr %alloca, align 4
call void @do_trap(ptr noundef nonnull %alloca)
unreachable
}
define internal void @dead_fn1() {
ret void
}
define internal void @dead_fn2() {
ret void
}
define void @test(i1 %c) {
; CHECK-LABEL: @test(
; CHECK-NEXT: tail call fastcc void @capture_and_trap()
; CHECK-NEXT: unreachable
;
br i1 %c, label %if, label %else
if:
call void @capture_and_trap(ptr @dead_fn1)
unreachable
else:
call void @capture_and_trap(ptr @dead_fn2)
unreachable
}
;; NOTE: These prefixes are unused and the list is autogenerated. Do not add tests below this line:
; DEFAULT: {{.*}}
; LTO: {{.*}}