Languages/C/Sections

(Difference between revisions)
Jump to: navigation, search
(Program sections, or what are .text, .data, .bss?)
(Program sections, or what are .text, .data, .bss?)
Line 30: Line 30:
 
| <code>.rodata</code> || Read-only  
 
| <code>.rodata</code> || Read-only  
 
|-  
 
|-  
 +
|}
 +
 +
== Not so universal sections ==
 +
{|class=wikitable
 +
|-
 +
| '''Section''' || '''Description'''
 +
|-
 +
| <code>.common</code> || Global uninitialized data, WARNING : the linker can merge variable with same names!
 
|}
 
|}

Revision as of 11:53, 16 December 2013

Contents

Program sections, or what are .text, .data, .bss?

When a program is compiled, the compiler splits the resulting code into different sections (sometimes called segments). Every section corresponds to a particular use, for instance storing variables or executable code.

This document is mainly focused on the ELF (Executable and Linkable Format) file format used by Linux and the gcc toolchain, but most of this document is valid for most executable file formats.

Here are some reason why there are separate sections:

  • Code and data can be on separate buses (Harvard architecture).
  • Code could be read-only and your system can have read-only memory (flash on microcontroller).
  • Code can be shared between 2 processes but data can't.

Sections can also have permissions like read, write, execute.

Universal sections

Section Description
.text Executable (machine) code
.data Initialized data
.bss Data initialized to zero
.rodata Read-only

Not so universal sections

Section Description
.common Global uninitialized data, WARNING : the linker can merge variable with same names!
Personal tools
Namespaces
Variants
Actions
Navigation
Browse
Toolbox