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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK ***** 
  2.  * Version: RCSL 1.0/RPSL 1.0 
  3.  *  
  4.  * Portions Copyright (c) 1995-2002 RealNetworks, Inc. All Rights Reserved. 
  5.  *      
  6.  * The contents of this file, and the files included with this file, are 
  7.  * subject to the current version of the RealNetworks Public Source License 
  8.  * Version 1.0 (the "RPSL") available at 
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed 
  10.  * the file under the RealNetworks Community Source License Version 1.0 
  11.  * (the "RCSL") available at http://www.helixcommunity.org/content/rcsl, 
  12.  * in which case the RCSL will apply. You may also obtain the license terms 
  13.  * directly from RealNetworks.  You may not use this file except in 
  14.  * compliance with the RPSL or, if you have a valid RCSL with RealNetworks 
  15.  * applicable to this file, the RCSL.  Please see the applicable RPSL or 
  16.  * RCSL for the rights, obligations and limitations governing use of the 
  17.  * contents of the file.  
  18.  *  
  19.  * This file is part of the Helix DNA Technology. RealNetworks is the 
  20.  * developer of the Original Code and owns the copyrights in the portions 
  21.  * it created. 
  22.  *  
  23.  * This file, and the files included with this file, is distributed and made 
  24.  * available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 
  25.  * EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES, 
  26.  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS 
  27.  * FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 
  28.  * 
  29.  * Technology Compatibility Kit Test Suite(s) Location: 
  30.  *    http://www.helixcommunity.org/content/tck 
  31.  * 
  32.  * Contributor(s): 
  33.  *  
  34.  * ***** END LICENSE BLOCK ***** */ 
  35. /**************************************************************************************
  36.  * Fixed-point MP3 decoder
  37.  * Jon Recker (jrecker@real.com), Ken Cooke (kenc@real.com)
  38.  * June 2003
  39.  *
  40.  * assembly.h - assembly language functions and prototypes for supported platforms
  41.  *
  42.  * - inline rountines with access to 64-bit multiply results 
  43.  * - x86 (_WIN32) and ARM (ARM_ADS, _WIN32_WCE) versions included
  44.  * - some inline functions are mix of asm and C for speed
  45.  * - some functions are in native asm files, so only the prototype is given here
  46.  *
  47.  * MULSHIFT32(x, y)    signed multiply of two 32-bit integers (x and y), returns top 32 bits of 64-bit result
  48.  * FASTABS(x)          branchless absolute value of signed integer x
  49.  * CLZ(x)              count leading zeros in x
  50.  * MADD64(sum, x, y)   (Windows only) sum [64-bit] += x [32-bit] * y [32-bit]
  51.  * SHL64(sum, x, y)    (Windows only) 64-bit left shift using __int64
  52.  * SAR64(sum, x, y)    (Windows only) 64-bit right shift using __int64
  53.  */
  54. #ifndef _ASSEMBLY_H
  55. #define _ASSEMBLY_H
  56. #if (defined _WIN32 && !defined _WIN32_WCE) || (defined __WINS__ && defined _SYMBIAN) || defined(_OPENWAVE_SIMULATOR) || defined(WINCE_EMULATOR)    /* Symbian emulator for Ix86 */
  57. #pragma warning( disable : 4035 ) /* complains about inline asm not returning a value */
  58. static __inline int MULSHIFT32(int x, int y)
  59. {
  60.     __asm {
  61. mov eax, x
  62.     imul y
  63.     mov eax, edx
  64. }
  65. }
  66. static __inline int FASTABS(int x) 
  67. {
  68. int sign;
  69. sign = x >> (sizeof(int) * 8 - 1);
  70. x ^= sign;
  71. x -= sign;
  72. return x;
  73. }
  74. static __inline int CLZ(int x)
  75. {
  76. int numZeros;
  77. if (!x)
  78. return (sizeof(int) * 8);
  79. numZeros = 0;
  80. while (!(x & 0x80000000)) {
  81. numZeros++;
  82. x <<= 1;
  83. return numZeros;
  84. }
  85. /* MADD64, SHL64, SAR64:
  86.  * write in assembly to avoid dependency on run-time lib for 64-bit shifts, muls
  87.  *  (sometimes compiler thunks to function calls instead of code generating)
  88.  * required for Symbian emulator
  89.  */
  90. static __inline __int64 MADD64(__int64 sum, int x, int y)
  91. {
  92. unsigned int sumLo = ((unsigned int *)&sum)[0];
  93. int sumHi = ((int *)&sum)[1];
  94. __asm {
  95. mov eax, x
  96. imul y
  97. add eax, sumLo
  98. adc edx, sumHi
  99. }
  100. /* equivalent to return (sum + ((__int64)x * y)); */
  101. }
  102. static __inline __int64 SHL64(__int64 x, int n)
  103. {
  104. unsigned int xLo = ((unsigned int *)&x)[0];
  105. int xHi = ((int *)&x)[1];
  106. unsigned char nb = (unsigned char)n;
  107. if (n < 32) {
  108. __asm {
  109. mov edx, xHi
  110. mov eax, xLo
  111. mov cl, nb
  112. shld    edx, eax, cl
  113. shl     eax, cl
  114. }
  115. } else if (n < 64) {
  116. /* shl masks cl to 0x1f */
  117. __asm {
  118. mov edx, xLo
  119. mov cl, nb
  120. xor     eax, eax
  121. shl     edx, cl
  122. }
  123. } else {
  124. __asm {
  125. xor edx, edx
  126. xor eax, eax
  127. }
  128. }
  129. }
  130. static __inline __int64 SAR64(__int64 x, int n)
  131. {
  132. unsigned int xLo = ((unsigned int *)&x)[0];
  133. int xHi = ((int *)&x)[1];
  134. unsigned char nb = (unsigned char)n;
  135. if (n < 32) {
  136. __asm {
  137. mov edx, xHi
  138. mov eax, xLo
  139. mov cl, nb
  140. shrd eax, edx, cl
  141. sar edx, cl
  142. }
  143. } else if (n < 64) {
  144. /* sar masks cl to 0x1f */
  145. __asm {
  146. mov edx, xHi
  147. mov eax, xHi
  148. mov cl, nb
  149. sar edx, 31
  150. sar eax, cl
  151. }
  152. } else {
  153. __asm {
  154. sar xHi, 31
  155. mov eax, xHi
  156. mov edx, xHi
  157. }
  158. }
  159. }
  160. #elif (defined _WIN32) && (defined _WIN32_WCE)
  161. /* use asm function for now (EVC++ 3.0 does horrible job compiling __int64 version) */
  162. #define MULSHIFT32 xmp3_MULSHIFT32
  163. int MULSHIFT32(int x, int y);
  164. static __inline int FASTABS(int x) 
  165. {
  166. int sign;
  167. sign = x >> (sizeof(int) * 8 - 1);
  168. x ^= sign;
  169. x -= sign;
  170. return x;
  171. }
  172. static __inline int CLZ(int x)
  173. {
  174. int numZeros;
  175. if (!x)
  176. return (sizeof(int) * 8);
  177. numZeros = 0;
  178. while (!(x & 0x80000000)) {
  179. numZeros++;
  180. x <<= 1;
  181. return numZeros;
  182. }
  183. #elif defined ARM_ADS
  184. static __inline int MULSHIFT32(int x, int y)
  185. {
  186.     /* important rules for smull RdLo, RdHi, Rm, Rs:
  187.      *     RdHi and Rm can't be the same register
  188.      *     RdLo and Rm can't be the same register
  189.      *     RdHi and RdLo can't be the same register
  190.      * Note: Rs determines early termination (leading sign bits) so if you want to specify
  191.      *   which operand is Rs, put it in the SECOND argument (y)
  192.  * For inline assembly, x and y are not assumed to be R0, R1 so it shouldn't matter
  193.  *   which one is returned. (If this were a function call, returning y (R1) would 
  194.  *   require an extra "mov r0, r1")
  195.      */
  196.     int zlow;
  197.     __asm {
  198.      smull zlow,y,x,y
  199.     }
  200.     return y;
  201. }
  202. static __inline int FASTABS(int x) 
  203. {
  204. int t;
  205. __asm {
  206. eor t, x, x, asr #31
  207. sub t, t, x, asr #31
  208. }
  209. return t;
  210. }
  211. static __inline int CLZ(int x)
  212. {
  213. int numZeros;
  214. if (!x)
  215. return (sizeof(int) * 8);
  216. numZeros = 0;
  217. while (!(x & 0x80000000)) {
  218. numZeros++;
  219. x <<= 1;
  220. return numZeros;
  221. }
  222. #elif defined(__GNUC__) && defined(ARM)
  223. static __inline int MULSHIFT32(int x, int y)
  224. {
  225.     /* important rules for smull RdLo, RdHi, Rm, Rs:
  226.      *     RdHi and Rm can't be the same register
  227.      *     RdLo and Rm can't be the same register
  228.      *     RdHi and RdLo can't be the same register
  229.      * Note: Rs determines early termination (leading sign bits) so if you want to specify
  230.      *   which operand is Rs, put it in the SECOND argument (y)
  231.  * For inline assembly, x and y are not assumed to be R0, R1 so it shouldn't matter
  232.  *   which one is returned. (If this were a function call, returning y (R1) would 
  233.  *   require an extra "mov r0, r1")
  234.      */
  235.     int zlow;
  236.     __asm__ volatile ("smull %0,%1,%2,%3" : "=&r" (zlow), "=r" (y) : "r" (x), "1" (y)) ;
  237.     return y;
  238. }
  239. static __inline int FASTABS(int x) 
  240. {
  241. int t;
  242. __asm__ volatile (
  243. "eor %0,%2,%2, asr #31;"
  244. "sub %0,%1,%2, asr #31;"
  245. : "=&r" (t) 
  246. : "0" (t), "r" (x)
  247.  );
  248. return t;
  249. }
  250. static __inline int CLZ(int x)
  251. {
  252. int numZeros;
  253. if (!x)
  254. return (sizeof(int) * 8);
  255. numZeros = 0;
  256. while (!(x & 0x80000000)) {
  257. numZeros++;
  258. x <<= 1;
  259. return numZeros;
  260. }
  261. #else
  262. #error Unsupported platform in assembly.h
  263. #endif /* platforms */
  264. #endif /* _ASSEMBLY_H */