WinterMute wrote:.data is already in ewram.
My .map file seems to disagree with you:
Code: Select all
.data 0x03004bb4 0x880 load address 0x0810d294
0x03004bb4 __data_start = <code 342> (.)
*(.data)
.data 0x03004bb4 0x4 c:/devel/devkitarm/bin/../lib/gcc/arm-eabi/4.1.2/crtbegin.o
0x03004bb4 __dso_handle
.data 0x03004bb8 0x4 c:/devel/devkitarm/bin/../lib/gcc/arm-eabi/4.1.2/../../../../arm-eabi/lib\libstdc++.a(eh_term_handler.o)
0x03004bb8 __cxxabiv1::__terminate_handler
.data 0x03004bbc 0x4 c:/devel/devkitarm/bin/../lib/gcc/arm-eabi/4.1.2/../../../../arm-eabi/lib\libstdc++.a(eh_unex_handler.o)
0x03004bbc __cxxabiv1::__unexpected_handler
.data 0x03004bc0 0x418 c:/devel/devkitarm/bin/../lib/gcc/arm-eabi/4.1.2/../../../../arm-eabi/lib\libc.a(lib_a-impure.o)
0x03004bc0 _impure_ptr
.data 0x03004fd8 0x410 c:/devel/devkitarm/bin/../lib/gcc/arm-eabi/4.1.2/../../../../arm-eabi/lib\libc.a(lib_a-mallocr.o)
0x030053e4 __malloc_sbrk_base
0x03004fd8 __malloc_av_
0x030053e0 __malloc_trim_threshold
.data 0x030053e8 0x44 c:/devel/devkitarm/bin/../lib/gcc/arm-eabi/4.1.2/../../../../arm-eabi/lib\libsysbase.a(iosupport.o)
0x030053e8 devoptab_list
I should probably also mention that my .map file shows that
absolutely nothing is being put into EWRAM (well, aside from the empty .sbss section):
Code: Select all
0x02000000 __ewram_start = 0x2000000
.ewram 0x02000000 0x0 load address 0x0810db5c
*(.ewram)
0x02000000 . = ALIGN (0x4)
0x0810db5c __pad_lma = (__ewram_lma + SIZEOF (.ewram))
.sbss 0x02000000 0x0
0x02000000 __sbss_start = <code 342> (.)
*(.sbss)
0x02000000 . = ALIGN (0x4)
0x02000000 __sbss_end = <code 342> (.)
0x02000000 __ewram_end = __sbss_end
0x02000000 __eheap_start = __sbss_end
0x02000000 __end__ = __sbss_end
And, if I understand the linker scripts properly, gba_cart.ld looks like it's putting lots of stuff in IWRAM:
Code: Select all
.data ALIGN(4) : AT (__data_lma)
{
__data_start = ABSOLUTE(.);
*(.data)
*(.data.*)
*(.gnu.linkonce.d*)
CONSTRUCTORS
. = ALIGN(4);
} >iwram = 0xff
...along with the init/fini array as well. Do these really need to be in IWRAM?
WinterMute wrote:static controls external visibility and has nothing to do with bss. What determines bss placement is the initialisation of a variable - if it's initialised to 0 or left uninitialised then it goes in the bss section. If it has a non zero initialisation value then it gets placed in .data.
Right, I understand that. What I was saying is it is difficult for me to go back through all of my code and append the .sbss section attribute onto every symbol that is being put into .bss (and hence, IWRAM). Which is why I was hoping I could just easily move them out into EWRAM.
WinterMute wrote:Having said that I'm not averse to changing the default linkscripts - I'm going to have to update them for the next devkitARM iteration anyway due to some changes in the latest linker.
I understand. Unfortunately I don't see any other way of freeing up space in IWRAM to allow more code to be placed there instead of in ROM...