target.h 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /* Copyright (C) 2011-2015 Free Software Foundation, Inc.
  2. This file is part of the GNU Transactional Memory Library (libitm).
  3. Libitm is free software; you can redistribute it and/or modify it
  4. under the terms of the GNU General Public License as published by
  5. the Free Software Foundation; either version 3 of the License, or
  6. (at your option) any later version.
  7. Libitm is distributed in the hope that it will be useful, but WITHOUT ANY
  8. WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  9. FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  10. more details.
  11. Under Section 7 of GPL version 3, you are granted additional
  12. permissions described in the GCC Runtime Library Exception, version
  13. 3.1, as published by the Free Software Foundation.
  14. You should have received a copy of the GNU General Public License and
  15. a copy of the GCC Runtime Library Exception along with this program;
  16. see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
  17. <http://www.gnu.org/licenses/>. */
  18. namespace GTM HIDDEN {
  19. typedef struct gtm_jmpbuf
  20. {
  21. unsigned long s[7]; /* r8-r14 */
  22. void *cfa;
  23. unsigned long pc;
  24. unsigned long gbr;
  25. #ifdef __SH_FPU_ANY__
  26. unsigned long fpscr;
  27. unsigned long f[4]; /* fr12-fr15 */
  28. #endif
  29. } gtm_jmpbuf;
  30. /* ??? The size of one line in hardware caches (in bytes). */
  31. #define HW_CACHELINE_SIZE 32
  32. static inline void
  33. cpu_relax (void)
  34. {
  35. __asm volatile ("" : : : "memory");
  36. }
  37. } // namespace GTM