File: vectors.ll

package info (click to toggle)
llvm 2.6-9.1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 57,604 kB
  • ctags: 44,336
  • sloc: cpp: 344,766; sh: 12,407; ansic: 10,617; ada: 3,070; ml: 2,505; perl: 2,496; makefile: 1,426; pascal: 1,163; exp: 389; asm: 307; python: 298; objc: 260; lisp: 182; csh: 117; xml: 38; f90: 36; tcl: 20
file content (37 lines) | stat: -rw-r--r-- 838 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
; RUN: llvm-as < %s | llc -march=c
@.str15 = external global [2 x i8]

define <4 x i32> @foo(<4 x i32> %a, i32 %b) {
  %c = insertelement <4 x i32> %a, i32 1, i32 %b
  
  ret <4 x i32> %c
}

define i32 @test2(<4 x i32> %a, i32 %b) {
  %c = extractelement <4 x i32> %a, i32 1
  
  ret i32 %c
}

define <4 x float> @test3(<4 x float> %Y) {
	%Z = fadd <4 x float> %Y, %Y
	%X = shufflevector <4 x float> zeroinitializer, <4 x float> %Z, <4 x i32> < i32 0, i32 5, i32 6, i32 7 >
	ret <4 x float> %X
}

define void @test4() {
	%x = alloca <4 x float>
	%tmp3.i16 = getelementptr <4 x float>* %x, i32 0, i32 0
	store float 1.0, float* %tmp3.i16
	ret void
}

define i32* @test5({i32, i32} * %P) {
	%x = getelementptr {i32, i32} * %P, i32 0, i32 1
	ret i32* %x
}

define i8* @test6() {
  ret i8* getelementptr ([2 x i8]* @.str15, i32 0, i32 0) 
}