File: fparith.ll

package info (click to toggle)
llvm 2.2-12
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 38,648 kB
  • ctags: 28,258
  • sloc: cpp: 215,479; sh: 12,132; ansic: 10,002; yacc: 5,525; perl: 2,352; ml: 1,580; makefile: 956; pascal: 718; lex: 602; exp: 320; ada: 193; lisp: 160; csh: 116; objc: 59; python: 59; tcl: 20
file content (86 lines) | stat: -rw-r--r-- 1,341 bytes parent folder | download
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
; RUN: llvm-upgrade < %s | llvm-as | llc -march=arm -mattr=+vfp2 > %t
; RUN: grep fadds %t
; RUN: grep faddd %t
; RUN: grep fmuls %t
; RUN: grep fmuld %t
; RUN: grep fnegs %t
; RUN: grep fnegd %t
; RUN: grep fdivs %t
; RUN: grep fdivd %t


float %f1(float %a, float %b) {
entry:
	%tmp = add float %a, %b
	ret float %tmp
}

double %f2(double %a, double %b) {
entry:
	%tmp = add double %a, %b
	ret double %tmp
}

float %f3(float %a, float %b) {
entry:
	%tmp = mul float %a, %b
	ret float %tmp
}

double %f4(double %a, double %b) {
entry:
	%tmp = mul double %a, %b
	ret double %tmp
}

float %f5(float %a, float %b) {
entry:
	%tmp = sub float %a, %b
	ret float %tmp
}

double %f6(double %a, double %b) {
entry:
	%tmp = sub double %a, %b
	ret double %tmp
}

float %f7(float %a) {
entry:
	%tmp1 = sub float -0.000000e+00, %a
	ret float %tmp1
}

double %f8(double %a) {
entry:
	%tmp1 = sub double -0.000000e+00, %a
	ret double %tmp1
}

float %f9(float %a, float %b) {
entry:
	%tmp1 = div float %a, %b
	ret float %tmp1
}

double %f10(double %a, double %b) {
entry:
	%tmp1 = div double %a, %b
	ret double %tmp1
}

float %f11(float %a) {
entry:
	%tmp1 = call float %fabsf(float %a)
	ret float %tmp1
}

declare float %fabsf(float)

double %f12(double %a) {
entry:
	%tmp1 = call double %fabs(double %a)
	ret double %tmp1
}

declare double %fabs(double)