File: sincos-stack-args.ll

package info (click to toggle)
llvm-toolchain-21 1%3A21.1.6-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 2,245,028 kB
  • sloc: cpp: 7,619,726; ansic: 1,434,018; asm: 1,058,748; python: 252,740; f90: 94,671; objc: 70,685; lisp: 42,813; pascal: 18,401; sh: 8,601; ml: 5,111; perl: 4,720; makefile: 3,675; awk: 3,523; javascript: 2,409; xml: 892; fortran: 770
file content (36 lines) | stat: -rw-r--r-- 1,452 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
; 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
}