File: load_store_vec.ll

package info (click to toggle)
llvm-toolchain-15 1%3A15.0.6-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,554,644 kB
  • sloc: cpp: 5,922,452; ansic: 1,012,136; asm: 674,362; python: 191,568; objc: 73,855; f90: 42,327; lisp: 31,913; pascal: 11,973; javascript: 10,144; sh: 9,421; perl: 7,447; ml: 5,527; awk: 3,523; makefile: 2,520; xml: 885; cs: 573; fortran: 567
file content (80 lines) | stat: -rw-r--r-- 2,394 bytes parent folder | download | duplicates (9)
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
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
; RUN: llc  -O0 -mtriple=mipsel-linux-gnu -global-isel -mcpu=mips32r5 -mattr=msa,+fp64 -mattr=nan2008 -verify-machineinstrs %s -o -| FileCheck %s -check-prefixes=P5600

define void @load_store_v16i8(<16 x i8>* %a, <16 x i8>* %b) {
; P5600-LABEL: load_store_v16i8:
; P5600:       # %bb.0: # %entry
; P5600-NEXT:    ld.b $w0, 0($5)
; P5600-NEXT:    st.b $w0, 0($4)
; P5600-NEXT:    jr $ra
; P5600-NEXT:    nop
entry:
  %0 = load <16 x i8>, <16 x i8>* %b, align 16
  store <16 x i8> %0, <16 x i8>* %a, align 16
  ret void
}

define void @load_store_v8i16(<8 x i16>* %a, <8 x i16>* %b) {
; P5600-LABEL: load_store_v8i16:
; P5600:       # %bb.0: # %entry
; P5600-NEXT:    ld.h $w0, 0($5)
; P5600-NEXT:    st.h $w0, 0($4)
; P5600-NEXT:    jr $ra
; P5600-NEXT:    nop
entry:
  %0 = load <8 x i16>, <8 x i16>* %b, align 16
  store <8 x i16> %0, <8 x i16>* %a, align 16
  ret void
}

define void @load_store_v4i32(<4 x i32>* %a, <4 x i32>* %b) {
; P5600-LABEL: load_store_v4i32:
; P5600:       # %bb.0: # %entry
; P5600-NEXT:    ld.w $w0, 0($5)
; P5600-NEXT:    st.w $w0, 0($4)
; P5600-NEXT:    jr $ra
; P5600-NEXT:    nop
entry:
  %0 = load <4 x i32>, <4 x i32>* %b, align 16
  store <4 x i32> %0, <4 x i32>* %a, align 16
  ret void
}

define void @load_store_v2i64(<2 x i64>* %a, <2 x i64>* %b) {
; P5600-LABEL: load_store_v2i64:
; P5600:       # %bb.0: # %entry
; P5600-NEXT:    ld.d $w0, 0($5)
; P5600-NEXT:    st.d $w0, 0($4)
; P5600-NEXT:    jr $ra
; P5600-NEXT:    nop
entry:
  %0 = load <2 x i64>, <2 x i64>* %b, align 16
  store <2 x i64> %0, <2 x i64>* %a, align 16
  ret void
}

define void @load_store_v4f32(<4 x float>* %a, <4 x float>* %b) {
; P5600-LABEL: load_store_v4f32:
; P5600:       # %bb.0: # %entry
; P5600-NEXT:    ld.w $w0, 0($5)
; P5600-NEXT:    st.w $w0, 0($4)
; P5600-NEXT:    jr $ra
; P5600-NEXT:    nop
entry:
  %0 = load <4 x float>, <4 x float>* %b, align 16
  store <4 x float> %0, <4 x float>* %a, align 16
  ret void
}

define void @load_store_v2f64(<2 x double>* %a, <2 x double>* %b) {
; P5600-LABEL: load_store_v2f64:
; P5600:       # %bb.0: # %entry
; P5600-NEXT:    ld.d $w0, 0($5)
; P5600-NEXT:    st.d $w0, 0($4)
; P5600-NEXT:    jr $ra
; P5600-NEXT:    nop
entry:
  %0 = load <2 x double>, <2 x double>* %b, align 16
  store <2 x double> %0, <2 x double>* %a, align 16
  ret void
}