soft-float.ll 5.26 KB
; RUN: llc -march=sparc -mattr=soft-float -O0 < %s | FileCheck %s

; Arithmetic functions

define float @test_addsf3(float %a, float %b) #0 {
  ; CHECK-LABEL:  test_addsf3:
  ; CHECK:        call __addsf3
  %add = fadd float %a, %b
  ret float %add
}

define double @test_adddf3(double %a, double %b) #0 {
  ; CHECK-LABEL:  test_adddf3:
  ; CHECK:        call __adddf3
  %add = fadd double %a, %b
  ret double %add
}

define fp128 @test_addtf3(fp128 %a, fp128 %b) #0 {
  ; CHECK-LABEL:  test_addtf3:
  ; CHECK:        call __addtf3
  %add = fadd fp128 %a, %b
  ret fp128 %add
}

define float @test_mulsf3(float %a, float %b) #0 {
  ; CHECK-LABEL:  test_mulsf3:
  ; CHECK:        call __mulsf3
  %mul = fmul float %a, %b
  ret float %mul
}

define double @test_muldf3(double %a, double %b) #0 {
  ; CHECK-LABEL:  test_muldf3:
  ; CHECK:        call __muldf3
  %mul = fmul double %a, %b
  ret double %mul
}

define fp128 @test_multf3(fp128 %a, fp128 %b) #0 {
  ; CHECK-LABEL:  test_multf3:
  ; CHECK:        call __multf3
  %mul = fmul fp128 %a, %b
  ret fp128 %mul
}

define float @test_subsf3(float %a, float %b) #0 {
  ; CHECK-LABEL:  test_subsf3:
  ; CHECK:        call __subsf3
  %sub = fsub float %a, %b
  ret float %sub
}

define double @test_subdf3(double %a, double %b) #0 {
  ; CHECK-LABEL:  test_subdf3:
  ; CHECK:        call __subdf3
  %sub = fsub double %a, %b
  ret double %sub
}

define fp128 @test_subtf3(fp128 %a, fp128 %b) #0 {
  ; CHECK-LABEL:  test_subtf3:
  ; CHECK:        call __subtf3
  %sub = fsub fp128 %a, %b
  ret fp128 %sub
}

define float @test_divsf3(float %a, float %b) #0 {
  ; CHECK-LABEL:  test_divsf3:
  ; CHECK:        call __divsf3
  %div = fdiv float %a, %b
  ret float %div
}

define double @test_divdf3(double %a, double %b) #0 {
  ; CHECK-LABEL:  test_divdf3:
  ; CHECK:        call __divdf3
  %div = fdiv double %a, %b
  ret double %div
}

define fp128 @test_divtf3(fp128 %a, fp128 %b) #0 {
  ; CHECK-LABEL:  test_divtf3:
  ; CHECK:        call __divtf3
  %div = fdiv fp128 %a, %b
  ret fp128 %div
}

; Comparison functions
define i1 @test_unordsf2(float %a, float %b) #0 {
  ; CHECK-LABEL:  test_unordsf2:
  ; CHECK:        call __unordsf2
  %cmp = fcmp uno float %a, %b
  ret i1 %cmp
}

define i1 @test_unorddf2(double %a, double %b) #0 {
  ; CHECK-LABEL:  test_unorddf2:
  ; CHECK:        call __unorddf2
  %cmp = fcmp uno double %a, %b
  ret i1 %cmp
}

define i1 @test_unordtf2(fp128 %a, fp128 %b) #0 {
  ; CHECK-LABEL:  test_unordtf2:
  ; CHECK:        call __unordtf2
  %cmp = fcmp uno fp128 %a, %b
  ret i1 %cmp
}

define i1 @test_eqsf2(float %a, float %b) #0 {
  ; CHECK-LABEL:  test_eqsf2:
  ; CHECK:        call __eqsf2
  %cmp = fcmp oeq float %a, %b
  ret i1 %cmp
}

define i1 @test_eqdf2(double %a, double %b) #0 {
  ; CHECK-LABEL:  test_eqdf2:
  ; CHECK:        call __eqdf2
  %cmp = fcmp oeq double %a, %b
  ret i1 %cmp
}

