File: basictest3.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 (50 lines) | stat: -rw-r--r-- 1,196 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
; RUN: llvm-upgrade < %s | llvm-as | opt -reassociate -gcse | llvm-dis | grep add | count 6
; Each of these functions should turn into two adds each.

%e = external global int
%a = external global int
%b = external global int
%c = external global int
%f = external global int

implementation

void %test1() {
        %A = load int* %a
        %B = load int* %b
        %C = load int* %c
        %t1 = add int %A, %B
	%t2 = add int %t1, %C
        %t3 = add int %C, %A
	%t4 = add int %t3, %B
        store int %t2, int* %e  ; e = (a+b)+c;
        store int %t4, int* %f  ; f = (a+c)+b
        ret void
}

void %test2() {
        %A = load int* %a
        %B = load int* %b
        %C = load int* %c
	%t1 = add int %A, %B
	%t2 = add int %t1, %C
	%t3 = add int %C, %A
	%t4 = add int %t3, %B
        store int %t2, int* %e  ; e = c+(a+b)
        store int %t4, int* %f  ; f = (c+a)+b
        ret void
}

void %test3() {
        %A = load int* %a
        %B = load int* %b
        %C = load int* %c
	%t1 = add int %B, %A
	%t2 = add int %t1, %C
	%t3 = add int %C, %A
	%t4 = add int %t3, %B
        store int %t2, int* %e  ; e = c+(b+a)
        store int %t4, int* %f  ; f = (c+a)+b
        ret void
}