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
|
|
|
|
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
|
|
|
{
|
2015-10-08 17:10:22 +02:00
|
|
|
FAR struct mm_allocnode_s *node;
|
2020-02-15 14:21:43 +01:00
|
|
|
#ifdef CONFIG_DEBUG_ASSERTIONS
|
2020-02-17 15:06:46 +01:00
|
|
|
FAR struct mm_allocnode_s *prev;
|
2020-02-15 14:21:43 +01:00
|
|
|
#endif
|
2014-04-13 22:32:20 +02:00
|
|
|
size_t mxordblk = 0;
|
2007-02-18 00:21:28 +01:00
|
|
|
int ordblks = 0; /* Number of non-inuse chunks */
|
2007-02-21 22:55:16 +01:00
|
|
|
size_t uordblks = 0; /* Total allocated space */
|
|
|
|
size_t fordblks = 0; /* Total non-inuse space */
|
2007-03-04 16:23:22 +01:00
|
|
|
#if CONFIG_MM_REGIONS > 1
|
|
|
|
int region;
|
|
|
|
#else
|
|
|
|
# define region 0
|
|
|
|
#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
|
|
|
|
2007-03-04 16:23:22 +01:00
|
|
|
/* Visit each region */
|
|
|
|
|
|
|
|
#if CONFIG_MM_REGIONS > 1
|
2013-03-08 19:29:56 +01:00
|
|
|
for (region = 0; region < heap->mm_nregions; region++)
|
2007-03-04 16:23:22 +01:00
|
|
|
#endif
|
2007-02-18 00:21:28 +01:00
|
|
|
{
|
2020-02-17 15:06:46 +01:00
|
|
|
#ifdef CONFIG_DEBUG_ASSERTIONS
|
|
|
|
prev = NULL;
|
|
|
|
#endif
|
2013-02-08 16:28:07 +01:00
|
|
|
/* Visit each node in the region
|
|
|
|
* Retake the semaphore for each region to reduce latencies
|
|
|
|
*/
|
2014-04-13 22:32:20 +02:00
|
|
|
|
2013-03-08 19:29:56 +01:00
|
|
|
mm_takesemaphore(heap);
|
2007-03-04 16:23:22 +01:00
|
|
|
|
2020-02-15 14:21:43 +01:00
|
|
|
for (node = heap->mm_heapstart[region];
|
2013-03-08 19:29:56 +01:00
|
|
|
node < heap->mm_heapend[region];
|
2020-02-13 09:06:05 +01:00
|
|
|
node = (FAR struct mm_allocnode_s *)
|
|
|
|
((FAR char *)node + node->size))
|
2007-02-18 00:21:28 +01:00
|
|
|
{
|
2020-02-13 04:51:36 +01:00
|
|
|
minfo("region=%d node=%p size=%u preceding=%u (%c)\n",
|
|
|
|
region, node, (unsigned int)node->size,
|
|
|
|
(unsigned int)(node->preceding & ~MM_ALLOC_BIT),
|
2014-05-24 18:40:07 +02:00
|
|
|
(node->preceding & MM_ALLOC_BIT) ? 'A' : 'F');
|
|
|
|
|
|
|
|
/* Check if the node corresponds to an allocated memory chunk */
|
|
|
|
|
|
|
|
if ((node->preceding & MM_ALLOC_BIT) != 0)
|
2007-02-18 00:21:28 +01:00
|
|
|
{
|
2020-02-13 09:06:05 +01:00
|
|
|
DEBUGASSERT(node->size >= SIZEOF_MM_ALLOCNODE);
|
2007-03-04 16:23:22 +01:00
|
|
|
uordblks += node->size;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2020-02-15 14:21:43 +01:00
|
|
|
#ifdef CONFIG_DEBUG_ASSERTIONS
|
|
|
|
FAR struct mm_freenode_s *fnode = (FAR void *)node;
|
|
|
|
#endif
|
2020-02-13 09:06:05 +01:00
|
|
|
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);
|
2007-03-04 16:23:22 +01:00
|
|
|
ordblks++;
|
|
|
|
fordblks += node->size;
|
|
|
|
if (node->size > mxordblk)
|
|
|
|
{
|
|
|
|
mxordblk = node->size;
|
|
|
|
}
|
2007-02-18 00:21:28 +01:00
|
|
|
}
|
2020-02-17 15:06:46 +01:00
|
|
|
|
|
|
|
DEBUGASSERT(prev == NULL ||
|
|
|
|
prev->size == (node->preceding & ~MM_ALLOC_BIT));
|
2020-02-15 14:21:43 +01:00
|
|
|
#ifdef CONFIG_DEBUG_ASSERTIONS
|
|
|
|
prev = node;
|
|
|
|
#endif
|
2007-02-18 00:21:28 +01:00
|
|
|
}
|
2007-03-04 16:23:22 +01:00
|
|
|
|
2017-08-03 18:01:26 +02:00
|
|
|
minfo("region=%d node=%p heapend=%p\n",
|
|
|
|
region, node, heap->mm_heapend[region]);
|
|
|
|
DEBUGASSERT(node == heap->mm_heapend[region]);
|
|
|
|
|
2013-03-08 19:29:56 +01:00
|
|
|
mm_givesemaphore(heap);
|
2014-04-13 22:32:20 +02:00
|
|
|
|
2007-03-04 16:23:22 +01:00
|
|
|
uordblks += SIZEOF_MM_ALLOCNODE; /* account for the tail node */
|
2007-02-18 00:21:28 +01:00
|
|
|
}
|
2007-03-04 16:23:22 +01:00
|
|
|
#undef region
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2013-03-08 19:29:56 +01:00
|
|
|
DEBUGASSERT(uordblks + fordblks == heap->mm_heapsize);
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2013-03-08 19:29:56 +01:00
|
|
|
info->arena = heap->mm_heapsize;
|
2007-02-27 22:17:21 +01:00
|
|
|
info->ordblks = ordblks;
|
|
|
|
info->mxordblk = mxordblk;
|
|
|
|
info->uordblks = uordblks;
|
|
|
|
info->fordblks = fordblks;
|
|
|
|
return OK;
|
2007-02-18 00:21:28 +01:00
|
|
|
}
|