File: float_arithmetic_operations.ll

package info (click to toggle)
llvm-toolchain-11 1%3A11.0.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 995,808 kB
  • sloc: cpp: 4,767,656; ansic: 760,916; asm: 477,436; python: 170,940; objc: 69,804; lisp: 29,914; sh: 23,855; f90: 18,173; pascal: 7,551; perl: 7,471; ml: 5,603; awk: 3,489; makefile: 2,573; xml: 915; cs: 573; fortran: 503; javascript: 452
file content (91 lines) | stat: -rw-r--r-- 2,367 bytes parent folder | download | duplicates (4)
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
; RUN: llc  -O0 -mtriple=mipsel-linux-gnu -global-isel -verify-machineinstrs %s -o -| FileCheck %s -check-prefixes=MIPS32,FP32
; RUN: llc  -O0 -mtriple=mipsel-linux-gnu -mattr=+fp64,+mips32r2 -global-isel -verify-machineinstrs %s -o -| FileCheck %s -check-prefixes=MIPS32,FP64

define float @float_add(float %a, float %b) {
; MIPS32-LABEL: float_add:
; MIPS32:       # %bb.0: # %entry
; MIPS32-NEXT:    add.s $f0, $f12, $f14
; MIPS32-NEXT:    jr $ra
; MIPS32-NEXT:    nop
entry:
  %add = fadd float %a, %b
  ret float %add
}

define float @float_sub(float %a, float %b) {
; MIPS32-LABEL: float_sub:
; MIPS32:       # %bb.0: # %entry
; MIPS32-NEXT:    sub.s $f0, $f12, $f14
; MIPS32-NEXT:    jr $ra
; MIPS32-NEXT:    nop
entry:
  %sub = fsub float %a, %b
  ret float %sub
}

define float @float_mul(float %a, float %b) {
; MIPS32-LABEL: float_mul:
; MIPS32:       # %bb.0: # %entry
; MIPS32-NEXT:    mul.s $f0, $f12, $f14
; MIPS32-NEXT:    jr $ra
; MIPS32-NEXT:    nop
entry:
  %mul = fmul float %a, %b
  ret float %mul
}

define float @float_div(float %a, float %b) {
; MIPS32-LABEL: float_div:
; MIPS32:       # %bb.0: # %entry
; MIPS32-NEXT:    div.s $f0, $f12, $f14
; MIPS32-NEXT:    jr $ra
; MIPS32-NEXT:    nop
entry:
  %div = fdiv float %a, %b
  ret float %div
}

define double @double_add(double %a, double %b) {
; MIPS32-LABEL: double_add:
; MIPS32:       # %bb.0: # %entry
; MIPS32-NEXT:    add.d $f0, $f12, $f14
; MIPS32-NEXT:    jr $ra
; MIPS32-NEXT:    nop
entry:
  %add = fadd double %a, %b
  ret double %add
}

define double @double_sub(double %a, double %b) {
; MIPS32-LABEL: double_sub:
; MIPS32:       # %bb.0: # %entry
; MIPS32-NEXT:    sub.d $f0, $f12, $f14
; MIPS32-NEXT:    jr $ra
; MIPS32-NEXT:    nop
entry:
  %sub = fsub double %a, %b
  ret double %sub
}

define double @double_mul(double %a, double %b) {
; MIPS32-LABEL: double_mul:
; MIPS32:       # %bb.0: # %entry
; MIPS32-NEXT:    mul.d $f0, $f12, $f14
; MIPS32-NEXT:    jr $ra
; MIPS32-NEXT:    nop
entry:
  %mul = fmul double %a, %b
  ret double %mul
}

define double @double_div(double %a, double %b) {
; MIPS32-LABEL: double_div:
; MIPS32:       # %bb.0: # %entry
; MIPS32-NEXT:    div.d $f0, $f12, $f14
; MIPS32-NEXT:    jr $ra
; MIPS32-NEXT:    nop
entry:
  %div = fdiv double %a, %b
  ret double %div
}