OslMemory.c
上传用户:lqx1163
上传日期:2014-08-13
资源大小:9183k
文件大小:19k
源码类别:

MTK

开发平台:

C/C++

  1. /*****************************************************************************
  2. *  Copyright Statement:
  3. *  --------------------
  4. *  This software is protected by Copyright and the information contained
  5. *  herein is confidential. The software may not be copied and the information
  6. *  contained herein may not be used or disclosed except with the written
  7. *  permission of MediaTek Inc. (C) 2005
  8. *
  9. *  BY OPENING THIS FILE, BUYER HEREBY UNEQUIVOCALLY ACKNOWLEDGES AND AGREES
  10. *  THAT THE SOFTWARE/FIRMWARE AND ITS DOCUMENTATIONS ("MEDIATEK SOFTWARE")
  11. *  RECEIVED FROM MEDIATEK AND/OR ITS REPRESENTATIVES ARE PROVIDED TO BUYER ON
  12. *  AN "AS-IS" BASIS ONLY. MEDIATEK EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES,
  13. *  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF
  14. *  MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NONINFRINGEMENT.
  15. *  NEITHER DOES MEDIATEK PROVIDE ANY WARRANTY WHATSOEVER WITH RESPECT TO THE
  16. *  SOFTWARE OF ANY THIRD PARTY WHICH MAY BE USED BY, INCORPORATED IN, OR
  17. *  SUPPLIED WITH THE MEDIATEK SOFTWARE, AND BUYER AGREES TO LOOK ONLY TO SUCH
  18. *  THIRD PARTY FOR ANY WARRANTY CLAIM RELATING THERETO. MEDIATEK SHALL ALSO
  19. *  NOT BE RESPONSIBLE FOR ANY MEDIATEK SOFTWARE RELEASES MADE TO BUYER'S
  20. *  SPECIFICATION OR TO CONFORM TO A PARTICULAR STANDARD OR OPEN FORUM.
  21. *
  22. *  BUYER'S SOLE AND EXCLUSIVE REMEDY AND MEDIATEK'S ENTIRE AND CUMULATIVE
  23. *  LIABILITY WITH RESPECT TO THE MEDIATEK SOFTWARE RELEASED HEREUNDER WILL BE,
  24. *  AT MEDIATEK'S OPTION, TO REVISE OR REPLACE THE MEDIATEK SOFTWARE AT ISSUE,
  25. *  OR REFUND ANY SOFTWARE LICENSE FEES OR SERVICE CHARGE PAID BY BUYER TO
  26. *  MEDIATEK FOR SUCH MEDIATEK SOFTWARE AT ISSUE. 
  27. *
  28. *  THE TRANSACTION CONTEMPLATED HEREUNDER SHALL BE CONSTRUED IN ACCORDANCE
  29. *  WITH THE LAWS OF THE STATE OF CALIFORNIA, USA, EXCLUDING ITS CONFLICT OF
  30. *  LAWS PRINCIPLES.  ANY DISPUTES, CONTROVERSIES OR CLAIMS ARISING THEREOF AND
  31. *  RELATED THERETO SHALL BE SETTLED BY ARBITRATION IN SAN FRANCISCO, CA, UNDER
  32. *  THE RULES OF THE INTERNATIONAL CHAMBER OF COMMERCE (ICC).
  33. *
  34. *****************************************************************************/
  35. /*******************************************************************************
  36.  * Filename:
  37.  * ---------
  38.  *  OslMemory.c
  39.  *
  40.  * Project:
  41.  * --------
  42.  *  MAUI
  43.  *
  44.  * Description:
  45.  * ------------
  46.  *  
  47.  *
  48.  * Author:
  49.  * -------
  50.  *  
  51.  *
  52.  *==============================================================================
  53.  *             HISTORY
  54.  * Below this line, this part is controlled by PVCS VM. DO NOT MODIFY!! 
  55.  *------------------------------------------------------------------------------
  56.  * removed!
  57.  *
  58.  * removed!
  59.  * removed!
  60.  * removed!
  61.  *
  62.  * removed!
  63.  * removed!
  64.  * removed!
  65.  *
  66.  *------------------------------------------------------------------------------
  67.  * Upper this line, this part is controlled by PVCS VM. DO NOT MODIFY!! 
  68.  *==============================================================================
  69.  *******************************************************************************/
  70. /**
  71.  * Copyright Notice
  72.  * ?2002 - 2003, Pixtel Communications, Inc., 1489 43rd Ave. W.,
  73.  * Vancouver, B.C. V6M 4K8 Canada. All Rights Reserved.
  74.  *  (It is illegal to remove this copyright notice from this software or any
  75.  *  portion of it)
  76.  */
  77. /**************************************************************
  78.    FILENAME : OslMemory.c
  79.    PURPOSE     : Memory Wrapper
  80.    REMARKS     : nil
  81.    AUTHOR      : Neeraj Sharma, Amit Kumar
  82.    DATE     : Jan' 21, 2003
  83. **************************************************************/
  84. /*  Include: MMI header file */
  85. #include    "oslmemory.h"
  86. #include    "DateTimeType.h"
  87. #include    "DateTimeGprot.h"
  88. #include    "PixtelDataTypes.h"
  89. #include    "StdC.h"
  90. #include    "DebugInitDef.h"
  91. #ifdef OSL_MEMORY_DUMP  /* if OSL_MEMORY_DUMP is not enabled then don't compile */
  92. #define BUFFER_POOLS 16
  93. #define MEMORY_LIST_LENGTH 50
  94. /*--------------------------------------------------------------------
  95. Data Structure Declerations
  96. -----------------------------------------------------------------------*/
  97. typedef struct oslmemalloc
  98. {   /* info */
  99.     S8 fileName[20];
  100.     S32 lineNumber;
  101.     S32 bytes;
  102.     void *ptr;
  103.     U8 isAllocated;
  104. } OSLMEMALLOC;
  105. S32 goslMemCount = 0;   /* Total Allocated heap mem */
  106. S32 MAX_BUFF = 0;
  107. S32 MaxDynamicMemUsed = 0;
  108. static OSLMEMALLOC memoryList[MEMORY_LIST_LENGTH];
  109. static U16 bufferCount[BUFFER_POOLS];
  110. static U8 memoryListCount = 0;
  111. static U8 MallocFirstTime = 1;
  112. /*--------------------------------------------------------------------
  113. Function Declerations
  114. -----------------------------------------------------------------------*/
  115. void *OslMallocCHK(long nob, char *fileName, int lineNumber, ...);
  116. void OslMfreeCHK(void *frp);
  117. void OslIntMemoryStart();
  118. void OslIntDumpDataInFile(void);
  119. long OslIntMemCounter(void);
  120. /*-------------------------------------------------------------------
  121. Function Name  :  ByteCounter
  122. Description    :  This inline function keeps track of heap memory 
  123.                allocations in bytes
  124. Input       :  Pointer
  125.                Flag : 1 to add no. of bytes
  126.                     -1 to delete no. of bytes
  127. Output         :  None
  128. --------------------------------------------------------------------*/
  129. /*****************************************************************************
  130.  * FUNCTION
  131.  *  ByteCounter
  132.  * DESCRIPTION
  133.  *  
  134.  * PARAMETERS
  135.  *  ptr         [?]         
  136.  *  flag        [IN]        
  137.  *  size        [IN]        
  138.  * RETURNS
  139.  *  void
  140.  *****************************************************************************/
  141. void ByteCounter(void *ptr, int flag, int size) /* -1 free, +1 alloc */
  142. {
  143.     /*----------------------------------------------------------------*/
  144.     /* Local Variables                                                */
  145.     /*----------------------------------------------------------------*/
  146.     /*----------------------------------------------------------------*/
  147.     /* Code Body                                                      */
  148.     /*----------------------------------------------------------------*/
  149.     goslMemCount += (long)(size * flag);
  150.     if (MaxDynamicMemUsed < goslMemCount)
  151.     {
  152.         MaxDynamicMemUsed = goslMemCount;
  153.     }
  154.     return;
  155. }
  156. /*-------------------------------------------------------------------
  157. Function Name  :  OslMallocCHK 
  158. Description    :  This function allocates memory and maintain the
  159.                link list info of file name and line number
  160. Input       :  no of bytes
  161.                file name
  162.                line number
  163. Output         :  void pointer               
  164. -------------------------------------------------------------------*/
  165. /*****************************************************************************
  166.  * FUNCTION
  167.  *  OslMallocCHK
  168.  * DESCRIPTION
  169.  *  
  170.  * PARAMETERS
  171.  *  nob             [IN]        
  172.  *  fileName        [?]         
  173.  *  lineNumber      [IN]        
  174.  * RETURNS
  175.  *  void
  176.  *****************************************************************************/
  177. void *OslMallocCHK(S32 nob, char *fileName, int lineNumber, ...)
  178. {
  179.     /*----------------------------------------------------------------*/
  180.     /* Local Variables                                                */
  181.     /*----------------------------------------------------------------*/
  182.     void *ptr = NULL;
  183.     U8 j, i;
  184.     S32 nob1;   /* =nob; */
  185.     void *ptrAct;
  186.     U16 maskingByte;
  187.     OSLMEMALLOC *memData;
  188.     /*----------------------------------------------------------------*/
  189.     /* Code Body                                                      */
  190.     /*----------------------------------------------------------------*/
  191.     if (MallocFirstTime)
  192.     {
  193.         OslIntMemoryStart();
  194.         MallocFirstTime = 0;
  195.     }
  196.     if (!nob)
  197.     {
  198.         return NULL;
  199.     }
  200.     if (nob < 8)
  201.     {
  202.         nob = 8;
  203.     }
  204.     nob1 = nob;
  205.     maskingByte = 1;
  206.     i = 0;
  207.     for (j = 0; j < 16; j++)
  208.     {
  209.         if (nob1 & maskingByte)
  210.         {
  211.             i++;
  212.         }
  213.         if (!(nob1 & 0xfffe))
  214.         {
  215.             break;
  216.         }
  217.         nob1 >>= 1;
  218.     }
  219.     if (i > 1)
  220.     {
  221.         nob1 = 1;
  222.         nob1 <<= ++j;
  223.     }
  224.     else
  225.     {
  226.         nob1 = nob;
  227.     }
  228.     bufferCount[j - 3]++;
  229. #ifdef MMI_ON_WIN32
  230.     ptrAct = (void*)malloc(nob1);
  231. #else 
  232.     ptrAct = (void*)get_ctrl_buffer(nob1);
  233. #endif 
  234.     if (memoryListCount < MEMORY_LIST_LENGTH)
  235.     {
  236.         for (j = 0; memoryList[j].isAllocated; j++);
  237.         memData = &memoryList[j];
  238.         memoryListCount++;
  239.         for (j = strlen(fileName); j > 1; j--)
  240.         {
  241.             if (fileName[j - 1] == '\')
  242.             {
  243.                 break;
  244.             }
  245.         }
  246.         memcpy(memData->fileName, &fileName[j], strlen(fileName) - j + 1);
  247.         /* strcpy(memData.fileName, (char *)fileName); */
  248.         memData->lineNumber = lineNumber;
  249.         memData->bytes = nob1;
  250.         memData->ptr = ptrAct;
  251.         memData->isAllocated = 1;
  252.         ByteCounter(ptr, 1, nob1);
  253.     }
  254.     else
  255.     {
  256.         PRINT_INFORMATION(("File size exceeded"));
  257.     }
  258.     if (MAX_BUFF < nob1)
  259.     {
  260.         MAX_BUFF = nob1;
  261.     }
  262.     return ptrAct;
  263. }
  264. /*-------------------------------------------------------------------
  265. Function Name  :  osl_Mfree
  266. Description    :  This osl_Mfree's the poinetr along with node from the link 
  267.                list if present.
  268. Input       :  Ponter to be freed
  269. Output         :  None
  270. -------------------------------------------------------------------*/
  271. /*****************************************************************************
  272.  * FUNCTION
  273.  *  OslMfreeCHK
  274.  * DESCRIPTION
  275.  *  
  276.  * PARAMETERS
  277.  *  frp     [?]     
  278.  * RETURNS
  279.  *  void
  280.  *****************************************************************************/
  281. void OslMfreeCHK(void *frp)
  282. {
  283.     /*----------------------------------------------------------------*/
  284.     /* Local Variables                                                */
  285.     /*----------------------------------------------------------------*/
  286.     U8 i = 0, j = 0, k = 0;
  287.     U16 maskingByte;
  288.     /*----------------------------------------------------------------*/
  289.     /* Code Body                                                      */
  290.     /*----------------------------------------------------------------*/
  291.     for (j = 0; memoryList[j].ptr != frp && j <= MEMORY_LIST_LENGTH; j++);
  292.     if (j != MEMORY_LIST_LENGTH)
  293.     {
  294.         maskingByte = 1;
  295.         for (i = 0; i < 16; i++)
  296.         {
  297.             if (memoryList[j].bytes & maskingByte)
  298.             {
  299.                 break;
  300.             }
  301.             maskingByte <<= 1;
  302.         }
  303.         if (i < 16)
  304.         {
  305.             bufferCount[i - 3]--;
  306.         }
  307.         ByteCounter(frp, -1, memoryList[j].bytes);
  308.         memset(&memoryList[j], 0, sizeof(OSLMEMALLOC));
  309.         memoryListCount--;
  310.     }
  311. #ifdef MMI_ON_WIN32
  312.     free(frp);
  313. #else 
  314.     free_ctrl_buffer(frp);
  315. #endif 
  316.     return;
  317. }
  318. /*-------------------------------------------------------------------
  319. Function Name  :  osl_MemoryCHK
  320. Description    :  This flag starts / stops building of the Memory 
  321.                link list
  322. Output         :  None
  323. -------------------------------------------------------------------*/
  324. /*****************************************************************************
  325.  * FUNCTION
  326.  *  OslIntMemoryStart
  327.  * DESCRIPTION
  328.  *  
  329.  * PARAMETERS
  330.  *  void
  331.  * RETURNS
  332.  *  void
  333.  *****************************************************************************/
  334. void OslIntMemoryStart()
  335. {
  336. #ifdef OSL_MEMORY_DUMP
  337.     /*----------------------------------------------------------------*/
  338.     /* Local Variables                                                */
  339.     /*----------------------------------------------------------------*/
  340.     /*----------------------------------------------------------------*/
  341.     /* Code Body                                                      */
  342.     /*----------------------------------------------------------------*/
  343.     memset(&memoryList, 0, sizeof(memoryList));
  344.     memset(&bufferCount, 0, sizeof(bufferCount));
  345.     memoryListCount = 0;
  346. #endif /* OSL_MEMORY_DUMP */ 
  347.     return;
  348. }
  349. /*-------------------------------------------------------------------
  350. Function Name  :  OslMemCounter
  351. Description    :  This flag starts / stops building of the Memory 
  352.                link list
  353. Input       :  TRUE : TO start Mem link list
  354.                FALSE : To stop Mem link list
  355. Output         :  None
  356. -------------------------------------------------------------------*/
  357. /*****************************************************************************
  358.  * FUNCTION
  359.  *  OslIntMemCounter
  360.  * DESCRIPTION
  361.  *  
  362.  * PARAMETERS
  363.  *  void
  364.  * RETURNS
  365.  *  
  366.  *****************************************************************************/
  367. long OslIntMemCounter()
  368. {
  369. #ifdef OSL_MEMORY_DUMP
  370.     /*----------------------------------------------------------------*/
  371.     /* Local Variables                                                */
  372.     /*----------------------------------------------------------------*/
  373.     /*----------------------------------------------------------------*/
  374.     /* Code Body                                                      */
  375.     /*----------------------------------------------------------------*/
  376.     return goslMemCount;
  377. #else /* OSL_MEMORY_DUMP */ 
  378.     return 0;
  379. #endif /* OSL_MEMORY_DUMP */ 
  380. }
  381. /*-------------------------------------------------------------------
  382. Function Name  :  OslDumpDataInFile
  383. Description    :  This Dumps memory link list data in the file 
  384.                C:oslMemoryDump
  385. Input       :  None
  386. Output         :  None
  387. -------------------------------------------------------------------*/
  388. /*****************************************************************************
  389.  * FUNCTION
  390.  *  OslIntDumpDataInFile
  391.  * DESCRIPTION
  392.  *  
  393.  * PARAMETERS
  394.  *  void
  395.  * RETURNS
  396.  *  void
  397.  *****************************************************************************/
  398. void OslIntDumpDataInFile()
  399. {
  400.     /*----------------------------------------------------------------*/
  401.     /* Local Variables                                                */
  402.     /*----------------------------------------------------------------*/
  403.     MYTIME t;
  404.     char fileName[128];
  405.     U8 i;
  406. #ifdef MMI_ON_WIN32
  407.     FILE *fp;
  408. #endif 
  409.     OSLMEMALLOC *ptr = NULL;
  410.     /*----------------------------------------------------------------*/
  411.     /* Code Body                                                      */
  412.     /*----------------------------------------------------------------*/
  413.     strcpy(fileName, "C:\oslMemoryDump.txt");
  414. #ifdef MMI_ON_WIN32
  415.     if ((fp = fopen(fileName, "a+")) == NULL)
  416.     {
  417.         return;
  418.     }
  419.     GetDateTime(&t);
  420.     fprintf(
  421.         fp,
  422.         "____________________________________________________________________________________________________________________________n");
  423.     fprintf(fp, "Memory Dump at time %d:%d:%d on %d-%d-%dn", t.nHour, t.nMin, t.nSec, t.nDay, t.nMonth, t.nYear);
  424.     fprintf(fp, "Maximum Buffer Allocated %ldn", MAX_BUFF);
  425.     fprintf(fp, "Maximum Dynamic Memory used %ldn", MaxDynamicMemUsed);
  426.     fprintf(fp, "Total Memory In Use %ldn", goslMemCount);
  427. #endif /* MMI_ON_WIN32 */ 
  428.     PRINT_INFORMATION(("____________________________________________________________________________________________________________________________"));
  429.     PRINT_INFORMATION(("Memory Dump at time %d:%d:%d on %d-%d-%d n n", t.nHour, t.nMin, t.nSec, t.nDay, t.nMonth,
  430.                        t.nYear));
  431.     PRINT_INFORMATION(("Maximum Buffer Allocated %ld", MAX_BUFF));
  432.     PRINT_INFORMATION(("Maximum Dynamic Memory used %ld", MaxDynamicMemUsed));
  433.     PRINT_INFORMATION(("Total Memory In Use %ld", goslMemCount));
  434.     for (i = 0; i < MEMORY_LIST_LENGTH; i++)
  435.     {
  436.         ptr = &memoryList[i];
  437.         if (!ptr->isAllocated)
  438.         {
  439.             continue;
  440.         }
  441.     #ifdef MMI_ON_WIN32
  442.         fprintf(fp, "File: [%s]        Line: [%d]        Size: [%d]n", ptr->fileName, ptr->lineNumber, ptr->bytes);
  443.     #endif 
  444.         PRINT_INFORMATION(("File: [%s]        Line: [%d]        Size: [%d]", ptr->fileName, ptr->lineNumber,
  445.                            ptr->bytes));
  446.     }
  447. #ifdef MMI_ON_WIN32
  448.     fprintf(fp, "BUFFER VISE ALLOCATIONn");
  449.     fprintf(fp, "Number of buffers of size 8: [%d]n", bufferCount[0]);
  450.     fprintf(fp, "Number of buffers of size 16: [%d]n", bufferCount[1]);
  451.     fprintf(fp, "Number of buffers of size 32: [%d]n", bufferCount[2]);
  452.     fprintf(fp, "Number of buffers of size 64: [%d]n", bufferCount[3]);
  453.     fprintf(fp, "Number of buffers of size 128: [%d]n", bufferCount[4]);
  454.     fprintf(fp, "Number of buffers of size 256: [%d]n", bufferCount[5]);
  455.     fprintf(fp, "Number of buffers of size 512: [%d]n", bufferCount[6]);
  456.     fprintf(fp, "Number of buffers of size 1024: [%d]n", bufferCount[7]);
  457.     fprintf(fp, "Number of buffers of size 2048: [%d]n", bufferCount[8]);
  458.     fprintf(fp, "Number of buffers of size 4096: [%d]n", bufferCount[9]);
  459.     fprintf(fp, "Number of buffers of size 8192: [%d]n", bufferCount[10]);
  460.     fprintf(fp, "Number of buffers of size 16384: [%d]n", bufferCount[11]);
  461.     fprintf(fp, "Number of buffers of size 32768: [%d]n", bufferCount[12]);
  462.     fprintf(fp, "Number of buffers of size 65536: [%d]n", bufferCount[13]);
  463. #endif /* MMI_ON_WIN32 */ 
  464.     PRINT_INFORMATION(("Number of buffers of size 8: [%d]", bufferCount[0]));
  465.     PRINT_INFORMATION(("Number of buffers of size 16: [%d]", bufferCount[1]));
  466.     PRINT_INFORMATION(("Number of buffers of size 32: [%d]", bufferCount[2]));
  467.     PRINT_INFORMATION(("Number of buffers of size 64: [%d]", bufferCount[3]));
  468.     PRINT_INFORMATION(("Number of buffers of size 128: [%d]", bufferCount[4]));
  469.     PRINT_INFORMATION(("Number of buffers of size 256: [%d]", bufferCount[5]));
  470.     PRINT_INFORMATION(("Number of buffers of size 512: [%d]", bufferCount[6]));
  471.     PRINT_INFORMATION(("Number of buffers of size 1024: [%d]", bufferCount[7]));
  472.     PRINT_INFORMATION(("Number of buffers of size 2048: [%d]", bufferCount[8]));
  473.     PRINT_INFORMATION(("Number of buffers of size 4096: [%d]", bufferCount[9]));
  474.     PRINT_INFORMATION(("Number of buffers of size 8192: [%d]", bufferCount[10]));
  475.     PRINT_INFORMATION(("Number of buffers of size 16384: [%d]", bufferCount[11]));
  476.     PRINT_INFORMATION(("Number of buffers of size 32768: [%d]", bufferCount[12]));
  477.     PRINT_INFORMATION(("Number of buffers of size 65536: [%d]", bufferCount[13]));
  478.     PRINT_INFORMATION(("____________________________________________________________________________________________________________________________"));
  479. #ifdef MMI_ON_WIN32
  480.     fclose(fp);
  481. #endif 
  482.     return;
  483. }
  484. #endif /* OSL_MEMORY_DUMP */ 
  485. /*-------------------------------------------------------------------
  486.             end of file OslMemory.C
  487. ---------------------------------------------------------------------*/