This is the mail archive of the libc-ports@sources.redhat.com mailing list for the libc-ports project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCHv2] ARM: NEON optimized implementation of memcpy.


On Sun, 2009-07-05 at 18:21 +0300, Siarhei Siamashka wrote:
> +#ifdef __ARM_NEON__
> +		.text
> +		.fpu	neon
> [...]
> +		bx	lr
> +END(memcpy)
> +libc_hidden_builtin_def (memcpy)
> +
> +#else
> +

It looks like you've wrapped more-or-less the whole contents of the
existing memcpy.S in the __ARM_NEON__ ifdef.  If that's the case then
maybe it'd be better to put this code in a new file, say
sysdeps/arm/neon/memcpy.S or some such.

p.



Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]