您的位置:首页 > 其它

Keil MDK 使用malloc()&free(),stm32简单测试可用。

2015-12-08 18:06 936 查看


1.8.9 Using malloc() when exploiting the C library

If heap support is required for bare machine C, you must implement
_init_alloc()
and
__rt_heap_extend()
.

_init_alloc()
must be called first to supply initial heap bounds, and
__rt_heap_extend()
must
be provided even if it only returns failure. Without
__rt_heap_extend()
, certain library functionality is included that causes
problems when you are writing bare machine C.
Prototypes for both
_init_alloc()
and
__rt_heap_extend()
are
in rt_heap.h.

以上摘自http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.subset.swdev.comp6/index.html

程序包含头文件:rt_heap.h,stdlib.h。注意不要勾选MicroLIB。

汇编代码中设置Heap大小,我设置为4KB。

Heap_Size EQU 0x00004000

跟高级的方法如下:



简单的测试代码如下:
#define HEAP_BASE 0x20002558
#define HEAP_SIZE 0x00004000
#define HEAP_END  HEAP_BASE+HEAP_SIZE
void testmem()
{
int *p,*k=NULL;
int a=0;
volatile int i=0;
_init_alloc(HEAP_BASE,HEAP_END);
while(1)
{
if(a>1000)break;
p=(int*)malloc(a++);
i=(unsigned int)p-(unsigned int)k;
k=p;
*p=a;

//free(p);
}

}
调试可看到如下结果:



其中p,k是两次malloc得到的地址,i为两次得到的mallac得到地址的间隔,需要注意malloc得到的内存是8字节对其的。a是写入的一个数据。该程序执行一段时间后会内存泄漏,因为没free,去掉free()的注释即可。以下是free(p)的调试结果:经过多次malloc后得到的内存地址始终是0x20002570。



总结:

.If heap support is required for bare machine C, you must implement
_init_alloc()
and
__rt_heap_extend()
.

分配的内存地址8byte对齐;
#define HEAP_BASE 0x20002558这里的地址可以看*.map文件Heap_Mem的值。这里应该可以通过汇编和C的混合编程来实现,暂时没试。

饿死了,以上暂作笔记用,找时间再整理下测试下。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: