xref: /aosp_15_r20/external/llvm/test/CodeGen/X86/call-push.ll (revision 9880d6810fe72a1726cb53787c6711e909410d58)
1*9880d681SAndroid Build Coastguard Worker; RUN: llc < %s -mtriple=i386-apple-darwin -disable-fp-elim -no-x86-call-frame-opt | FileCheck %s
2*9880d681SAndroid Build Coastguard Worker
3*9880d681SAndroid Build Coastguard Worker        %struct.decode_t = type { i8, i8, i8, i8, i16, i8, i8, %struct.range_t** }
4*9880d681SAndroid Build Coastguard Worker        %struct.range_t = type { float, float, i32, i32, i32, [0 x i8] }
5*9880d681SAndroid Build Coastguard Worker
6*9880d681SAndroid Build Coastguard Workerdefine i32 @decode_byte(%struct.decode_t* %decode) nounwind {
7*9880d681SAndroid Build Coastguard Worker; CHECK-LABEL: decode_byte:
8*9880d681SAndroid Build Coastguard Worker; CHECK: pushl
9*9880d681SAndroid Build Coastguard Worker; CHECK: popl
10*9880d681SAndroid Build Coastguard Worker; CHECK: jmp
11*9880d681SAndroid Build Coastguard Worker; CHECK: popl
12*9880d681SAndroid Build Coastguard Workerentry:
13*9880d681SAndroid Build Coastguard Worker        %tmp2 = getelementptr %struct.decode_t, %struct.decode_t* %decode, i32 0, i32 4           ; <i16*> [#uses=1]
14*9880d681SAndroid Build Coastguard Worker        %tmp23 = bitcast i16* %tmp2 to i32*             ; <i32*> [#uses=1]
15*9880d681SAndroid Build Coastguard Worker        %tmp4 = load i32, i32* %tmp23                ; <i32> [#uses=1]
16*9880d681SAndroid Build Coastguard Worker        %tmp514 = lshr i32 %tmp4, 24            ; <i32> [#uses=1]
17*9880d681SAndroid Build Coastguard Worker        %tmp56 = trunc i32 %tmp514 to i8                ; <i8> [#uses=1]
18*9880d681SAndroid Build Coastguard Worker        %tmp7 = icmp eq i8 %tmp56, 0            ; <i1> [#uses=1]
19*9880d681SAndroid Build Coastguard Worker        br i1 %tmp7, label %UnifiedReturnBlock, label %cond_true
20*9880d681SAndroid Build Coastguard Worker
21*9880d681SAndroid Build Coastguard Workercond_true:              ; preds = %entry
22*9880d681SAndroid Build Coastguard Worker        %tmp10 = tail call i32 @f( %struct.decode_t* %decode )          ; <i32> [#uses=1]
23*9880d681SAndroid Build Coastguard Worker        ret i32 %tmp10
24*9880d681SAndroid Build Coastguard Worker
25*9880d681SAndroid Build Coastguard WorkerUnifiedReturnBlock:             ; preds = %entry
26*9880d681SAndroid Build Coastguard Worker        ret i32 0
27*9880d681SAndroid Build Coastguard Worker}
28*9880d681SAndroid Build Coastguard Worker
29*9880d681SAndroid Build Coastguard Workerdeclare i32 @f(%struct.decode_t*)
30*9880d681SAndroid Build Coastguard Worker
31*9880d681SAndroid Build Coastguard Worker
32*9880d681SAndroid Build Coastguard Worker; There should be no store for the undef operand.
33*9880d681SAndroid Build Coastguard Worker
34*9880d681SAndroid Build Coastguard Worker; CHECK: _test2:
35*9880d681SAndroid Build Coastguard Worker; CHECK-NOT: 8(%esp)
36*9880d681SAndroid Build Coastguard Worker; CHECK: 4(%esp)
37*9880d681SAndroid Build Coastguard Worker; CHECK-NOT: 8(%esp)
38*9880d681SAndroid Build Coastguard Worker; CHECK: calll
39*9880d681SAndroid Build Coastguard Workerdeclare i32 @foo(i32, i32, i32)
40*9880d681SAndroid Build Coastguard Worker
41*9880d681SAndroid Build Coastguard Workerdefine void @test2() nounwind {
42*9880d681SAndroid Build Coastguard Workerentry:
43*9880d681SAndroid Build Coastguard Worker  %call = call i32 @foo(i32 8, i32 6, i32 undef)
44*9880d681SAndroid Build Coastguard Worker  ret void
45*9880d681SAndroid Build Coastguard Worker}
46