请问那个属于宏定义的范畴
| .text | yes | executable code |
| .bss | no | global variables |
| .cinit | yes | tables which initialize global variables |
| .data (EABI) | yes and no | initialized coming out of the assembler; changed to uninitialized by the linker |
| .data (COFF ABI) | yes | initialized data |
| .stack | no | system stack |
| .heap or .sysmem | no | malloc heap |
| .const | yes | initialized global variables |
| .switch | yes | jump tables for certain switch statements |
| .init_array or .pinit | yes | Table of C++ constructors called at startup |
| .cio | no | Buffer for stdio functions |