llvm-project/llvm/test/CodeGen/X86/sincos-stack-args.ll
Trevor Gross 0db197adef
[Test] Mark a number of libcall tests nounwind (#148329)
Many tests for floating point libcalls include CFI directives, which
isn't needed for the purpose of these tests. Mark some of the relevant
test functions `nounwind` in order to remove this noise.
2025-07-12 11:57:28 +02:00

37 lines
1.4 KiB
LLVM

; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py UTC_ARGS: --no_x86_scrub_sp --version 5
; RUN: llc < %s -mtriple=i386-unknown-linux-gnu | FileCheck %s
; Test for issue https://github.com/llvm/llvm-project/issues/115323
declare double @g(double, double)
; Though not visible within the IR, this will lower to an FSINCOS node, with
; store users, that are within a (callseq_start, callseq_end) pair. In this
; case, the stores cannot be folded into the sincos call.
define double @negative_sincos_with_stores_within_call_sequence(double %a) nounwind {
; CHECK-LABEL: negative_sincos_with_stores_within_call_sequence:
; CHECK: # %bb.0: # %entry
; CHECK-NEXT: subl $44, %esp
; CHECK-NEXT: fldl 48(%esp)
; CHECK-NEXT: leal 24(%esp), %eax
; CHECK-NEXT: movl %eax, 12(%esp)
; CHECK-NEXT: leal 32(%esp), %eax
; CHECK-NEXT: movl %eax, 8(%esp)
; CHECK-NEXT: fstpl (%esp)
; CHECK-NEXT: calll sincos
; CHECK-NEXT: fldl 32(%esp)
; CHECK-NEXT: fldl 24(%esp)
; CHECK-NEXT: faddl {{\.?LCPI[0-9]+_[0-9]+}}
; CHECK-NEXT: fxch %st(1)
; CHECK-NEXT: fstpl 8(%esp)
; CHECK-NEXT: fstpl (%esp)
; CHECK-NEXT: calll g@PLT
; CHECK-NEXT: addl $44, %esp
; CHECK-NEXT: retl
entry:
%0 = tail call double @llvm.sin.f64(double %a)
%1 = tail call double @llvm.cos.f64(double %a)
%add = fadd double %1, 3.140000e+00
%call = tail call double @g(double %add, double %0)
ret double %call
}