essential_GNU_linker_concepts_for_embedded_systems_programmer(001)

essential_GNU_linker_concepts_for_embedded_systems_programmer(001)

ID:39911342

大小:243.78 KB

页数:15页

时间:2019-07-14

essential_GNU_linker_concepts_for_embedded_systems_programmer(001)_第1页
essential_GNU_linker_concepts_for_embedded_systems_programmer(001)_第2页
essential_GNU_linker_concepts_for_embedded_systems_programmer(001)_第3页
essential_GNU_linker_concepts_for_embedded_systems_programmer(001)_第4页
essential_GNU_linker_concepts_for_embedded_systems_programmer(001)_第5页
资源描述:

《essential_GNU_linker_concepts_for_embedded_systems_programmer(001)》由会员上传分享,免费在线阅读,更多相关内容在学术论文-天天文库

1、EssentialGNULinkerConceptsforEmbeddedSystemsProgrammers"Section"BasicsApplicationprogrammersusuallydon’thavetobotheraboutlowlevelstufflikesaywhereinthevirtualaddressspacethedatasectionoftheirprogrambegins.Intheembeddedsystemsworld-youhavenosuchluxuries.Often,yourcodewillberunningonthebare

2、metalandyouwillhavetopreciselylayoutthingsatspecificmemorylocations.TheGNUlinkerprovidesyouthisflexibilitythroughlinkerscripts.应用开发人员一般不需要考虑软件的底层原理,诸如不需要关心数据段的虚拟地址首地址从哪开始等。但是在嵌入式开发领域,这些你都必须得了解,因为你的程序通常都是运行在裸机上,所以你必须精确地将你的程序放在指定的内存位置。GNUld链接器的链接脚本可以帮助我们完成这一切。Let’sstartwithasimpleassemblyla

3、nguageprogram,a1.s:先来看一个非常简单的汇编程序,a1.s:.sectionabc,"a"Thisi:programcanbeassembledbyinvokingas:.byte1.byte2.byte3.sectiondef,"a"k:.byte7.byte8.byte9Thisprogramcanbeassembledbyinvokingas:用as来汇编改程序:asa1.s-oa1.oOurprogramisdividedintotwosections-asectionissimplyalogicalchunkofdata/codewhichth

4、elinkerwillcombinewithothersectionsinordertocreateasingleoutputfile.Let’sviewtheoutputproducedbytheassemblerbyinvokingobjdumpwiththe-Doption:[Note:the“a”afterthesectionnameisaflagwhichsaysthatthesectionisallocatable]我们的程序只有两个段——段就是目标文件中包含数据或者指令的区域。链接器将多个段链接在一起生成最后的可执行文件。让我们看看上面简单程序的生成的反汇编

5、(objdump加-D选项)[注意:在段名后的“a”说明这个段是可分配的,就是说程序运行时,该段会被加载进内存]a1.o:fileformatelf32-i386Disassemblyofsectionabc:00000000:0:0102add%eax,(%edx)2:03byte0x3Disassemblyofsectiondef:00000000:0:07pop%es1:0809or%cl,(%ecx)Theveryfirstfieldofeachlineisthememoryaddress-thisisfollowedbyactualdataandth

6、enanassemblylanguagestatementwhichismeaningfulonlyifthedatabyteswereactuallymeanttobeinstructions-inthiscase,wecansimplyignoretheseassemblylanguagestatements.Oursectionabchasthree1byteconstantsinit,anditstartsataddress0-thatiswhattheobjdumpoutputalsotellsus.Whataboutsectiondef?Ittoostarts

7、ataddress0,andhas3bytesinit.Now,thisisnotreallypossible-whenthisprogramisactuallyloadedintomemory,itsimpossibletohaveboththesesectionsatthesameaddress!第一列是内存地址——紧接着是实际的数据,最后是汇编语句,只有当数据是指令数据时汇编语句才有意义,所以这里我们完全可以忽略生成的汇编语句。在abc段中有三个1字节的常量,内存首地址是0。那def段如何呢?它里面也有三个1字节的常量,

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。