GNU Radio 3.3.0 C++ API
atomic_dec_if_positive.h
Go to the documentation of this file.
00001 /* --------------------------------------------------------------  */
00002 /* (C)Copyright 2001,2007,                                         */
00003 /* International Business Machines Corporation,                    */
00004 /* Sony Computer Entertainment, Incorporated,                      */
00005 /* Toshiba Corporation,                                            */
00006 /*                                                                 */
00007 /* All Rights Reserved.                                            */
00008 /*                                                                 */
00009 /* Redistribution and use in source and binary forms, with or      */
00010 /* without modification, are permitted provided that the           */
00011 /* following conditions are met:                                   */
00012 /*                                                                 */
00013 /* - Redistributions of source code must retain the above copyright*/
00014 /*   notice, this list of conditions and the following disclaimer. */
00015 /*                                                                 */
00016 /* - Redistributions in binary form must reproduce the above       */
00017 /*   copyright notice, this list of conditions and the following   */
00018 /*   disclaimer in the documentation and/or other materials        */
00019 /*   provided with the distribution.                               */
00020 /*                                                                 */
00021 /* - Neither the name of IBM Corporation nor the names of its      */
00022 /*   contributors may be used to endorse or promote products       */
00023 /*   derived from this software without specific prior written     */
00024 /*   permission.                                                   */
00025 /*                                                                 */
00026 /* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND          */
00027 /* CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,     */
00028 /* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF        */
00029 /* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE        */
00030 /* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR            */
00031 /* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,    */
00032 /* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT    */
00033 /* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;    */
00034 /* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)        */
00035 /* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN       */
00036 /* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR    */
00037 /* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,  */
00038 /* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.              */
00039 /* --------------------------------------------------------------  */
00040 /* PROLOG END TAG zYx                                              */
00041 #ifndef _SPU_ATOMIC_DEC_IF_POSITIVE_H_
00042 #define _SPU_ATOMIC_DEC_IF_POSITIVE_H_
00043 
00044 #include <sync_utils.h>
00045 #include <atomic.h>
00046 
00047 /**
00048  * atomic_dec_if_positive - atomically decrement if counter is positive.
00049  * @v: handle to effective address of counter.
00050  * 
00051  * Atomically decrement a counter if its value is positive.
00052  * The only restriction is that @v must be word aligned.
00053  *
00054 *
00055  * Returns the old value of the counter, minus 1.
00056  */
00057 static __inline int _atomic_dec_if_positive(atomic_ea_t v)
00058 {
00059     DECL_ATOMIC_VARS();
00060     s32 status;
00061 
00062     ea64.ull = ALIGN128_EA(v);
00063     offset = OFFSET128_EA_U32(v);
00064     do {
00065         MFC_DMA(buf, ea64, size, tagid, MFC_GETLLAR_CMD);
00066         spu_readch(MFC_RdAtomicStat);
00067 
00068         ret_val = buf[offset] - 1;
00069         if (likely(ret_val >= 0)) {
00070             buf[offset] = ret_val;
00071             MFC_DMA(buf, ea64, size, tagid, MFC_PUTLLC_CMD);
00072             status = spu_readch(MFC_RdAtomicStat);
00073         } else {
00074             MFC_DMA(buf, ea64, size, tagid, MFC_PUTLLC_CMD);
00075             spu_readch(MFC_RdAtomicStat);
00076             status = 0;
00077             break;
00078         }
00079     } while (status != 0);
00080 
00081     return ret_val;
00082 }
00083 
00084 
00085 
00086 #endif /* _SPU_ATOMIC_DEC_IF_POSITIVE_H_ */