123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389 |
- {
- Copyright (c) 2020 by Nikolay Nikolov
- Contains the ASCII relocatable object file format (*.rel) reader and writer
- This is the object format used on the Z80 platforms.
- This program is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
- (at your option) any later version.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
- You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software
- Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- ****************************************************************************
- }
- unit ogrel;
- {$i fpcdefs.inc}
- interface
- uses
- { common }
- cclasses,globtype,
- { target }
- systems,
- { assembler }
- cpuinfo,cpubase,aasmbase,assemble,link,
- { output }
- ogbase,
- owbase;
- type
- TRelRelocationFlag=(
- rrfByte, { bit 0 }
- rrfSymbol, { bit 1 }
- rrfPcRelative, { bit 2 }
- rrfTwoByteObjectFormatForByteData, { bit 3 }
- rrfUnsignedByteData, { bit 4 }
- rrfPage0Reference, { bit 5 }
- rrfPageNNNReference, { bit 6 }
- rrfMSBWith2ByteMode, { bit 7 }
- rrfThreeByteObjectFormatForByteData, { bit 8 }
- rrfRealMSBForThreeByteMode, { bit 9 }
- rrfReserved10, { bit 10 }
- rrfReserved11); { bit 11 }
- TRelRelocationFlags=set of TRelRelocationFlag;
- { TRelRelocation }
- TRelRelocation = class(TObjRelocation)
- private
- function GetSecOrSymIdx: longint;
- public
- RelFlags: TRelRelocationFlags;
- HiByte: Byte;
- constructor CreateSymbol(ADataOffset:TObjSectionOfs;s:TObjSymbol;Atyp:TObjRelocationType);
- constructor CreateSection(ADataOffset:TObjSectionOfs;aobjsec:TObjSection;Atyp:TObjRelocationType);
- function EncodeFlags: string;
- property SecOrSymIdx: longint read GetSecOrSymIdx;
- end;
- { TRelObjData }
- TRelObjData = class(TObjData)
- public
- function sectionname(atype:TAsmSectiontype;const aname:string;aorder:TAsmSectionOrder):string;override;
- function sectiontype2align(atype:TAsmSectiontype):longint;override;
- procedure writeReloc(Data:TRelocDataInt;len:aword;p:TObjSymbol;Reloctype:TObjRelocationType);override;
- end;
- { TRelObjOutput }
- TRelObjOutput = class(tObjOutput)
- private
- procedure writeString(const S: ansistring);
- procedure writeLine(const S: ansistring);
- procedure WriteAreaContentAndRelocations(sec: TObjSection);
- protected
- function writeData(Data:TObjData):boolean;override;
- public
- constructor create(AWriter:TObjectWriter);override;
- end;
- { TRelAssembler }
- TRelAssembler = class(tinternalassembler)
- constructor create(info: pasminfo; smart:boolean);override;
- end;
- { TRelObjInput }
- TRelObjInput = class(TObjInput)
- private const
- MaxBufSize=512;
- private
- FBuf: array [0..MaxBufSize-1] of Char;
- FBufSize: Integer;
- FBufPos: Integer;
- function FillBuf: boolean;
- function AtEndOfBuf: boolean;
- function AtEoF: boolean;
- function ReadChar(out c: char): boolean;
- function PeekChar(out c: char): boolean;
- function ReadLine(out s: string): boolean;
- public
- constructor create;override;
- function ReadObjData(AReader:TObjectreader;out Data:TObjData):boolean;override;
- class function CanReadObjData(AReader:TObjectreader):boolean;override;
- end;
- { TIntelHexExeOutput }
- TIntelHexExeOutput = class(TExeOutput)
- private
- procedure writeString(const S: ansistring);
- procedure writeLine(const S: ansistring);
- protected
- function writeData:boolean;override;
- procedure DoRelocationFixup(objsec:TObjSection);override;
- public
- constructor create;override;
- end;
- { TZXSpectrumIntelHexExeOutput }
- TZXSpectrumIntelHexExeOutput = class(TIntelHexExeOutput)
- public
- constructor create;override;
- end;
- implementation
- uses
- SysUtils,
- cutils,verbose,globals,
- fmodule,aasmtai,aasmdata,
- ogmap,owar,
- version
- ;
- function tohex(q: qword): string;
- begin
- result:=HexStr(q,16);
- while (Length(result)>1) and (result[1]='0') do
- delete(result,1,1);
- end;
- {*****************************************************************************
- TRelRelocation
- *****************************************************************************}
- function TRelRelocation.GetSecOrSymIdx: longint;
- begin
- if assigned(symbol) then
- result:=symbol.symidx
- else if assigned(objsection) then
- result:=objsection.SecSymIdx
- else
- internalerror(2020050502);
- end;
- constructor TRelRelocation.CreateSymbol(ADataOffset: TObjSectionOfs; s: TObjSymbol; Atyp: TObjRelocationType);
- begin
- inherited;
- case Atyp of
- RELOC_ABSOLUTE_HI8:
- begin
- size:=1;
- RelFlags:=[rrfSymbol,rrfByte,rrfTwoByteObjectFormatForByteData,rrfMSBWith2ByteMode];
- end;
- RELOC_ABSOLUTE_LO8:
- begin
- size:=1;
- RelFlags:=[rrfSymbol,rrfByte,rrfTwoByteObjectFormatForByteData];
- end;
- RELOC_ABSOLUTE:
- begin
- size:=2;
- RelFlags:=[rrfSymbol];
- end;
- else
- internalerror(2020050601);
- end;
- end;
- constructor TRelRelocation.CreateSection(ADataOffset: TObjSectionOfs; aobjsec: TObjSection; Atyp: TObjRelocationType);
- begin
- inherited;
- case Atyp of
- RELOC_ABSOLUTE_HI8:
- begin
- size:=1;
- RelFlags:=[rrfByte,rrfTwoByteObjectFormatForByteData,rrfMSBWith2ByteMode];
- end;
- RELOC_ABSOLUTE_LO8:
- begin
- size:=1;
- RelFlags:=[rrfByte,rrfTwoByteObjectFormatForByteData];
- end;
- RELOC_ABSOLUTE:
- begin
- size:=2;
- RelFlags:=[];
- end;
- else
- internalerror(2020050613);
- end;
- end;
- function TRelRelocation.EncodeFlags: string;
- var
- FlagsWord: Word;
- begin
- FlagsWord:=0;
- if rrfByte in RelFlags then
- Inc(FlagsWord,1);
- if rrfSymbol in RelFlags then
- Inc(FlagsWord,2);
- if rrfPcRelative in RelFlags then
- Inc(FlagsWord,4);
- if rrfTwoByteObjectFormatForByteData in RelFlags then
- Inc(FlagsWord,8);
- if rrfUnsignedByteData in RelFlags then
- Inc(FlagsWord,16);
- if rrfPage0Reference in RelFlags then
- Inc(FlagsWord,32);
- if rrfPageNNNReference in RelFlags then
- Inc(FlagsWord,64);
- if rrfMSBWith2ByteMode in RelFlags then
- Inc(FlagsWord,128);
- if rrfThreeByteObjectFormatForByteData in RelFlags then
- Inc(FlagsWord,256);
- if rrfRealMSBForThreeByteMode in RelFlags then
- Inc(FlagsWord,512);
- if rrfReserved10 in RelFlags then
- Inc(FlagsWord,1024);
- if rrfReserved11 in RelFlags then
- Inc(FlagsWord,2048);
- if (FlagsWord<=255) and ((FlagsWord and $F0)<>$F0) then
- Result:=HexStr(FlagsWord,2)
- else
- Result:=HexStr($F0 or Byte(FlagsWord shr 8),2)+' '+HexStr(Byte(FlagsWord),2);
- end;
- {*****************************************************************************
- TRelObjData
- *****************************************************************************}
- function TRelObjData.sectionname(atype: TAsmSectiontype; const aname: string; aorder: TAsmSectionOrder): string;
- const
- secnames : array[TAsmSectiontype] of string[length('__DATA, __datacoal_nt,coalesced')] = ('','',
- '_CODE',
- '_DATA',
- '_DATA',
- '_DATA',
- '_BSS',
- '.threadvar',
- '.pdata',
- '', { stubs }
- '__DATA,__nl_symbol_ptr',
- '__DATA,__la_symbol_ptr',
- '__DATA,__mod_init_func',
- '__DATA,__mod_term_func',
- '.stab',
- '.stabstr',
- '.idata$2','.idata$4','.idata$5','.idata$6','.idata$7','.edata',
- '.eh_frame',
- '.debug_frame','.debug_info','.debug_line','.debug_abbrev','.debug_aranges','.debug_ranges','.debug_loc','.debug_loclists',
- '.fpc',
- '.toc',
- '.init',
- '.fini',
- '.objc_class',
- '.objc_meta_class',
- '.objc_cat_cls_meth',
- '.objc_cat_inst_meth',
- '.objc_protocol',
- '.objc_string_object',
- '.objc_cls_meth',
- '.objc_inst_meth',
- '.objc_cls_refs',
- '.objc_message_refs',
- '.objc_symbols',
- '.objc_category',
- '.objc_class_vars',
- '.objc_instance_vars',
- '.objc_module_info',
- '.objc_class_names',
- '.objc_meth_var_types',
- '.objc_meth_var_names',
- '.objc_selector_strs',
- '.objc_protocol_ext',
- '.objc_class_ext',
- '.objc_property',
- '.objc_image_info',
- '.objc_cstring_object',
- '.objc_sel_fixup',
- '__DATA,__objc_data',
- '__DATA,__objc_const',
- '.objc_superrefs',
- '__DATA, __datacoal_nt,coalesced',
- '.objc_classlist',
- '.objc_nlclasslist',
- '.objc_catlist',
- '.obcj_nlcatlist',
- '.objc_protolist',
- '_STACK',
- '_HEAP',
- '.gcc_except_table',
- '.ARM.attributes'
- );
- begin
- if atype=sec_user then
- result:=aname
- else
- result:=secnames[atype];
- end;
- function TRelObjData.sectiontype2align(atype:TAsmSectiontype):longint;
- begin
- result:=1;
- end;
- procedure TRelObjData.writeReloc(Data: TRelocDataInt; len: aword; p: TObjSymbol; Reloctype: TObjRelocationType);
- var
- bytes: array [0..7] of Byte;
- symaddr: QWord;
- objreloc: TRelRelocation;
- begin
- if CurrObjSec=nil then
- internalerror(200403072);
- objreloc:=nil;
- if assigned(p) then
- begin
- { real address of the symbol }
- symaddr:=p.address;
- if p.bind=AB_EXTERNAL then
- begin
- objreloc:=TRelRelocation.CreateSymbol(CurrObjSec.Size,p,Reloctype);
- if Reloctype in [RELOC_ABSOLUTE_HI8,RELOC_ABSOLUTE_LO8] then
- objreloc.HiByte:=Byte(Data shr 8);
- CurrObjSec.ObjRelocations.Add(objreloc);
- end
- { relative relocations within the same section can be calculated directly,
- without the need to emit a relocation entry }
- else if (p.objsection=CurrObjSec) and
- (p.bind<>AB_COMMON) and
- (Reloctype=RELOC_RELATIVE) then
- {$push} {$R-}{$Q-}
- begin
- data:=data+symaddr-len-CurrObjSec.Size;
- end
- {$pop}
- else
- begin
- objreloc:=TRelRelocation.CreateSection(CurrObjSec.Size,p.objsection,Reloctype);
- inc(data,symaddr);
- if Reloctype in [RELOC_ABSOLUTE_HI8,RELOC_ABSOLUTE_LO8] then
- objreloc.HiByte:=Byte(Data shr 8);
- CurrObjSec.ObjRelocations.Add(objreloc);
- end;
- end;
- case len of
- 8:
- begin
- bytes[0]:=Byte(Data);
- bytes[1]:=Byte(Data shr 8);
- bytes[2]:=Byte(Data shr 16);
- bytes[3]:=Byte(Data shr 24);
- bytes[4]:=0;
- bytes[5]:=0;
- bytes[6]:=0;
- bytes[7]:=0;
- writebytes(bytes,8);
- end;
- 4:
- begin
- bytes[0]:=Byte(Data);
- bytes[1]:=Byte(Data shr 8);
- bytes[2]:=Byte(Data shr 16);
- bytes[3]:=Byte(Data shr 24);
- writebytes(bytes,4);
- end;
- 2:
- begin
- bytes[0]:=Byte(Data);
- bytes[1]:=Byte(Data shr 8);
- writebytes(bytes,2);
- end;
- 1:
- begin
- bytes[0]:=Byte(Data);
- writebytes(bytes,1);
- end;
- else
- internalerror(2020050423);
- end;
- end;
- {*****************************************************************************
- TRelObjOutput
- *****************************************************************************}
- procedure TRelObjOutput.writeString(const S: ansistring);
- begin
- FWriter.write(S[1],Length(S));
- end;
- procedure TRelObjOutput.writeLine(const S: ansistring);
- begin
- writeString(S+#10)
- end;
- procedure TRelObjOutput.WriteAreaContentAndRelocations(sec: TObjSection);
- const
- MaxChunkSize={14}7;
- var
- ChunkStart,ChunkLen, i: LongWord;
- ChunkFixupStart,ChunkFixupEnd, j, st_ofs: Integer;
- st,sr: ansistring;
- buf: array [0..MaxChunkSize-1] of Byte;
- reloc: TRelRelocation;
- begin
- if (oso_data in sec.SecOptions) and (sec.Data=nil) then
- internalerror(200403073);
- if assigned(sec.data) then
- sec.data.seek(0);
- ChunkFixupStart:=0;
- ChunkFixupEnd:=-1;
- ChunkStart:=0;
- ChunkLen:=Min(MaxChunkSize, sec.size-ChunkStart);
- while ChunkLen>0 do
- begin
- { find last fixup in the chunk }
- while (ChunkFixupEnd<(sec.ObjRelocations.Count-1)) and
- (TRelRelocation(sec.ObjRelocations[ChunkFixupEnd+1]).DataOffset<(ChunkStart+ChunkLen)) do
- inc(ChunkFixupEnd);
- { check if last chunk is crossing the chunk boundary, and trim ChunkLen if necessary }
- if (ChunkFixupEnd>=ChunkFixupStart) and
- ((TRelRelocation(sec.ObjRelocations[ChunkFixupEnd]).DataOffset+
- TRelRelocation(sec.ObjRelocations[ChunkFixupEnd]).size)>(ChunkStart+ChunkLen)) then
- begin
- ChunkLen:=TRelRelocation(sec.ObjRelocations[ChunkFixupEnd]).DataOffset-ChunkStart;
- Dec(ChunkFixupEnd);
- end;
- if ChunkLen>SizeOf(buf) then
- internalerror(2020050501);
- st:='T '+HexStr(Byte(ChunkStart),2)+' '+HexStr(Byte(ChunkStart shr 8),2);
- sr:='R 00 00 '+HexStr(Byte(sec.SecSymIdx),2)+' '+HexStr(Byte(sec.SecSymIdx shr 8),2);
- if assigned(sec.Data) then
- sec.Data.read(buf,ChunkLen)
- else
- FillChar(buf,ChunkLen,0);
- st_ofs:=1;
- { relocations present in the current chunk? }
- if ChunkFixupEnd>=ChunkFixupStart then
- begin
- j:=ChunkFixupStart;
- reloc:=TRelRelocation(sec.ObjRelocations[j]);
- end
- else
- begin
- j:=-1;
- reloc:=nil;
- end;
- for i:=0 to ChunkLen-1 do
- begin
- st:=st+' '+HexStr(buf[i],2);
- Inc(st_ofs);
- if assigned(reloc) then
- begin
- { advance to the current relocation }
- while (reloc.DataOffset<(ChunkStart+i)) and (j<ChunkFixupEnd) do
- begin
- Inc(j);
- reloc:=TRelRelocation(sec.ObjRelocations[j]);
- end;
- { is there a relocation at the current position? }
- if reloc.DataOffset=(ChunkStart+i) then
- begin
- sr:=sr+' '+reloc.EncodeFlags+' '+HexStr(st_ofs,2)+' '+HexStr(Byte(reloc.SecOrSymIdx),2)+' '+HexStr(Byte(reloc.SecOrSymIdx shr 8),2);
- if reloc.typ in [RELOC_ABSOLUTE_HI8,RELOC_ABSOLUTE_LO8] then
- begin
- st:=st+' '+HexStr(reloc.HiByte,2);
- Inc(st_ofs);
- end;
- end;
- end;
- end;
- writeLine(st);
- writeLine(sr);
- { prepare next chunk }
- Inc(ChunkStart, ChunkLen);
- ChunkLen:=Min(MaxChunkSize, sec.size-ChunkStart);
- ChunkFixupStart:=ChunkFixupEnd+1;
- end;
- end;
- function TRelObjOutput.writeData(Data: TObjData): boolean;
- var
- global_symbols_count: Integer = 0;
- secidx, idx, i, j: Integer;
- objsym: TObjSymbol;
- objsec: TObjSection;
- begin
- global_symbols_count:=0;
- for i:=0 to Data.ObjSymbolList.Count-1 do
- begin
- objsym:=TObjSymbol(Data.ObjSymbolList[i]);
- if objsym.bind in [AB_EXTERNAL,AB_GLOBAL] then
- Inc(global_symbols_count);
- end;
- writeLine('XL2');
- writeLine('H '+tohex(data.ObjSectionList.Count)+' areas '+tohex(global_symbols_count)+' global symbols');
- idx:=0;
- for i:=0 to Data.ObjSymbolList.Count-1 do
- begin
- objsym:=TObjSymbol(Data.ObjSymbolList[i]);
- if objsym.bind=AB_EXTERNAL then
- begin
- writeLine('S '+ApplyAsmSymbolRestrictions(objsym.Name)+' Ref0000');
- objsym.symidx:=idx;
- Inc(idx);
- end;
- end;
- secidx:=0;
- for i:=0 to Data.ObjSectionList.Count-1 do
- begin
- objsec:=TObjSection(Data.ObjSectionList[i]);
- writeLine('A '+objsec.Name+' size '+tohex(objsec.Size)+' flags 0 addr 0');
- objsec.SecSymIdx:=secidx;
- Inc(secidx);
- for j:=0 to Data.ObjSymbolList.Count-1 do
- begin
- objsym:=TObjSymbol(Data.ObjSymbolList[j]);
- if (objsym.bind=AB_GLOBAL) and (objsym.objsection=objsec) then
- begin
- writeLine('S '+ApplyAsmSymbolRestrictions(objsym.Name)+' Def'+HexStr(objsym.offset,4));
- objsym.symidx:=idx;
- Inc(idx);
- end;
- end;
- end;
- for i:=0 to Data.ObjSectionList.Count-1 do
- begin
- objsec:=TObjSection(Data.ObjSectionList[i]);
- WriteAreaContentAndRelocations(objsec);
- end;
- result:=true;
- end;
- constructor TRelObjOutput.create(AWriter: TObjectWriter);
- begin
- inherited;
- cobjdata:=TRelObjData;
- end;
- {*****************************************************************************
- TRelAssembler
- *****************************************************************************}
- constructor TRelAssembler.create(info: pasminfo; smart: boolean);
- begin
- inherited;
- CObjOutput:=TRelObjOutput;
- CInternalAr:=tarobjectwriter;
- end;
- {*****************************************************************************
- TRelObjInput
- *****************************************************************************}
- function TRelObjInput.FillBuf: boolean;
- begin
- FBufPos:=0;
- FBufSize:=min(FReader.size-FReader.Pos,MaxBufSize);
- if FBufSize>0 then
- result:=FReader.read(FBuf,FBufSize)
- else
- result:=true;
- end;
- function TRelObjInput.AtEndOfBuf: boolean;
- begin
- result:=FBufPos=FBufSize;
- end;
- function TRelObjInput.AtEoF: boolean;
- begin
- result:=AtEndOfBuf and (FReader.Pos=FReader.size);
- end;
- function TRelObjInput.ReadChar(out c: char): boolean;
- begin
- c:=#0;
- if AtEndOfBuf then
- begin
- result:=FillBuf;
- if not result then
- exit;
- end;
- if not AtEndOfBuf then
- begin
- c:=FBuf[FBufPos];
- Inc(FBufPos);
- result:=true;
- end
- else
- result:=false;
- end;
- function TRelObjInput.PeekChar(out c: char): boolean;
- begin
- c:=#0;
- if AtEndOfBuf then
- begin
- result:=FillBuf;
- if not result then
- exit;
- end;
- if not AtEndOfBuf then
- begin
- c:=FBuf[FBufPos];
- result:=true;
- end
- else
- result:=false;
- end;
- function TRelObjInput.ReadLine(out s: string): boolean;
- var
- c: Char;
- begin
- s:='';
- c:=#0;
- if AtEoF then
- begin
- result:=false;
- exit;
- end;
- repeat
- if not AtEoF then
- begin
- if not ReadChar(c) then
- begin
- result:=false;
- exit;
- end;
- if not (c in [#13,#10]) then
- s:=s+c;
- end;
- until (c in [#13,#10]) or AtEoF;
- if (c=#13) and not AtEoF then
- begin
- if not PeekChar(c) then
- begin
- result:=false;
- exit;
- end;
- if c=#10 then
- begin
- if not ReadChar(c) then
- begin
- result:=false;
- exit;
- end;
- end;
- end;
- result:=true;
- end;
- constructor TRelObjInput.create;
- begin
- inherited create;
- cobjdata:=TRelObjData;
- FBufSize:=0;
- FBufPos:=0;
- end;
- function TRelObjInput.ReadObjData(AReader: TObjectreader; out Data: TObjData): boolean;
- function DecodeRelFlags(n1: Word): TRelRelocationFlags;
- begin
- result:=[];
- if (n1 and (1 shl 0))<>0 then
- include(result,rrfByte);
- if (n1 and (1 shl 1))<>0 then
- include(result,rrfSymbol);
- if (n1 and (1 shl 2))<>0 then
- include(result,rrfPcRelative);
- if (n1 and (1 shl 3))<>0 then
- include(result,rrfTwoByteObjectFormatForByteData);
- if (n1 and (1 shl 4))<>0 then
- include(result,rrfUnsignedByteData);
- if (n1 and (1 shl 5))<>0 then
- include(result,rrfPage0Reference);
- if (n1 and (1 shl 6))<>0 then
- include(result,rrfPageNNNReference);
- if (n1 and (1 shl 7))<>0 then
- include(result,rrfMSBWith2ByteMode);
- if (n1 and (1 shl 8))<>0 then
- include(result,rrfThreeByteObjectFormatForByteData);
- if (n1 and (1 shl 9))<>0 then
- include(result,rrfRealMSBForThreeByteMode);
- if (n1 and (1 shl 10))<>0 then
- include(result,rrfReserved10);
- if (n1 and (1 shl 11))<>0 then
- include(result,rrfReserved11);
- end;
- function HandleTR(const T,R: string): boolean;
- const
- GenericTErrMsg='Invalid T record';
- GenericRErrMsg='Invalid R record';
- UnsupportedRelocationFlags=[rrfPcRelative,rrfUnsignedByteData,
- rrfPage0Reference,rrfPageNNNReference,rrfThreeByteObjectFormatForByteData,
- rrfRealMSBForThreeByteMode,rrfReserved10,rrfReserved11];
- var
- ArrT, ArrR: array of byte;
- ArrTIsRelocHiByte: array of boolean;
- tmpint: Longint;
- i: Integer;
- AreaIndex, AreaOffset: Word;
- LastDataOfsIndex: Integer;
- LastDataOfsValue: TObjSectionOfs;
- ObjSec: TObjSection;
- n1, xx_xx: Word;
- n1x, n2, RelHiByte: Byte;
- RelFlags: TRelRelocationFlags;
- reloc:TRelRelocation;
- RelocDataOffset: TObjSectionOfs;
- RelocTyp: TObjRelocationType;
- zeros_only: Boolean;
- begin
- result:=false;
- if (length(T)<5) or (((length(T)-2) mod 3)<>0) then
- begin
- InputError(GenericTErrMsg);
- exit;
- end;
- if (length(R)<11) or (((length(R)-2) mod 3)<>0) then
- begin
- InputError(GenericRErrMsg);
- exit;
- end;
- SetLength(ArrT,((length(T)-2) div 3)+1);
- for i:=0 to length(ArrT)-1 do
- begin
- if (i>0) and (T[i*3]<>' ') then
- begin
- InputError(GenericTErrMsg);
- exit;
- end;
- if not TryStrToInt('$'+copy(T,1+i*3,2),tmpint) then
- begin
- InputError(GenericTErrMsg);
- exit;
- end;
- if (tmpint<0) or (tmpint>255) then
- begin
- InputError(GenericTErrMsg);
- exit;
- end;
- ArrT[i]:=tmpint;
- end;
- SetLength(ArrR,((length(R)-2) div 3)+1);
- for i:=0 to length(ArrR)-1 do
- begin
- if (i>0) and (R[i*3]<>' ') then
- begin
- InputError(GenericRErrMsg);
- exit;
- end;
- if not TryStrToInt('$'+copy(R,1+i*3,2),tmpint) then
- begin
- InputError(GenericRErrMsg);
- exit;
- end;
- if (tmpint<0) or (tmpint>255) then
- begin
- InputError(GenericRErrMsg);
- exit;
- end;
- ArrR[i]:=tmpint;
- end;
- if (length(ArrT)<2) or (length(ArrR)<4) then
- internalerror(2020060201);
- if (ArrR[0]<>0) or (ArrR[1]<>0) then
- begin
- InputError(GenericRErrMsg);
- exit;
- end;
- AreaIndex:=(ArrR[3] shl 8) or ArrR[2];
- AreaOffset:=(ArrT[1] shl 8) or ArrT[0];
- if AreaIndex>=Data.ObjSectionList.Count then
- begin
- InputError('Area index in R record out of bounds');
- exit;
- end;
- ObjSec:=TObjSection(Data.ObjSectionList[AreaIndex]);
- if AreaOffset>ObjSec.Size then
- begin
- InputError('Area offset in T exceeds area size');
- exit;
- end;
- { section name is '_BSS'/'_STACK'/'_HEAP' and there are no relocations }
- if ((ObjSec.Name='_BSS') or (ObjSec.Name='_STACK') or (ObjSec.Name='_HEAP')) and
- (length(ArrR)=4) then
- begin
- zeros_only:=true;
- for i:=2 to length(ArrT)-1 do
- if ArrT[i]<>0 then
- begin
- zeros_only:=false;
- break;
- end;
- { avoid setting the oso_Data flag on .bss sections, if there are no relocations and all data is zero }
- if zeros_only then
- exit;
- end;
- { parse relocations }
- SetLength(ArrTIsRelocHiByte,Length(ArrT));
- LastDataOfsIndex:=2;
- LastDataOfsValue:=AreaOffset;
- i:=4;
- while i<length(ArrR) do
- begin
- n1:=ArrR[i];
- Inc(i);
- if (n1 and $F0)=$F0 then
- begin
- if i>=length(ArrR) then
- begin
- InputError(GenericRErrMsg);
- exit;
- end;
- n1x:=ArrR[i];
- Inc(i);
- n1:=((n1 and $0F) shl 8) or n1x;
- end;
- if (i+2)>=length(ArrR) then
- begin
- InputError(GenericRErrMsg);
- exit;
- end;
- n2:=ArrR[i];
- xx_xx:=ArrR[i+1] or (ArrR[i+2] shl 8);
- Inc(i,3);
- RelFlags:=DecodeRelFlags(n1);
- if ((RelFlags*UnsupportedRelocationFlags)<>[]) or
- ((rrfByte in RelFlags) xor (rrfTwoByteObjectFormatForByteData in RelFlags)) then
- begin
- InputError('Unsupported relocation flags ($'+HexStr(n1,3)+')');
- exit;
- end;
- if n2<=1 then
- begin
- InputError('Invalid relocation data offset');
- exit;
- end;
- if rrfByte in RelFlags then
- begin
- if rrfMSBWith2ByteMode in RelFlags then
- RelocTyp:=RELOC_ABSOLUTE_HI8
- else
- RelocTyp:=RELOC_ABSOLUTE_LO8;
- if (n2+1)>=length(ArrT) then
- begin
- InputError('Invalid relocation data offset');
- exit;
- end;
- ArrTIsRelocHiByte[n2+1]:=true;
- RelHiByte:=ArrT[n2+1];
- end
- else
- begin
- RelocTyp:=RELOC_ABSOLUTE;
- if n2>=length(ArrT) then
- begin
- InputError('Invalid relocation data offset');
- exit;
- end;
- RelHiByte:=0;
- end;
- while LastDataOfsIndex<n2 do
- begin
- if not ArrTIsRelocHiByte[LastDataOfsIndex] then
- Inc(LastDataOfsValue);
- Inc(LastDataOfsIndex);
- end;
- RelocDataOffset:=LastDataOfsValue;
- if rrfSymbol in RelFlags then
- begin
- if xx_xx>=Data.ObjSymbolList.Count then
- begin
- InputError('Relocation to symbol with invalid index');
- exit;
- end;
- reloc:=TRelRelocation.CreateSymbol(RelocDataOffset,TObjSymbol(Data.ObjSymbolList[xx_xx]),RelocTyp);
- end
- else
- begin
- if xx_xx>=Data.ObjSectionlist.Count then
- begin
- InputError('Relocation to area with invalid index');
- exit;
- end;
- reloc:=TRelRelocation.CreateSection(RelocDataOffset,TObjSection(Data.ObjSectionlist[xx_xx]),RelocTyp);
- end;
- reloc.RelFlags:=RelFlags;
- reloc.HiByte:=RelHiByte;
- objsec.ObjRelocations.Add(reloc);
- end;
- { read the data }
- objsec.SecOptions:=objsec.SecOptions+[oso_Data];
- objsec.Data.seek(AreaOffset);
- for i:=2 to length(ArrT)-1 do
- if not ArrTIsRelocHiByte[i] then
- objsec.Data.write(ArrT[i],1);
- result:=true;
- end;
- const
- GenericRelErrMsg='Error reading REL file';
- var
- s, AreaName, SymbolName: string;
- RecType: Char;
- HeaderFound: Boolean=false;
- ExpectedAreas,ExpectedSymbols,AreaSize,AreaFlags,AreaAddr,
- SymbolOfs: LongInt;
- tmpint: SizeInt;
- CurrSec: TObjSection=nil;
- objsym: TObjSymbol;
- LastT: string='';
- begin
- FReader:=AReader;
- InputFileName:=AReader.FileName;
- Data:=CObjData.Create(InputFileName);
- ExpectedAreas:=-1;
- ExpectedSymbols:=-1;
- result:=false;
- s:='';
- repeat
- if AtEoF or not ReadLine(s) then
- begin
- InputError(GenericRelErrMsg);
- exit;
- end;
- s:=Trim(s);
- until s<>'';
- if s<>'XL2' then
- begin
- InputError('Invalid or unsupported REL format identifier');
- exit;
- end;
- while not AtEoF do
- begin
- if not ReadLine(s) then
- begin
- InputError(GenericRelErrMsg);
- exit;
- end;
- s:=Trim(s);
- if s<>'' then
- begin
- RecType:=s[1];
- if (length(s)<3) or (s[2]<>' ') then
- begin
- InputError('Invalid or unsupported REL record');
- exit;
- end;
- delete(s,1,2);
- case RecType of
- 'H': { header }
- begin
- if HeaderFound then
- begin
- InputError('Duplicated header');
- exit;
- end;
- HeaderFound:=true;
- tmpint:=Pos(' ',s);
- if not TryStrToInt('$'+Copy(s,1,tmpint-1),ExpectedAreas) then
- begin
- InputError('Invalid area count in header');
- exit;
- end;
- delete(s,1,tmpint);
- if copy(s,1,6)<>'areas ' then
- begin
- InputError('Invalid header');
- exit;
- end;
- delete(s,1,6);
- tmpint:=Pos(' ',s);
- if not TryStrToInt('$'+Copy(s,1,tmpint-1),ExpectedSymbols) then
- begin
- InputError('Invalid symbol count in header');
- exit;
- end;
- delete(s,1,tmpint);
- if s<>'global symbols' then
- begin
- InputError('Invalid header');
- exit;
- end;
- end;
- 'M': { module }
- begin
- { we ignore this for now }
- end;
- 'S': { symbol }
- begin
- if not HeaderFound then
- begin
- InputError('Symbol record encountered before header');
- exit;
- end;
- tmpint:=Pos(' ',s);
- if tmpint<=1 then
- begin
- InputError('Invalid symbol record');
- exit;
- end;
- SymbolName:=copy(s,1,tmpint-1);
- delete(s,1,tmpint);
- if Length(s)<4 then
- begin
- InputError('Invalid symbol record');
- exit;
- end;
- if not TryStrToInt('$'+Copy(s,4,Length(s)-3),SymbolOfs) then
- begin
- InputError('Invalid symbol offset');
- exit;
- end;
- case Copy(s,1,3) of
- 'Def':
- begin
- if CurrSec=nil then
- begin
- InputError('Public symbol defined outside any area');
- exit;
- end;
- if (SymbolOfs<0) or (SymbolOfs>CurrSec.Size) then
- begin
- InputError('Public symbol offset outside the range of the current area');
- exit;
- end;
- objsym:=Data.CreateSymbol(SymbolName);
- objsym.bind:=AB_GLOBAL;
- objsym.typ:=AT_FUNCTION;
- objsym.objsection:=CurrSec;
- objsym.offset:=SymbolOfs;
- objsym.size:=0;
- end;
- 'Ref':
- begin
- if CurrSec<>nil then
- begin
- InputError('External symbols must be defined before the first area');
- exit;
- end;
- if SymbolOfs<>0 then
- begin
- InputError('External symbols must be declared with an offset of 0');
- exit;
- end;
- objsym:=Data.CreateSymbol(SymbolName);
- objsym.bind:=AB_EXTERNAL;
- objsym.typ:=AT_FUNCTION;
- objsym.objsection:=nil;
- objsym.offset:=0;
- objsym.size:=0;
- end;
- else
- begin
- InputError('Invalid or unsupported symbol record');
- exit;
- end;
- end;
- if Data.ObjSymbolList.Count>ExpectedSymbols then
- begin
- InputError('Number of symbols exceeds the number, declared in header');
- exit;
- end;
- end;
- 'A': { area }
- begin
- if not HeaderFound then
- begin
- InputError('Area record encountered before header');
- exit;
- end;
- tmpint:=Pos(' ',s);
- if tmpint<=1 then
- begin
- InputError('Invalid area record');
- exit;
- end;
- AreaName:=copy(s,1,tmpint-1);
- delete(s,1,tmpint);
- if copy(s,1,5)<>'size ' then
- begin
- InputError('Invalid area record');
- exit;
- end;
- delete(s,1,5);
- tmpint:=Pos(' ',s);
- if not TryStrToInt('$'+Copy(s,1,tmpint-1),AreaSize) then
- begin
- InputError('Invalid area size');
- exit;
- end;
- delete(s,1,tmpint);
- if copy(s,1,6)<>'flags ' then
- begin
- InputError('Invalid area record');
- exit;
- end;
- delete(s,1,6);
- tmpint:=Pos(' ',s);
- if not TryStrToInt('$'+Copy(s,1,tmpint-1),AreaFlags) then
- begin
- InputError('Invalid area flags');
- exit;
- end;
- delete(s,1,tmpint);
- if copy(s,1,5)<>'addr ' then
- begin
- InputError('Invalid area record');
- exit;
- end;
- delete(s,1,5);
- if not TryStrToInt('$'+Copy(s,1,tmpint-1),AreaAddr) then
- begin
- InputError('Invalid area address');
- exit;
- end;
- if AreaFlags<>0 then
- begin
- InputError('Unsupported area flags ('+tostr(AreaFlags)+')');
- exit;
- end;
- if AreaAddr<>0 then
- begin
- InputError('Area address<>0 not supported');
- exit;
- end;
- CurrSec:=Data.createsection(AreaName,1,[],false);
- CurrSec.alloc(AreaSize);
- if Data.ObjSectionList.Count>ExpectedAreas then
- begin
- InputError('Number of areas exceeds the number, declared in header');
- exit;
- end;
- end;
- 'T': { T line () }
- begin
- if LastT<>'' then
- begin
- InputError('T record not followed by R record');
- exit;
- end;
- LastT:=s;
- end;
- 'R': { R line (relocation information) }
- begin
- if LastT='' then
- begin
- InputError('R record without T record');
- exit;
- end;
- if not HandleTR(LastT,s) then
- exit;
- LastT:='';
- end;
- 'P': { P line (paging information) }
- begin
- InputError('P line records are not supported');
- exit;
- end;
- else
- begin
- InputError('Unsupported REL record type: #'+tostr(Ord(RecType)));
- exit;
- end;
- end;
- end;
- end;
- result:=true;
- end;
- class function TRelObjInput.CanReadObjData(AReader: TObjectreader): boolean;
- var
- s: string;
- instance: TRelObjInput;
- begin
- result:=false;
- instance:=TRelObjInput.Create;
- instance.FReader:=AReader;
- with instance do
- while not AtEoF do
- begin
- if not ReadLine(s) then
- exit;
- s:=Trim(s);
- if s<>'' then
- begin
- result:=s='XL2';
- break;
- end;
- end;
- instance.Free;
- end;
- {*****************************************************************************
- TIntelHexExeOutput
- *****************************************************************************}
- procedure TIntelHexExeOutput.writeString(const S: ansistring);
- begin
- FWriter.write(S[1],Length(S));
- end;
- procedure TIntelHexExeOutput.writeLine(const S: ansistring);
- begin
- writeString(S+#10)
- end;
- function TIntelHexExeOutput.writeData: boolean;
- const
- MaxRecLen=16;
- var
- exesec: TExeSection;
- objsec: TObjSection;
- exesec_i, objsec_i: Integer;
- s: string;
- blocklen, i: integer;
- buf: array [0..MaxRecLen-1] of Byte;
- blockaddr: Word;
- checksum: Byte;
- begin
- result:=false;
- for exesec_i:=0 to ExeSectionList.Count-1 do
- begin
- exesec:=TExeSection(ExeSectionList[exesec_i]);
- for objsec_i:=0 to exesec.ObjSectionList.Count-1 do
- begin
- objsec:=TObjSection(exesec.ObjSectionList[objsec_i]);
- if oso_Data in objsec.SecOptions then
- begin
- objsec.Data.seek(0);
- while objsec.Data.Pos<objsec.Data.size do
- begin
- blocklen:=Min(objsec.Data.size-objsec.Data.Pos,MaxRecLen);
- blockaddr:=objsec.Data.Pos+objsec.MemPos+ImageBase;
- s:=':'+HexStr(blocklen,2)+HexStr(blockaddr,4)+'00';
- checksum:=Byte(blocklen)+Byte(blockaddr shr 8)+Byte(blockaddr)+0;
- if objsec.Data.read(buf,blocklen)<>blocklen then
- internalerror(2020060301);
- for i:=0 to blocklen-1 do
- begin
- s:=s+HexStr(buf[i],2);
- checksum:=Byte(checksum+buf[i]);
- end;
- checksum:=$100-checksum;
- s:=s+HexStr(checksum,2);
- writeLine(s);
- end;
- end;
- end;
- end;
- writeLine(':00000001FF');
- result:=true;
- end;
- procedure TIntelHexExeOutput.DoRelocationFixup(objsec: TObjSection);
- var
- i: Integer;
- objreloc: TRelRelocation;
- target,w: Word;
- b: Byte;
- begin
- for i:=0 to objsec.ObjRelocations.Count-1 do
- begin
- objreloc:=TRelRelocation(objsec.ObjRelocations[i]);
- if assigned(objreloc.symbol) then
- target:=objreloc.symbol.address+ImageBase
- else if assigned(objreloc.objsection) then
- target:=objreloc.objsection.MemPos+ImageBase
- else
- internalerror(2020060302);
- case objreloc.typ of
- RELOC_ABSOLUTE:
- begin
- objsec.Data.seek(objreloc.DataOffset);
- objsec.Data.read(w,2);
- w:=LEtoN(w);
- Inc(w,target);
- w:=LEtoN(w);
- objsec.Data.seek(objreloc.DataOffset);
- objsec.Data.write(w,2);
- end;
- RELOC_ABSOLUTE_HI8:
- begin
- objsec.Data.seek(objreloc.DataOffset);
- objsec.Data.read(b,1);
- w:=b or (objreloc.HiByte shl 8);
- Inc(w,target);
- b:=Byte(w shr 8);
- objsec.Data.seek(objreloc.DataOffset);
- objsec.Data.write(b,1);
- end;
- RELOC_ABSOLUTE_LO8:
- begin
- objsec.Data.seek(objreloc.DataOffset);
- objsec.Data.read(b,1);
- w:=b or (objreloc.HiByte shl 8);
- Inc(w,target);
- b:=Byte(w);
- objsec.Data.seek(objreloc.DataOffset);
- objsec.Data.write(b,1);
- end;
- else
- internalerror(2020060303);
- end;
- end;
- end;
- constructor TIntelHexExeOutput.create;
- begin
- inherited create;
- CObjData:=TRelObjData;
- MaxMemPos:=$FFFF;
- end;
- {*****************************************************************************
- TZXSpectrumIntelHexExeOutput
- *****************************************************************************}
- constructor TZXSpectrumIntelHexExeOutput.create;
- begin
- inherited create;
- { The ZX Spectrum RTL switches to interrupt mode 2, and install an
- interrupt handler + table, starting at address $FDFD, so we must limit
- program size to $FDFC }
- MaxMemPos:=$FDFC;
- end;
- {*****************************************************************************
- Initialize
- *****************************************************************************}
- const
- as_z80_rel_info : tasminfo =
- (
- id : as_z80_rel;
- idtxt : 'REL';
- asmbin : '';
- asmcmd : '';
- supported_targets : [system_z80_embedded,system_z80_zxspectrum,system_z80_msxdos];
- flags : [af_outputbinary,af_smartlink_sections];
- labelprefix : '..@';
- labelmaxlen : 79;
- comment : '; ';
- dollarsign: '$';
- );
- initialization
- RegisterAssembler(as_z80_rel_info,TRelAssembler);
- end.
|