pt-machine.h 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. /* Machine-dependent pthreads configuration and inline functions.
  2. Alpha version.
  3. Copyright (C) 1996, 1997, 1998, 2000, 2002, 2003
  4. Free Software Foundation, Inc.
  5. This file is part of the GNU C Library.
  6. Contributed by Richard Henderson <rth@tamu.edu>.
  7. The GNU C Library is free software; you can redistribute it and/or
  8. modify it under the terms of the GNU Lesser General Public License as
  9. published by the Free Software Foundation; either version 2.1 of the
  10. License, or (at your option) any later version.
  11. The GNU C Library is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. Lesser General Public License for more details.
  15. You should have received a copy of the GNU Lesser General Public
  16. License along with the GNU C Library; see the file COPYING.LIB. If not,
  17. write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  18. Boston, MA 02111-1307, USA. */
  19. #ifndef _PT_MACHINE_H
  20. #define _PT_MACHINE_H 1
  21. #ifndef PT_EI
  22. # define PT_EI extern inline __attribute__ ((always_inline))
  23. #endif
  24. #ifdef __linux__
  25. # include <asm/pal.h>
  26. #else
  27. # include <machine/pal.h>
  28. #endif
  29. extern long int testandset (int *spinlock);
  30. extern int __compare_and_swap (long int *p, long int oldval, long int newval);
  31. /* Get some notion of the current stack. Need not be exactly the top
  32. of the stack, just something somewhere in the current frame. */
  33. #define CURRENT_STACK_FRAME stack_pointer
  34. register char *stack_pointer __asm__("$30");
  35. /* Memory barrier; default is to do nothing */
  36. #define MEMORY_BARRIER() __asm__ __volatile__("mb" : : : "memory")
  37. /* Write barrier. */
  38. #define WRITE_MEMORY_BARRIER() __asm__ __volatile__("wmb" : : : "memory")
  39. /* Spinlock implementation; required. */
  40. PT_EI long int
  41. testandset (int *spinlock)
  42. {
  43. long int ret, temp;
  44. __asm__ __volatile__(
  45. "/* Inline spinlock test & set */\n"
  46. "1:\t"
  47. "ldl_l %0,%3\n\t"
  48. "bne %0,2f\n\t"
  49. "or $31,1,%1\n\t"
  50. "stl_c %1,%2\n\t"
  51. "beq %1,1b\n"
  52. "2:\tmb\n"
  53. "/* End spinlock test & set */"
  54. : "=&r"(ret), "=&r"(temp), "=m"(*spinlock)
  55. : "m"(*spinlock)
  56. : "memory");
  57. return ret;
  58. }
  59. /* Begin allocating thread stacks at this address. Default is to allocate
  60. them just below the initial program stack. */
  61. #define THREAD_STACK_START_ADDRESS 0x40000000000
  62. /* Return the thread descriptor for the current thread. */
  63. #define THREAD_SELF \
  64. ({ \
  65. register pthread_descr __self __asm__("$0"); \
  66. __asm__ ("call_pal %1" : "=r"(__self) : "i"(PAL_rduniq)); \
  67. __self; \
  68. })
  69. /* Initialize the thread-unique value. */
  70. #define INIT_THREAD_SELF(descr, nr) \
  71. { \
  72. register pthread_descr __self __asm__("$16") = (descr); \
  73. __asm__ __volatile__ ("call_pal %1" : : "r"(__self), "i"(PAL_wruniq)); \
  74. }
  75. /* Compare-and-swap for semaphores. */
  76. #define HAS_COMPARE_AND_SWAP
  77. PT_EI int
  78. __compare_and_swap (long int *p, long int oldval, long int newval)
  79. {
  80. long int ret;
  81. __asm__ __volatile__ (
  82. "/* Inline compare & swap */\n"
  83. "1:\t"
  84. "ldq_l %0,%4\n\t"
  85. "cmpeq %0,%2,%0\n\t"
  86. "beq %0,2f\n\t"
  87. "mov %3,%0\n\t"
  88. "stq_c %0,%1\n\t"
  89. "beq %0,1b\n\t"
  90. "2:\tmb\n"
  91. "/* End compare & swap */"
  92. : "=&r"(ret), "=m"(*p)
  93. : "r"(oldval), "r"(newval), "m"(*p)
  94. : "memory");
  95. return ret;
  96. }
  97. /* We want the OS to assign stack addresses. */
  98. #define FLOATING_STACKS 1
  99. /* Maximum size of the stack if the rlimit is unlimited. */
  100. #define ARCH_STACK_MAX_SIZE 32*1024*1024
  101. #endif /* pt-machine.h */