欢迎来到天天文库
浏览记录
ID:39911342
大小:243.78 KB
页数:15页
时间:2019-07-14
《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字节的常量,
此文档下载收益归作者所有