S32K144内存分配

本文将通过实际的工程代码介绍NXP S32K144单片机变量地址分配,应用笔记仅用于自己学习及大家参考。

示例代码如下:

uint8_t num_byte[4];
uint32_t num_word;
const uint32_t num_word_const = 0x1234;
uint32_t *point_heap;
int main(void)
{
uint8_t num_byte_stack;
static uint8_t num_byte_static;

point_heap = (uint32_t *)malloc(4);
*point_heap = 0x3421;
free(point_heap);

num_byte_stack = 0x11;

printf("num_byte addr is 0x%x\r\n",&num_byte);
printf("num_word addr is 0x%x\r\n",&num_word);
printf("num_word_const addr is 0x%x\r\n",&num_word_const);
printf("point_heap addr is 0x%x\r\n",&point_heap);
printf("point_heap is 0x%x\r\n",point_heap);
printf("num_byte_stack addr is 0x%x\r\n",&num_byte_stack);
printf("num_byte_static addr is 0x%x\r\n",&num_byte_static);
}

Link 文件 S32K144_64_flash.ld 配置如下

map文件如下:

堆空间设置为0x20000020 – 0x2000041f,大小为0x400。
栈空间设置为0x20006c00 – 0x20006fff,大小为0x400。

实验结果为:
num_byte addr is 0x20000014
num_word addr is 0x20000018
num_word_const addr is 0x7b8
point_heap addr is 0x20000010
point_heap is 0x20000028
num_byte_stack addr is 0x20006ff3
num_byte_static addr is 0x20000004
结论:
num_byte、num_word、num_byte_static和point_heap存储在内部RAM中。
num_byte_stack存贮在栈中。
point_heap申请到的内存在堆中。
num_word_const在内部flash中。

详细描述:
1.通过打印看出,num_byte(0x20000014)、num_word(0x20000018)、num_byte_static(0x20000004)和point_heap(0x20000010)并不在堆栈中,它们存储在内部RAM中。
这也验证了static关键字,在修饰函数内的局部变量时,这个变量将和全局变量一样存储在内部ram中。
同时也说明了,编译器分配内存时候,是先分配全局变量(和static修饰的局部变量),再分配栈,最后再分配堆的。具体全局变量的分配,先分配static修饰的局部变量,在分配指针地址,最后分配全局变量。

2.对于栈的内存分配,局部变量,也就是num_byte_stack(0x20006ff3)是存储在栈的范围内。
关于栈,再说一句,栈不仅仅保存了局部变量,它会在函数切换,中断发生时保存现场,保存ARM内核的寄存器。
3.堆的问题,简单来说:malloc申请的内存都在堆中。point_heap(0x20000028)指针指向的内存地址就在堆的范围内。
4.最后一个num_word_const(0x7b8),const修饰的变量是存储在内部flash中的,它的地址在内部flash范围内。
 

  • 0
    点赞
  • 20
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

岁月静好2022

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值