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

TOMOYO Linux Cross Reference
Linux/arch/arm64/lib/copy_page.S

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 /arch/arm64/lib/copy_page.S (Architecture sparc64) and /arch/alpha/lib/copy_page.S (Architecture alpha)


  1 /* SPDX-License-Identifier: GPL-2.0-only */    !!   1 /* SPDX-License-Identifier: GPL-2.0 */
  2 /*                                                  2 /*
  3  * Copyright (C) 2012 ARM Ltd.                 !!   3  * arch/alpha/lib/copy_page.S
  4  */                                            << 
  5                                                << 
  6 #include <linux/linkage.h>                     << 
  7 #include <linux/const.h>                       << 
  8 #include <asm/assembler.h>                     << 
  9 #include <asm/page.h>                          << 
 10 #include <asm/cpufeature.h>                    << 
 11 #include <asm/alternative.h>                   << 
 12                                                << 
 13 /*                                             << 
 14  * Copy a page from src to dest (both are page << 
 15  *                                                  4  *
 16  * Parameters:                                 !!   5  * Copy an entire page.
 17  *      x0 - dest                              << 
 18  *      x1 - src                               << 
 19  */                                                 6  */
 20 SYM_FUNC_START(__pi_copy_page)                 !!   7 #include <linux/export.h>
 21         ldp     x2, x3, [x1]                   !!   8         .text
 22         ldp     x4, x5, [x1, #16]              !!   9         .align 4
 23         ldp     x6, x7, [x1, #32]              !!  10         .global copy_page
 24         ldp     x8, x9, [x1, #48]              !!  11         .ent copy_page
 25         ldp     x10, x11, [x1, #64]            !!  12 copy_page:
 26         ldp     x12, x13, [x1, #80]            !!  13         .prologue 0
 27         ldp     x14, x15, [x1, #96]            !!  14 
 28         ldp     x16, x17, [x1, #112]           !!  15         lda     $18,128
 29                                                !!  16         nop
 30         add     x0, x0, #256                   !!  17         unop
 31         add     x1, x1, #128                   !!  18         nop
 32 1:                                             !!  19 
 33         tst     x0, #(PAGE_SIZE - 1)           !!  20 1:      ldq     $0,0($17)
 34                                                !!  21         ldq     $1,8($17)
 35         stnp    x2, x3, [x0, #-256]            !!  22         ldq     $2,16($17)
 36         ldp     x2, x3, [x1]                   !!  23         ldq     $3,24($17)
 37         stnp    x4, x5, [x0, #16 - 256]        !!  24 
 38         ldp     x4, x5, [x1, #16]              !!  25         ldq     $4,32($17)
 39         stnp    x6, x7, [x0, #32 - 256]        !!  26         ldq     $5,40($17)
 40         ldp     x6, x7, [x1, #32]              !!  27         ldq     $6,48($17)
 41         stnp    x8, x9, [x0, #48 - 256]        !!  28         ldq     $7,56($17)
 42         ldp     x8, x9, [x1, #48]              !!  29 
 43         stnp    x10, x11, [x0, #64 - 256]      !!  30         stq     $0,0($16)
 44         ldp     x10, x11, [x1, #64]            !!  31         subq    $18,1,$18
 45         stnp    x12, x13, [x0, #80 - 256]      !!  32         stq     $1,8($16)
 46         ldp     x12, x13, [x1, #80]            !!  33         addq    $17,64,$17
 47         stnp    x14, x15, [x0, #96 - 256]      !!  34 
 48         ldp     x14, x15, [x1, #96]            !!  35         stq     $2,16($16)
 49         stnp    x16, x17, [x0, #112 - 256]     !!  36         stq     $3,24($16)
 50         ldp     x16, x17, [x1, #112]           !!  37         stq     $4,32($16)
 51                                                !!  38         stq     $5,40($16)
 52         add     x0, x0, #128                   !!  39 
 53         add     x1, x1, #128                   !!  40         stq     $6,48($16)
 54                                                !!  41         stq     $7,56($16)
 55         b.ne    1b                             !!  42         addq    $16,64,$16
 56                                                !!  43         bne     $18, 1b
 57         stnp    x2, x3, [x0, #-256]            << 
 58         stnp    x4, x5, [x0, #16 - 256]        << 
 59         stnp    x6, x7, [x0, #32 - 256]        << 
 60         stnp    x8, x9, [x0, #48 - 256]        << 
 61         stnp    x10, x11, [x0, #64 - 256]      << 
 62         stnp    x12, x13, [x0, #80 - 256]      << 
 63         stnp    x14, x15, [x0, #96 - 256]      << 
 64         stnp    x16, x17, [x0, #112 - 256]     << 
 65                                                    44 
 66         ret                                        45         ret
 67 SYM_FUNC_END(__pi_copy_page)                   !!  46         nop
 68 SYM_FUNC_ALIAS(copy_page, __pi_copy_page)      !!  47         unop
 69 EXPORT_SYMBOL(copy_page)                       !!  48         nop
                                                   >>  49 
                                                   >>  50         .end copy_page
                                                   >>  51         EXPORT_SYMBOL(copy_page)
                                                      

~ [ 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