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

Symbian

开发平台:

Visual C++

  1. ; ***** BEGIN LICENSE BLOCK *****
  2. ; Source last modified: $Id: spin.s,v 1.1.32.3 2004/07/09 01:47:21 hubbe Exp $
  3. ; Portions Copyright (c) 1995-2004 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. ;
  44. ;  spin.s:  Example assembly language routine for spinlock support.
  45. ;
  46. ;
  47. ; XXXDC -- Since the caller has aligned the pointer I simplified this
  48. ; routine by eliminating this code.  The pointer must be 16-byte aligned
  49. ; for a 32-bit environment.
  50. ;
  51. ; Also, couldn't we eliminate the nop's?  This is only needed for
  52. ; old hardware.
  53. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  54.     .code
  55. ;   .level 2.0W                 ; use this option for 64-bit assembly
  56.     .export load_and_clear,entry,priv_lev=3,rtnval=gr
  57.     .proc
  58. load_and_clear
  59.     .callinfo no_calls
  60.     .enter
  61. ; create a 16 byte aligned pointer to the load+clear word area
  62.     addi        15,%arg0,%arg2  ; add 15 to pointer provided to round up
  63. ; Choose one of these statements and comment out the other:
  64.     depi        0,31,4,%arg2    ; mask off the lower 4 bits (32-bit version)
  65. ;;   depdi       0,63,4,%arg2    ; mask off the lower 4 bits (64-bit version)
  66. ; load and clear the spinlock.  If locked, return 0
  67.     stbys,e     0,(%arg2)       ; scrub cache; important for performance
  68.     ldcws       (%arg2),%ret0   ; load and clear the spinlock word
  69.     nop                         ; 3 No-Op instructions; needed for older
  70.     nop                         ; HP-PA chips
  71.     nop
  72.     bv,n        (%r2)
  73.     .leave
  74.     .procend
  75. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  76. ;;OLD OLD OLD 
  77. ;;
  78. ; create a 16 byte aligned pointer to the load+clear word area
  79. ;    addi        15,%arg0,%arg2  ; add 15 to pointer provided to round up
  80. ;
  81. ; Choose one of these statements and comment out the other:
  82. ;    depi        0,31,4,%arg2    ; mask off the lower 4 bits (32-bit version)
  83. ;;   depdi       0,63,4,%arg2    ; mask off the lower 4 bits (64-bit version)
  84. ;
  85. ; load and clear the spinlock.  If locked, return 0
  86. ;    stbys,e     0,(%arg2)       ; scrub cache; important for performance
  87. ;    ldcws       (%arg2),%ret0   ; load and clear the spinlock word
  88. ;    nop                         ; 3 No-Op instructions; needed for older
  89. ;    nop                         ; HP-PA chips
  90. ;    nop
  91. ;    bv,n        (%r2)
  92. ;    .leave
  93. ;    .procend
  94. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;