23.3.4.21 .bss Section
This section collects the uninitialized data from all of the application’s input
files. This section is assigned to the data memory region
(kseg1_data_mem
). A symbol is defined to represent the virtual end
address of uninitialized data (_bss_end
). A symbol is also to represent
the virtual end address of data memory (_end
).
.bss :
{
*(.dynbss)
*(.bss .bss.* .gnu.linkonce.b.*)
*(COMMON)
/*
* Align here to ensure that the .bss section occupies
* space up to _end. Align after .bss to ensure correct
* alignment even if the .bss section disappears because
* there are no input sections.
*/
. = ALIGN(32 / 8) ;
} > kseg1_data_mem
. = ALIGN(32 / 8) ;
_end = . ;
_bss_end = . ;