我正在查看 trezor 的引导加载程序链接器脚本:
/* TREZORv2 bootloader linker script */
ENTRY(reset_handler)
MEMORY {
FLASH (rx) : ORIGIN = 0x08020000, LENGTH = 128K
CCMRAM (wal) : ORIGIN = 0x10000000, LENGTH = 64K
SRAM (wal) : ORIGIN = 0x20000000, LENGTH = 192K
}
main_stack_base = ORIGIN(CCMRAM) + LENGTH(CCMRAM); /* 8-byte aligned full descending stack */
/* used by the startup code to populate variables used by the C code */
data_lma = LOADADDR(.data);
data_vma = ADDR(.data);
data_size = SIZEOF(.data);
/* used by the startup code to wipe memory */
ccmram_start = ORIGIN(CCMRAM);
ccmram_end = ORIGIN(CCMRAM) + LENGTH(CCMRAM);
/* used by the startup code to wipe memory */
sram_start = ORIGIN(SRAM);
sram_end = ORIGIN(SRAM) + LENGTH(SRAM);
_codelen = SIZEOF(.flash) + SIZEOF(.data);
SECTIONS {
.header : ALIGN(4) {
KEEP(*(.header));
} >FLASH AT>FLASH
.flash : ALIGN(512) {
KEEP(*(.vector_table));
. = ALIGN(4);
*(.text*);
. = ALIGN(4);
*(.rodata*);
. = ALIGN(512);
} >FLASH AT>FLASH
.data : ALIGN(4) {
*(.data*);
. = ALIGN(512);
} >CCMRAM AT>FLASH
.bss : ALIGN(4) {
*(.bss*);
. = ALIGN(4);
} >CCMRAM
.stack : ALIGN(8) {
. = 4K; /* this acts as a build time assertion that at least this much memory is available for stack use */
} >CCMRAM
}
可以在这里找到。
我知道代码需要 32 位( ALIGN(4) )对齐,因为如果 ARM 处理器尝试访问未对齐的地址,它可能会崩溃,但我不明白为什么堆栈对齐是 8 个字节,而且你为什么要这样做需要浪费(?)512字节来对齐闪存部分?!
我想了解在编写链接描述文件时如何确定对齐方式。
预先感谢您的回答!
编辑:
我想我回答了我自己的问题:
1..flash部分:
它是这样对齐的,因为它里面的向量表总是需要“32字对齐”。在Trezor 的板载链接器脚本中也可以看到这种情况。如您所见,向量表是 512 字节(4 x 32 字)对齐的。
2. .stack 部分:
根据ARM 自己的文档,堆栈部分需要始终保持 8 字节对齐。
PS当然,如果不是这样,请纠正我。