spin.s
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:4k
源码类别:

Symbian

开发平台:

C/C++

  1. ; ***** BEGIN LICENSE BLOCK *****  
  2. ; Source last modified: $Id: spin.s,v 1.1 2003/05/22 00:18:41 dcollins Exp $ 
  3. ;   
  4. ; Portions Copyright (c) 1995-2003 RealNetworks, Inc. All Rights Reserved.  
  5. ;       
  6. ; The contents of this file, and the files included with this file, 
  7. ; are subject to the current version of the RealNetworks Public 
  8. ; Source License (the "RPSL") available at 
  9. ; http://www.helixcommunity.org/content/rpsl unless you have licensed 
  10. ; the file under the current version of the RealNetworks Community 
  11. ; Source License (the "RCSL") available at 
  12. ; http://www.helixcommunity.org/content/rcsl, in which case the RCSL 
  13. ; will apply. You may also obtain the license terms directly from 
  14. ; RealNetworks.  You may not use this file except in compliance with 
  15. ; the RPSL or, if you have a valid RCSL with RealNetworks applicable 
  16. ; to this file, the RCSL.  Please see the applicable RPSL or RCSL for 
  17. ; the rights, obligations and limitations governing use of the 
  18. ; contents of the file. 
  19. ;   
  20. ; This file is part of the Helix DNA Technology. RealNetworks is the 
  21. ; developer of the Original Code and owns the copyrights in the 
  22. ; portions it created. 
  23. ;   
  24. ; This file, and the files included with this file, is distributed 
  25. ; and made available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY 
  26. ; KIND, EITHER EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS 
  27. ; ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES 
  28. ; OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET 
  29. ; ENJOYMENT OR NON-INFRINGEMENT. 
  30. ;  
  31. ; Technology Compatibility Kit Test Suite(s) Location:  
  32. ;    http://www.helixcommunity.org/content/tck  
  33. ;  
  34. ; Contributor(s):  
  35. ;   
  36. ; ***** END LICENSE BLOCK *****  
  37. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  38. ;
  39. ;
  40. ;  spin.s:  Example assembly language routine for spinlock support.
  41. ;
  42. ;
  43. ; XXXDC -- Since the caller has aligned the pointer I simplified this
  44. ; routine by eliminating this code.  The pointer must be 16-byte aligned
  45. ; for a 32-bit environment.
  46. ;
  47. ; Also, couldn't we eliminate the nop's?  This is only needed for
  48. ; old hardware.
  49. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  50.     .code
  51. ;   .level 2.0W                 ; use this option for 64-bit assembly
  52.     .export load_and_clear,entry,priv_lev=3,rtnval=gr
  53.     .proc
  54. load_and_clear
  55.     .callinfo no_calls
  56.     .enter
  57. ; create a 16 byte aligned pointer to the load+clear word area
  58.     addi        15,%arg0,%arg2  ; add 15 to pointer provided to round up
  59. ; Choose one of these statements and comment out the other:
  60.     depi        0,31,4,%arg2    ; mask off the lower 4 bits (32-bit version)
  61. ;;   depdi       0,63,4,%arg2    ; mask off the lower 4 bits (64-bit version)
  62. ; load and clear the spinlock.  If locked, return 0
  63.     stbys,e     0,(%arg2)       ; scrub cache; important for performance
  64.     ldcws       (%arg2),%ret0   ; load and clear the spinlock word
  65.     nop                         ; 3 No-Op instructions; needed for older
  66.     nop                         ; HP-PA chips
  67.     nop
  68.     bv,n        (%r2)
  69.     .leave
  70.     .procend
  71. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  72. ;;OLD OLD OLD 
  73. ;;
  74. ; create a 16 byte aligned pointer to the load+clear word area
  75. ;    addi        15,%arg0,%arg2  ; add 15 to pointer provided to round up
  76. ;
  77. ; Choose one of these statements and comment out the other:
  78. ;    depi        0,31,4,%arg2    ; mask off the lower 4 bits (32-bit version)
  79. ;;   depdi       0,63,4,%arg2    ; mask off the lower 4 bits (64-bit version)
  80. ;
  81. ; load and clear the spinlock.  If locked, return 0
  82. ;    stbys,e     0,(%arg2)       ; scrub cache; important for performance
  83. ;    ldcws       (%arg2),%ret0   ; load and clear the spinlock word
  84. ;    nop                         ; 3 No-Op instructions; needed for older
  85. ;    nop                         ; HP-PA chips
  86. ;    nop
  87. ;    bv,n        (%r2)
  88. ;    .leave
  89. ;    .procend
  90. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;