cris.h 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /*
  2. * Copyright (c) 2004 Hewlett-Packard Development Company, L.P.
  3. *
  4. * Permission is hereby granted, free of charge, to any person obtaining a copy
  5. * of this software and associated documentation files (the "Software"), to deal
  6. * in the Software without restriction, including without limitation the rights
  7. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  8. * copies of the Software, and to permit persons to whom the Software is
  9. * furnished to do so, subject to the following conditions:
  10. *
  11. * The above copyright notice and this permission notice shall be included in
  12. * all copies or substantial portions of the Software.
  13. *
  14. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  15. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  16. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  17. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  18. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  19. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  20. * SOFTWARE.
  21. */
  22. /* FIXME: seems to be untested. */
  23. #include "../all_atomic_load_store.h"
  24. #include "../ordered.h" /* There are no multiprocessor implementations. */
  25. #include "../test_and_set_t_is_ao_t.h"
  26. /*
  27. * The architecture apparently supports an "f" flag which is
  28. * set on preemption. This essentially gives us load-locked,
  29. * store-conditional primitives, though I'm not quite sure how
  30. * this would work on a hypothetical multiprocessor. -HB
  31. *
  32. * For details, see
  33. * http://developer.axis.com/doc/hardware/etrax100lx/prog_man/
  34. * 1_architectural_description.pdf
  35. *
  36. * Presumably many other primitives (notably CAS, including the double-
  37. * width versions) could be implemented in this manner, if someone got
  38. * around to it.
  39. */
  40. AO_INLINE AO_TS_VAL_t
  41. AO_test_and_set_full(volatile AO_TS_t *addr) {
  42. /* Ripped from linuxthreads/sysdeps/cris/pt-machine.h */
  43. register unsigned long int ret;
  44. /* Note the use of a dummy output of *addr to expose the write. The
  45. memory barrier is to stop *other* writes being moved past this code. */
  46. __asm__ __volatile__("clearf\n"
  47. "0:\n\t"
  48. "movu.b [%2],%0\n\t"
  49. "ax\n\t"
  50. "move.b %3,[%2]\n\t"
  51. "bwf 0b\n\t"
  52. "clearf"
  53. : "=&r" (ret), "=m" (*addr)
  54. : "r" (addr), "r" ((int) 1), "m" (*addr)
  55. : "memory");
  56. return ret;
  57. }
  58. #define AO_HAVE_test_and_set_full