1998-06-25 19:44:22 +00:00
|
|
|
/* Machine-dependent pthreads configuration and inline functions.
|
|
|
|
i686 version.
|
2002-02-24 04:57:56 +00:00
|
|
|
Copyright (C) 1996-2001, 2002 Free Software Foundation, Inc.
|
1998-06-25 19:44:22 +00:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
Contributed by Richard Henderson <rth@tamu.edu>.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Library General Public License as
|
|
|
|
published by the Free Software Foundation; either version 2 of the
|
|
|
|
License, or (at your option) any later version.
|
|
|
|
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
Library General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Library General Public
|
|
|
|
License along with the GNU C Library; see the file COPYING.LIB. If not,
|
|
|
|
write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
Boston, MA 02111-1307, USA. */
|
|
|
|
|
2002-02-24 04:57:56 +00:00
|
|
|
#ifndef _PT_MACHINE_H
|
|
|
|
#define _PT_MACHINE_H 1
|
|
|
|
|
1998-10-09 11:22:46 +00:00
|
|
|
#ifndef PT_EI
|
|
|
|
# define PT_EI extern inline
|
|
|
|
#endif
|
2000-05-24 15:33:21 +00:00
|
|
|
#include "kernel-features.h"
|
1998-06-25 19:44:22 +00:00
|
|
|
|
2002-03-17 12:10:08 +00:00
|
|
|
extern long int testandset (int *spinlock);
|
|
|
|
extern int __compare_and_swap (long int *p, long int oldval, long int newval);
|
|
|
|
|
1999-12-02 08:21:38 +00:00
|
|
|
/* Get some notion of the current stack. Need not be exactly the top
|
|
|
|
of the stack, just something somewhere in the current frame. */
|
2001-04-12 20:26:40 +00:00
|
|
|
#define CURRENT_STACK_FRAME __builtin_frame_address (0)
|
1999-12-02 08:21:38 +00:00
|
|
|
|
|
|
|
|
1998-06-25 19:44:22 +00:00
|
|
|
/* Spinlock implementation; required. */
|
2000-12-17 21:48:10 +00:00
|
|
|
PT_EI long int
|
1998-06-25 19:44:22 +00:00
|
|
|
testandset (int *spinlock)
|
|
|
|
{
|
2000-12-17 21:48:10 +00:00
|
|
|
long int ret;
|
1998-06-25 19:44:22 +00:00
|
|
|
|
1998-08-31 17:23:45 +00:00
|
|
|
__asm__ __volatile__ (
|
|
|
|
"xchgl %0, %1"
|
2001-04-12 20:26:40 +00:00
|
|
|
: "=r" (ret), "=m" (*spinlock)
|
|
|
|
: "0" (1), "m" (*spinlock)
|
1998-08-31 17:23:45 +00:00
|
|
|
: "memory");
|
1998-06-25 19:44:22 +00:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Compare-and-swap for semaphores. It's always available on i686. */
|
|
|
|
#define HAS_COMPARE_AND_SWAP
|
|
|
|
|
1998-10-09 11:22:46 +00:00
|
|
|
PT_EI int
|
1998-06-25 19:44:22 +00:00
|
|
|
__compare_and_swap (long int *p, long int oldval, long int newval)
|
|
|
|
{
|
|
|
|
char ret;
|
|
|
|
long int readval;
|
|
|
|
|
|
|
|
__asm__ __volatile__ ("lock; cmpxchgl %3, %1; sete %0"
|
|
|
|
: "=q" (ret), "=m" (*p), "=a" (readval)
|
1998-12-21 12:25:07 +00:00
|
|
|
: "r" (newval), "m" (*p), "a" (oldval)
|
|
|
|
: "memory");
|
1998-06-25 19:44:22 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2000-05-24 15:33:21 +00:00
|
|
|
#if __ASSUME_LDT_WORKS > 0
|
2000-04-27 20:18:02 +00:00
|
|
|
#include "../useldt.h"
|
2000-05-24 15:33:21 +00:00
|
|
|
#endif
|
2001-08-30 02:13:26 +00:00
|
|
|
|
|
|
|
/* The P4 and above really want some help to prevent overheating. */
|
|
|
|
#define BUSY_WAIT_NOP __asm__ ("rep; nop")
|
2002-02-24 04:57:56 +00:00
|
|
|
|
|
|
|
#endif /* pt-machine.h */
|