define i1 @test_eqtf2(fp128 %a, fp128 %b) #0 {
  ; CHECK-LABEL:  test_eqtf2:
  ; CHECK:        call __eqtf2
  %cmp = fcmp oeq fp128 %a, %b
  ret i1 %cmp
}

define i1 @test_nesf2(float %a, float %b) #0 {
  ; CHECK-LABEL:  test_nesf2:
  ; CHECK:        call __nesf2
  %cmp = fcmp une float %a, %b
  ret i1 %cmp
}

define i1 @test_nedf2(double %a, double %b) #0 {
  ; CHECK-LABEL:  test_nedf2:
  ; CHECK:        call __nedf2
  %cmp = fcmp une double %a, %b
  ret i1 %cmp
}

define i1 @test_netf2(fp128 %a, fp128 %b) #0 {
  ; CHECK-LABEL:  test_netf2:
  ; CHECK:        call __netf2
  %cmp = fcmp une fp128 %a, %b
  ret i1 %cmp
}

define i1 @test_gesf2(float %a, float %b) #0 {
  ; CHECK-LABEL:  test_gesf2:
  ; CHECK:        call __gesf2
  %cmp = fcmp oge float %a, %b
  ret i1 %cmp
}

define i1 @test_gedf2(double %a, double %b) #0 {
  ; CHECK-LABEL:  test_gedf2:
  ; CHECK:        call __gedf2
  %cmp = fcmp oge double %a, %b
  ret i1 %cmp
}

define i1 @test_getf2(fp128 %a, fp128 %b) #0 {
  ; CHECK-LABEL:  test_getf2:
  ; CHECK:        call __getf2
  %cmp = fcmp oge fp128 %a, %b
  ret i1 %cmp
}

define i1 @test_ltsf2(float %a, float %b) #0 {
  ; CHECK-LABEL:  test_ltsf2:
  ; CHECK:        call __ltsf2
  %cmp = fcmp olt float %a, %b
  ret i1 %cmp
}

define i1 @test_ltdf2(double %a, double %b) #0 {
  ; CHECK-LABEL:  test_ltdf2:
  ; CHECK:        call __ltdf2
  %cmp = fcmp olt double %a, %b
  ret i1 %cmp
}

define i1 @test_lttf2(fp128 %a, fp128 %b) #0 {
  ; CHECK-LABEL:  test_lttf2:
  ; CHECK:        call __lttf2
  %cmp = fcmp olt fp128 %a, %b
  ret i1 %cmp
}

define i1 @test_lesf2(float %a, float %b) #0 {
  ; CHECK-LABEL:  test_lesf2:
  ; CHECK:        call __lesf2
  %cmp = fcmp ole float %a, %b
  ret i1 %cmp
}

define i1 @test_ledf2(double %a, double %b) #0 {
  ; CHECK-LABEL:  test_ledf2:
  ; CHECK:        call __ledf2
  %cmp = fcmp ole double %a, %b
  ret i1 %cmp
}

define i1 @test_letf2(fp128 %a, fp128 %b) #0 {
  ; CHECK-LABEL:  test_letf2:
  ; CHECK:        call __letf2
  %cmp = fcmp ole fp128 %a, %b
  ret i1 %cmp
}

define i1 @test_gtsf2(float %a, float %b) #0 {
  ; CHECK-LABEL:  test_gtsf2:
  ; CHECK:        call __gtsf2
  %cmp = fcmp ogt float %a, %b
  ret i1 %cmp
}

define i1 @test_gtdf2(double %a, double %b) #0 {
  ; CHECK-LABEL:  test_gtdf2:
  ; CHECK:        call __gtdf2
  %cmp = fcmp ogt double %a, %b
  ret i1 %cmp
}

define i1 @test_gttf2(fp128 %a, fp128 %b) #0 {
  ; CHECK-LABEL:  test_gttf2:
  ; CHECK:        call __gttf2
  %cmp = fcmp ogt fp128 %a, %b
  ret i1 %cmp
}