~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/tools/testing/selftests/powerpc/copyloops/Makefile

Version: ~ [ linux-6.11-rc3 ] ~ [ linux-6.10.4 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.45 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.104 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.164 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.223 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.281 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.319 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /tools/testing/selftests/powerpc/copyloops/Makefile (Architecture i386) and /tools/testing/selftests/powerpc/copyloops/Makefile (Architecture sparc)


  1 # SPDX-License-Identifier: GPL-2.0                  1 # SPDX-License-Identifier: GPL-2.0
  2 TEST_GEN_PROGS := copyuser_64_t0 copyuser_64_t      2 TEST_GEN_PROGS := copyuser_64_t0 copyuser_64_t1 copyuser_64_t2 \
  3                 copyuser_p7_t0 copyuser_p7_t1       3                 copyuser_p7_t0 copyuser_p7_t1 \
  4                 memcpy_64_t0 memcpy_64_t1 memc      4                 memcpy_64_t0 memcpy_64_t1 memcpy_64_t2 \
  5                 memcpy_p7_t0 memcpy_p7_t1 copy      5                 memcpy_p7_t0 memcpy_p7_t1 copy_mc_64 \
  6                 copyuser_64_exc_t0 copyuser_64      6                 copyuser_64_exc_t0 copyuser_64_exc_t1 copyuser_64_exc_t2 \
  7                 memmove_64                          7                 memmove_64
  8                                                     8 
  9 EXTRA_SOURCES := validate.c ../harness.c stubs      9 EXTRA_SOURCES := validate.c ../harness.c stubs.S
 10                                                    10 
 11 top_srcdir = ../../../../..                        11 top_srcdir = ../../../../..
 12 include ../../lib.mk                               12 include ../../lib.mk
 13 include ../flags.mk                                13 include ../flags.mk
 14                                                    14 
 15 # The loops are all 64-bit code                    15 # The loops are all 64-bit code
 16 CFLAGS += -m64                                     16 CFLAGS += -m64
 17 CFLAGS += -I$(CURDIR)                              17 CFLAGS += -I$(CURDIR)
 18 CFLAGS += -D SELFTEST                              18 CFLAGS += -D SELFTEST
 19 CFLAGS += -maltivec                                19 CFLAGS += -maltivec
 20 CFLAGS += -mcpu=power4                             20 CFLAGS += -mcpu=power4
 21                                                    21 
 22 # Use our CFLAGS for the implicit .S rule & se     22 # Use our CFLAGS for the implicit .S rule & set the asm machine type
 23 ASFLAGS = $(CFLAGS) -Wa,-mpower4                   23 ASFLAGS = $(CFLAGS) -Wa,-mpower4
 24                                                    24 
 25 $(OUTPUT)/copyuser_64_t%:       copyuser_64.S      25 $(OUTPUT)/copyuser_64_t%:       copyuser_64.S $(EXTRA_SOURCES)
 26         $(CC) $(CPPFLAGS) $(CFLAGS) \              26         $(CC) $(CPPFLAGS) $(CFLAGS) \
 27                 -D COPY_LOOP=test___copy_tofro     27                 -D COPY_LOOP=test___copy_tofrom_user_base \
 28                 -D SELFTEST_CASE=$(subst copyu     28                 -D SELFTEST_CASE=$(subst copyuser_64_t,,$(notdir $@)) \
 29                 -o $@ $^                           29                 -o $@ $^
 30                                                    30 
 31 $(OUTPUT)/copyuser_p7_t%:       copyuser_power     31 $(OUTPUT)/copyuser_p7_t%:       copyuser_power7.S $(EXTRA_SOURCES)
 32         $(CC) $(CPPFLAGS) $(CFLAGS) \              32         $(CC) $(CPPFLAGS) $(CFLAGS) \
 33                 -D COPY_LOOP=test___copy_tofro     33                 -D COPY_LOOP=test___copy_tofrom_user_power7 \
 34                 -D SELFTEST_CASE=$(subst copyu     34                 -D SELFTEST_CASE=$(subst copyuser_p7_t,,$(notdir $@)) \
 35                 -o $@ $^                           35                 -o $@ $^
 36                                                    36 
 37 # Strictly speaking, we only need the memcpy_6     37 # Strictly speaking, we only need the memcpy_64 test cases for big-endian
 38 $(OUTPUT)/memcpy_64_t%: memcpy_64.S $(EXTRA_SO     38 $(OUTPUT)/memcpy_64_t%: memcpy_64.S $(EXTRA_SOURCES)
 39         $(CC) $(CPPFLAGS) $(CFLAGS) \              39         $(CC) $(CPPFLAGS) $(CFLAGS) \
 40                 -D COPY_LOOP=test_memcpy \         40                 -D COPY_LOOP=test_memcpy \
 41                 -D SELFTEST_CASE=$(subst memcp     41                 -D SELFTEST_CASE=$(subst memcpy_64_t,,$(notdir $@)) \
 42                 -o $@ $^                           42                 -o $@ $^
 43                                                    43 
 44 $(OUTPUT)/memcpy_p7_t%: memcpy_power7.S $(EXTR     44 $(OUTPUT)/memcpy_p7_t%: memcpy_power7.S $(EXTRA_SOURCES)
 45         $(CC) $(CPPFLAGS) $(CFLAGS) \              45         $(CC) $(CPPFLAGS) $(CFLAGS) \
 46                 -D COPY_LOOP=test_memcpy_power     46                 -D COPY_LOOP=test_memcpy_power7 \
 47                 -D SELFTEST_CASE=$(subst memcp     47                 -D SELFTEST_CASE=$(subst memcpy_p7_t,,$(notdir $@)) \
 48                 -o $@ $^                           48                 -o $@ $^
 49                                                    49 
 50 $(OUTPUT)/copy_mc_64: copy_mc_64.S $(EXTRA_SOU     50 $(OUTPUT)/copy_mc_64: copy_mc_64.S $(EXTRA_SOURCES)
 51         $(CC) $(CPPFLAGS) $(CFLAGS) \              51         $(CC) $(CPPFLAGS) $(CFLAGS) \
 52                 -D COPY_LOOP=test_copy_mc_gene     52                 -D COPY_LOOP=test_copy_mc_generic \
 53                 -o $@ $^                           53                 -o $@ $^
 54                                                    54 
 55 $(OUTPUT)/copyuser_64_exc_t%: copyuser_64.S ex     55 $(OUTPUT)/copyuser_64_exc_t%: copyuser_64.S exc_validate.c ../harness.c \
 56                 copy_tofrom_user_reference.S s     56                 copy_tofrom_user_reference.S stubs.S
 57         $(CC) $(CPPFLAGS) $(CFLAGS) \              57         $(CC) $(CPPFLAGS) $(CFLAGS) \
 58                 -D COPY_LOOP=test___copy_tofro     58                 -D COPY_LOOP=test___copy_tofrom_user_base \
 59                 -D SELFTEST_CASE=$(subst copyu     59                 -D SELFTEST_CASE=$(subst copyuser_64_exc_t,,$(notdir $@)) \
 60                 -o $@ $^                           60                 -o $@ $^
 61                                                    61 
 62 $(OUTPUT)/memmove_64: mem_64.S memcpy_64.S mem     62 $(OUTPUT)/memmove_64: mem_64.S memcpy_64.S memmove_validate.c ../harness.c \
 63                 memcpy_stubs.S                     63                 memcpy_stubs.S
 64         $(CC) $(CPPFLAGS) $(CFLAGS) \              64         $(CC) $(CPPFLAGS) $(CFLAGS) \
 65                 -D TEST_MEMMOVE=test_memmove \     65                 -D TEST_MEMMOVE=test_memmove \
 66                 -o $@ $^                           66                 -o $@ $^
                                                      

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php