blob: 0ab7ac13f225cb142eeaadde554b45e9e95bd8c1 [file] [log] [blame]
yuezonghe824eb0c2024-06-27 02:32:26 -07001/* Machine-dependent pthreads configuration and inline functions.
2
3 Copyright (C) 1996, 1997, 1998, 2000, 2002, 2003, 2004
4 Free Software Foundation, Inc.
5 This file is part of the GNU C Library.
6 Contributed by Ralf Baechle <ralf@gnu.org>.
7 Based on the Alpha version by Richard Henderson <rth@tamu.edu>.
8
9 The GNU C Library is free software; you can redistribute it and/or
10 modify it under the terms of the GNU Lesser General Public License as
11 published by the Free Software Foundation; either version 2.1 of the
12 License, or (at your option) any later version.
13
14 The GNU C Library is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 Lesser General Public License for more details.
18
19 You should have received a copy of the GNU Lesser General Public
20 License along with the GNU C Library; see the file COPYING.LIB. If
21 not, write to the Free Software Foundation, Inc.,
22 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
23
24#ifndef _PT_MACHINE_H
25#define _PT_MACHINE_H 1
26
27#include <features.h>
28#include <sgidefs.h>
29#include <sys/tas.h>
30
31#ifndef PT_EI
32# define PT_EI __extern_always_inline
33#endif
34
35/* Spinlock implementation; required. */
36
37PT_EI long int
38testandset (int *spinlock)
39{
40 return _test_and_set (spinlock, 1);
41}
42
43
44/* Get some notion of the current stack. Need not be exactly the top
45 of the stack, just something somewhere in the current frame. */
46#define CURRENT_STACK_FRAME stack_pointer
47register char * stack_pointer __asm__ ("$29");
48
49
50/* Compare-and-swap for semaphores. */
51
52#define HAS_COMPARE_AND_SWAP
53PT_EI int
54__compare_and_swap (long int *p, long int oldval, long int newval)
55{
56 long int ret, temp;
57
58 __asm__ __volatile__
59 ("/* Inline compare & swap */\n"
60 "1:\n\t"
61 ".set push\n\t"
62#if _MIPS_SIM == _ABIO32
63 ".set mips2\n\t"
64#endif
65#if _MIPS_SIM == _ABI64
66 "lld %1,%5\n\t"
67#else
68 "ll %1,%5\n\t"
69#endif
70 "move %0,$0\n\t"
71 "bne %1,%3,2f\n\t"
72 "move %0,%4\n\t"
73#if _MIPS_SIM == _ABI64
74 "scd %0,%2\n\t"
75#else
76 "sc %0,%2\n\t"
77#endif
78 ".set pop\n\t"
79 "beqz %0,1b\n"
80 "2:\n\t"
81 "/* End compare & swap */"
82 : "=&r" (ret), "=&r" (temp), "=m" (*p)
83 : "r" (oldval), "r" (newval), "m" (*p)
84 : "memory");
85
86 return ret;
87}
88
89#endif /* pt-machine.h */