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

Symbian

开发平台:

C/C++

  1. /* ***** BEGIN LICENSE BLOCK *****  
  2.  * Source last modified: $Id: mutex_setbit.il,v 1.1 2003/10/30 18:37:01 nhart 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.  *  mutex_setbit.il
  39.  *
  40.  *  Solaris/SPARC inline assembly mutex routines used by mutex.h
  41.  *
  42.  *  Note: These are implemented using the standard SPARC leaf procedure
  43.  *  optimization, so the %o "output" registers are acutally our input and
  44.  *  local registers.
  45.  *
  46.  */
  47. /***********************************************************************
  48.  * extern "C" int _HXMutexSetBitCAS(HX_MUTEX pLock)             %i0
  49.  *
  50.  * Test-and-Set primitive op based on CAS.
  51.  *
  52.  * This implementation is based on an example from The SPARC Architecture 
  53.  * Manual V9, pg. 318.
  54.  * This is implemented using the SPARC leaf procedure optimization.
  55.  * This is implemented using CAS which is not available on older processors.
  56.  */
  57. .inline _HXMutexSetBitCAS,4     /* one 32-bit arg == 4 bytes */
  58.     mov 1,%o1
  59.     cas [%o0],%g0,%o1
  60.     mov %o1,%o0
  61.     membar #LoadLoad | #LoadStore
  62. .end
  63. /***********************************************************************
  64.  * extern "C" int _HXMutexLockImp(HX_MUTEX pLock)                %i0
  65.  *
  66.  * Note: This is implemented using the standard SPARC leaf procedure
  67.  * optimization, so the %o "output" registers are acutally our
  68.  * input and local registers.
  69.  *
  70.  * Note: this implementation is based on an example from
  71.  * The SPARC Architecture Manual V9, pg. 318.
  72.  */
  73. .inline _HXMutexClearBit,4      /* one 32-bit arg == 4 bytes */
  74.     membar #StoreStore
  75.     membar #LoadStore
  76.     stw  %g0,[%o0]
  77. .end
  78. /***********************************************************************
  79.  * extern "C" int _HXMutexSetBitSWAP(HX_MUTEX pLock)            %i0
  80.  *
  81.  * Test-and-Set primitive op based on SWAP.
  82.  * This is the old, less scalable SWAP-based test-and-test lock.
  83.  *
  84.  * This is implemented using the SPARC leaf procedure optimization.
  85.  *
  86.  * THIS IS CURRENTLY UNUSED!  USE _HXMutexSetBitCAS!
  87.  */
  88. .inline _HXMutexSetBitSWAP,4    /* one 32-bit arg == 4 bytes */
  89.     mov  %o0,%o2
  90.     mov  1,%o0
  91.     swap [%o2],%o0
  92. .end