atomicops.s
上传用户:dangjiwu
上传日期:2013-07-19
资源大小:42019k
文件大小:8k
源码类别:

Symbian

开发平台:

Visual C++

  1. ; ***** BEGIN LICENSE BLOCK *****
  2. ; Source last modified: $Id: atomicops.s,v 1.1.30.3 2004/07/09 01:47:24 hubbe Exp $
  3. ; // Portions Copyright (c) 1995-2003 RealNetworks, Inc. All Rights Reserved.
  4. ; The contents of this file, and the files included with this file,
  5. ; are subject to the current version of the RealNetworks Public
  6. ; Source License (the "RPSL") available at
  7. ; http://www.helixcommunity.org/content/rpsl unless you have licensed
  8. ; the file under the current version of the RealNetworks Community
  9. ; Source License (the "RCSL") available at
  10. ; http://www.helixcommunity.org/content/rcsl, in which case the RCSL
  11. ; will apply. You may also obtain the license terms directly from
  12. ; RealNetworks.  You may not use this file except in compliance with
  13. ; the RPSL or, if you have a valid RCSL with RealNetworks applicable
  14. ; to this file, the RCSL.  Please see the applicable RPSL or RCSL for
  15. ; the rights, obligations and limitations governing use of the
  16. ; contents of the file.
  17. ; Alternatively, the contents of this file may be used under the
  18. ; terms of the GNU General Public License Version 2 or later (the
  19. ; "GPL") in which case the provisions of the GPL are applicable
  20. ; instead of those above. If you wish to allow use of your version of
  21. ; this file only under the terms of the GPL, and not to allow others
  22. ; to use your version of this file under the terms of either the RPSL
  23. ; or RCSL, indicate your decision by deleting the provisions above
  24. ; and replace them with the notice and other provisions required by
  25. ; the GPL. If you do not delete the provisions above, a recipient may
  26. ; use your version of this file under the terms of any one of the
  27. ; RPSL, the RCSL or the GPL.
  28. ; This file is part of the Helix DNA Technology. RealNetworks is the
  29. ; developer of the Original Code and owns the copyrights in the
  30. ; portions it created.
  31. ; This file, and the files included with this file, is distributed
  32. ; and made available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY
  33. ; KIND, EITHER EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS
  34. ; ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES
  35. ; OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET
  36. ; ENJOYMENT OR NON-INFRINGEMENT.
  37. ; Technology Compatibility Kit Test Suite(s) Location:
  38. ;    http://www.helixcommunity.org/content/tck
  39. ; Contributor(s):
  40. ; ***** END LICENSE BLOCK *****
  41. //////////////////////////////////////////////////////////////////////
  42. //
  43. // atomicops.s
  44. //      Several atomic operators, implemented in IA64 (Itanium) assembly
  45. //
  46. // Implementation Notes:
  47. //      A work-in-progress....
  48. //
  49. //////////////////////////////////////////////////////////////////////
  50. //////////////////////////////////////////////////////////////////////
  51. // Misc. Assembler Directives
  52. //////////////////////////////////////////////////////////////////////
  53.         .radix  C       // C-style numeric constants
  54.         .section .text = "ax", "progbits" // read-only object code
  55. //////////////////////////////////////////////////////////////////////
  56. //
  57. // _HXAtomicIncRetUINT32
  58. //      Atomically increment by 1 and return new value
  59. //
  60. // Interface:
  61. //   extern "C" UINT32 _HXAtomicIncRetUINT32(UINT32* pNum);
  62. //
  63. // Inputs:
  64. //   Paramaters:
  65. //     in0 :  UINT32* pNum - pointer to integer to modify
  66. //
  67. // Outputs:
  68. //   Atomically modifies memory at *pNum:
  69. //     *pNum = *pNum + 1
  70. //
  71. //   Return value:
  72. //     r8 : UINT32 - new value of *pNum
  73. //
  74. //////////////////////////////////////////////////////////////////////
  75.         .proc   _HXAtomicIncRetUINT32
  76.         .global _HXAtomicIncRetUINT32
  77. _HXAtomicIncRetUINT32:
  78.         alloc           loc0 = ar.pfs, 1, 1, 0, 0 //one input, one local
  79.         fetchadd4.acq   r8 = [in0], 1;;         //increment *plock
  80.         add             r8 = 1, r8;;            //update local copy
  81. br.ret.dptk.few rp;;                    //return new value
  82.         .endp   _HXAtomicIncRetUINT32
  83. //////////////////////////////////////////////////////////////////////
  84. //
  85. // _HXAtomicDecRetUINT32
  86. //      Atomically decrement by 1 and return new value
  87. //
  88. // Interface:
  89. //   extern "C" UINT32 _HXAtomicDecRetUINT32(UINT32* pNum);
  90. //
  91. // Inputs:
  92. //   Paramaters:
  93. //     in0 :  UINT32* pNum - pointer to integer to modify
  94. //
  95. // Outputs:
  96. //   Atomically modifies memory at *pNum:
  97. //     *pNum = *pNum - 1
  98. //
  99. //   Return value:
  100. //     r8 : UINT32 - new value of *pNum
  101. //
  102. //////////////////////////////////////////////////////////////////////
  103.         .proc   _HXAtomicDecRetUINT32
  104.         .global _HXAtomicDecRetUINT32
  105. _HXAtomicDecRetUINT32:
  106.         alloc           loc0 = ar.pfs, 1, 1, 0, 0 //one input, one local
  107.         fetchadd4.acq   r8 = [in0], -1;;        //decrement *pLock
  108.         add             r8 = -1, r8;;           //update local copy
  109. br.ret.dptk.few rp;;                    //return new value
  110.         .endp   _HXAtomicDecRetUINT32
  111. //////////////////////////////////////////////////////////////////////
  112. //
  113. // _HXAtomicAddRetUINT32
  114. //      Atomically add n and return new value
  115. //
  116. // Interface:
  117. //   extern "C" UINT32 _HXAtomicAddRetUINT32(UINT32* pNum, UINT32 ulNum);
  118. //
  119. // Inputs:
  120. //   Paramaters:
  121. //     in0 :  UINT32* pNum  - pointer to integer to modify
  122. //     in1 :  UINT32  ulNum - amount to increment by
  123. //
  124. // Outputs:
  125. //   Atomically modifies memory at *pNum:
  126. //     *pNum = *pNum + ulNum
  127. //
  128. //   Return value:
  129. //     r8 : UINT32 - new value of *pNum
  130. //
  131. //////////////////////////////////////////////////////////////////////
  132.         .proc   _HXAtomicAddRetUINT32
  133.         .global _HXAtomicAddRetUINT32
  134. _HXAtomicAddRetUINT32:
  135.         alloc           loc4 = ar.pfs, 2, 5, 0, 0 // two inputs, five locals
  136.         mov             loc3 = ar.ccv;;         //save the CCV register
  137. atomic_back1:                                   //
  138.         ld4             loc0 = [in0];;          //loc0 = current value of *pNum
  139.         mov             ar.ccv = loc0;;         //copy it to the CCV register
  140.         add             loc1 = loc0, in1;;      //compute new value
  141.         cmpxchg4.acq    r8 = [in0], loc1;;      //write new val if *pLock == CCV
  142.         cmp4.eq         p1, p2 = loc0, r8;;     //check success of cmpxchg4
  143.    (p2) br.cond.dpnt.few atomic_back1;;         //if p2=1 (it failed) try again
  144.         add             r8 = r8, in1;;          //update local copy of *pNum
  145.         mov             ar.ccv = loc3;;         //restore the CCV register
  146. br.ret.dptk.few rp;;                    //return new value of *pNum
  147.         .endp   _HXAtomicAddRetUINT32
  148. //////////////////////////////////////////////////////////////////////
  149. //
  150. // _HXAtomicSubRetUINT32
  151. //      Atomically subtract n and return new value
  152. //
  153. // Interface:
  154. //   extern "C" UINT32 _HXAtomicSubRetUINT32(UINT32* pNum, UINT32 ulNum);
  155. //
  156. // Inputs:
  157. //   Paramaters:
  158. //     in0 :  UINT32* pNum  - pointer to integer to modify
  159. //     in1 :  UINT32  ulNum - amount to increment by
  160. //
  161. // Outputs:
  162. //   Atomically modifies memory at *pNum:
  163. //     *pNum = *pNum + ulNum
  164. //
  165. //   Return value:
  166. //     r8 : UINT32 - new value of *pNum
  167. //
  168. //////////////////////////////////////////////////////////////////////
  169.         .proc   _HXAtomicSubRetUINT32
  170.         .global _HXAtomicSubRetUINT32
  171. _HXAtomicSubRetUINT32:
  172.         alloc           loc4 = ar.pfs, 2, 5, 0, 0 // two inputs, five locals
  173.         mov             loc3 = ar.ccv;;         //save the CCV register
  174. atomic_back2:                                   //
  175.         ld4             loc0 = [in0];;          //loc0 = current value of *pNum
  176.         mov             ar.ccv = loc0;;         //copy it to the CCV register
  177.         sub             loc1 = loc0, in1;;      //compute new value
  178.         cmpxchg4.acq    r8 = [in0], loc1;;      //write new val if *pLock == CCV
  179.         cmp4.eq         p1, p2 = loc0, r8;;     //check success of cmpxchg4
  180.    (p2) br.cond.dpnt.few atomic_back2;;         //if p2=1 (it failed) try again
  181.         sub             r8 = r8, in1;;          //update local copy of *pNum
  182.         mov             ar.ccv = loc3;;         //restore the CCV register
  183. br.ret.dptk.few rp;;                    //return new value of *pNum
  184.         .endp   _HXAtomicSubRetUINT32