[Mips] Add the missing judgment when processing function handleMFLOSlot (#121463)
[llvm-project.git] / llvm / test / Transforms / DeadArgElim / returned.ll
blob73f23ffa725effe390b510a61da3144e1d24ae39
1 ; RUN: opt < %s -passes=deadargelim -S | FileCheck %s
3 %Ty = type { i32, i32 }
5 ; Validate that the argument and return value are both dead
6 ; CHECK-LABEL: define internal void @test1()
8 define internal ptr @test1(ptr %this) {
9   ret ptr %this
12 ; do not keep alive the return value of a function with a dead 'returned' argument
13 ; CHECK-LABEL: define internal void @test2()
15 define internal ptr @test2(ptr returned %this) {
16   ret ptr %this
19 ; dummy to keep 'this' alive
20 @dummy = global ptr null 
22 ; Validate that return value is dead
23 ; CHECK-LABEL: define internal void @test3(ptr %this)
25 define internal ptr @test3(ptr %this) {
26   store volatile ptr %this, ptr @dummy
27   ret ptr %this
30 ; keep alive return value of a function if the 'returned' argument is live
31 ; CHECK-LABEL: define internal ptr @test4(ptr returned %this)
33 define internal ptr @test4(ptr returned %this) {
34   store volatile ptr %this, ptr @dummy
35   ret ptr %this
38 ; don't do this if 'returned' is on the call site...
39 ; CHECK-LABEL: define internal void @test5(ptr %this)
41 define internal ptr @test5(ptr %this) {
42   store volatile ptr %this, ptr @dummy
43   ret ptr %this
46 ; Drop all these attributes
47 ; CHECK-LABEL: define internal void @test6
48 define internal align 8 dereferenceable_or_null(2) noundef noalias ptr @test6() {
49   ret ptr null
52 define ptr @caller(ptr %this) {
53   %1 = call ptr @test1(ptr %this)
54   %2 = call ptr @test2(ptr %this)
55   %3 = call ptr @test3(ptr %this)
56   %4 = call ptr @test4(ptr %this)
57 ; ...instead, drop 'returned' form the call site
58 ; CHECK: call void @test5(ptr %this)
59   %5 = call ptr @test5(ptr returned %this)
60   %6 = call ptr @test6()
61   ret ptr %this