qatomic_bfin.h
上传用户:detong
上传日期:2022-06-22
资源大小:20675k
文件大小:9k
源码类别:

系统编程

开发平台:

Unix_Linux

  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies).
  4. ** Contact: Qt Software Information (qt-info@nokia.com)
  5. **
  6. ** This file is part of the QtCore module of the Qt Toolkit.
  7. **
  8. ** Commercial Usage
  9. ** Licensees holding valid Qt Commercial licenses may use this file in
  10. ** accordance with the Qt Commercial License Agreement provided with the
  11. ** Software or, alternatively, in accordance with the terms contained in
  12. ** a written agreement between you and Nokia.
  13. **
  14. **
  15. ** GNU General Public License Usage
  16. ** Alternatively, this file may be used under the terms of the GNU
  17. ** General Public License versions 2.0 or 3.0 as published by the Free
  18. ** Software Foundation and appearing in the file LICENSE.GPL included in
  19. ** the packaging of this file.  Please review the following information
  20. ** to ensure GNU General Public Licensing requirements will be met:
  21. ** http://www.fsf.org/licensing/licenses/info/GPLv2.html and
  22. ** http://www.gnu.org/copyleft/gpl.html.  In addition, as a special
  23. ** exception, Nokia gives you certain additional rights. These rights
  24. ** are described in the Nokia Qt GPL Exception version 1.3, included in
  25. ** the file GPL_EXCEPTION.txt in this package.
  26. **
  27. ** Qt for Windows(R) Licensees
  28. ** As a special exception, Nokia, as the sole copyright holder for Qt
  29. ** Designer, grants users of the Qt/Eclipse Integration plug-in the
  30. ** right for the Qt/Eclipse Integration to link to functionality
  31. ** provided by Qt Designer and its related libraries.
  32. **
  33. ** If you are unsure which license is appropriate for your use, please
  34. ** contact the sales department at qt-sales@nokia.com.
  35. **
  36. ****************************************************************************/
  37. #ifndef QATOMIC_BFIN_H
  38. #define QATOMIC_BFIN_H
  39. QT_BEGIN_HEADER
  40. QT_BEGIN_NAMESPACE
  41. #define Q_ATOMIC_INT_REFERENCE_COUNTING_IS_NOT_NATIVE
  42. inline bool QBasicAtomicInt::isReferenceCountingNative()
  43. { return false; }
  44. inline bool QBasicAtomicInt::isReferenceCountingWaitFree()
  45. { return false; }
  46. #define Q_ATOMIC_INT_TEST_AND_SET_IS_NOT_NATIVE
  47. inline bool QBasicAtomicInt::isTestAndSetNative()
  48. { return false; }
  49. inline bool QBasicAtomicInt::isTestAndSetWaitFree()
  50. { return false; }
  51. #define Q_ATOMIC_INT_FETCH_AND_STORE_IS_NOT_NATIVE
  52. inline bool QBasicAtomicInt::isFetchAndStoreNative()
  53. { return false; }
  54. inline bool QBasicAtomicInt::isFetchAndStoreWaitFree()
  55. { return false; }
  56. #define Q_ATOMIC_INT_FETCH_AND_ADD_IS_NOT_NATIVE
  57. inline bool QBasicAtomicInt::isFetchAndAddNative()
  58. { return false; }
  59. inline bool QBasicAtomicInt::isFetchAndAddWaitFree()
  60. { return false; }
  61. #define Q_ATOMIC_POINTER_TEST_AND_SET_IS_NOT_NATIVE
  62. template <typename T>
  63. Q_INLINE_TEMPLATE bool QBasicAtomicPointer<T>::isTestAndSetNative()
  64. { return false; }
  65. template <typename T>
  66. Q_INLINE_TEMPLATE bool QBasicAtomicPointer<T>::isTestAndSetWaitFree()
  67. { return false; }
  68. #define Q_ATOMIC_POINTER_FETCH_AND_STORE_IS_NOT_NATIVE
  69. template <typename T>
  70. Q_INLINE_TEMPLATE bool QBasicAtomicPointer<T>::isFetchAndStoreNative()
  71. { return false; }
  72. template <typename T>
  73. Q_INLINE_TEMPLATE bool QBasicAtomicPointer<T>::isFetchAndStoreWaitFree()
  74. { return false; }
  75. #define Q_ATOMIC_POINTER_FETCH_AND_ADD_IS_NOT_NATIVE
  76. template <typename T>
  77. Q_INLINE_TEMPLATE bool QBasicAtomicPointer<T>::isFetchAndAddNative()
  78. { return false; }
  79. template <typename T>
  80. Q_INLINE_TEMPLATE bool QBasicAtomicPointer<T>::isFetchAndAddWaitFree()
  81. { return false; }
  82. #if defined(Q_OS_LINUX) && defined(Q_CC_GNU)
  83. QT_BEGIN_INCLUDE_NAMESPACE
  84. #include <asm/fixed_code.h>
  85. QT_END_INCLUDE_NAMESPACE
  86. inline bool QBasicAtomicInt::ref()
  87. {
  88.     int ret;
  89.     asm volatile("R0 = 1;nt"
  90.  "P0 = %3;nt"
  91.                  "CALL (%2);nt"
  92.                  "%0 = R0;"
  93.                  : "=da" (ret), "=m" (_q_value)
  94.                  : "a" (ATOMIC_ADD32), "da" (&_q_value), "m" (_q_value)
  95.                  : "R0", "R1", "P0", "RETS", "memory");
  96.     return ret != 0;
  97. }
  98. inline bool QBasicAtomicInt::deref()
  99. {
  100.     int ret;
  101.     asm volatile("R0 = 1;nt"
  102.  "P0 = %3;nt"
  103.                  "CALL (%2);nt"
  104.                  "%0 = R0;"
  105.                  : "=da" (ret), "=m" (_q_value)
  106.                  : "a" (ATOMIC_SUB32), "da" (&_q_value), "m" (_q_value)
  107.                  : "R0", "R1", "P0", "RETS", "memory");
  108.     return ret != 0;
  109. }
  110. inline int QBasicAtomicInt::testAndSetOrdered(int expectedValue, int newValue)
  111. {
  112.     long int readval;
  113.     asm volatile ("P0 = %2;nt"
  114.   "R1 = %3;nt"
  115.   "R2 = %4;nt"
  116.   "CALL (%5);nt"
  117.   "%0 = R0;nt"
  118.   : "=da" (readval), "=m" (_q_value)
  119.   : "da" (&_q_value),
  120.   "da" (expectedValue),
  121.   "da" (newValue),
  122.   "a" (ATOMIC_CAS32),
  123.   "m" (_q_value)
  124.   : "P0", "R0", "R1", "R2", "RETS", "memory", "cc");
  125.     return readval == expectedValue;
  126. }
  127. inline int QBasicAtomicInt::fetchAndStoreOrdered(int newValue)
  128. {
  129.     asm volatile("R1 = %2;nt"
  130.  "P0 = %4;nt"
  131.                  "CALL (%3);nt"
  132.                  "%0 = R0;"
  133.                  : "=da" (newValue), "=m" (_q_value)
  134.                  : "da" (newValue), "a" (ATOMIC_XCHG32), "da" (&_q_value), "m" (_q_value)
  135.                  : "R0", "R1", "P0", "RETS", "memory");
  136.     return newValue;
  137. }
  138. #error "QBasicAtomicInt::fetchAndAddOrdered() not implemented"
  139. template <typename T>
  140. Q_INLINE_TEMPLATE bool QBasicAtomicPointer<T>::testAndSetOrdered(T *expectedValue, T *newValue)
  141. {
  142.     T *readval;
  143.     asm volatile ("P0 = %2;nt"
  144.   "R1 = %3;nt"
  145.   "R2 = %4;nt"
  146.   "CALL (%5);nt"
  147.   "%0 = R0;nt"
  148.   : "=da" (readval), "=m" (_q_value)
  149.   : "da" (&_q_value),
  150.   "da" (expectedValue),
  151.   "da" (newValue),
  152.   "a" (ATOMIC_CAS32),
  153.   "m" (_q_value)
  154.   : "P0", "R0", "R1", "R2", "RETS", "memory", "cc");
  155.     return readval == expectedValue;
  156. }
  157. template <typename T>
  158. Q_INLINE_TEMPLATE T *QBasicAtomicPointer<T>::fetchAndStoreOrdered(T *newValue)
  159. {
  160.     asm volatile("R1 = %2;nt"
  161.  "P0 = %4;nt"
  162.                  "CALL (%3);nt"
  163.                  "%0 = R0;"
  164.                  : "=da" (newValue), "=m" (_q_value)
  165.                  : "da" (newValue), "a" (ATOMIC_XCHG32), "da" (&_q_value), "m" (_q_value)
  166.                  : "R0", "R1", "P0", "RETS", "memory");
  167.     return newValue;
  168. }
  169. #error "QBasicAtomicPointer<T>::fetchAndAddOrdered() not implemented"
  170. #endif // Q_OS_LINUX && Q_CC_GNU
  171. // Test and set for integers
  172. inline bool QBasicAtomicInt::testAndSetRelaxed(int expectedValue, int newValue)
  173. {
  174.     return testAndSetOrdered(expectedValue, newValue);
  175. }
  176. inline bool QBasicAtomicInt::testAndSetAcquire(int expectedValue, int newValue)
  177. {
  178.     return testAndSetOrdered(expectedValue, newValue);
  179. }
  180. inline bool QBasicAtomicInt::testAndSetRelease(int expectedValue, int newValue)
  181. {
  182.     return testAndSetOrdered(expectedValue, newValue);
  183. }
  184. // Fetch and store for integers
  185. inline int QBasicAtomicInt::fetchAndStoreRelaxed(int newValue)
  186. {
  187.     return fetchAndStoreOrdered(newValue);
  188. }
  189. inline int QBasicAtomicInt::fetchAndStoreAcquire(int newValue)
  190. {
  191.     return fetchAndStoreOrdered(newValue);
  192. }
  193. inline int QBasicAtomicInt::fetchAndStoreRelease(int newValue)
  194. {
  195.     return fetchAndStoreOrdered(newValue);
  196. }
  197. // Fetch and add for integers
  198. inline int QBasicAtomicInt::fetchAndAddRelaxed(int valueToAdd)
  199. {
  200.     return fetchAndAddOrdered(valueToAdd);
  201. }
  202. inline int QBasicAtomicInt::fetchAndAddAcquire(int valueToAdd)
  203. {
  204.     return fetchAndAddOrdered(valueToAdd);
  205. }
  206. inline int QBasicAtomicInt::fetchAndAddRelease(int valueToAdd)
  207. {
  208.     return fetchAndAddOrdered(valueToAdd);
  209. }
  210. // Test and set for pointers
  211. template <typename T>
  212. Q_INLINE_TEMPLATE bool QBasicAtomicPointer<T>::testAndSetRelaxed(T *expectedValue, T *newValue)
  213. {
  214.     return testAndSetOrdered(expectedValue, newValue);
  215. }
  216. template <typename T>
  217. Q_INLINE_TEMPLATE bool QBasicAtomicPointer<T>::testAndSetAcquire(T *expectedValue, T *newValue)
  218. {
  219.     return testAndSetOrdered(expectedValue, newValue);
  220. }
  221. template <typename T>
  222. Q_INLINE_TEMPLATE bool QBasicAtomicPointer<T>::testAndSetRelease(T *expectedValue, T *newValue)
  223. {
  224.     return testAndSetOrdered(expectedValue, newValue);
  225. }
  226. // Fetch and store for pointers
  227. template <typename T>
  228. Q_INLINE_TEMPLATE T *QBasicAtomicPointer<T>::fetchAndStoreRelaxed(T *newValue)
  229. {
  230.     return fetchAndStoreOrdered(newValue);
  231. }
  232. template <typename T>
  233. Q_INLINE_TEMPLATE T *QBasicAtomicPointer<T>::fetchAndStoreAcquire(T *newValue)
  234. {
  235.     return fetchAndStoreOrdered(newValue);
  236. }
  237. template <typename T>
  238. Q_INLINE_TEMPLATE T *QBasicAtomicPointer<T>::fetchAndStoreRelease(T *newValue)
  239. {
  240.     return fetchAndStoreOrdered(newValue);
  241. }
  242. // Fetch and add for pointers
  243. template <typename T>
  244. Q_INLINE_TEMPLATE T *QBasicAtomicPointer<T>::fetchAndAddRelaxed(qptrdiff valueToAdd)
  245. {
  246.     return fetchAndAddOrdered(valueToAdd);
  247. }
  248. template <typename T>
  249. Q_INLINE_TEMPLATE T *QBasicAtomicPointer<T>::fetchAndAddAcquire(qptrdiff valueToAdd)
  250. {
  251.     return fetchAndAddOrdered(valueToAdd);
  252. }
  253. template <typename T>
  254. Q_INLINE_TEMPLATE T *QBasicAtomicPointer<T>::fetchAndAddRelease(qptrdiff valueToAdd)
  255. {
  256.     return fetchAndAddOrdered(valueToAdd);
  257. }
  258. QT_END_NAMESPACE
  259. QT_END_HEADER
  260. #endif // QATOMIC_BFIN_H