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

TOMOYO Linux Cross Reference
Linux/arch/sparc/lib/locks.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 ] ~

  1 /* SPDX-License-Identifier: GPL-2.0 */
  2 /*
  3  * locks.S: SMP low-level lock primitives on Sparc.
  4  *
  5  * Copyright (C) 1996 David S. Miller (davem@caip.rutgers.edu)
  6  * Copyright (C) 1998 Anton Blanchard (anton@progsoc.uts.edu.au)
  7  * Copyright (C) 1998 Jakub Jelinek   (jj@ultra.linux.cz)
  8  */
  9 
 10 #include <linux/export.h>
 11 #include <asm/ptrace.h>
 12 #include <asm/psr.h>
 13 #include <asm/smp.h>
 14 #include <asm/spinlock.h>
 15 
 16         .text
 17         .align  4
 18 
 19         /* Read/writer locks, as usual this is overly clever to make it
 20          * as fast as possible.
 21          */
 22 
 23         /* caches... */
 24 ___rw_read_enter_spin_on_wlock:
 25         orcc    %g2, 0x0, %g0
 26         be,a    ___rw_read_enter
 27          ldstub [%g1 + 3], %g2
 28         b       ___rw_read_enter_spin_on_wlock
 29          ldub   [%g1 + 3], %g2
 30 ___rw_read_try_spin_on_wlock:
 31         andcc   %g2, 0xff, %g0
 32         be,a    ___rw_read_try
 33          ldstub [%g1 + 3], %g2
 34         xnorcc  %g2, 0x0, %o0   /* if g2 is ~0, set o0 to 0 and bugger off */
 35         bne,a   ___rw_read_enter_spin_on_wlock
 36          ld     [%g1], %g2
 37         retl
 38          mov    %g4, %o7
 39 ___rw_read_exit_spin_on_wlock:
 40         orcc    %g2, 0x0, %g0
 41         be,a    ___rw_read_exit
 42          ldstub [%g1 + 3], %g2
 43         b       ___rw_read_exit_spin_on_wlock
 44          ldub   [%g1 + 3], %g2
 45 ___rw_write_enter_spin_on_wlock:
 46         orcc    %g2, 0x0, %g0
 47         be,a    ___rw_write_enter
 48          ldstub [%g1 + 3], %g2
 49         b       ___rw_write_enter_spin_on_wlock
 50          ld     [%g1], %g2
 51 
 52         .globl  ___rw_read_enter
 53 EXPORT_SYMBOL(___rw_read_enter)
 54 ___rw_read_enter:
 55         orcc    %g2, 0x0, %g0
 56         bne,a   ___rw_read_enter_spin_on_wlock
 57          ldub   [%g1 + 3], %g2
 58         ld      [%g1], %g2
 59         add     %g2, 1, %g2
 60         st      %g2, [%g1]
 61         retl
 62          mov    %g4, %o7
 63 
 64         .globl  ___rw_read_exit
 65 EXPORT_SYMBOL(___rw_read_exit)
 66 ___rw_read_exit:
 67         orcc    %g2, 0x0, %g0
 68         bne,a   ___rw_read_exit_spin_on_wlock
 69          ldub   [%g1 + 3], %g2
 70         ld      [%g1], %g2
 71         sub     %g2, 0x1ff, %g2
 72         st      %g2, [%g1]
 73         retl
 74          mov    %g4, %o7
 75 
 76         .globl  ___rw_read_try
 77 EXPORT_SYMBOL(___rw_read_try)
 78 ___rw_read_try:
 79         orcc    %g2, 0x0, %g0
 80         bne     ___rw_read_try_spin_on_wlock
 81          ld     [%g1], %g2
 82         add     %g2, 1, %g2
 83         st      %g2, [%g1]
 84         set     1, %o1
 85         retl
 86          mov    %g4, %o7
 87 
 88         .globl  ___rw_write_enter
 89 EXPORT_SYMBOL(___rw_write_enter)
 90 ___rw_write_enter:
 91         orcc    %g2, 0x0, %g0
 92         bne     ___rw_write_enter_spin_on_wlock
 93          ld     [%g1], %g2
 94         andncc  %g2, 0xff, %g0
 95         bne,a   ___rw_write_enter_spin_on_wlock
 96          stb    %g0, [%g1 + 3]
 97         retl
 98          mov    %g4, %o7

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