12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364 |
- {
- 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(2020050601);
- 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',
- '.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..1] 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
- begin
- data:=data+symaddr-len-CurrObjSec.Size;
- end
- 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
- 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:='';
- 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);
- 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.
|