2009-05-19 17:17:28 +02:00
|
|
|
/****************************************************************************
|
2014-09-22 18:53:50 +02:00
|
|
|
* mm/mm_heap/mm_mallinfo.c
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
2021-02-08 13:50:10 +01:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright ownership. The
|
|
|
|
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
* "License"); you may not use this file except in compliance with the
|
|
|
|
* License. You may obtain a copy of the License at
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
2021-02-08 13:50:10 +01:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
2021-02-08 13:50:10 +01:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
* License for the specific language governing permissions and limitations
|
|
|
|
* under the License.
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
2009-05-19 17:17:28 +02:00
|
|
|
****************************************************************************/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2009-05-19 17:17:28 +02:00
|
|
|
/****************************************************************************
|
2007-02-18 00:21:28 +01:00
|
|
|
* Included Files
|
2009-05-19 17:17:28 +02:00
|
|
|
****************************************************************************/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2013-03-08 21:36:18 +01:00
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
2020-06-15 08:02:25 +02:00
|
|
|
#include <malloc.h>
|
2007-02-18 00:21:28 +01:00
|
|
|
#include <assert.h>
|
2013-03-08 21:36:18 +01:00
|
|
|
#include <debug.h>
|
2012-07-15 01:31:12 +02:00
|
|
|
|
2014-09-24 15:29:09 +02:00
|
|
|
#include <nuttx/mm/mm.h>
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2021-03-02 09:03:00 +01:00
|
|
|
#include "mm_heap/mm.h"
|
|
|
|
|
2022-01-24 07:44:38 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* Private Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static void mallinfo_handler(FAR struct mm_allocnode_s *node, FAR void *arg)
|
|
|
|
{
|
|
|
|
FAR struct mallinfo *info = arg;
|
|
|
|
|
|
|
|
minfo("node=%p size=%u preceding=%u (%c)\n",
|
|
|
|
node, (unsigned int)node->size,
|
|
|
|
(unsigned int)(node->preceding & ~MM_ALLOC_BIT),
|
|
|
|
(node->preceding & MM_ALLOC_BIT) ? 'A' : 'F');
|
|
|
|
|
|
|
|
/* Check if the node corresponds to an allocated memory chunk */
|
|
|
|
|
|
|
|
if ((node->preceding & MM_ALLOC_BIT) != 0)
|
|
|
|
{
|
|
|
|
DEBUGASSERT(node->size >= SIZEOF_MM_ALLOCNODE);
|
|
|
|
info->aordblks++;
|
|
|
|
info->uordblks += node->size;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
FAR struct mm_freenode_s *fnode = (FAR void *)node;
|
|
|
|
|
|
|
|
DEBUGASSERT(node->size >= SIZEOF_MM_FREENODE);
|
|
|
|
DEBUGASSERT(fnode->blink->flink == fnode);
|
|
|
|
DEBUGASSERT(fnode->blink->size <= fnode->size);
|
|
|
|
DEBUGASSERT(fnode->flink == NULL ||
|
|
|
|
fnode->flink->blink == fnode);
|
|
|
|
DEBUGASSERT(fnode->flink == NULL ||
|
|
|
|
fnode->flink->size == 0 ||
|
|
|
|
fnode->flink->size >= fnode->size);
|
|
|
|
|
|
|
|
info->ordblks++;
|
|
|
|
info->fordblks += node->size;
|
|
|
|
if (node->size > info->mxordblk)
|
|
|
|
{
|
|
|
|
info->mxordblk = node->size;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-22 13:21:51 +01:00
|
|
|
#ifdef CONFIG_DEBUG_MM
|
|
|
|
static void mallinfo_task_handler(FAR struct mm_allocnode_s *node,
|
|
|
|
FAR void *arg)
|
|
|
|
{
|
|
|
|
FAR struct mallinfo_task *info = arg;
|
|
|
|
|
|
|
|
/* Check if the node corresponds to an allocated memory chunk */
|
|
|
|
|
|
|
|
if ((node->preceding & MM_ALLOC_BIT) != 0)
|
|
|
|
{
|
|
|
|
DEBUGASSERT(node->size >= SIZEOF_MM_ALLOCNODE);
|
|
|
|
if (node->pid == info->pid)
|
|
|
|
{
|
|
|
|
info->aordblks++;
|
|
|
|
info->uordblks += node->size;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-08-31 18:54:55 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
2009-05-19 17:17:28 +02:00
|
|
|
/****************************************************************************
|
2013-03-08 21:36:18 +01:00
|
|
|
* Name: mm_mallinfo
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
|
|
|
* Description:
|
2013-03-08 19:29:56 +01:00
|
|
|
* mallinfo returns a copy of updated current heap information.
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
2009-05-19 17:17:28 +02:00
|
|
|
****************************************************************************/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2013-03-08 21:36:18 +01:00
|
|
|
int mm_mallinfo(FAR struct mm_heap_s *heap, FAR struct mallinfo *info)
|
2007-02-18 00:21:28 +01:00
|
|
|
{
|
2007-03-04 16:23:22 +01:00
|
|
|
#if CONFIG_MM_REGIONS > 1
|
2022-01-24 07:44:38 +01:00
|
|
|
int region = heap->mm_nregions;
|
2007-03-04 16:23:22 +01:00
|
|
|
#else
|
2022-01-24 07:44:38 +01:00
|
|
|
# define region 1
|
2007-03-04 16:23:22 +01:00
|
|
|
#endif
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2013-03-08 19:29:56 +01:00
|
|
|
DEBUGASSERT(info);
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2022-01-24 07:44:38 +01:00
|
|
|
memset(info, 0, sizeof(*info));
|
|
|
|
mm_foreach(heap, mallinfo_handler, info);
|
2007-03-04 16:23:22 +01:00
|
|
|
|
2022-01-24 07:44:38 +01:00
|
|
|
info->arena = heap->mm_heapsize;
|
|
|
|
info->uordblks += region * SIZEOF_MM_ALLOCNODE; /* account for the tail node */
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2022-01-24 07:44:38 +01:00
|
|
|
DEBUGASSERT(info->uordblks + info->fordblks == heap->mm_heapsize);
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2007-02-27 22:17:21 +01:00
|
|
|
return OK;
|
2007-02-18 00:21:28 +01:00
|
|
|
}
|
2022-01-22 13:21:51 +01:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: mm_mallinfo_task
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* mallinfo returns a copy of updated current heap information for task
|
|
|
|
* with pid.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifdef CONFIG_DEBUG_MM
|
|
|
|
int mm_mallinfo_task(FAR struct mm_heap_s *heap,
|
|
|
|
FAR struct mallinfo_task *info)
|
|
|
|
{
|
|
|
|
DEBUGASSERT(info);
|
|
|
|
|
|
|
|
info->uordblks = 0;
|
|
|
|
info->aordblks = 0;
|
|
|
|
mm_foreach(heap, mallinfo_task_handler, info);
|
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
#endif
|