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

Symbian

开发平台:

Visual C++

  1. ; ***** BEGIN LICENSE BLOCK *****
  2. ; Source last modified: $Id: atomicops.s,v 1.1.32.3 2004/07/09 01:47:15 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 - AIX/PowerPC atomic add and subtract
  44. #######################################################################
  45. #
  46. # Notes:
  47. #
  48. # XXXDC: Uses lwarx/stwcx to achieve a fast atomic update, only available
  49. # on PPC or later, so you need to compile everything with -Wa,-m,ppc.
  50. #
  51. # Calling convention is arg1 is in GPR3, arg2 is in GPR4, etc.
  52. # Return value is placed in GPR3 prior to returning.
  53. #
  54. # Used by common/pub/atomicbase.h
  55. #
  56. #######################################################################
  57. # define registers to use
  58. .set r3,3
  59. .set r4,4
  60. .set r5,5
  61. #######################################################################
  62. #
  63. # Interface:
  64. #   INT32 _HXAtomicAddRetINT32(INT32* pNum, INT32 nNum);
  65. #
  66. # Inputs:
  67. #   Paramaters:
  68. #     GPR3 :  INT32* pNum - pointer to integer to modify
  69. #     GPR4 :  INT32  nNum - amount to increment by
  70. #
  71. # Outputs:
  72. #   Modifies memory at *pNum:
  73. #     *pNum = *pNum + nNum
  74. #
  75. #   Return value:
  76. #     GPR3 :  INT32 - new value of *pNum
  77. .globl ._HXAtomicAddRetINT32
  78. ._HXAtomicAddRetINT32:
  79.                 lwarx   r5,0,r3    # Load r5 w/ *pNum, set reserve flag
  80.                 addc    r5,r4,r5   # add GPR4 to r5
  81.                 stwcx.  r5,0,r3    # Store r5 in *pNum if flag still set
  82.                 bne-    ._HXAtomicAddRetINT32 # retry if store failed
  83.                 addi    r3,r5,0    # Save return value in r3
  84.                 br                 # return from routine
  85. #######################################################################
  86. #
  87. # Interface:
  88. #   INT32 _HXAtomicSubRetINT32(INT32* pNum, INT32 nNum);
  89. #
  90. # Inputs:
  91. #   Paramaters:
  92. #     GPR3 :  INT32* pNum - pointer to integer to modify
  93. #     GPR4 :  INT32  nNum - amount to decrement by
  94. #
  95. # Outputs:
  96. #   Modifies memory at *pNum:
  97. #     *pNum = *pNum + nNum
  98. #
  99. #   Return value:
  100. #     GPR3 :  INT32 - new value of *pNum
  101. .globl ._HXAtomicSubRetINT32
  102. ._HXAtomicSubRetINT32:
  103.                 lwarx   r5,0,r3    # Load r5 w/ *pNum, set reserve flag
  104.                 subf    r5,r4,r5   # subtract GPR4 from r5
  105.                 stwcx.  r5,0,r3    # Store r5 in *pNum if flag still set
  106.                 bne-    ._HXAtomicSubRetINT32 # retry if store failed
  107.                 addi    r3,r5,0    # Save return value in r3
  108.                 br                 # return from routine
  109. #######################################################################
  110. #
  111. # Interface:
  112. #   UINT32 HXAtomicAddRetUINT32(UINT32* pNum, UINT32 nNum);
  113. #
  114. # Inputs:
  115. #   Paramaters:
  116. #     GPR3 :  UINT32* pNum - pointer to integer to modify
  117. #     GPR4 :  UINT32  nNum - amount to increment by
  118. #
  119. # Outputs:
  120. #   Modifies memory at *pNum:
  121. #     *pNum = *pNum + nNum
  122. #
  123. #   Return value:
  124. #     GPR3 :  UINT32 - new value of *pNum
  125. .globl ._HXAtomicAddRetUINT32
  126. ._HXAtomicAddRetUINT32:
  127.                 lwarx   r5,0,r3    # Load r5 w/ *pNum, set reserve flag
  128.                 addc    r5,r4,r5   # add GPR4 to r5
  129.                 stwcx.  r5,0,r3    # Store r5 in *pNum if flag still set
  130.                 bne-    ._HXAtomicAddRetUINT32 # retry if store failed
  131.                 addi    r3,r5,0    # Save return value in r3
  132.                 br                 # return from routine
  133. #######################################################################
  134. #
  135. # Interface:
  136. #   UINT32 HXAtomicSubRetUINT32(UINT32* pNum, UINT32 nNum);
  137. #
  138. # Inputs:
  139. #   Paramaters:
  140. #     GPR3 :  UINT32* pNum - pointer to integer to modify
  141. #     GPR4 :  UINT32  nNum - amount to decrement by
  142. #
  143. # Outputs:
  144. #   Modifies memory at *pNum:
  145. #     *pNum = *pNum + nNum
  146. #
  147. #   Return value:
  148. #     GPR3 :  UINT32 - new value of *pNum
  149. .globl ._HXAtomicSubRetUINT32
  150. ._HXAtomicSubRetUINT32:
  151.                 lwarx   r5,0,r3    # Load r5 w/ *pNum, set reserve flag
  152.                 subf    r5,r4,r5   # subtract GPR4 from r5
  153.                 stwcx.  r5,0,r3    # Store r5 in *pNum if flag still set
  154.                 bne-    ._HXAtomicSubRetUINT32 # retry if store failed
  155.                 addi    r3,r5,0    # Save return value in r3
  156.                 br                 # return from routine
  157. #######################################################################