Christopher Ferris | 04954a4 | 2013-02-26 01:30:00 -0800 | [diff] [blame] | 1 | _LIBC_ARCH_COMMON_SRC_FILES := \ |
Elliott Hughes | 36d6188 | 2013-11-19 13:31:58 -0800 | [diff] [blame] | 2 | arch-x86/bionic/__bionic_clone.S \ |
Christopher Ferris | 04954a4 | 2013-02-26 01:30:00 -0800 | [diff] [blame] | 3 | arch-x86/bionic/_exit_with_stack_teardown.S \ |
| 4 | arch-x86/bionic/futex_x86.S \ |
| 5 | arch-x86/bionic/__get_sp.S \ |
Christopher Ferris | 04954a4 | 2013-02-26 01:30:00 -0800 | [diff] [blame] | 6 | arch-x86/bionic/_setjmp.S \ |
| 7 | arch-x86/bionic/setjmp.S \ |
| 8 | arch-x86/bionic/__set_tls.c \ |
| 9 | arch-x86/bionic/sigsetjmp.S \ |
| 10 | arch-x86/bionic/syscall.S \ |
| 11 | arch-x86/bionic/vfork.S \ |
Liubov Dmitrieva | 0a49066 | 2012-01-17 12:55:46 +0400 | [diff] [blame] | 12 | |
| 13 | ifeq ($(ARCH_X86_HAVE_SSSE3),true) |
| 14 | _LIBC_ARCH_COMMON_SRC_FILES += \ |
| 15 | arch-x86/string/ssse3-memcpy-atom.S \ |
| 16 | arch-x86/string/ssse3-memmove-atom.S \ |
| 17 | arch-x86/string/ssse3-bcopy-atom.S \ |
| 18 | arch-x86/string/ssse3-strncat-atom.S \ |
| 19 | arch-x86/string/ssse3-strncpy-atom.S \ |
| 20 | arch-x86/string/ssse3-strlcat-atom.S \ |
| 21 | arch-x86/string/ssse3-strlcpy-atom.S \ |
| 22 | arch-x86/string/ssse3-strcmp-atom.S \ |
| 23 | arch-x86/string/ssse3-strncmp-atom.S \ |
| 24 | arch-x86/string/ssse3-strcat-atom.S \ |
| 25 | arch-x86/string/ssse3-strcpy-atom.S \ |
| 26 | arch-x86/string/ssse3-memcmp-atom.S \ |
| 27 | arch-x86/string/ssse3-wmemcmp-atom.S \ |
Alexander Ivchenko | baa91f4 | 2013-06-27 12:55:46 +0400 | [diff] [blame] | 28 | arch-x86/string/ssse3-memcmp16-atom.S \ |
Liubov Dmitrieva | 0a49066 | 2012-01-17 12:55:46 +0400 | [diff] [blame] | 29 | arch-x86/string/ssse3-wcscat-atom.S \ |
| 30 | arch-x86/string/ssse3-wcscpy-atom.S |
| 31 | else |
| 32 | _LIBC_ARCH_COMMON_SRC_FILES += \ |
| 33 | arch-x86/string/memcpy.S \ |
| 34 | arch-x86/string/memmove.S \ |
| 35 | arch-x86/string/bcopy.S \ |
| 36 | arch-x86/string/strcmp.S \ |
| 37 | arch-x86/string/strncmp.S \ |
| 38 | arch-x86/string/strcat.S \ |
| 39 | arch-x86/string/memcmp.S \ |
Alexander Ivchenko | baa91f4 | 2013-06-27 12:55:46 +0400 | [diff] [blame] | 40 | string/memcmp16.c \ |
Liubov Dmitrieva | 0a49066 | 2012-01-17 12:55:46 +0400 | [diff] [blame] | 41 | string/strcpy.c \ |
| 42 | string/strncat.c \ |
| 43 | string/strncpy.c \ |
| 44 | string/strlcat.c \ |
| 45 | string/strlcpy.c \ |
| 46 | upstream-freebsd/lib/libc/string/wcscpy.c \ |
| 47 | upstream-freebsd/lib/libc/string/wcscat.c \ |
| 48 | upstream-freebsd/lib/libc/string/wmemcmp.c |
| 49 | endif |
| 50 | |
Liubov Dmitrieva | 0a49066 | 2012-01-17 12:55:46 +0400 | [diff] [blame] | 51 | _LIBC_ARCH_COMMON_SRC_FILES += \ |
| 52 | arch-x86/string/sse2-memset-atom.S \ |
| 53 | arch-x86/string/sse2-bzero-atom.S \ |
| 54 | arch-x86/string/sse2-memchr-atom.S \ |
| 55 | arch-x86/string/sse2-memrchr-atom.S \ |
| 56 | arch-x86/string/sse2-strchr-atom.S \ |
| 57 | arch-x86/string/sse2-strrchr-atom.S \ |
| 58 | arch-x86/string/sse2-index-atom.S \ |
| 59 | arch-x86/string/sse2-strlen-atom.S \ |
| 60 | arch-x86/string/sse2-strnlen-atom.S \ |
| 61 | arch-x86/string/sse2-wcschr-atom.S \ |
| 62 | arch-x86/string/sse2-wcsrchr-atom.S \ |
| 63 | arch-x86/string/sse2-wcslen-atom.S \ |
Elliott Hughes | 7e841ed | 2013-10-03 23:30:33 -0700 | [diff] [blame] | 64 | arch-x86/string/sse2-wcscmp-atom.S \ |