You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
109 lines
5.4 KiB
HTML
109 lines
5.4 KiB
HTML
15 years ago
|
<html lang="en">
|
||
|
<head>
|
||
|
<title>Output Section LMA - Untitled</title>
|
||
|
<meta http-equiv="Content-Type" content="text/html">
|
||
|
<meta name="description" content="Untitled">
|
||
|
<meta name="generator" content="makeinfo 4.7">
|
||
|
<link title="Top" rel="start" href="index.html#Top">
|
||
|
<link rel="up" href="Output-Section-Attributes.html#Output-Section-Attributes" title="Output Section Attributes">
|
||
|
<link rel="prev" href="Output-Section-Type.html#Output-Section-Type" title="Output Section Type">
|
||
|
<link rel="next" href="Forced-Output-Alignment.html#Forced-Output-Alignment" title="Forced Output Alignment">
|
||
|
<link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
|
||
|
<!--
|
||
|
This file documents the GNU linker LD
|
||
|
(GNU Binutils)
|
||
|
version 2.19.
|
||
|
|
||
|
Copyright (C) 1991, 92, 93, 94, 95, 96, 97, 98, 99, 2000,
|
||
|
2001, 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
|
||
|
|
||
|
Permission is granted to copy, distribute and/or modify this document
|
||
|
under the terms of the GNU Free Documentation License, Version 1.1
|
||
|
or any later version published by the Free Software Foundation;
|
||
|
with no Invariant Sections, with no Front-Cover Texts, and with no
|
||
|
Back-Cover Texts. A copy of the license is included in the
|
||
|
section entitled ``GNU Free Documentation License''.-->
|
||
|
<meta http-equiv="Content-Style-Type" content="text/css">
|
||
|
<style type="text/css"><!--
|
||
|
pre.display { font-family:inherit }
|
||
|
pre.format { font-family:inherit }
|
||
|
pre.smalldisplay { font-family:inherit; font-size:smaller }
|
||
|
pre.smallformat { font-family:inherit; font-size:smaller }
|
||
|
pre.smallexample { font-size:smaller }
|
||
|
pre.smalllisp { font-size:smaller }
|
||
|
span.sc { font-variant:small-caps }
|
||
|
span.roman { font-family: serif; font-weight: normal; }
|
||
|
--></style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="node">
|
||
|
<p>
|
||
|
<a name="Output-Section-LMA"></a>Next: <a rel="next" accesskey="n" href="Forced-Output-Alignment.html#Forced-Output-Alignment">Forced Output Alignment</a>,
|
||
|
Previous: <a rel="previous" accesskey="p" href="Output-Section-Type.html#Output-Section-Type">Output Section Type</a>,
|
||
|
Up: <a rel="up" accesskey="u" href="Output-Section-Attributes.html#Output-Section-Attributes">Output Section Attributes</a>
|
||
|
<hr><br>
|
||
|
</div>
|
||
|
|
||
|
<h5 class="subsubsection">3.6.8.2 Output Section LMA</h5>
|
||
|
|
||
|
<p><a name="index-AT_003e_0040var_007blma_005fregion_007d-408"></a><a name="index-AT_0028_0040var_007blma_007d_0029-409"></a><a name="index-load-address-410"></a><a name="index-section-load-address-411"></a>Every section has a virtual address (VMA) and a load address (LMA); see
|
||
|
<a href="Basic-Script-Concepts.html#Basic-Script-Concepts">Basic Script Concepts</a>. The address expression which may appear in
|
||
|
an output section description sets the VMA (see <a href="Output-Section-Address.html#Output-Section-Address">Output Section Address</a>).
|
||
|
|
||
|
<p>The expression <var>lma</var> that follows the <code>AT</code> keyword specifies
|
||
|
the load address of the section.
|
||
|
|
||
|
<p>Alternatively, with <span class="samp">AT></span><var>lma_region</var> expression, you may
|
||
|
specify a memory region for the section's load address. See <a href="MEMORY.html#MEMORY">MEMORY</a>.
|
||
|
Note that if the section has not had a VMA assigned to it then the
|
||
|
linker will use the <var>lma_region</var> as the VMA region as well.
|
||
|
|
||
|
<p>If neither <code>AT</code> nor <code>AT></code> is specified for an allocatable
|
||
|
section, the linker will set the LMA such that the difference between
|
||
|
VMA and LMA for the section is the same as the preceding output
|
||
|
section in the same region. If there is no preceding output section
|
||
|
or the section is not allocatable, the linker will set the LMA equal
|
||
|
to the VMA.
|
||
|
See <a href="Output-Section-Region.html#Output-Section-Region">Output Section Region</a>.
|
||
|
|
||
|
<p><a name="index-ROM-initialized-data-412"></a><a name="index-initialized-data-in-ROM-413"></a>This feature is designed to make it easy to build a ROM image. For
|
||
|
example, the following linker script creates three output sections: one
|
||
|
called <span class="samp">.text</span>, which starts at <code>0x1000</code>, one called
|
||
|
<span class="samp">.mdata</span>, which is loaded at the end of the <span class="samp">.text</span> section
|
||
|
even though its VMA is <code>0x2000</code>, and one called <span class="samp">.bss</span> to hold
|
||
|
uninitialized data at address <code>0x3000</code>. The symbol <code>_data</code> is
|
||
|
defined with the value <code>0x2000</code>, which shows that the location
|
||
|
counter holds the VMA value, not the LMA value.
|
||
|
|
||
|
<pre class="smallexample"> SECTIONS
|
||
|
{
|
||
|
.text 0x1000 : { *(.text) _etext = . ; }
|
||
|
.mdata 0x2000 :
|
||
|
AT ( ADDR (.text) + SIZEOF (.text) )
|
||
|
{ _data = . ; *(.data); _edata = . ; }
|
||
|
.bss 0x3000 :
|
||
|
{ _bstart = . ; *(.bss) *(COMMON) ; _bend = . ;}
|
||
|
}
|
||
|
</pre>
|
||
|
<p>The run-time initialization code for use with a program generated with
|
||
|
this linker script would include something like the following, to copy
|
||
|
the initialized data from the ROM image to its runtime address. Notice
|
||
|
how this code takes advantage of the symbols defined by the linker
|
||
|
script.
|
||
|
|
||
|
<pre class="smallexample"> extern char _etext, _data, _edata, _bstart, _bend;
|
||
|
char *src = &_etext;
|
||
|
char *dst = &_data;
|
||
|
|
||
|
/* ROM has data at end of text; copy it. */
|
||
|
while (dst < &_edata) {
|
||
|
*dst++ = *src++;
|
||
|
}
|
||
|
|
||
|
/* Zero bss */
|
||
|
for (dst = &_bstart; dst< &_bend; dst++)
|
||
|
*dst = 0;
|
||
|
</pre>
|
||
|
</body></html>
|
||
|
|