// vim: ft=arm // C tile regs: v16 to v31, (scratch) // - x19-x29 to preserve (but x19, x28, x29 not used) // - d8..d15 to preserve // - v16 to v31, no need to preserve // // v16[0] v18[0] v20[0] v22[0] v24[0] v26[0] v28[0] v30[0] // v16[1] v18[1] // v16[2] v18[2] // v16[3] v18[3] // // v17[0] v19[0] v21[0] v23[0] v25[0] v27[0] v29[0] v31[0] // v17[1] v19[1] // v17[2] v19[2] // v17[3] v19[3] // v0-v7 (scratch registers) // packed A buffering (2x8 values): alternating v0, v1 with v2, v3 // packed B buffering (2x8 values): alternating v4, v5 with v6, v7 .text .align 4 .cpu generic+fp+simd .global {{G}}arm64simd_mmm_f32_8x8_{{core}}_{{suffix}} {{G}}arm64simd_mmm_f32_8x8_{{core}}_{{suffix}}: stp x20, x21, [sp, #-16]! stp x22, x23, [sp, #-16]! stp x24, x25, [sp, #-16]! stp x26, x27, [sp, #-16]! stp d8, d9, [sp, #-16]! stp d10, d11, [sp, #-16]! stp d12, d13, [sp, #-16]! stp d14, d15, [sp, #-16]! {% include "dispatcher.tmpliq" %} .add_mat_mul: ldr x2, [x0, #24] // b ldp x3, x1, [x0, #8] // k, a cmp x3, #0 beq .non_linear_loop .packed_packed: ld1 { v0.4s, v1.4s }, [ x1 ], #32 ld1 { v4.4s, v5.4s }, [ x2 ], #32 {% capture packed_packed_loop1 %} {% if core == "a53" %} {% include "arm64simd_mmm_f32_8x8/packed_packed_loop1/ldr_x_preload.tmpli" %} {% else %} {% include "arm64simd_mmm_f32_8x8/packed_packed_loop1/naive.tmpli" %} {% endif %} {% endcapture %} {% capture packed_packed_loop2 %} {% if core == "a55" %} {% include "arm64simd_mmm_f32_8x8/packed_packed_loop2/cortex_a55.tmpli" %} {% else %} {{ packed_packed_loop1 }} {{ packed_packed_loop1 }} {% endif %} {% endcapture %} cmp x3, #4 blt .packed_packed_loop_1 .p2align 4 .packed_packed_loop_4: {{ packed_packed_loop2 }} {{ packed_packed_loop2 }} sub x3, x3, #4 cmp x3, #4 bge .packed_packed_loop_4 cmp x3, #0 beq .non_linear_loop .p2align 4 .packed_packed_loop_1: {{ packed_packed_loop1 }} subs x3, x3, #1 bne .packed_packed_loop_1 b .non_linear_loop {% include "arm64simd_mmm_f32_scalars.tmpliq" from:16, to:31%} {% include "arm64simd_mmm_f32_per_rows.tmpliq" mr:8, from:16, to:31 %} {% include "arm64simd_mmm_f32_per_cols.tmpliq" mr:8, from:16, to:31 %} .add_unicast: ldp x5, x6, [x0, #8] ldp x7, x8, [x0, #24] {% for col in (8..15) %} mov x4, x5 {% for reg in (0..1) %} {% for lane in (0..3) %} ld1 {v0.s}[{{lane}}], [ x4 ], x6 {% endfor %} fadd v{{col | times:2 | plus: reg}}.4s, v{{col | times:2 | plus: reg}}.4s, v0.4s {% endfor %} add x5, x5, x7 {% endfor %} b .non_linear_loop .add_row_col_products: ldr x2, [x0, #8] ldr x3, [x0, #16] ld1 { v0.4s, v1.4s }, [ x2 ], #32 ld1 { v4.4s, v5.4s }, [ x3 ], #32 fmla v16.4s, v0.4s, v4.s[0] fmla v17.4s, v1.4s, v4.s[0] fmla v18.4s, v0.4s, v4.s[1] fmla v19.4s, v1.4s, v4.s[1] fmla v20.4s, v0.4s, v4.s[2] fmla v21.4s, v1.4s, v4.s[2] fmla v22.4s, v0.4s, v4.s[3] fmla v23.4s, v1.4s, v4.s[3] fmla v24.4s, v0.4s, v5.s[0] fmla v25.4s, v1.4s, v5.s[0] fmla v26.4s, v0.4s, v5.s[1] fmla v27.4s, v1.4s, v5.s[1] fmla v28.4s, v0.4s, v5.s[2] fmla v29.4s, v1.4s, v5.s[2] fmla v30.4s, v0.4s, v5.s[3] fmla v31.4s, v1.4s, v5.s[3] b .non_linear_loop .store: ldp x5, x6, [x0, #8] // c base ptr, rsc ldp x7, x8, [x0, #24] // csc, item_size cmp x6, #4 bne .store_strides_generic {% for col in (8..15) %} str q{{col | times:2 }}, [ x5 ] str q{{col | times:2 | plus: 1}}, [ x5, #16 ] add x5, x5, x7 {% endfor %} b .non_linear_loop .store_strides_generic: {% for col in (8..15) %} mov x4, x5 {% for reg in (0..1) %} {% for lane in (0..3) %} st1 { v{{col | times:2 | plus: reg}}.s }[{{lane}}], [ x4 ], x6 {% endfor %} {% endfor %} add x5, x5, x7 {% endfor %} b .non_linear_loop .return: ldp d14, d15, [sp], #16 ldp d12, d13, [sp], #16 ldp d10, d11, [sp], #16 ldp d8, d9, [sp], #16 ldp x26, x27, [sp], #16 ldp x24, x25, [sp], #16 ldp x22, x23, [sp], #16 ldp x20, x21, [sp], #16 ret