123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529 |
- {
- Copyright (c) 1998-2008 by Carl Eric Codere and Peter Vreman
- Does the parsing for the Z80 styled inline assembler.
- 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 raz80asm;
- {$i fpcdefs.inc}
- Interface
- uses
- cclasses,
- globtype,
- rasm,raz80,
- aasmbase,cpubase;
- type
- tasmtoken = (
- AS_NONE,AS_LABEL,AS_LLABEL,AS_STRING,AS_INTNUM,
- AS_REALNUM,AS_COMMA,AS_LPAREN,
- AS_RPAREN,AS_COLON,AS_DOT,AS_PLUS,AS_MINUS,AS_STAR,
- AS_SEPARATOR,AS_ID,AS_REGISTER,AS_OPCODE,AS_CONDITION,AS_SLASH,AS_DOLLAR,
- AS_HASH,AS_LSBRACKET,AS_RSBRACKET,AS_LBRACKET,AS_RBRACKET,
- AS_EQUAL,
- {------------------ Assembler directives --------------------}
- AS_DEFB,AS_DEFW,AS_AREA,AS_END,
- {------------------ Assembler Operators --------------------}
- AS_TYPE,AS_SIZEOF,AS_VMTOFFSET,AS_MOD,AS_SHL,AS_SHR,AS_NOT,AS_AND,AS_OR,AS_XOR,AS_NOR,AS_AT,
- AS_RELTYPE, // common token for relocation types
- {------------------ Target-specific directive ---------------}
- AS_TARGET_DIRECTIVE
- );
- tasmkeyword = string[10];
- const
- { These tokens should be modified accordingly to the modifications }
- { in the different enumerations. }
- firstdirective = AS_DEFB;
- lastdirective = AS_END;
- token2str : array[tasmtoken] of tasmkeyword=(
- '','Label','LLabel','string','integer',
- 'float',',','(',
- ')',':','.','+','-','*',
- ';','identifier','register','opcode','condition','/','$',
- '#','{','}','[',']',
- '=',
- 'defb','defw','area','END',
- 'TYPE','SIZEOF','VMTOFFSET','%','<<','>>','!','&','|','^','~','@','reltype',
- 'directive');
- type
- { input flags for BuildConstSymbolExpression }
- tconstsymbolexpressioninputflag = (
- cseif_needofs,
- cseif_isref,
- cseif_startingminus,
- { allows using full reference-like syntax for constsymbol expressions,
- for example:
- Rec.Str[5] -> Rec.Str+5 }
- cseif_referencelike
- );
- tconstsymbolexpressioninputflags = set of tconstsymbolexpressioninputflag;
- { output flags for BuildConstSymbolExpression }
- tconstsymbolexpressionoutputflag = (
- cseof_isseg,
- cseof_is_farproc_entry,
- cseof_hasofs
- );
- tconstsymbolexpressionoutputflags = set of tconstsymbolexpressionoutputflag;
- { tz80reader }
- tz80reader = class(tasmreader)
- actasmcond : TAsmCond;
- actasmpattern_origcase : string;
- actasmtoken : tasmtoken;
- prevasmtoken : tasmtoken;
- inexpression : boolean;
- procedure SetupTables;
- procedure GetToken;
- function consume(t : tasmtoken):boolean;
- procedure RecoverConsume(allowcomma:boolean);
- procedure AddReferences(dest,src : tz80operand);
- function is_locallabel(const s:string):boolean;
- function is_asmopcode(const s: string):boolean;
- Function is_asmdirective(const s: string):boolean;
- function is_register(const s:string):boolean;
- function is_condition(const s:string):boolean;
- function is_targetdirective(const s: string):boolean;
- procedure BuildRecordOffsetSize(const expr: string;out offset:tcgint;out size:tcgint; out mangledname: string; needvmtofs: boolean; out hastypecast: boolean);
- procedure BuildConstSymbolExpression(in_flags: tconstsymbolexpressioninputflags;out value:tcgint;out asmsym:string;out asmsymtyp:TAsmsymtype;out size:tcgint;out out_flags:tconstsymbolexpressionoutputflags);
- function BuildConstExpression:longint;
- function BuildRefConstExpression(out size:tcgint;startingminus:boolean=false):longint;
- procedure BuildConstantOperand(oper: tz80operand);
- procedure BuildReference(oper : tz80operand);
- procedure BuildOperand(oper: tz80operand;istypecast:boolean);
- procedure BuildOpCode(instr:TZ80Instruction);
- procedure BuildConstant(constsize: byte);
- procedure handleopcode;
- procedure ConvertCalljmp(instr : tz80instruction);
- function Assemble: tlinkedlist;override;
- end;
- Implementation
- uses
- { helpers }
- cutils,
- { global }
- globals,verbose,
- systems,
- { aasm }
- cpuinfo,aasmtai,aasmdata,aasmcpu,
- { symtable }
- symconst,symbase,symtype,symsym,symtable,symdef,symutil,
- { parser }
- scanner,pbase,
- procinfo,
- rabase,rautils,
- cgbase,cgutils,cgobj
- ;
- {*****************************************************************************
- tz80reader
- *****************************************************************************}
- procedure tz80reader.SetupTables;
- var
- i: TAsmOp;
- begin
- iasmops:=TFPHashList.create;
- for i:=firstop to lastop do
- iasmops.Add(upper(std_op2str[i]),Pointer(PtrInt(i)));
- end;
- procedure tz80reader.GetToken;
- var
- len: Integer;
- srsym : tsym;
- srsymtable : TSymtable;
- can_be_condition : Boolean;
- begin
- c:=scanner.c;
- { certain instructions can have a condition, as an operand. We need to set this flag,
- because 'C' can be either a register, or a condition, depending on the context }
- can_be_condition:=(actasmtoken=AS_OPCODE) and (actopcode in [A_JP,A_JR,A_JRJP,A_CALL,A_RET]);
- { save old token and reset new token }
- prevasmtoken:=actasmtoken;
- actasmtoken:=AS_NONE;
- { reset }
- actasmpattern:='';
- { while space and tab , continue scan... }
- while c in [' ',#9] do
- c:=current_scanner.asmgetchar;
- { get token pos }
- if not (c in [#10,#13,'{',';','/','(']) then
- current_scanner.gettokenpos;
- { Local Label, Label, Directive, Prefix or Opcode }
- if firsttoken and not(c in [#10,#13,'{',';','/','(']) then
- begin
- firsttoken:=FALSE;
- len:=0;
- { directive }
- if c = '.' then
- begin
- inc(len);
- actasmpattern[len]:=c;
- { Let us point to the next character }
- c:=current_scanner.asmgetchar;
- while c in ['A'..'Z','a'..'z','0'..'9','_','$'] do
- begin
- inc(len);
- actasmpattern[len]:=c;
- c:=current_scanner.asmgetchar;
- end;
- actasmpattern[0]:=chr(len);
- { must be a directive }
- if is_asmdirective(actasmpattern) then
- exit;
- if is_targetdirective(actasmpattern) then
- begin
- actasmtoken:=AS_TARGET_DIRECTIVE;
- exit;
- end;
- Message1(asmr_e_not_directive_or_local_symbol,actasmpattern);
- end;
- { only opcodes, global and local labels are allowed now. }
- while c in ['A'..'Z','a'..'z','0'..'9','_','@'] do
- begin
- inc(len);
- actasmpattern[len]:=c;
- c:=current_scanner.asmgetchar;
- end;
- actasmpattern[0]:=chr(len);
- actasmpattern_origcase:=actasmpattern;
- { Label ? }
- if c = ':' then
- begin
- { Local label ? }
- if is_locallabel(actasmpattern) then
- actasmtoken:=AS_LLABEL
- else
- actasmtoken:=AS_LABEL;
- { let us point to the next character }
- c:=current_scanner.asmgetchar;
- firsttoken:=true;
- exit;
- end;
- { Directive ? }
- if is_asmdirective(actasmpattern) then
- exit;
- { Opcode ? }
- if is_asmopcode(upper(actasmpattern)) then
- begin
- uppervar(actasmpattern);
- exit;
- end;
- { End of assemblerblock ? }
- if upper(actasmpattern) = 'END' then
- begin
- actasmtoken:=AS_END;
- exit;
- end;
- message1(asmr_e_unknown_opcode,actasmpattern);
- actasmtoken:=AS_NONE;
- end
- else { else firsttoken }
- { Here we must handle all possible cases }
- begin
- case c of
- '.' : { possiblities : - local label reference , such as in jmp @local1 }
- { - field of object/record }
- { - directive. }
- begin
- if (prevasmtoken in [AS_ID,AS_RPAREN]) then
- begin
- c:=current_scanner.asmgetchar;
- actasmtoken:=AS_DOT;
- exit;
- end;
- actasmpattern:=c;
- c:=current_scanner.asmgetchar;
- while c in ['A'..'Z','a'..'z','0'..'9','_','$'] do
- begin
- actasmpattern:=actasmpattern + c;
- c:=current_scanner.asmgetchar;
- end;
- if is_asmdirective(actasmpattern) then
- exit;
- if is_targetdirective(actasmpattern) then
- begin
- actasmtoken:=AS_TARGET_DIRECTIVE;
- exit;
- end;
- { local label references and directives }
- { are case sensitive }
- actasmtoken:=AS_ID;
- exit;
- end;
- { identifier, register, prefix or directive }
- '_','A'..'Z','a'..'z':
- begin
- len:=0;
- while c in ['A'..'Z','a'..'z','0'..'9','_','$'] do
- begin
- inc(len);
- actasmpattern[len]:=c;
- c:=current_scanner.asmgetchar;
- end;
- actasmpattern[0]:=chr(len);
- actasmpattern_origcase:=actasmpattern;
- uppervar(actasmpattern);
- { check for end which is a reserved word unlike the opcodes }
- if actasmpattern = 'END' then
- begin
- actasmtoken:=AS_END;
- exit;
- end;
- if actasmpattern = 'TYPE' then
- begin
- actasmtoken:=AS_TYPE;
- exit;
- end;
- if actasmpattern = 'SIZEOF' then
- begin
- actasmtoken:=AS_SIZEOF;
- exit;
- end;
- if actasmpattern = 'VMTOFFSET' then
- begin
- actasmtoken:=AS_VMTOFFSET;
- exit;
- end;
- if can_be_condition and is_condition(actasmpattern) then
- begin
- actasmtoken:=AS_CONDITION;
- exit;
- end;
- if is_register(actasmpattern) then
- begin
- actasmtoken:=AS_REGISTER;
- { is it an alternate register? }
- if (c='''') and is_register(actasmpattern+'''') then
- begin
- actasmpattern:=actasmpattern+c;
- c:=current_scanner.asmgetchar;
- end;
- exit;
- end;
- { if next is a '.' and this is a unitsym then we also need to
- parse the identifier }
- if (c='.') then
- begin
- searchsym(actasmpattern,srsym,srsymtable);
- if assigned(srsym) and
- (srsym.typ=unitsym) and
- (srsym.owner.symtabletype in [staticsymtable,globalsymtable]) and
- srsym.owner.iscurrentunit then
- begin
- actasmpattern:=actasmpattern+c;
- c:=current_scanner.asmgetchar;
- while c in ['A'..'Z','a'..'z','0'..'9','_','$'] do
- begin
- actasmpattern:=actasmpattern + upcase(c);
- c:=current_scanner.asmgetchar;
- end;
- end;
- end;
- actasmtoken:=AS_ID;
- exit;
- end;
- //'%' : { register or modulo }
- // handlepercent;
- '1'..'9': { integer number }
- begin
- len:=0;
- while c in ['0'..'9'] do
- Begin
- inc(len);
- actasmpattern[len]:=c;
- c:=current_scanner.asmgetchar;
- end;
- actasmpattern[0]:=chr(len);
- actasmpattern:=tostr(ParseVal(actasmpattern,10));
- actasmtoken:=AS_INTNUM;
- exit;
- end;
- '0' : { octal,hexa,real or binary number. }
- begin
- actasmpattern:=c;
- c:=current_scanner.asmgetchar;
- case upcase(c) of
- 'B': { binary }
- Begin
- c:=current_scanner.asmgetchar;
- while c in ['0','1'] do
- Begin
- actasmpattern:=actasmpattern + c;
- c:=current_scanner.asmgetchar;
- end;
- actasmpattern:=tostr(ParseVal(actasmpattern,2));
- actasmtoken:=AS_INTNUM;
- exit;
- end;
- 'D': { real }
- Begin
- c:=current_scanner.asmgetchar;
- { get ridd of the 0d }
- if (c in ['+','-']) then
- begin
- actasmpattern:=c;
- c:=current_scanner.asmgetchar;
- end
- else
- actasmpattern:='';
- while c in ['0'..'9'] do
- Begin
- actasmpattern:=actasmpattern + c;
- c:=current_scanner.asmgetchar;
- end;
- if c='.' then
- begin
- actasmpattern:=actasmpattern + c;
- c:=current_scanner.asmgetchar;
- while c in ['0'..'9'] do
- Begin
- actasmpattern:=actasmpattern + c;
- c:=current_scanner.asmgetchar;
- end;
- if upcase(c) = 'E' then
- begin
- actasmpattern:=actasmpattern + c;
- c:=current_scanner.asmgetchar;
- if (c in ['+','-']) then
- begin
- actasmpattern:=actasmpattern + c;
- c:=current_scanner.asmgetchar;
- end;
- while c in ['0'..'9'] do
- Begin
- actasmpattern:=actasmpattern + c;
- c:=current_scanner.asmgetchar;
- end;
- end;
- actasmtoken:=AS_REALNUM;
- exit;
- end
- else
- begin
- Message1(asmr_e_invalid_float_const,actasmpattern+c);
- actasmtoken:=AS_NONE;
- end;
- end;
- 'X': { hexadecimal }
- Begin
- c:=current_scanner.asmgetchar;
- while c in ['0'..'9','a'..'f','A'..'F'] do
- Begin
- actasmpattern:=actasmpattern + c;
- c:=current_scanner.asmgetchar;
- end;
- actasmpattern:=tostr(ParseVal(actasmpattern,16));
- actasmtoken:=AS_INTNUM;
- exit;
- end;
- '1'..'7': { octal }
- begin
- actasmpattern:=actasmpattern + c;
- while c in ['0'..'7'] do
- Begin
- actasmpattern:=actasmpattern + c;
- c:=current_scanner.asmgetchar;
- end;
- actasmpattern:=tostr(ParseVal(actasmpattern,8));
- actasmtoken:=AS_INTNUM;
- exit;
- end;
- else { octal number zero value...}
- Begin
- actasmpattern:=tostr(ParseVal(actasmpattern,8));
- actasmtoken:=AS_INTNUM;
- exit;
- end;
- end; { end case }
- end;
- '&' :
- begin
- c:=current_scanner.asmgetchar;
- actasmtoken:=AS_AND;
- end;
- '''' : { char }
- begin
- actasmpattern:='';
- repeat
- c:=current_scanner.asmgetchar;
- case c of
- '\' :
- begin
- { copy also the next char so \" is parsed correctly }
- actasmpattern:=actasmpattern+c;
- c:=current_scanner.asmgetchar;
- actasmpattern:=actasmpattern+c;
- end;
- '''' :
- begin
- c:=current_scanner.asmgetchar;
- break;
- end;
- #10,#13:
- Message(scan_f_string_exceeds_line);
- else
- actasmpattern:=actasmpattern+c;
- end;
- until false;
- actasmpattern:=EscapeToPascal(actasmpattern);
- actasmtoken:=AS_STRING;
- exit;
- end;
- '"' : { string }
- begin
- actasmpattern:='';
- repeat
- c:=current_scanner.asmgetchar;
- case c of
- '\' :
- begin
- { copy also the next char so \" is parsed correctly }
- actasmpattern:=actasmpattern+c;
- c:=current_scanner.asmgetchar;
- actasmpattern:=actasmpattern+c;
- end;
- '"' :
- begin
- c:=current_scanner.asmgetchar;
- break;
- end;
- #10,#13:
- Message(scan_f_string_exceeds_line);
- else
- actasmpattern:=actasmpattern+c;
- end;
- until false;
- actasmpattern:=EscapeToPascal(actasmpattern);
- actasmtoken:=AS_STRING;
- exit;
- end;
- //'$' :
- // begin
- // handledollar;
- // exit;
- // end;
- '#' :
- begin
- actasmtoken:=AS_HASH;
- c:=current_scanner.asmgetchar;
- exit;
- end;
- '[' :
- begin
- actasmtoken:=AS_LBRACKET;
- c:=current_scanner.asmgetchar;
- exit;
- end;
- ']' :
- begin
- actasmtoken:=AS_RBRACKET;
- c:=current_scanner.asmgetchar;
- exit;
- end;
- '{' :
- begin
- {$ifdef arm}
- // the arm assembler uses { ... } for register sets
- // but compiler directives {$... } are still allowed
- c:=current_scanner.asmgetchar;
- if c<>'$' then
- actasmtoken:=AS_LSBRACKET
- else
- begin
- current_scanner.skipcomment(false);
- GetToken;
- end;
- {$else arm}
- current_scanner.skipcomment(true);
- GetToken;
- {$endif arm}
- exit;
- end;
- {$ifdef arm}
- '}' :
- begin
- actasmtoken:=AS_RSBRACKET;
- c:=current_scanner.asmgetchar;
- exit;
- end;
- '=' :
- begin
- actasmtoken:=AS_EQUAL;
- c:=current_scanner.asmgetchar;
- exit;
- end;
- {$endif arm}
- ',' :
- begin
- actasmtoken:=AS_COMMA;
- c:=current_scanner.asmgetchar;
- exit;
- end;
- '<' :
- begin
- actasmtoken:=AS_SHL;
- c:=current_scanner.asmgetchar;
- if c = '<' then
- c:=current_scanner.asmgetchar;
- exit;
- end;
- '>' :
- begin
- actasmtoken:=AS_SHL;
- c:=current_scanner.asmgetchar;
- if c = '>' then
- c:=current_scanner.asmgetchar;
- exit;
- end;
- '|' :
- begin
- actasmtoken:=AS_OR;
- c:=current_scanner.asmgetchar;
- exit;
- end;
- '^' :
- begin
- actasmtoken:=AS_XOR;
- c:=current_scanner.asmgetchar;
- exit;
- end;
- '(' :
- begin
- c:=current_scanner.asmgetchar;
- if c='*' then
- begin
- current_scanner.skipoldtpcomment(true);
- GetToken;
- end
- else
- actasmtoken:=AS_LPAREN;
- exit;
- end;
- ')' :
- begin
- actasmtoken:=AS_RPAREN;
- c:=current_scanner.asmgetchar;
- exit;
- end;
- ':' :
- begin
- actasmtoken:=AS_COLON;
- c:=current_scanner.asmgetchar;
- exit;
- end;
- '+' :
- begin
- actasmtoken:=AS_PLUS;
- c:=current_scanner.asmgetchar;
- exit;
- end;
- '-' :
- begin
- actasmtoken:=AS_MINUS;
- c:=current_scanner.asmgetchar;
- exit;
- end;
- '*' :
- begin
- actasmtoken:=AS_STAR;
- c:=current_scanner.asmgetchar;
- exit;
- end;
- '/' :
- begin
- c:=current_scanner.asmgetchar;
- if c='/' then
- begin
- current_scanner.skipdelphicomment;
- GetToken;
- end
- else
- actasmtoken:=AS_SLASH;
- exit;
- end;
- '!', '~' :
- begin
- actasmtoken:=AS_NOT;
- c:=current_scanner.asmgetchar;
- exit;
- end;
- '@' : { possiblities : - local label reference , such as in jmp @local1 }
- { - @Result, @Code or @Data special variables. }
- begin
- actasmpattern:=c;
- c:=current_scanner.asmgetchar;
- while c in ['A'..'Z','a'..'z','0'..'9','_','@','$','&','?'] do
- begin
- actasmpattern:=actasmpattern + c;
- c:=current_scanner.asmgetchar;
- end;
- actasmpattern_origcase:=actasmpattern;
- uppervar(actasmpattern);
- actasmtoken:=AS_ID;
- exit;
- end;
- #13,#10:
- begin
- current_scanner.linebreak;
- c:=current_scanner.asmgetchar;
- firsttoken:=TRUE;
- actasmtoken:=AS_SEPARATOR;
- exit;
- end;
- ';' :
- begin
- c:=current_scanner.asmgetchar;
- firsttoken:=TRUE;
- actasmtoken:=AS_SEPARATOR;
- exit;
- end;
- else
- current_scanner.illegal_char(c);
- end;
- end;
- end;
- function tz80reader.consume(t: tasmtoken): boolean;
- begin
- Consume:=true;
- if t<>actasmtoken then
- begin
- Message2(scan_f_syn_expected,token2str[t],token2str[actasmtoken]);
- Consume:=false;
- end;
- repeat
- gettoken;
- until actasmtoken<>AS_NONE;
- end;
- procedure tz80reader.RecoverConsume(allowcomma: boolean);
- begin
- while not (actasmtoken in [AS_SEPARATOR,AS_END]) do
- begin
- if allowcomma and (actasmtoken=AS_COMMA) then
- break;
- Consume(actasmtoken);
- end;
- end;
- procedure tz80reader.AddReferences(dest, src: tz80operand);
- procedure AddRegister(reg:tregister;scalefactor:byte);
- begin
- if reg=NR_NO then
- exit;
- if (dest.opr.ref.base=NR_NO) and (scalefactor=1) then
- begin
- dest.opr.ref.base:=reg;
- exit;
- end;
- if dest.opr.ref.index=NR_NO then
- begin
- dest.opr.ref.index:=reg;
- dest.opr.ref.scalefactor:=scalefactor;
- exit;
- end;
- if dest.opr.ref.index=reg then
- begin
- Inc(dest.opr.ref.scalefactor,scalefactor);
- exit;
- end;
- Message(asmr_e_multiple_index);
- end;
- var
- tmplocal: TOprRec;
- segreg: TRegister;
- begin
- case dest.opr.typ of
- OPR_REFERENCE:
- begin
- case src.opr.typ of
- OPR_REFERENCE:
- begin
- AddRegister(src.opr.ref.base,1);
- AddRegister(src.opr.ref.index,src.opr.ref.scalefactor);
- Inc(dest.opr.ref.offset,src.opr.ref.offset);
- Inc(dest.opr.constoffset,src.opr.constoffset);
- dest.haslabelref:=dest.haslabelref or src.haslabelref;
- dest.hasproc:=dest.hasproc or src.hasproc;
- dest.hasvar:=dest.hasvar or src.hasvar;
- if assigned(src.opr.ref.symbol) then
- begin
- if assigned(dest.opr.ref.symbol) then
- Message(asmr_e_cant_have_multiple_relocatable_symbols);
- dest.opr.ref.symbol:=src.opr.ref.symbol;
- end;
- if assigned(src.opr.ref.relsymbol) then
- begin
- if assigned(dest.opr.ref.relsymbol) then
- Message(asmr_e_cant_have_multiple_relocatable_symbols);
- dest.opr.ref.relsymbol:=src.opr.ref.relsymbol;
- end;
- if dest.opr.ref.refaddr=addr_no then
- dest.opr.ref.refaddr:=src.opr.ref.refaddr;
- end;
- OPR_LOCAL:
- begin
- tmplocal:=src.opr;
- if dest.opr.ref.base<>NR_NO then
- begin
- if tmplocal.localindexreg=NR_NO then
- begin
- tmplocal.localindexreg:=dest.opr.ref.base;
- tmplocal.localscale:=0;
- end
- else if tmplocal.localindexreg=dest.opr.ref.base then
- tmplocal.localscale:=Min(tmplocal.localscale,1)+1
- else
- Message(asmr_e_multiple_index);
- end;
- if dest.opr.ref.index<>NR_NO then
- begin
- if tmplocal.localindexreg=NR_NO then
- begin
- tmplocal.localindexreg:=dest.opr.ref.index;
- tmplocal.localscale:=dest.opr.ref.scalefactor;
- end
- else if tmplocal.localindexreg=dest.opr.ref.index then
- tmplocal.localscale:=Min(tmplocal.localscale,1)+Min(dest.opr.ref.scalefactor,1)
- else
- Message(asmr_e_multiple_index);
- end;
- Inc(tmplocal.localconstoffset,dest.opr.constoffset);
- Inc(tmplocal.localsymofs,dest.opr.ref.offset);
- dest.opr:=tmplocal;
- end;
- else
- internalerror(2018030701);
- end;
- end;
- OPR_LOCAL:
- begin
- case src.opr.typ of
- OPR_REFERENCE:
- begin
- if src.opr.ref.base<>NR_NO then
- begin
- if dest.opr.localindexreg=NR_NO then
- begin
- dest.opr.localindexreg:=src.opr.ref.base;
- dest.opr.localscale:=0;
- end
- else if dest.opr.localindexreg=src.opr.ref.base then
- dest.opr.localscale:=Min(dest.opr.localscale,1)+1
- else
- Message(asmr_e_multiple_index);
- end;
- if src.opr.ref.index<>NR_NO then
- begin
- if dest.opr.localindexreg=NR_NO then
- begin
- dest.opr.localindexreg:=src.opr.ref.index;
- dest.opr.localscale:=src.opr.ref.scalefactor;
- end
- else if dest.opr.localindexreg=src.opr.ref.index then
- dest.opr.localscale:=Min(dest.opr.localscale,1)+Min(src.opr.ref.scalefactor,1)
- else
- Message(asmr_e_multiple_index);
- end;
- Inc(dest.opr.localconstoffset,src.opr.constoffset);
- Inc(dest.opr.localsymofs,src.opr.ref.offset);
- end;
- OPR_LOCAL:
- Message(asmr_e_no_local_or_para_allowed);
- else
- internalerror(2018030703);
- end;
- end;
- else
- internalerror(2018030702);
- end;
- end;
- function tz80reader.is_locallabel(const s: string): boolean;
- begin
- is_locallabel:=(length(s)>1) and (s[1]='@');
- end;
- function tz80reader.is_asmopcode(const s: string):boolean;
- begin
- actcondition:=C_None;
- actopcode:=tasmop(PtrUInt(iasmops.Find(s)));
- if actopcode<>A_NONE then
- begin
- actasmtoken:=AS_OPCODE;
- is_asmopcode:=true;
- end
- else
- is_asmopcode:=false;
- end;
- function tz80reader.is_asmdirective(const s: string): boolean;
- var
- i : tasmtoken;
- hs : string;
- begin
- hs:=lower(s);
- for i:=firstdirective to lastdirective do
- if hs=token2str[i] then
- begin
- actasmtoken:=i;
- is_asmdirective:=true;
- exit;
- end;
- is_asmdirective:=false;
- end;
- function tz80reader.is_register(const s:string):boolean;
- begin
- is_register:=false;
- actasmregister:=std_regnum_search(lower(s));
- if actasmregister<>NR_NO then
- begin
- is_register:=true;
- actasmtoken:=AS_REGISTER;
- end;
- end;
- function tz80reader.is_condition(const s: string): boolean;
- var
- condstr: string;
- cond: TAsmCond;
- begin
- is_condition:=false;
- actasmcond:=C_None;
- condstr:=lower(s);
- for cond in TAsmCond do
- if (cond<>C_None) and (cond2str[cond]=condstr) then
- begin
- is_condition:=true;
- actasmtoken:=AS_CONDITION;
- actasmcond:=cond;
- exit;
- end;
- end;
- function tz80reader.is_targetdirective(const s: string): boolean;
- begin
- result:=false;
- end;
- procedure tz80reader.BuildRecordOffsetSize(const expr: string; out
- offset: tcgint; out size: tcgint; out mangledname: string;
- needvmtofs: boolean; out hastypecast: boolean);
- var
- s: string;
- Begin
- offset:=0;
- size:=0;
- mangledname:='';
- hastypecast:=false;
- s:=expr;
- while (actasmtoken=AS_DOT) do
- begin
- Consume(AS_DOT);
- if actasmtoken in [AS_ID,AS_REGISTER] then
- begin
- s:=s+'.'+actasmpattern;
- consume(actasmtoken);
- end
- else
- begin
- Consume(AS_ID);
- RecoverConsume(true);
- break;
- end;
- end;
- if not GetRecordOffsetSize(s,offset,size,mangledname,needvmtofs,hastypecast) then
- Message(asmr_e_building_record_offset);
- end;
- procedure tz80reader.BuildConstSymbolExpression(
- in_flags: tconstsymbolexpressioninputflags; out value: tcgint; out
- asmsym: string; out asmsymtyp: TAsmsymtype; out size: tcgint; out
- out_flags: tconstsymbolexpressionoutputflags);
- var
- tempstr,expr,hs,mangledname : string;
- parenlevel : longint;
- l,k : tcgint;
- hasparen,
- errorflag,
- needvmtofs : boolean;
- prevtok : tasmtoken;
- hl : tasmlabel;
- hssymtyp : Tasmsymtype;
- def : tdef;
- sym : tsym;
- srsymtable : TSymtable;
- hastypecast : boolean;
- Begin
- { reset }
- value:=0;
- asmsym:='';
- asmsymtyp:=AT_DATA;
- size:=0;
- out_flags:=[];
- errorflag:=FALSE;
- tempstr:='';
- expr:='';
- if cseif_startingminus in in_flags then
- expr:='-';
- inexpression:=TRUE;
- parenlevel:=0;
- sym:=nil;
- needvmtofs:=FALSE;
- Repeat
- { Support ugly delphi constructs like: [ECX].1+2[EDX] }
- if (cseif_isref in in_flags) and (actasmtoken=AS_LBRACKET) then
- break;
- if (cseif_referencelike in in_flags) and
- (actasmtoken in [AS_LBRACKET,AS_RBRACKET]) then
- case actasmtoken of
- AS_LBRACKET:
- begin
- Consume(AS_LBRACKET);
- if (length(expr)>0) and
- not (expr[length(expr)] in ['+','-']) then
- expr:=expr+'+';
- expr:=expr+'[';
- end;
- AS_RBRACKET:
- begin
- Consume(AS_RBRACKET);
- expr:=expr+']';
- end;
- else
- ;
- end;
- Case actasmtoken of
- AS_LPAREN:
- Begin
- Consume(AS_LPAREN);
- expr:=expr + '(';
- inc(parenlevel);
- end;
- AS_RPAREN:
- Begin
- { Keep the AS_PAREN in actasmtoken, it is maybe a typecast }
- if parenlevel=0 then
- break;
- Consume(AS_RPAREN);
- expr:=expr + ')';
- dec(parenlevel);
- end;
- AS_SHL:
- Begin
- Consume(AS_SHL);
- expr:=expr + '<';
- end;
- AS_SHR:
- Begin
- Consume(AS_SHR);
- expr:=expr + '>';
- end;
- AS_SLASH:
- Begin
- Consume(AS_SLASH);
- expr:=expr + '/';
- end;
- AS_MOD:
- Begin
- Consume(AS_MOD);
- expr:=expr + '%';
- end;
- AS_STAR:
- Begin
- Consume(AS_STAR);
- if (cseif_isref in in_flags) and (actasmtoken=AS_REGISTER) then
- break;
- expr:=expr + '*';
- end;
- AS_PLUS:
- Begin
- Consume(AS_PLUS);
- if (cseif_isref in in_flags) and ((actasmtoken=AS_REGISTER) or (actasmtoken=AS_LBRACKET)) then
- break;
- expr:=expr + '+';
- end;
- AS_MINUS:
- Begin
- Consume(AS_MINUS);
- expr:=expr + '-';
- end;
- AS_AND:
- Begin
- Consume(AS_AND);
- expr:=expr + '&';
- end;
- AS_NOT:
- Begin
- Consume(AS_NOT);
- expr:=expr + '~';
- end;
- AS_XOR:
- Begin
- Consume(AS_XOR);
- expr:=expr + '^';
- end;
- AS_OR:
- Begin
- Consume(AS_OR);
- expr:=expr + '|';
- end;
- AS_INTNUM:
- Begin
- expr:=expr + actasmpattern;
- Consume(AS_INTNUM);
- end;
- {$ifdef i8086}
- AS_SEG:
- begin
- include(out_flags,cseof_isseg);
- Consume(actasmtoken);
- if actasmtoken<>AS_ID then
- Message(asmr_e_seg_without_identifier);
- end;
- {$endif i8086}
- AS_VMTOFFSET{,
- AS_OFFSET}:
- begin
- {if (actasmtoken = AS_OFFSET) then
- begin
- include(in_flags,cseif_needofs);
- include(out_flags,cseof_hasofs);
- end
- else}
- needvmtofs:=true;
- Consume(actasmtoken);
- if actasmtoken<>AS_ID then
- Message(asmr_e_offset_without_identifier);
- end;
- AS_SIZEOF,
- AS_TYPE:
- begin
- l:=0;
- hasparen:=false;
- Consume(actasmtoken);
- if actasmtoken=AS_LPAREN then
- begin
- hasparen:=true;
- Consume(AS_LPAREN);
- end;
- if actasmtoken<>AS_ID then
- Message(asmr_e_type_without_identifier)
- else
- begin
- tempstr:=actasmpattern;
- Consume(AS_ID);
- if actasmtoken=AS_DOT then
- begin
- BuildRecordOffsetSize(tempstr,k,l,mangledname,false,hastypecast);
- if mangledname<>'' then
- { procsym }
- Message(asmr_e_wrong_sym_type);
- if hastypecast then
- end
- else
- begin
- asmsearchsym(tempstr,sym,srsymtable);
- if assigned(sym) then
- begin
- case sym.typ of
- staticvarsym,
- localvarsym,
- paravarsym :
- l:=tabstractvarsym(sym).getsize;
- typesym :
- l:=ttypesym(sym).typedef.size;
- else
- Message(asmr_e_wrong_sym_type);
- end;
- end
- else
- Message1(sym_e_unknown_id,tempstr);
- end;
- end;
- str(l, tempstr);
- expr:=expr + tempstr;
- if hasparen then
- Consume(AS_RPAREN);
- end;
- //AS_PTR :
- // begin
- // { Support ugly delphi constructs like <constant> PTR [ref] }
- // break;
- // end;
- AS_STRING:
- begin
- l:=0;
- case Length(actasmpattern) of
- 1 :
- l:=ord(actasmpattern[1]);
- 2 :
- l:=ord(actasmpattern[2]) + ord(actasmpattern[1]) shl 8;
- 3 :
- l:=ord(actasmpattern[3]) +
- Ord(actasmpattern[2]) shl 8 + ord(actasmpattern[1]) shl 16;
- 4 :
- l:=ord(actasmpattern[4]) + ord(actasmpattern[3]) shl 8 +
- Ord(actasmpattern[2]) shl 16 + ord(actasmpattern[1]) shl 24;
- else
- Message1(asmr_e_invalid_string_as_opcode_operand,actasmpattern);
- end;
- str(l, tempstr);
- expr:=expr + tempstr;
- Consume(AS_STRING);
- end;
- AS_ID:
- begin
- hs:='';
- hssymtyp:=AT_DATA;
- def:=nil;
- tempstr:=actasmpattern;
- prevtok:=prevasmtoken;
- { stop parsing a constant expression if we find an opcode after a
- non-operator like "db $66 mov eax,ebx" }
- if (prevtok in [AS_ID,AS_INTNUM,AS_RPAREN]) and
- is_asmopcode(actasmpattern) then
- break;
- consume(AS_ID);
- if (tempstr='@CODE') or (tempstr='@DATA') then
- begin
- if asmsym='' then
- begin
- asmsym:=tempstr;
- asmsymtyp:=AT_SECTION;
- end
- else
- Message(asmr_e_cant_have_multiple_relocatable_symbols);
- end
- else if SearchIConstant(tempstr,l) then
- begin
- str(l, tempstr);
- expr:=expr + tempstr;
- end
- else
- begin
- if is_locallabel(tempstr) then
- begin
- CreateLocalLabel(tempstr,hl,false);
- hs:=hl.name;
- hssymtyp:=AT_FUNCTION;
- end
- else
- if SearchLabel(tempstr,hl,false) then
- begin
- hs:=hl.name;
- hssymtyp:=AT_FUNCTION;
- end
- else
- begin
- asmsearchsym(tempstr,sym,srsymtable);
- if assigned(sym) then
- begin
- case sym.typ of
- staticvarsym :
- begin
- hs:=tstaticvarsym(sym).mangledname;
- def:=tstaticvarsym(sym).vardef;
- end;
- localvarsym,
- paravarsym :
- begin
- Message(asmr_e_no_local_or_para_allowed);
- end;
- procsym :
- begin
- if Tprocsym(sym).ProcdefList.Count>1 then
- Message(asmr_w_calling_overload_func);
- hs:=tprocdef(tprocsym(sym).ProcdefList[0]).mangledname;
- {$ifdef i8086}
- if is_proc_far(tprocdef(tprocsym(sym).ProcdefList[0]))
- and not (po_interrupt in tprocdef(tprocsym(sym).ProcdefList[0]).procoptions) then
- include(out_flags,cseof_is_farproc_entry)
- else
- exclude(out_flags,cseof_is_farproc_entry);
- {$endif i8086}
- hssymtyp:=AT_FUNCTION;
- end;
- typesym :
- begin
- if not(ttypesym(sym).typedef.typ in [recorddef,objectdef]) then
- Message(asmr_e_wrong_sym_type);
- size:=ttypesym(sym).typedef.size;
- end;
- fieldvarsym :
- begin
- tempstr:=upper(tdef(sym.owner.defowner).GetTypeName)+'.'+tempstr;
- end;
- else
- Message(asmr_e_wrong_sym_type);
- end;
- end
- else
- Message1(sym_e_unknown_id,tempstr);
- end;
- { symbol found? }
- if hs<>'' then
- begin
- if asmsym='' then
- begin
- asmsym:=hs;
- asmsymtyp:=hssymtyp;
- end
- else
- Message(asmr_e_cant_have_multiple_relocatable_symbols);
- if (expr='') or (expr[length(expr)]='+') then
- begin
- { don't remove the + if there could be a record field }
- if actasmtoken<>AS_DOT then
- delete(expr,length(expr),1);
- end
- else
- //if (cseif_needofs in in_flags) then
- // begin
- // if (prevtok<>AS_OFFSET) then
- // Message(asmr_e_need_offset);
- // end
- //else
- Message(asmr_e_only_add_relocatable_symbol);
- end;
- if (actasmtoken=AS_DOT) or
- (assigned(sym) and
- is_normal_fieldvarsym(sym)) then
- begin
- BuildRecordOffsetSize(tempstr,l,size,hs,needvmtofs,hastypecast);
- if hs <> '' then
- hssymtyp:=AT_FUNCTION
- else
- begin
- str(l, tempstr);
- expr:=expr + tempstr;
- end
- end
- else if (actasmtoken<>AS_DOT) and
- assigned(sym) and
- (sym.typ=typesym) and
- (ttypesym(sym).typedef.typ in [recorddef,objectdef]) then
- begin
- { just a record type (without being followed by dot)
- evaluates to 0. Ugly, but TP7 compatible. }
- expr:=expr+'0';
- end
- else
- begin
- if (expr='') or (expr[length(expr)] in ['+','-','/','*']) then
- delete(expr,length(expr),1);
- end;
- if (actasmtoken=AS_LBRACKET) and
- assigned(def) and
- (def.typ=arraydef) then
- begin
- consume(AS_LBRACKET);
- l:=BuildConstExpression;
- if l<tarraydef(def).lowrange then
- begin
- Message(asmr_e_constant_out_of_bounds);
- l:=0;
- end
- else
- l:=(l-tarraydef(def).lowrange)*tarraydef(def).elesize;
- str(l, tempstr);
- expr:=expr + '+' + tempstr;
- consume(AS_RBRACKET);
- end;
- end;
- { check if there are wrong operator used like / or mod etc. }
- if (hs<>'') and not(actasmtoken in [AS_MINUS,AS_PLUS,AS_COMMA,AS_SEPARATOR,AS_END,AS_RBRACKET]) then
- Message(asmr_e_only_add_relocatable_symbol);
- end;
- //AS_ALIGN,
- AS_DEFB,
- AS_DEFW,
- AS_END,
- AS_RBRACKET,
- AS_SEPARATOR,
- AS_COMMA,
- AS_COLON:
- break;
- else
- begin
- { write error only once. }
- if not errorflag then
- Message(asmr_e_invalid_constant_expression);
- { consume tokens until we find COMMA or SEPARATOR }
- Consume(actasmtoken);
- errorflag:=TRUE;
- end;
- end;
- Until false;
- { calculate expression }
- if not ErrorFlag then
- value:=CalculateExpression(expr)
- else
- value:=0;
- { no longer in an expression }
- inexpression:=FALSE;
- end;
- function tz80reader.BuildConstExpression: longint;
- var
- l,size : tcgint;
- hs : string;
- hssymtyp : TAsmsymtype;
- out_flags : tconstsymbolexpressionoutputflags;
- begin
- BuildConstSymbolExpression([],l,hs,hssymtyp,size,out_flags);
- if hs<>'' then
- Message(asmr_e_relocatable_symbol_not_allowed);
- BuildConstExpression:=l;
- end;
- function tz80reader.BuildRefConstExpression(out size: tcgint;
- startingminus: boolean): longint;
- var
- l : tcgint;
- hs : string;
- hssymtyp : TAsmsymtype;
- in_flags : tconstsymbolexpressioninputflags;
- out_flags : tconstsymbolexpressionoutputflags;
- begin
- in_flags:=[cseif_isref];
- if startingminus then
- include(in_flags,cseif_startingminus);
- BuildConstSymbolExpression(in_flags,l,hs,hssymtyp,size,out_flags);
- if hs<>'' then
- Message(asmr_e_relocatable_symbol_not_allowed);
- BuildRefConstExpression:=l;
- end;
- procedure tz80reader.BuildConstantOperand(oper: tz80operand);
- var
- l,size : tcgint;
- tempstr : string;
- tempsymtyp : tasmsymtype;
- cse_out_flags : tconstsymbolexpressionoutputflags;
- begin
- if not (oper.opr.typ in [OPR_NONE,OPR_CONSTANT]) then
- Message(asmr_e_invalid_operand_type);
- BuildConstSymbolExpression([cseif_needofs],l,tempstr,tempsymtyp,size,cse_out_flags);
- if tempstr<>'' then
- begin
- oper.opr.typ:=OPR_SYMBOL;
- oper.opr.symofs:=l;
- oper.opr.symbol:=current_asmdata.RefAsmSymbol(tempstr,tempsymtyp);
- oper.opr.symseg:=cseof_isseg in cse_out_flags;
- oper.opr.sym_farproc_entry:=cseof_is_farproc_entry in cse_out_flags;
- end
- else
- if oper.opr.typ=OPR_NONE then
- begin
- oper.opr.typ:=OPR_CONSTANT;
- oper.opr.val:=l;
- end
- else
- inc(oper.opr.val,l);
- end;
- procedure tz80reader.BuildReference(oper: tz80operand);
- var
- scale : byte;
- k,l,size : tcgint;
- tempstr,hs : string;
- tempsymtyp : tasmsymtype;
- code : integer;
- hreg : tregister;
- GotStar,GotOffset,HadVar,
- GotPlus,Negative,BracketlessReference : boolean;
- hl : tasmlabel;
- hastypecast: boolean;
- tmpoper: tz80operand;
- cse_in_flags: tconstsymbolexpressioninputflags;
- cse_out_flags: tconstsymbolexpressionoutputflags;
- begin
- if actasmtoken=AS_LPAREN then
- begin
- Consume(AS_LPAREN);
- BracketlessReference:=false;
- end
- else
- BracketlessReference:=true;
- if not(oper.opr.typ in [OPR_LOCAL,OPR_REFERENCE]) then
- oper.InitRef;
- GotStar:=false;
- GotPlus:=true;
- GotOffset:=false;
- Negative:=false;
- Scale:=0;
- repeat
- if GotOffset and (actasmtoken<>AS_ID) then
- Message(asmr_e_invalid_reference_syntax);
- Case actasmtoken of
- AS_ID, { Constant reference expression OR variable reference expression }
- AS_VMTOFFSET:
- Begin
- if not GotPlus then
- Message(asmr_e_invalid_reference_syntax);
- GotStar:=false;
- GotPlus:=false;
- if (actasmtoken = AS_VMTOFFSET) or
- (SearchIConstant(actasmpattern,l) or
- SearchRecordType(actasmpattern)) then
- begin
- l:=BuildRefConstExpression(size,negative);
- if size<>0 then
- oper.SetSize(size,false);
- negative:=false; { "l" was negated if necessary }
- GotPlus:=(prevasmtoken=AS_PLUS);
- GotStar:=(prevasmtoken=AS_STAR);
- case oper.opr.typ of
- OPR_LOCAL :
- begin
- if GotStar then
- Message(asmr_e_invalid_reference_syntax);
- Inc(oper.opr.localsymofs,l);
- end;
- OPR_REFERENCE :
- begin
- if GotStar then
- oper.opr.ref.scalefactor:=l
- else
- Inc(oper.opr.ref.offset,l);
- end;
- else
- internalerror(2019050715);
- end;
- end
- else
- Begin
- if negative and not oper.hasvar then
- Message(asmr_e_only_add_relocatable_symbol)
- else if oper.hasvar and not GotOffset and
- (not negative or assigned(oper.opr.ref.relsymbol)) then
- Message(asmr_e_cant_have_multiple_relocatable_symbols);
- HadVar:=oper.hasvar and GotOffset;
- tempstr:=actasmpattern;
- Consume(AS_ID);
- { typecasting? }
- if (actasmtoken=AS_LPAREN) and
- SearchType(tempstr,l) then
- begin
- oper.hastype:=true;
- oper.typesize:=l;
- Consume(AS_LPAREN);
- BuildOperand(oper,true);
- Consume(AS_RPAREN);
- end
- else
- if is_locallabel(tempstr) then
- begin
- CreateLocalLabel(tempstr,hl,false);
- oper.InitRef;
- oper.haslabelref:=true;
- if not negative then
- begin
- oper.opr.ref.symbol:=hl;
- oper.hasvar:=true;
- end
- else
- oper.opr.ref.relsymbol:=hl;
- {$ifdef i8086}
- if oper.opr.ref.segment=NR_NO then
- oper.opr.ref.segment:=NR_CS;
- {$endif i8086}
- end
- else
- if oper.SetupVar(tempstr,GotOffset) then
- begin
- { convert OPR_LOCAL register para into a reference base }
- if (oper.opr.typ=OPR_LOCAL) and
- AsmRegisterPara(oper.opr.localsym) then
- oper.InitRefConvertLocal
- else
- begin
- {$ifdef x86_64}
- if actasmtoken=AS_WRT then
- begin
- if (oper.opr.typ=OPR_REFERENCE) then
- begin
- Consume(AS_WRT);
- Consume(AS___GOTPCREL);
- if (oper.opr.ref.base<>NR_NO) or
- (oper.opr.ref.index<>NR_NO) or
- (oper.opr.ref.offset<>0) then
- Message(asmr_e_wrong_gotpcrel_intel_syntax);
- if tf_no_pic_supported in target_info.flags then
- Message(asmr_e_no_gotpcrel_support);
- oper.opr.ref.refaddr:=addr_pic;
- oper.opr.ref.base:=NR_RIP;
- end
- else
- message(asmr_e_invalid_reference_syntax);
- end;
- {$endif x86_64}
- end;
- end
- else
- Message1(sym_e_unknown_id,tempstr);
- { record.field ? }
- if actasmtoken=AS_DOT then
- begin
- BuildRecordOffsetSize(tempstr,l,k,hs,false,hastypecast);
- if (hs<>'') then
- Message(asmr_e_invalid_symbol_ref);
- case oper.opr.typ of
- OPR_LOCAL :
- inc(oper.opr.localsymofs,l);
- OPR_REFERENCE :
- inc(oper.opr.ref.offset,l);
- else
- internalerror(2019050716);
- end;
- if hastypecast then
- oper.hastype:=true;
- oper.SetSize(k,false);
- end;
- if GotOffset then
- begin
- if oper.hasvar and (oper.opr.ref.base=current_procinfo.framepointer) then
- begin
- if (oper.opr.typ=OPR_REFERENCE) then
- oper.opr.ref.base:=NR_NO;
- oper.hasvar:=hadvar;
- end
- else
- begin
- if oper.hasvar and hadvar then
- Message(asmr_e_cant_have_multiple_relocatable_symbols);
- { should we allow ?? }
- end;
- end;
- end;
- GotOffset:=false;
- end;
- AS_PLUS :
- Begin
- Consume(AS_PLUS);
- Negative:=false;
- GotPlus:=true;
- GotStar:=false;
- Scale:=0;
- end;
- AS_DOT :
- Begin
- { Handle like a + }
- Consume(AS_DOT);
- Negative:=false;
- GotPlus:=true;
- GotStar:=false;
- Scale:=0;
- end;
- AS_MINUS :
- begin
- Consume(AS_MINUS);
- Negative:=true;
- GotPlus:=true;
- GotStar:=false;
- Scale:=0;
- end;
- AS_STAR : { Scaling, with eax*4 order }
- begin
- Consume(AS_STAR);
- hs:='';
- l:=0;
- case actasmtoken of
- AS_ID,
- AS_LPAREN :
- l:=BuildConstExpression;
- AS_INTNUM:
- Begin
- hs:=actasmpattern;
- Consume(AS_INTNUM);
- end;
- AS_REGISTER :
- begin
- case oper.opr.typ of
- OPR_REFERENCE :
- begin
- if oper.opr.ref.scalefactor=0 then
- begin
- if scale<>0 then
- begin
- oper.opr.ref.scalefactor:=scale;
- scale:=0;
- end
- else
- Message(asmr_e_wrong_scale_factor);
- end
- else
- Message(asmr_e_invalid_reference_syntax);
- end;
- OPR_LOCAL :
- begin
- if oper.opr.localscale=0 then
- begin
- if scale<>0 then
- begin
- oper.opr.localscale:=scale;
- scale:=0;
- end
- else
- Message(asmr_e_wrong_scale_factor);
- end
- else
- Message(asmr_e_invalid_reference_syntax);
- end;
- else
- internalerror(2019050719);
- end;
- end;
- else
- Message(asmr_e_invalid_reference_syntax);
- end;
- if actasmtoken<>AS_REGISTER then
- begin
- if hs<>'' then
- val(hs,l,code);
- case oper.opr.typ of
- OPR_REFERENCE :
- oper.opr.ref.scalefactor:=l;
- OPR_LOCAL :
- oper.opr.localscale:=l;
- else
- internalerror(2019050717);
- end;
- if l>9 then
- Message(asmr_e_wrong_scale_factor);
- end;
- GotPlus:=false;
- GotStar:=false;
- end;
- AS_REGISTER :
- begin
- hreg:=actasmregister;
- Consume(AS_REGISTER);
- if not((GotPlus and (not Negative)) or
- GotStar) then
- Message(asmr_e_invalid_reference_syntax);
- { this register will be the index:
- 1. just read a *
- 2. next token is a *
- 3. base register is already used }
- case oper.opr.typ of
- OPR_LOCAL :
- begin
- if (oper.opr.localindexreg<>NR_NO) then
- Message(asmr_e_multiple_index);
- oper.opr.localindexreg:=hreg;
- if scale<>0 then
- begin
- oper.opr.localscale:=scale;
- scale:=0;
- end;
- end;
- OPR_REFERENCE :
- begin
- if (GotStar) or
- (actasmtoken=AS_STAR) or
- (oper.opr.ref.base<>NR_NO) then
- begin
- if (oper.opr.ref.index<>NR_NO) then
- Message(asmr_e_multiple_index);
- oper.opr.ref.index:=hreg;
- if scale<>0 then
- begin
- oper.opr.ref.scalefactor:=scale;
- scale:=0;
- end;
- end
- else
- begin
- oper.opr.ref.base:=hreg;
- {$ifdef x86_64}
- { non-GOT based RIP-relative accesses are also position-independent }
- if (oper.opr.ref.base=NR_RIP) and
- (oper.opr.ref.refaddr<>addr_pic) then
- oper.opr.ref.refaddr:=addr_pic_no_got;
- {$endif x86_64}
- end;
- end;
- else
- internalerror(2019050718);
- end;
- GotPlus:=false;
- GotStar:=false;
- end;
- //AS_OFFSET :
- // begin
- // Consume(AS_OFFSET);
- // GotOffset:=true;
- // end;
- AS_TYPE,
- AS_NOT,
- AS_STRING,
- AS_INTNUM,
- AS_LPAREN : { Constant reference expression }
- begin
- if not GotPlus and not GotStar then
- Message(asmr_e_invalid_reference_syntax);
- cse_in_flags:=[cseif_needofs,cseif_isref];
- if GotPlus and negative then
- include(cse_in_flags,cseif_startingminus);
- BuildConstSymbolExpression(cse_in_flags,l,tempstr,tempsymtyp,size,cse_out_flags);
- { already handled by BuildConstSymbolExpression(); must be
- handled there to avoid [reg-1+1] being interpreted as
- [reg-(1+1)] }
- negative:=false;
- if tempstr<>'' then
- begin
- if GotStar then
- Message(asmr_e_only_add_relocatable_symbol);
- if not assigned(oper.opr.ref.symbol) then
- begin
- oper.opr.ref.symbol:=current_asmdata.RefAsmSymbol(tempstr,tempsymtyp);
- {$ifdef i8086}
- if cseof_isseg in cse_out_flags then
- begin
- if not (oper.opr.ref.refaddr in [addr_fardataseg,addr_dgroup]) then
- oper.opr.ref.refaddr:=addr_seg;
- end
- else if (tempsymtyp=AT_FUNCTION) and (oper.opr.ref.segment=NR_NO) then
- oper.opr.ref.segment:=NR_CS;
- {$endif i8086}
- end
- else
- Message(asmr_e_cant_have_multiple_relocatable_symbols);
- end;
- case oper.opr.typ of
- OPR_REFERENCE :
- begin
- if GotStar then
- oper.opr.ref.scalefactor:=l
- else if (prevasmtoken = AS_STAR) then
- begin
- if scale<>0 then
- scale:=l*scale
- else
- scale:=l;
- end
- else
- begin
- Inc(oper.opr.ref.offset,l);
- Inc(oper.opr.constoffset,l);
- end;
- end;
- OPR_LOCAL :
- begin
- if GotStar then
- oper.opr.localscale:=l
- else if (prevasmtoken = AS_STAR) then
- begin
- if scale<>0 then
- scale:=l*scale
- else
- scale:=l;
- end
- else
- Inc(oper.opr.localsymofs,l);
- end;
- else
- internalerror(2019050714);
- end;
- GotPlus:=(prevasmtoken=AS_PLUS) or
- (prevasmtoken=AS_MINUS);
- if GotPlus then
- negative := prevasmtoken = AS_MINUS;
- GotStar:=(prevasmtoken=AS_STAR);
- end;
- //AS_LBRACKET :
- // begin
- // if (GotPlus and Negative) or GotStar then
- // Message(asmr_e_invalid_reference_syntax);
- // tmpoper:=Tz80Operand.create;
- // BuildReference(tmpoper);
- // AddReferences(oper,tmpoper);
- // tmpoper.Free;
- // GotPlus:=false;
- // GotStar:=false;
- // end;
- AS_RPAREN :
- begin
- if GotPlus or GotStar or BracketlessReference then
- Message(asmr_e_invalid_reference_syntax);
- Consume(AS_RPAREN);
- if actasmtoken=AS_LPAREN then
- begin
- tmpoper:=Tz80Operand.create;
- BuildReference(tmpoper);
- AddReferences(oper,tmpoper);
- tmpoper.Free;
- end;
- break;
- end;
- AS_SEPARATOR,
- AS_END,
- AS_COMMA:
- begin
- if not BracketlessReference then
- begin
- Message(asmr_e_invalid_reference_syntax);
- RecoverConsume(true);
- end;
- break;
- end;
- else
- Begin
- Message(asmr_e_invalid_reference_syntax);
- RecoverConsume(true);
- break;
- end;
- end;
- until false;
- end;
- procedure tz80reader.BuildOperand(oper: tz80operand; istypecast: boolean);
- procedure AddLabelOperand(hl:tasmlabel);
- begin
- if (oper.opr.typ=OPR_NONE) and
- is_calljmp(actopcode) then
- begin
- oper.opr.typ:=OPR_SYMBOL;
- oper.opr.symbol:=hl;
- end
- else
- begin
- oper.InitRef;
- oper.opr.ref.symbol:=hl;
- oper.haslabelref:=true;
- end;
- end;
- var
- l: tcgint;
- tsize: tcgint;
- expr: string;
- hl: tasmlabel;
- begin
- repeat
- case actasmtoken of
- //AS_OFFSET,
- AS_SIZEOF,
- AS_VMTOFFSET,
- AS_TYPE,
- AS_NOT,
- AS_STRING,
- AS_PLUS,
- AS_MINUS,
- // AS_LPAREN,
- AS_INTNUM :
- begin
- case oper.opr.typ of
- OPR_REFERENCE :
- begin
- l := BuildRefConstExpression(tsize);
- if tsize<>0 then
- oper.SetSize(tsize,false);
- inc(oper.opr.ref.offset,l);
- inc(oper.opr.constoffset,l);
- end;
- OPR_LOCAL :
- begin
- l := BuildConstExpression;
- inc(oper.opr.localsymofs,l);
- inc(oper.opr.localconstoffset,l);
- end;
- OPR_NONE,
- OPR_CONSTANT :
- BuildConstantOperand(oper);
- else
- Message(asmr_e_invalid_operand_type);
- end;
- end;
- AS_LPAREN:
- begin
- BuildReference(oper);
- end;
- AS_ID : { A constant expression, or a Variable ref. }
- Begin
- { Label or Special symbol reference? }
- if actasmpattern[1] = '@' then
- Begin
- if actasmpattern = '@RESULT' then
- Begin
- oper.SetupResult;
- Consume(AS_ID);
- expr:='result';
- end
- else
- if (actasmpattern = '@CODE') or (actasmpattern = '@DATA') then
- begin
- Message(asmr_w_CODE_and_DATA_not_supported);
- Consume(AS_ID);
- end
- else
- { Local Label }
- begin
- CreateLocalLabel(actasmpattern,hl,false);
- Consume(AS_ID);
- AddLabelOperand(hl);
- end;
- end
- else
- { support result for delphi modes }
- if (m_objpas in current_settings.modeswitches) and (actasmpattern='RESULT') then
- begin
- oper.SetUpResult;
- Consume(AS_ID);
- expr:='result';
- end
- { probably a variable or normal expression }
- { or a procedure (such as in CALL ID) }
- else
- Begin
- { is it a constant ? }
- if SearchIConstant(actasmpattern,l) then
- Begin
- case oper.opr.typ of
- OPR_REFERENCE :
- begin
- l := BuildRefConstExpression(tsize);
- if tsize<>0 then
- oper.SetSize(tsize,false);
- inc(oper.opr.ref.offset,l);
- inc(oper.opr.constoffset,l);
- end;
- OPR_LOCAL :
- begin
- l := BuildRefConstExpression(tsize);
- if tsize<>0 then
- oper.SetSize(tsize,false);
- inc(oper.opr.localsymofs,l);
- inc(oper.opr.localconstoffset,l);
- end;
- OPR_NONE,
- OPR_CONSTANT :
- BuildConstantOperand(oper);
- else
- Message(asmr_e_invalid_operand_type);
- end;
- end
- else
- { Check for pascal label }
- if SearchLabel(actasmpattern,hl,false) then
- begin
- Consume(AS_ID);
- AddLabelOperand(hl);
- end
- else
- { is it a normal variable ? }
- Begin
- expr:=actasmpattern;
- Consume(AS_ID);
- { typecasting? }
- if SearchType(expr,l) then
- begin
- oper.hastype:=true;
- oper.typesize:=l;
- case actasmtoken of
- AS_LPAREN :
- begin
- { Support Type([Reference]) }
- Consume(AS_LPAREN);
- BuildOperand(oper,true);
- { Delphi also supports Type(Register) and
- interprets it the same as Type([Register]). }
- if (oper.opr.typ = OPR_REGISTER) then
- { This also sets base to the register. }
- oper.InitRef;
- Consume(AS_RPAREN);
- end;
- //AS_LBRACKET :
- // begin
- // { Support Var.Type[Index] }
- // { Convert @label.Byte[1] to reference }
- // if oper.opr.typ=OPR_SYMBOL then
- // oper.initref;
- // end;
- else
- ;
- end;
- end
- else
- begin
- if not oper.SetupVar(expr,false) then
- Begin
- { not a variable, check special variables.. }
- if expr = 'SELF' then
- begin
- oper.SetupSelf;
- expr:='self';
- end
- else
- begin
- Message1(sym_e_unknown_id,expr);
- expr:='';
- end;
- end;
- { indexed access to variable? }
- //if actasmtoken=AS_LBRACKET then
- // begin
- // { ... then the operand size is not known anymore }
- // oper.size:=OS_NO;
- // BuildReference(oper);
- // end;
- end;
- end;
- end;
- end;
- AS_REGISTER : { Register, a variable reference or a constant reference }
- begin
- Consume(AS_REGISTER);
- { Simple register }
- if (oper.opr.typ <> OPR_NONE) then
- Message(asmr_e_syn_operand);
- oper.opr.typ:=OPR_REGISTER;
- oper.opr.reg:=actasmregister;
- oper.SetSize(tcgsize2size[reg_cgsize(oper.opr.reg)],true);
- end;
- AS_SEPARATOR,
- AS_END,
- AS_COMMA:
- begin
- break;
- end;
- else
- begin
- Message(asmr_e_syn_operand);
- RecoverConsume(true);
- break;
- end;
- end;
- until false;
- end;
- procedure tz80reader.BuildOpCode(instr: TZ80Instruction);
- var
- operandnum: Integer;
- begin
- instr.opcode:=actopcode;
- operandnum:=1;
- Consume(AS_OPCODE);
- { Zero operand opcode ? }
- if actasmtoken in [AS_SEPARATOR,AS_END] then
- exit;
- { Condition (e.g. 'NC' in 'JP NC, label') }
- if actasmtoken=AS_CONDITION then
- begin
- instr.condition:=actasmcond;
- Consume(AS_CONDITION);
- if actasmtoken in [AS_SEPARATOR,AS_END] then
- exit;
- if actasmtoken=AS_COMMA then
- Consume(AS_COMMA);
- end;
- { Read Operands }
- repeat
- case actasmtoken of
- { End of asm operands for this opcode }
- AS_END,
- AS_SEPARATOR :
- break;
- { Operand delimiter }
- AS_COMMA :
- begin
- { should have something before the comma }
- if instr.operands[operandnum].opr.typ=OPR_NONE then
- Message(asmr_e_syntax_error);
- if operandnum >= max_operands then
- Message(asmr_e_too_many_operands)
- else
- Inc(operandnum);
- Consume(AS_COMMA);
- end;
- else
- BuildOperand(instr.Operands[operandnum] as tz80operand,false);
- end;
- until false;
- instr.ops:=operandnum;
- end;
- procedure tz80reader.BuildConstant(constsize: byte);
- var
- asmsymtyp : TAsmSymType;
- asmsym,
- expr : string;
- value, sz : tcgint;
- inflags : tconstsymbolexpressioninputflags;
- outflags : tconstsymbolexpressionoutputflags;
- begin
- repeat
- case actasmtoken of
- AS_STRING:
- Begin
- expr:=actasmpattern;
- if length(expr) > 1 then
- Message(asmr_e_string_not_allowed_as_const);
- Consume(AS_STRING);
- case actasmtoken of
- AS_COMMA: Consume(AS_COMMA);
- AS_END,
- AS_SEPARATOR: ;
- else
- Message(asmr_e_invalid_string_expression);
- end; { end case }
- ConcatString(curlist,expr);
- end;
- AS_INTNUM,
- AS_PLUS,
- AS_MINUS,
- AS_LPAREN,
- AS_TYPE,
- AS_SIZEOF,
- AS_NOT,
- AS_VMTOFFSET,
- AS_ID :
- begin
- inflags:=[];
- BuildConstSymbolExpression(inflags,value,asmsym,asmsymtyp,sz,outflags);
- if asmsym<>'' then
- begin
- if constsize<>sizeof(pint) then
- Message(asmr_w_32bit_const_for_address);
- ConcatConstSymbol(curlist,asmsym,asmsymtyp,value,constsize,true)
- end
- else
- ConcatConstant(curlist,value,constsize);
- end;
- AS_COMMA:
- Consume(AS_COMMA);
- AS_END,
- AS_SEPARATOR:
- break;
- else
- begin
- Message(asmr_e_syn_constant);
- RecoverConsume(false);
- end
- end; { end case }
- until false;
- end;
- procedure tz80reader.handleopcode;
- var
- instr: TZ80Instruction;
- begin
- instr:=TZ80Instruction.create(TZ80Operand);
- BuildOpcode(instr);
- with instr do
- begin
- //CheckNonCommutativeOpcodes;
- //AddReferenceSizes;
- //SetInstructionOpsize;
- //CheckOperandSizes;
- ConcatInstruction(curlist);
- end;
- instr.Free;
- end;
- procedure tz80reader.ConvertCalljmp(instr : tz80instruction);
- var
- newopr : toprrec;
- begin
- if instr.Operands[1].opr.typ=OPR_REFERENCE then
- begin
- newopr.typ:=OPR_SYMBOL;
- newopr.symbol:=instr.Operands[1].opr.ref.symbol;
- newopr.symofs:=instr.Operands[1].opr.ref.offset;
- if (instr.Operands[1].opr.ref.base<>NR_NO) or
- (instr.Operands[1].opr.ref.index<>NR_NO) then
- Message(asmr_e_syn_operand);
- instr.Operands[1].opr:=newopr;
- end;
- end;
- function tz80reader.Assemble: tlinkedlist;
- var
- hl: tasmlabel;
- sectionname: String;
- section: tai_section;
- begin
- Message1(asmr_d_start_reading,'Z80');
- firsttoken:=TRUE;
- { sets up all opcode and register tables in uppercase }
- if not _asmsorted then
- begin
- SetupTables;
- _asmsorted:=TRUE;
- end;
- curlist:=TAsmList.Create;
- { we might need to know which parameters are passed in registers }
- if not parse_generic then
- current_procinfo.generate_parameter_info;
- { start tokenizer }
- gettoken;
- { main loop }
- repeat
- case actasmtoken of
- AS_LLABEL:
- Begin
- if CreateLocalLabel(actasmpattern,hl,true) then
- ConcatLabel(curlist,hl);
- Consume(AS_LLABEL);
- end;
- AS_LABEL:
- Begin
- if SearchLabel(upper(actasmpattern),hl,true) then
- begin
- if hl.is_public then
- ConcatPublic(curlist,actasmpattern_origcase);
- ConcatLabel(curlist,hl);
- end
- else
- Message1(asmr_e_unknown_label_identifier,actasmpattern);
- Consume(AS_LABEL);
- end;
- AS_END:
- begin
- break; { end assembly block }
- end;
- AS_SEPARATOR:
- begin
- Consume(AS_SEPARATOR);
- end;
- AS_DEFB :
- Begin
- inexpression:=true;
- Consume(AS_DEFB);
- BuildConstant(1);
- inexpression:=false;
- end;
- AS_DEFW :
- Begin
- inexpression:=true;
- Consume(AS_DEFW);
- BuildConstant(2);
- inexpression:=false;
- end;
- AS_AREA :
- begin
- Consume(AS_AREA);
- sectionname:=actasmpattern;
- {secflags:=[];
- secprogbits:=SPB_None;}
- Consume(AS_STRING);
- {if actasmtoken=AS_COMMA then
- begin
- Consume(AS_COMMA);
- if actasmtoken=AS_STRING then
- begin
- case actasmpattern of
- 'a':
- Include(secflags,SF_A);
- 'w':
- Include(secflags,SF_W);
- 'x':
- Include(secflags,SF_X);
- '':
- ;
- else
- Message(asmr_e_syntax_error);
- end;
- Consume(AS_STRING);
- if actasmtoken=AS_COMMA then
- begin
- Consume(AS_COMMA);
- if (actasmtoken=AS_MOD) or (actasmtoken=AS_AT) then
- begin
- Consume(actasmtoken);
- if actasmtoken=AS_ID then
- begin
- case actasmpattern of
- 'PROGBITS':
- secprogbits:=SPB_PROGBITS;
- 'NOBITS':
- secprogbits:=SPB_NOBITS;
- 'NOTE':
- secprogbits:=SPB_NOTE;
- else
- Message(asmr_e_syntax_error);
- end;
- Consume(AS_ID);
- end
- else
- Message(asmr_e_syntax_error);
- end
- else
- Message(asmr_e_syntax_error);
- end;
- end
- else
- Message(asmr_e_syntax_error);
- end;}
- //curList.concat(tai_section.create(sec_user, actasmpattern, 0));
- section:=new_section(curlist, sec_user, sectionname, 0);
- //section.secflags:=secflags;
- //section.secprogbits:=secprogbits;
- end;
- AS_OPCODE:
- begin
- HandleOpCode;
- end;
- else
- begin
- Message(asmr_e_syntax_error);
- RecoverConsume(false);
- end;
- end;
- until false;
- { check that all referenced local labels are defined }
- checklocallabels;
- { Return the list in an asmnode }
- assemble:=curlist;
- Message1(asmr_d_finish_reading,'Z80');
- end;
- {*****************************************************************************
- Initialize
- *****************************************************************************}
- const
- { asmmode_z80_att_info : tasmmodeinfo =
- (
- id : asmmode_z80_gas;
- idtxt : 'GAS';
- casmreader : tz80attreader;
- );}
- asmmode_z80_standard_info : tasmmodeinfo =
- (
- id : asmmode_standard;
- idtxt : 'STANDARD';
- casmreader : tz80reader;
- );
- initialization
- // RegisterAsmMode(asmmode_z80_att_info);
- RegisterAsmMode(asmmode_z80_standard_info);
- end.
|