OSDN Git Service

Break bionic implementations into arch versions.
authorChristopher Ferris <cferris@google.com>
Tue, 26 Feb 2013 09:30:00 +0000 (01:30 -0800)
committerChristopher Ferris <cferris@google.com>
Wed, 27 Feb 2013 00:04:34 +0000 (16:04 -0800)
commitacdde8c1cf8e8beed98c052757d96695b820b50c
treeebc695a2a595a38e072d9f28c235314647e662d4
parent30f1622a34cade7d3202b9f720fe2c1ece99f285
Break bionic implementations into arch versions.

Move arch specific code for arm, mips, x86 into separate
makefiles.
In addition, add different arm cpu versions of memcpy/memset.

Bug: 8005082
Change-Id: I04f3d0715104fab618e1abf7cf8f7eec9bec79df
16 files changed:
libc/Android.mk
libc/arch-arm/arm.mk [new file with mode: 0644]
libc/arch-arm/cortex-a15/bionic/memcpy.S [new file with mode: 0644]
libc/arch-arm/cortex-a15/bionic/memset.S [new file with mode: 0644]
libc/arch-arm/cortex-a15/cortex-a15.mk [new file with mode: 0644]
libc/arch-arm/cortex-a9/bionic/memcpy.S [new file with mode: 0644]
libc/arch-arm/cortex-a9/bionic/memset.S [new file with mode: 0644]
libc/arch-arm/cortex-a9/cortex-a9.mk [new file with mode: 0644]
libc/arch-arm/generic/bionic/memcpy.S [new file with mode: 0644]
libc/arch-arm/generic/bionic/memset.S [new file with mode: 0644]
libc/arch-arm/generic/generic.mk [new file with mode: 0644]
libc/arch-arm/krait/bionic/memcpy.S [new file with mode: 0644]
libc/arch-arm/krait/bionic/memset.S [new file with mode: 0644]
libc/arch-arm/krait/krait.mk [new file with mode: 0644]
libc/arch-mips/mips.mk [new file with mode: 0644]
libc/arch-x86/x86.mk [new file with mode: 0644]