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

Symbian

开发平台:

C/C++

  1. /* ***** BEGIN LICENSE BLOCK *****  
  2.  * Source last modified: $Id: atomicops64.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.  *  atomicops64.il
  39.  *
  40.  *  defines several atomic operations for Sun/SPARC (64-bit compiler mode)
  41.  *
  42.  *
  43.  ***********************************************************************
  44.  *
  45.  *  This is the Solaris inline-assembly version for use with Sun's
  46.  *  native compiler on SPARC processors.  See atomicbase.h for more
  47.  *  info and for the gcc implementaiton.
  48.  *
  49.  */
  50. /***********************************************************************
  51.  *
  52.  *  _HXAtomicAddRetUINT32 -- Atomically increment by n and return new value
  53.  *
  54.  *  Interface:
  55.  *    extern "C" UINT32 _HXAtomicAddRetUINT32(UINT32* pNum,     %o0
  56.  *                                            UINT32 ulNum);    %o1
  57.  *
  58.  *  Inputs:
  59.  *    Paramaters:
  60.  *      %o0 :  UINT32* pNum - pointer to integer to modify
  61.  *      %o1 :  UINT32 ulNum - amount to increment *pNum by
  62.  *
  63.  *  Outputs:
  64.  *    Modifies memory at *pNum:
  65.  *      *pNum = *pNum + ulNum
  66.  *
  67.  *    Return value:
  68.  *      %o0 :  UINT32 - new value of *pNum
  69.  *
  70.  * This is implemented using the SPARC leaf procedure optimization.
  71.  * This is implemented using CAS which is not available on older processors.
  72.  */ 
  73. .inline _HXAtomicAddRetUINT32,8
  74.     ld      [%o0], %o2          /* Set %o2 to *pNum */
  75. 1:  add     %o2, %o1, %o3       /* Set %o3 to *pNum + ulNum */
  76.     mov     %o3, %o4            /* Save new value for later */
  77.     cas     [%o0], %o2, %o3     /* Set *pNum if *pNum is unchanged */
  78.     cmp     %o2, %o3            /* Did we succeed in saving the value?*/
  79.     bne,a   1b                  /* Retry if we didn't. */
  80.     ld      [%o0], %o2          /* <<only executes if we branch>> */
  81.     mov     %o4, %o0            /* Save return value */
  82. .end
  83. /***********************************************************************
  84.  *
  85.  *  _HXAtomicSubRetUINT32 -- Atomically decrement by n and return new value
  86.  *
  87.  *  Interface:
  88.  *    extern "C" UINT32 _HXAtomicSubRetUINT32(UINT32* pNum,      %o0
  89.  *                                            UINT32 ulNum);     %o1
  90.  *
  91.  *  Inputs:
  92.  *    Paramaters:
  93.  *      %o0 :  UINT32* pNum - pointer to integer to modify
  94.  *      %o1 :  UINT32 ulNum - amount to decrement *pNum by
  95.  *
  96.  *  Outputs:
  97.  *    Modifies memory at *pNum:
  98.  *      *pNum = *pNum - ulNum
  99.  *
  100.  *    Return value:
  101.  *      %o0 :  UINT32 - new value of *pNum
  102.  *
  103.  *  This is implemented using the SPARC leaf procedure optimization.
  104.  *  This is implemented using CAS which is not available on older processors.
  105.  */ 
  106. .inline _HXAtomicSubRetUINT32,8
  107.     ld      [%o0], %o2          /* Set %o2 to *pNum */
  108. 1:  sub     %o2, %o1, %o3       /* Set %o3 to *pNum - ulNum */
  109.     mov     %o3, %o4            /* Save new value for later */
  110.     cas     [%o0], %o2, %o3     /* Set *pNum if *pNum is unchanged */
  111.     cmp     %o2, %o3            /* Did we succeed in saving the value?*/
  112.     bne,a   1b                  /* Retry if we didn't. */
  113.     ld      [%o0], %o2          /* <<only executes if we branch>> */
  114.     mov     %o4, %o0            /* Save return value */
  115. .end