summaryrefslogtreecommitdiffstats
path: root/memcpy_ldp_str.S
blob: a61eddbb8b604e0144d021a0fed56e089f6f6fea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
.macro	prfm1, Xn
.endm

.macro	ldp1, Xt1, Xt2, Xn, imm
	ldp	\Xt1, \Xt2, [\Xn], \imm
.endm

.macro	stp1, Xt1, Xt2, Xn, imm
	str	\Xt1, [\Xn]
	str	\Xt2, [\Xn, #8]
	add	\Xn, \Xn, \imm
.endm

.globl memcpy_ldp_str
memcpy_ldp_str:
	#include "copy_template.h"
	ret