pt-machine.h 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. /* Machine-dependent pthreads configuration and inline functions.
  2. IA-64 version.
  3. Copyright (C) 1999, 2000, 2002, 2003, 2004 Free Software Foundation, Inc.
  4. This file is part of the GNU C Library.
  5. The GNU C Library is free software; you can redistribute it and/or
  6. modify it under the terms of the GNU Lesser General Public License as
  7. published by the Free Software Foundation; either version 2.1 of the
  8. License, or (at your option) any later version.
  9. The GNU C Library is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. Lesser General Public License for more details.
  13. You should have received a copy of the GNU Lesser General Public
  14. License along with the GNU C Library; see the file COPYING.LIB. If not,
  15. write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  16. Boston, MA 02111-1307, USA. */
  17. #ifndef _PT_MACHINE_H
  18. #define _PT_MACHINE_H 1
  19. #include <ia64intrin.h>
  20. #ifndef PT_EI
  21. # define PT_EI extern inline __attribute__ ((always_inline))
  22. #endif
  23. extern long int testandset (int *spinlock);
  24. extern int __compare_and_swap (long int *p, long int oldval, long int newval);
  25. /* Make sure gcc doesn't try to be clever and move things around on
  26. us. We need to use _exactly_ the address the user gave us, not some
  27. alias that contains the same information. */
  28. #define __atomic_fool_gcc(x) (*(volatile struct { int a[100]; } *)x)
  29. #ifndef ELF_MACHINE_NAME
  30. #define NEED_SEPARATE_REGISTER_STACK
  31. /* We want the OS to assign stack addresses. */
  32. #define FLOATING_STACKS 1
  33. /* Maximum size of the stack if the rlimit is unlimited. */
  34. #define ARCH_STACK_MAX_SIZE 32*1024*1024
  35. /* Get some notion of the current stack. Need not be exactly the top
  36. of the stack, just something somewhere in the current frame.
  37. r12 (sp) is the stack pointer. */
  38. #define CURRENT_STACK_FRAME stack_pointer
  39. register char *stack_pointer __asm__ ("sp");
  40. /* Register r13 (tp) is reserved by the ABI as "thread pointer". */
  41. struct _pthread_descr_struct;
  42. register struct _pthread_descr_struct *__thread_self __asm__("r13");
  43. /* Return the thread descriptor for the current thread. */
  44. #define THREAD_SELF __thread_self
  45. /* Initialize the thread-unique value. */
  46. #define INIT_THREAD_SELF(descr, nr) (__thread_self = (descr))
  47. /* Access to data in the thread descriptor is easy. */
  48. #define THREAD_GETMEM(descr, member) \
  49. ((void) sizeof (descr), THREAD_SELF->member)
  50. #define THREAD_GETMEM_NC(descr, member) \
  51. ((void) sizeof (descr), THREAD_SELF->member)
  52. #define THREAD_SETMEM(descr, member, value) \
  53. ((void) sizeof (descr), THREAD_SELF->member = (value))
  54. #define THREAD_SETMEM_NC(descr, member, value) \
  55. ((void) sizeof (descr), THREAD_SELF->member = (value))
  56. /* Memory barrier */
  57. #define MEMORY_BARRIER() __sync_synchronize ()
  58. #define HAS_COMPARE_AND_SWAP_WITH_RELEASE_SEMANTICS
  59. PT_EI int
  60. __compare_and_swap (long int *p, long int oldval, long int newval)
  61. {
  62. long int readval;
  63. __asm__ __volatile__
  64. ("mov ar.ccv=%4;;\n\t"
  65. "cmpxchg8.acq %0=%1,%2,ar.ccv"
  66. : "=r" (readval), "=m" (__atomic_fool_gcc (p))
  67. : "r"(newval), "m" (__atomic_fool_gcc (p)), "r" (oldval)
  68. : "memory");
  69. return readval == oldval;
  70. }
  71. PT_EI int
  72. __compare_and_swap_with_release_semantics (long int *p,
  73. long int oldval,
  74. long int newval)
  75. {
  76. long int readval;
  77. __asm__ __volatile__
  78. ("mov ar.ccv=%4;;\n\t"
  79. "cmpxchg8.rel %0=%1,%2,ar.ccv"
  80. : "=r" (readval), "=m" (__atomic_fool_gcc (p))
  81. : "r"(newval), "m" (__atomic_fool_gcc (p)), "r" (oldval)
  82. : "memory");
  83. return readval == oldval;
  84. }
  85. #endif /* ELF_MACHINE_NAME */
  86. /* Spinlock implementation; required. */
  87. PT_EI long int
  88. testandset (int *spinlock)
  89. {
  90. long int ret;
  91. __asm__ __volatile__(
  92. "xchg4 %0=%1,%2"
  93. : "=r"(ret), "=m"(__atomic_fool_gcc (spinlock))
  94. : "r"(1), "m"(__atomic_fool_gcc (spinlock))
  95. : "memory");
  96. return ret;
  97. }
  98. /* Indicate that we are looping. */
  99. #define BUSY_WAIT_NOP __asm__ ("hint @pause")
  100. #endif /* pt-machine.h */