jack1 codebase
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

79 lines
2.5KB

  1. // Low-level functions for atomic operations: PowerPC version -*- C++ -*-
  2. // Copyright (C) 1999, 2000, 2001, 2003 Free Software Foundation, Inc.
  3. //
  4. // This file is part of the GNU ISO C++ Library. This library is free
  5. // software; you can redistribute it and/or modify it under the
  6. // terms of the GNU General Public License as published by the
  7. // Free Software Foundation; either version 2, or (at your option)
  8. // any later version.
  9. // This 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
  12. // GNU General Public License for more details.
  13. // You should have received a copy of the GNU General Public License along
  14. // with this library; see the file COPYING. If not, write to the Free
  15. // Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
  16. // USA.
  17. // As a special exception, you may use this file as part of a free software
  18. // library without restriction. Specifically, if other files instantiate
  19. // templates or use macros or inline functions from this file, or you compile
  20. // this file and link it with other files to produce an executable, this
  21. // file does not by itself cause the resulting executable to be covered by
  22. // the GNU General Public License. This exception does not however
  23. // invalidate any other reasons why the executable file might be covered by
  24. // the GNU General Public License.
  25. #ifndef _GLIBCXX_ATOMICITY_H
  26. #define _GLIBCXX_ATOMICITY_H 1
  27. #ifdef __PPC405__
  28. #define _STWCX "sync \n\tstwcx. "
  29. #else
  30. #define _STWCX "stwcx. "
  31. #endif
  32. typedef int _Atomic_word;
  33. static inline _Atomic_word
  34. __attribute__ ((__unused__))
  35. __exchange_and_add(volatile _Atomic_word* __mem, int __val)
  36. {
  37. _Atomic_word __tmp, __res;
  38. __asm__ __volatile__ (
  39. "/* Inline exchange & add */\n"
  40. "0:\t"
  41. "lwarx %0,0,%3 \n\t"
  42. "add%I4 %1,%0,%4 \n\t"
  43. _STWCX " %1,0,%3 \n\t"
  44. "bne- 0b \n\t"
  45. "/* End exchange & add */"
  46. : "=&b"(__res), "=&r"(__tmp), "=m" (*__mem)
  47. : "r" (__mem), "Ir"(__val), "m" (*__mem)
  48. : "cr0");
  49. return __res;
  50. }
  51. static inline void
  52. __attribute__ ((__unused__))
  53. __atomic_add(volatile _Atomic_word* __mem, int __val)
  54. {
  55. _Atomic_word __tmp;
  56. __asm__ __volatile__ (
  57. "/* Inline atomic add */\n"
  58. "0:\t"
  59. "lwarx %0,0,%2 \n\t"
  60. "add%I3 %0,%0,%3 \n\t"
  61. _STWCX " %0,0,%2 \n\t"
  62. "bne- 0b \n\t"
  63. "/* End atomic add */"
  64. : "=&b"(__tmp), "=m" (*__mem)
  65. : "r" (__mem), "Ir"(__val), "m" (*__mem)
  66. : "cr0");
  67. }
  68. #endif /* atomicity.h */