[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / CodeGen / AArch64 / overeager_mla_fusing.ll
blob67b54e46e36cb3818349e3f66b38872c6c6e8a41
1 ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
2 ; RUN: llc %s --mtriple aarch64 -verify-machineinstrs -o - | FileCheck %s
4 define dso_local void @jsimd_idct_ifast_neon_intrinsic(i8* nocapture readonly %dct_table, i16* nocapture readonly %coef_block, i8** nocapture readonly %output_buf, i32 %output_col) local_unnamed_addr #0 {
5 ; CHECK-LABEL: jsimd_idct_ifast_neon_intrinsic:
6 ; CHECK:       // %bb.0: // %entry
7 ; CHECK-NEXT:    ldr q0, [x1, #32]
8 ; CHECK-NEXT:    ldr q1, [x1, #96]
9 ; CHECK-NEXT:    ldr q2, [x0, #32]
10 ; CHECK-NEXT:    ldr q3, [x0, #96]
11 ; CHECK-NEXT:    ldr x8, [x2, #48]
12 ; CHECK-NEXT:    mov w9, w3
13 ; CHECK-NEXT:    mul v0.8h, v2.8h, v0.8h
14 ; CHECK-NEXT:    mul v1.8h, v3.8h, v1.8h
15 ; CHECK-NEXT:    add v2.8h, v0.8h, v1.8h
16 ; CHECK-NEXT:    str q2, [x8, x9]
17 ; CHECK-NEXT:    ldr x8, [x2, #56]
18 ; CHECK-NEXT:    sub v0.8h, v0.8h, v1.8h
19 ; CHECK-NEXT:    str q0, [x8, x9]
20 ; CHECK-NEXT:    ret
21 entry:
22   %add.ptr5 = getelementptr inbounds i16, i16* %coef_block, i64 16
23   %0 = bitcast i16* %add.ptr5 to <8 x i16>*
24   %1 = load <8 x i16>, <8 x i16>* %0, align 16
26   %add.ptr17 = getelementptr inbounds i16, i16* %coef_block, i64 48
27   %2 = bitcast i16* %add.ptr17 to <8 x i16>*
28   %3 = load <8 x i16>, <8 x i16>* %2, align 16
30   %add.ptr29 = getelementptr inbounds i8, i8* %dct_table, i64 32
31   %4 = bitcast i8* %add.ptr29 to <8 x i16>*
32   %5 = load <8 x i16>, <8 x i16>* %4, align 16
34   %add.ptr41 = getelementptr inbounds i8, i8* %dct_table, i64 96
35   %6 = bitcast i8* %add.ptr41 to <8 x i16>*
36   %7 = load <8 x i16>, <8 x i16>* %6, align 16
38   %mul.i966 = mul <8 x i16> %5, %1
39   %mul.i964 = mul <8 x i16> %7, %3
41   %add.i961 = add <8 x i16> %mul.i966, %mul.i964
42   %sub.i960 = sub <8 x i16> %mul.i966, %mul.i964
44   %idx.ext = zext i32 %output_col to i64
46   %arrayidx404 = getelementptr inbounds i8*, i8** %output_buf, i64 6
47   %8 = load i8*, i8** %arrayidx404, align 8
48   %add.ptr406 = getelementptr inbounds i8, i8* %8, i64 %idx.ext
49   %9 = bitcast i8* %add.ptr406 to <8 x i16>*
50   store <8 x i16> %add.i961, <8 x i16>* %9, align 8
52   %arrayidx408 = getelementptr inbounds i8*, i8** %output_buf, i64 7
53   %10 = load i8*, i8** %arrayidx408, align 8
54   %add.ptr410 = getelementptr inbounds i8, i8* %10, i64 %idx.ext
55   %11 = bitcast i8* %add.ptr410 to <8 x i16>*
56   store <8 x i16> %sub.i960, <8 x i16>* %11, align 8
58   ret void