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

Symbian

开发平台:

C/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.  * timing.c - implementations of CPU timing functions
  41.  **************************************************************************************/
  42. #include "timing.h"
  43. /* NOTES: 
  44.  * - for armulator (ARM_ADS) use -clock 100 (100 Hz system clock) for accurate
  45.  *     timing since CLOCKS_PER_SEC = 100 (this only works for zero wait-state
  46.  *     memory unless you adjust memory timings accordingly)
  47.  * - other option for armulator is to simulate accurate hardware timers (see below)
  48.  */
  49. #if (defined (_WIN32) && !defined (_WIN32_WCE)) || defined (ARM_ADS) || (defined (__GNUC__) && defined (ARM))
  50. #include <time.h>
  51. int InitTimer(void)
  52. {
  53.     return 0;
  54. }
  55. UINT ReadTimer(void)
  56. {
  57.     return clock();
  58. }
  59. int FreeTimer(void)
  60. {
  61.     return 0;
  62. }
  63. UINT GetClockFrequency(void)
  64. {
  65.     return CLOCKS_PER_SEC;
  66. }
  67. UINT GetClockDivFactor(void)
  68. {
  69.     return 1;
  70. }
  71. UINT CalcTimeDifference(UINT startTime, UINT endTime)
  72. {
  73.     /* timer counts up on x86, 32-bit counter */
  74.     if (endTime < startTime)
  75. return (0x7fffffff - (startTime - endTime) );
  76.     else
  77. return (endTime - startTime);
  78. }
  79. #elif defined (_WIN32) && defined (_WIN32_WCE)
  80. #include <windows.h>
  81. int InitTimer(void)
  82. {
  83.     return 0;
  84. }
  85. UINT ReadTimer(void)
  86. {
  87.     return GetTickCount();
  88. }
  89. int FreeTimer(void)
  90. {
  91.     return 0;
  92. }
  93. UINT GetClockFrequency(void)
  94. {
  95.     return 1000;
  96. }
  97. UINT GetClockDivFactor(void)
  98. {
  99.     return 1;
  100. }
  101. UINT CalcTimeDifference(UINT startTime, UINT endTime)
  102. {
  103.     /* timer counts up on x86, 32-bit counter */
  104.     if (endTime < startTime)
  105. return (0x7fffffff - (startTime - endTime) );
  106.     else
  107. return (endTime - startTime);
  108. }
  109. #elif 0 /* if defined ARM_ADS - this uses simulated high-res hardware timers */
  110. /* see definitions in ADSv1_2/bin/peripherals.ami */
  111. #define TIMER_BASE 0x0a800000
  112. #define TIMER_VALUE_1 (TIMER_BASE + 0x04)
  113. #define TIMER_CONTROL_1 (TIMER_BASE + 0x08)
  114. int InitTimer(void)
  115. {
  116. volatile unsigned int *timerControl1 = (volatile unsigned int *)TIMER_CONTROL_1;
  117. unsigned int control1;
  118. /* see ARMulator Reference, pg 4-78 
  119.  * bits [3:2] = clock divisor factor (00 = 1, 01 = 16, 10 = 256, 11 = undef)
  120.  * bit  [6]   = free-running mode (0) or periodic mode (1)
  121.  * bit  [7]   = timer disabled (0) or enabled (1)
  122.  */
  123. control1 = 0x00000088;
  124. *timerControl1 = control1;
  125. return 0;
  126. }
  127. UINT ReadTimer(void)
  128. {
  129. volatile unsigned int *timerValue1 = (volatile unsigned int *)TIMER_VALUE_1;
  130. unsigned int value;
  131. value = *timerValue1 & 0x0000ffff;
  132. return (UINT)value;
  133. }
  134. int FreeTimer(void)
  135. {
  136.     return 0;
  137. }
  138. UINT GetClockFrequency(void)
  139. {
  140.     return 0;
  141. }
  142. UINT GetClockDivFactor(void)
  143. {
  144.     return 256;
  145. }
  146. UINT CalcTimeDifference(UINT startTime, UINT endTime)
  147. {
  148.     /* timer counts down int ARMulator, 16-bit counter */
  149.     if (endTime > startTime)
  150. return (startTime + 0x00010000 - endTime);
  151.     else
  152. return (startTime - endTime);
  153. }
  154. #endif