123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155 |
- {******************************************************************************
- $Id$
- Copyright (c) 1998-2000 by Florian Klaempfl and Peter Vreman
-
- * This code was inspired by the NASM sources
- The Netwide Assembler is copyright (C) 1996 Simon Tatham and
- Julian Hall. All rights reserved.
- 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 aasmcpu;
- {$INCLUDE fpcdefs.inc}
- interface
- uses
- cclasses,globals,verbose,
- cpuinfo,cpubase,
- symppu,
- aasmbase,aasmtai;
- const
- MaxPrefixes=4;
- type
- TOperandOrder=(op_intel,op_att);
- { alignment for operator }
- tai_align=class(tai_align_abstract)
- reg:tregister;
- constructor create(b:byte);
- constructor create_op(b:byte; _op:byte);
- function getfillbuf:pchar;override;
- end;
- taicpu = class(taicpu_abstract)
- opsize:topsize;
- constructor op_none(op:tasmop);
- constructor op_reg(op:tasmop;reg:tregister);
- constructor op_const(op:tasmop;_op1:aword);
- constructor op_ref(op:tasmop;const _op1:treference);
- constructor op_reg_reg(op:tasmop;_op1,_op2:tregister);
- constructor op_reg_ref(op:tasmop;_op1:tregister;const _op2:treference);
- constructor op_reg_const(op:tasmop;_op1:tregister;_op2:aword);
- constructor op_const_reg(op:tasmop;_op1:aword;_op2:tregister);
- constructor op_ref_reg(op:tasmop;const _op1:treference;_op2:tregister);
- { this is only allowed if _op1 is an int value (_op1^.isintvalue=true) }
- constructor op_ref_ref(op:tasmop;_size:topsize;const _op1,_op2:treference);
- constructor op_reg_reg_reg(op:tasmop;_size:topsize;_op1,_op2,_op3:tregister);
- constructor op_reg_const_reg(op:tasmop;_size:topsize;_op1:TRegister;_op2:aWord;_op3:tregister);
- constructor op_const_ref_reg(op:tasmop;_size:topsize;_op1:aword;const _op2:treference;_op3:tregister);
- constructor op_reg_reg_ref(op:tasmop;_size:topsize;_op1,_op2:tregister; const _op3:treference);
- constructor op_const_reg_ref(op:tasmop;_size:topsize;_op1:aword;_op2:tregister;const _op3:treference);
- { this is for Jmp instructions }
- constructor op_cond_sym(op:tasmop;cond:TAsmCond;_size:topsize;_op1:tasmsymbol);
- constructor op_sym(op:tasmop;_size:topsize;_op1:tasmsymbol);
- constructor op_sym_ofs(op:tasmop;_size:topsize;_op1:tasmsymbol;_op1ofs:longint);
- constructor op_sym_ofs_reg(op:tasmop;_size:topsize;_op1:tasmsymbol;_op1ofs:longint;_op2:tregister);
- constructor op_sym_ofs_ref(op:tasmop;_size:topsize;_op1:tasmsymbol;_op1ofs:longint;const _op2:treference);
- constructor op_caddr_reg(op:TAsmOp;rgb:TRegister;cnst:Integer;reg:TRegister);
- constructor op_raddr_reg(op:TAsmOp;rg1,rg2:TRegister;reg:TRegister);
- procedure changeopsize(siz:topsize);
- function GetString:string;
- procedure CheckNonCommutativeOpcodes;
- procedure loadcaddr(opidx:longint;aReg:TRegister;cnst:Integer);
- procedure loadraddr(opidx:longint;rg1,rg2:TRegister);
- private
- FOperandOrder:TOperandOrder;
- procedure init(_size:topsize);{this need to be called by all constructor}
- public
- { the next will reset all instructions that can change in pass 2 }
- procedure ResetPass1;
- procedure ResetPass2;
- function CheckIfValid:boolean;
- function Pass1(offset:longint):longint;virtual;
- procedure SetOperandOrder(order:TOperandOrder);
- private
- { next fields are filled in pass1, so pass2 is faster }
- insentry : PInsEntry;
- insoffset,
- inssize : longint;
- LastInsOffset : longint; { need to be public to be reset }
- function InsEnd:longint;
- procedure create_ot;
- function Matches(p:PInsEntry):longint;
- function calcsize(p:PInsEntry):longint;
- function NeedAddrPrefix(opidx:byte):boolean;
- procedure Swatoperands;
- end;
- PROCEDURE DoneAsm;
- PROCEDURE InitAsm;
- implementation
- uses
- cutils,
- CpuGas;
- const
- _size=S_L;{To be removed soon}
- {****************************************************************************
- TAI_ALIGN
- ****************************************************************************}
- constructor tai_align.create(b:byte);
- begin
- inherited create(b);
- reg:= R_NONE;
- end;
- constructor tai_align.create_op(b:byte; _op:byte);
- begin
- inherited create_op(b,_op);
- reg:= R_NONE;
- end;
- function tai_align.getfillbuf:pchar;
- const
- alignarray:array[0..5] of string[8]=(
- #$8D#$B4#$26#$00#$00#$00#$00,
- #$8D#$B6#$00#$00#$00#$00,
- #$8D#$74#$26#$00,
- #$8D#$76#$00,
- #$89#$F6,
- #$90
- );
- var
- bufptr:pchar;
- j:longint;
- begin
- if not use_op then
- begin
- bufptr:=@buf;
- while (fillsize>0) do
- begin
- for j:=0 to 5 do
- if (fillsize>=length(alignarray[j])) then
- break;
- move(alignarray[j][1],bufptr^,length(alignarray[j]));
- inc(bufptr,length(alignarray[j]));
- dec(fillsize,length(alignarray[j]));
- end;
- end;
- getfillbuf:=pchar(@buf);
- end;
- {*****************************************************************************
- Taicpu Constructors
- *****************************************************************************}
- procedure taicpu.changeopsize(siz:topsize);
- begin
- opsize:=siz;
- end;
- procedure taicpu.init(_size:topsize);
- begin
- { default order is att }
- FOperandOrder:=op_att;
- {segprefix:=R_NONE;}{This may be only for I386 architecture!}
- opsize:=_size;
- end;
- constructor taicpu.op_none(op:tasmop);
- begin
- inherited create(op);
- init(_size);
- end;
- constructor taicpu.op_reg(op:tasmop;reg:tregister);
- begin
- inherited create(op);
- init(_size);
- ops:=1;
- loadreg(0,reg);
- end;
- constructor taicpu.op_const(op:tasmop;_op1:aword);
- begin
- inherited create(op);
- init(_size);
- ops:=1;
- loadconst(0,_op1);
- end;
- constructor taicpu.op_ref(op:tasmop;const _op1:treference);
- begin
- inherited create(op);
- init(_size);
- ops:=1;
- loadref(0,_op1);
- end;
- constructor taicpu.op_reg_reg(op:tasmop;_op1,_op2:tregister);
- begin
- inherited create(op);
- init(_size);
- ops:=2;
- loadreg(0,_op1);
- loadreg(1,_op2);
- end;
- constructor taicpu.op_reg_const(op:tasmop;_op1:tregister; _op2:aword);
- begin
- inherited create(op);
- init(_size);
- ops:=2;
- loadreg(0,_op1);
- loadconst(1,_op2);
- end;
- constructor taicpu.op_reg_ref(op:tasmop;_op1:tregister;const _op2:treference);
- begin
- inherited create(op);
- init(_size);
- ops:=2;
- loadreg(0,_op1);
- loadref(1,_op2);
- end;
- constructor taicpu.op_const_reg(op:tasmop;_op1:aword;_op2:tregister);
- begin
- inherited create(op);
- init(_size);
- ops:=2;
- loadconst(0,_op1);
- loadreg(1,_op2);
- end;
- constructor taicpu.op_ref_reg(op:tasmop;const _op1:treference;_op2:tregister);
- begin
- inherited create(op);
- init(S_L);
- ops:=2;
- loadref(0,_op1);
- loadreg(1,_op2);
- end;
- constructor taicpu.op_ref_ref(op:tasmop;_size:topsize;const _op1,_op2:treference);
- begin
- inherited create(op);
- init(_size);
- ops:=2;
- loadref(0,_op1);
- loadref(1,_op2);
- end;
- constructor taicpu.op_reg_reg_reg(op:tasmop;_size:topsize;_op1,_op2,_op3:tregister);
- begin
- inherited create(op);
- init(_size);
- ops:=3;
- loadreg(0,_op1);
- loadreg(1,_op2);
- loadreg(2,_op3);
- end;
- CONSTRUCTOR taicpu.op_reg_const_reg(op:tasmop;_size:topsize;_op1:TRegister;_op2:aWord;_op3:TRegister);
- BEGIN
- INHERITED create(op);
- init(_size);
- ops:=3;
- LoadReg(0,_op1);
- LoadConst(1,_op2);
- LoadReg(2,_op3);
- END;
- constructor taicpu.op_reg_reg_ref(op:tasmop;_size:topsize;_op1,_op2:tregister;const _op3:treference);
- begin
- inherited create(op);
- init(_size);
- ops:=3;
- loadreg(0,_op1);
- loadreg(1,_op2);
- loadref(2,_op3);
- end;
- constructor taicpu.op_const_ref_reg(op:tasmop;_size:topsize;_op1:aword;const _op2:treference;_op3:tregister);
- begin
- inherited create(op);
- init(_size);
- ops:=3;
- loadconst(0,_op1);
- loadref(1,_op2);
- loadreg(2,_op3);
- end;
- constructor taicpu.op_const_reg_ref(op:tasmop;_size:topsize;_op1:aword;_op2:tregister;const _op3:treference);
- begin
- inherited create(op);
- init(_size);
- ops:=3;
- loadconst(0,_op1);
- loadreg(1,_op2);
- loadref(2,_op3);
- end;
- constructor taicpu.op_cond_sym(op:tasmop;cond:TAsmCond;_size:topsize;_op1:tasmsymbol);
- begin
- inherited create(op);
- init(_size);
- condition:=cond;
- ops:=1;
- loadsymbol(0,_op1,0);
- end;
- constructor taicpu.op_sym(op:tasmop;_size:topsize;_op1:tasmsymbol);
- begin
- inherited create(op);
- init(_size);
- ops:=1;
- loadsymbol(0,_op1,0);
- end;
- constructor taicpu.op_sym_ofs(op:tasmop;_size:topsize;_op1:tasmsymbol;_op1ofs:longint);
- begin
- inherited create(op);
- init(_size);
- ops:=1;
- loadsymbol(0,_op1,_op1ofs);
- end;
- constructor taicpu.op_sym_ofs_reg(op:tasmop;_size:topsize;_op1:tasmsymbol;_op1ofs:longint;_op2:tregister);
- begin
- inherited create(op);
- init(_size);
- ops:=2;
- loadsymbol(0,_op1,_op1ofs);
- loadreg(1,_op2);
- end;
- constructor taicpu.op_sym_ofs_ref(op:tasmop;_size:topsize;_op1:tasmsymbol;_op1ofs:longint;const _op2:treference);
- begin
- inherited create(op);
- init(_size);
- ops:=2;
- loadsymbol(0,_op1,_op1ofs);
- loadref(1,_op2);
- end;
- constructor taicpu.op_caddr_reg(op:TAsmOp;rgb:TRegister;cnst:Integer;reg:TRegister);
- begin
- inherited create(op);
- init(S_L);
- ops:=2;
- WriteLn(1,std_reg2str[rgb]);
- loadcaddr(0,rgb,cnst);
- WriteLn(2,std_reg2str[rgb]);
- loadreg(1,reg);
- end;
- constructor taicpu.op_raddr_reg(op:TAsmOp;rg1,rg2,reg:TRegister);
- begin
- inherited create(op);
- init(S_L);
- ops:=2;
- loadraddr(0,rg1,rg2);
- loadreg(1,reg);
- end;
- function taicpu.GetString:string;
- var
- i:longint;
- s:string;
- addsize:boolean;
- begin
- s:='['+std_op2str[opcode];
- for i:=1to ops do
- begin
- if i=1 then
- s:=s+' '
- else
- s:=s+',';
- { type }
- addsize:=false;
- if (oper[i-1].ot and OT_XMMREG)=OT_XMMREG then
- s:=s+'xmmreg'
- else
- if (oper[i-1].ot and OT_MMXREG)=OT_MMXREG then
- s:=s+'mmxreg'
- else
- if (oper[i-1].ot and OT_FPUREG)=OT_FPUREG then
- s:=s+'fpureg'
- else
- if (oper[i-1].ot and OT_REGISTER)=OT_REGISTER then
- begin
- s:=s+'reg';
- addsize:=true;
- end
- else
- if (oper[i-1].ot and OT_IMMEDIATE)=OT_IMMEDIATE then
- begin
- s:=s+'imm';
- addsize:=true;
- end
- else
- if (oper[i-1].ot and OT_MEMORY)=OT_MEMORY then
- begin
- s:=s+'mem';
- addsize:=true;
- end
- else
- s:=s+'???';
- { size }
- if addsize then
- begin
- if (oper[i-1].ot and OT_BITS8)<>0 then
- s:=s+'8'
- else
- if (oper[i-1].ot and OT_BITS16)<>0 then
- s:=s+'16'
- else
- if (oper[i-1].ot and OT_BITS32)<>0 then
- s:=s+'32'
- else
- s:=s+'??';
- { signed }
- if (oper[i-1].ot and OT_SIGNED)<>0 then
- s:=s+'s';
- end;
- end;
- GetString:=s+']';
- end;
- procedure taicpu.Swatoperands;
- var
- p:TOper;
- begin
- { Fix the operands which are in AT&T style and we need them in Intel style }
- case ops of
- 2:begin
- { 0,1 -> 1,0 }
- p:=oper[0];
- oper[0]:=oper[1];
- oper[1]:=p;
- end;
- 3:begin
- { 0,1,2 -> 2,1,0 }
- p:=oper[0];
- oper[0]:=oper[2];
- oper[2]:=p;
- end;
- end;
- end;
- procedure taicpu.SetOperandOrder(order:TOperandOrder);
- begin
- if FOperandOrder<>order then
- begin
- Swatoperands;
- FOperandOrder:=order;
- end;
- end;
- { This check must be done with the operand in ATT order
- i.e.after swapping in the intel reader
- but before swapping in the NASM and TASM writers PM }
- procedure taicpu.CheckNonCommutativeOpcodes;
- begin
- { if ((ops=2) and
- (oper[0].typ=top_reg) and
- (oper[1].typ=top_reg) and
- (oper[0].reg IN [R_F0..RF31])) or
- (ops=0) then
- if opcode=A_FSUBR then
- opcode:=A_FSUB
- else if opcode=A_FSUB then
- opcode:=A_FSUBR
- else if opcode=A_FDIVR then
- opcode:=A_FDIV
- else if opcode=A_FDIV then
- opcode:=A_FDIVR
- else if opcode=A_FSUBRP then
- opcode:=A_FSUBP
- else if opcode=A_FSUBP then
- opcode:=A_FSUBRP
- else if opcode=A_FDIVRP then
- opcode:=A_FDIVP
- else if opcode=A_FDIVP then
- opcode:=A_FDIVRP;
- if ((ops=1) and
- (oper[0].typ=top_reg) and
- (oper[0].reg in [R_ST1..R_ST7])) then
- if opcode=A_FSUBRP then
- opcode:=A_FSUBP
- else if opcode=A_FSUBP then
- opcode:=A_FSUBRP
- else if opcode=A_FDIVRP then
- opcode:=A_FDIVP
- else if opcode=A_FDIVP then
- opcode:=A_FDIVRP;}
- end;
- {*****************************************************************************
- Assembler
- *****************************************************************************}
- type
- ea=packed record
- sib_present:boolean;
- bytes:byte;
- size:byte;
- modrm:byte;
- sib:byte;
- end;
- procedure taicpu.create_ot;
- {
- this function will also fix some other fields which only needs to be once
- }
- var
- i,l,relsize:longint;
- begin
- if ops=0 then
- exit;
- { update oper[].ot field }
- for i:=0 to ops-1 do
- with oper[i] do
- begin
- case typ of
- top_reg:
- {ot:=reg2type[reg]};
- top_ref:
- begin
- { create ot field }
- {if (ot and OT_SIZE_MASK)=0 then
- ot:=OT_MEMORY or opsize_2_type[i,opsize]
- else
- ot:=OT_MEMORY or (ot and OT_SIZE_MASK);
- if (ref^.base=R_NONE) and (ref^.index=R_NONE) then
- ot:=ot or OT_MEM_OFFS;}
- { fix scalefactor }
- if (ref^.index=R_NONE) then
- ref^.scalefactor:=0
- else
- if (ref^.scalefactor=0) then
- ref^.scalefactor:=1;
- end;
- top_const:
- begin
- if (opsize<>S_W) and (longint(val)>=-128) and (val<=127) then
- ot:=OT_IMM8 or OT_SIGNED
- else
- ot:=OT_IMMEDIATE {or opsize_2_type[i,opsize];}
- end;
- top_symbol:
- begin
- if LastInsOffset=-1 then
- l:=0
- else
- l:=InsOffset-LastInsOffset;
- inc(l,symofs);
- if assigned(sym) then
- inc(l,sym.address);
- { instruction size will then always become 2 (PFV) }
- relsize:=(InsOffset+2)-l;
- if (not assigned(sym) or
- ((sym.currbind<>AB_EXTERNAL) and (sym.address<>0))) and
- (relsize>=-128) and (relsize<=127) then
- ot:=OT_IMM32 or OT_SHORT
- else
- ot:=OT_IMM32 or OT_NEAR;
- end;
- end;
- end;
- end;
- function taicpu.InsEnd:longint;
- begin
- InsEnd:=InsOffset+InsSize;
- end;
- function taicpu.Matches(p:PInsEntry):longint;
- { * IF_SM stands for Size Match:any operand whose size is not
- * explicitly specified by the template is `really' intended to be
- * the same size as the first size-specified operand.
- * Non-specification is tolerated in the input instruction, but
- * _wrong_ specification is not.
- *
- * IF_SM2 invokes Size Match on only the first _two_ operands, for
- * three-operand instructions such as SHLD:it implies that the
- * first two operands must match in size, but that the third is
- * required to be _unspecified_.
- *
- * IF_SB invokes Size Byte:operands with unspecified size in the
- * template are really bytes, and so no non-byte specification in
- * the input instruction will be tolerated. IF_SW similarly invokes
- * Size Word, and IF_SD invokes Size Doubleword.
- *
- * (The default state if neither IF_SM nor IF_SM2 is specified is
- * that any operand with unspecified size in the template is
- * required to have unspecified size in the instruction too...)
- }
- var
- i,j,asize,oprs:longint;
- siz:array[0..2] of longint;
- begin
- Matches:=100;
- { Check the opcode and operands }
- if (p^.opcode<>opcode) or (p^.ops<>ops) then
- begin
- Matches:=0;
- exit;
- end;
- { Check that no spurious colons or TOs are present }
- for i:=0 to p^.ops-1 do
- if (oper[i].ot and (not p^.optypes[i]) and (OT_COLON or OT_TO))<>0 then
- begin
- Matches:=0;
- exit;
- end;
- { Check that the operand flags all match up }
- for i:=0 to p^.ops-1 do
- begin
- if ((p^.optypes[i] and (not oper[i].ot)) or
- ((p^.optypes[i] and OT_SIZE_MASK) and
- ((p^.optypes[i] xor oper[i].ot) and OT_SIZE_MASK)))<>0 then
- begin
- if ((p^.optypes[i] and (not oper[i].ot) and OT_NON_SIZE) or
- (oper[i].ot and OT_SIZE_MASK))<>0 then
- begin
- Matches:=0;
- exit;
- end
- else
- Matches:=1;
- end;
- end;
- { Check operand sizes }
- { as default an untyped size can get all the sizes, this is different
- from nasm, but else we need to do a lot checking which opcodes want
- size or not with the automatic size generation }
- asize:=longint($ffffffff);
- if (p^.flags and IF_SB)<>0 then
- asize:=OT_BITS8
- else if (p^.flags and IF_SW)<>0 then
- asize:=OT_BITS16
- else if (p^.flags and IF_SD)<>0 then
- asize:=OT_BITS32;
- if (p^.flags and IF_ARMASK)<>0 then
- begin
- siz[0]:=0;
- siz[1]:=0;
- siz[2]:=0;
- if (p^.flags and IF_AR0)<>0 then
- siz[0]:=asize
- else if (p^.flags and IF_AR1)<>0 then
- siz[1]:=asize
- else if (p^.flags and IF_AR2)<>0 then
- siz[2]:=asize;
- end
- else
- begin
- { we can leave because the size for all operands is forced to be
- the same
- but not if IF_SB IF_SW or IF_SD is set PM }
- if asize=-1 then
- exit;
- siz[0]:=asize;
- siz[1]:=asize;
- siz[2]:=asize;
- end;
- if (p^.flags and (IF_SM or IF_SM2))<>0 then
- begin
- if (p^.flags and IF_SM2)<>0 then
- oprs:=2
- else
- oprs:=p^.ops;
- for i:=0 to oprs-1 do
- if ((p^.optypes[i] and OT_SIZE_MASK) <> 0) then
- begin
- for j:=0 to oprs-1 do
- siz[j]:=p^.optypes[i] and OT_SIZE_MASK;
- break;
- end;
- end
- else
- oprs:=2;
- { Check operand sizes }
- for i:=0 to p^.ops-1 do
- begin
- if ((p^.optypes[i] and OT_SIZE_MASK)=0) and
- ((oper[i].ot and OT_SIZE_MASK and (not siz[i]))<>0) and
- { Immediates can always include smaller size }
- ((oper[i].ot and OT_IMMEDIATE)=0) and
- (((p^.optypes[i] and OT_SIZE_MASK) or siz[i])<(oper[i].ot and OT_SIZE_MASK)) then
- Matches:=2;
- end;
- end;
- procedure taicpu.ResetPass1;
- begin
- { we need to reset everything here, because the choosen insentry
- can be invalid for a new situation where the previously optimized
- insentry is not correct }
- InsEntry:=nil;
- InsSize:=0;
- LastInsOffset:=-1;
- end;
- procedure taicpu.ResetPass2;
- begin
- { we are here in a second pass, check if the instruction can be optimized }
- if assigned(InsEntry) and
- ((InsEntry^.flags and IF_PASS2)<>0) then
- begin
- InsEntry:=nil;
- InsSize:=0;
- end;
- LastInsOffset:=-1;
- end;
- function taicpu.CheckIfValid:boolean;
- var
- m,i:longint;
- begin
- CheckIfValid:=false;
- { Things which may only be done once, not when a second pass is done to
- optimize }
- if (Insentry=nil) or ((InsEntry^.flags and IF_PASS2)<>0) then
- begin
- { We need intel style operands }
- SetOperandOrder(op_intel);
- { create the .ot fields }
- create_ot;
- { set the file postion }
- aktfilepos:=fileinfo;
- end
- else
- begin
- { we've already an insentry so it's valid }
- CheckIfValid:=true;
- exit;
- end;
- { Lookup opcode in the table }
- InsSize:=-1;
- i:=instabcache^[opcode];
- if i=-1 then
- begin
- {$ifdef TP}
- Message1(asmw_e_opcode_not_in_table,'');
- {$else}
- Message1(asmw_e_opcode_not_in_table,std_op2str[opcode]);
- {$endif}
- exit;
- end;
- // insentry:=@instab[i];
- while (insentry^.opcode=opcode) do
- begin
- m:=matches(insentry);
- if m=100 then
- begin
- InsSize:=calcsize(insentry);
- {if (segprefix<>R_NONE) then
- inc(InsSize);}{No segprefix!}
- { For opsize if size if forced }
- if (insentry^.flags and (IF_SB or IF_SW or IF_SD))<>0 then
- begin
- if (insentry^.flags and IF_ARMASK)=0 then
- begin
- if (insentry^.flags and IF_SB)<>0 then
- begin
- if opsize=S_NO then
- opsize:=S_B;
- end
- else if (insentry^.flags and IF_SW)<>0 then
- begin
- if opsize=S_NO then
- opsize:=S_W;
- end
- else if (insentry^.flags and IF_SD)<>0 then
- begin
- if opsize=S_NO then
- opsize:=S_L;
- end;
- end;
- end;
- CheckIfValid:=true;
- exit;
- end;
- inc(i);
- // insentry:=@instab[i];
- end;
- if insentry^.opcode<>opcode then
- Message1(asmw_e_invalid_opcode_and_operands,GetString);
- { No instruction found, set insentry to nil and inssize to -1 }
- insentry:=nil;
- inssize:=-1;
- end;
- function taicpu.Pass1(offset:longint):longint;
- begin
- Pass1:=0;
- { Save the old offset and set the new offset }
- InsOffset:=Offset;
- { Things which may only be done once, not when a second pass is done to
- optimize }
- if Insentry=nil then
- begin
- { Check if error last time then InsSize=-1 }
- if InsSize=-1 then
- exit;
- { set the file postion }
- aktfilepos:=fileinfo;
- end
- else
- begin
- {$ifdef PASS2FLAG}
- { we are here in a second pass, check if the instruction can be optimized }
- if (InsEntry^.flags and IF_PASS2)=0 then
- begin
- Pass1:=InsSize;
- exit;
- end;
- { update the .ot fields, some top_const can be updated }
- create_ot;
- {$endif}
- end;
- { Check if it's a valid instruction }
- if CheckIfValid then
- begin
- LastInsOffset:=InsOffset;
- Pass1:=InsSize;
- exit;
- end;
- LastInsOffset:=-1;
- end;
- function taicpu.NeedAddrPrefix(opidx:byte):boolean;
- var
- i,b:tregister;
- begin
- { if (OT_MEMORY and (not oper[opidx].ot))=0 then
- begin
- i:=oper[opidx].ref^.index;
- b:=oper[opidx].ref^.base;
- if not(i in [R_NONE,R_EAX,R_EBX,R_ECX,R_EDX,R_EBP,R_ESP,R_ESI,R_EDI]) or
- not(b in [R_NONE,R_EAX,R_EBX,R_ECX,R_EDX,R_EBP,R_ESP,R_ESI,R_EDI]) then
- begin
- NeedAddrPrefix:=true;
- exit;
- end;
- end;}
- NeedAddrPrefix:=false;
- end;
- function regval(r:tregister):byte;
- begin
- {case r of
- R_EAX,R_AX,R_AL,R_ES,R_CR0,R_DR0,R_ST,R_ST0,R_MM0,R_XMM0:
- regval:=0;
- R_ECX,R_CX,R_CL,R_CS,R_DR1,R_ST1,R_MM1,R_XMM1:
- regval:=1;
- R_EDX,R_DX,R_DL,R_SS,R_CR2,R_DR2,R_ST2,R_MM2,R_XMM2:
- regval:=2;
- R_EBX,R_BX,R_BL,R_DS,R_CR3,R_DR3,R_TR3,R_ST3,R_MM3,R_XMM3:
- regval:=3;
- R_ESP,R_SP,R_AH,R_FS,R_CR4,R_TR4,R_ST4,R_MM4,R_XMM4:
- regval:=4;
- R_EBP,R_BP,R_CH,R_GS,R_TR5,R_ST5,R_MM5,R_XMM5:
- regval:=5;
- R_ESI,R_SI,R_DH,R_DR6,R_TR6,R_ST6,R_MM6,R_XMM6:
- regval:=6;
- R_EDI,R_DI,R_BH,R_DR7,R_TR7,R_ST7,R_MM7,R_XMM7:
- regval:=7;
- else}
- begin
- internalerror(777001);
- regval:=0;
- end;
- { end;}
- end;
- function process_ea(const input:toper;var output:ea;rfield:longint):boolean;
- {const
- regs:array[0..63] of tregister=(
- R_MM0, R_EAX, R_AX, R_AL, R_XMM0, R_NONE, R_NONE, R_NONE,
- R_MM1, R_ECX, R_CX, R_CL, R_XMM1, R_NONE, R_NONE, R_NONE,
- R_MM2, R_EDX, R_DX, R_DL, R_XMM2, R_NONE, R_NONE, R_NONE,
- R_MM3, R_EBX, R_BX, R_BL, R_XMM3, R_NONE, R_NONE, R_NONE,
- R_MM4, R_ESP, R_SP, R_AH, R_XMM4, R_NONE, R_NONE, R_NONE,
- R_MM5, R_EBP, R_BP, R_CH, R_XMM5, R_NONE, R_NONE, R_NONE,
- R_MM6, R_ESI, R_SI, R_DH, R_XMM6, R_NONE, R_NONE, R_NONE,
- R_MM7, R_EDI, R_DI, R_BH, R_XMM7, R_NONE, R_NONE, R_NONE
- );}
- var
- j:longint;
- i,b:tregister;
- sym:tasmsymbol;
- md,s:byte;
- base,index,scalefactor,
- o:longint;
- begin
- process_ea:=false;
- { register ? }
- { if (input.typ=top_reg) then
- begin
- j:=0;
- while (j<=high(regs)) do
- begin
- if input.reg=regs[j] then
- break;
- inc(j);
- end;
- if j<=high(regs) then
- begin
- output.sib_present:=false;
- output.bytes:=0;
- output.modrm:=$c0 or (rfield shl 3) or (j shr 3);
- output.size:=1;
- process_ea:=true;
- end;
- exit;
- end;}
- { memory reference }
- i:=input.ref^.index;
- b:=input.ref^.base;
- s:=input.ref^.scalefactor;
- o:=input.ref^.offset+input.ref^.offsetfixup;
- sym:=input.ref^.symbol;
- { it's direct address }
- if (b=R_NONE) and (i=R_NONE) then
- begin
- { it's a pure offset }
- output.sib_present:=false;
- output.bytes:=4;
- output.modrm:=5 or (rfield shl 3);
- end
- else
- { it's an indirection }
- begin
- { 16 bit address? }
- { if not((i in [R_NONE,R_EAX,R_EBX,R_ECX,R_EDX,R_EBP,R_ESP,R_ESI,R_EDI]) and
- (b in [R_NONE,R_EAX,R_EBX,R_ECX,R_EDX,R_EBP,R_ESP,R_ESI,R_EDI])) then
- Message(asmw_e_16bit_not_supported);}
- {$ifdef OPTEA}
- { make single reg base }
- if (b=R_NONE) and (s=1) then
- begin
- b:=i;
- i:=R_NONE;
- end;
- { convert [3,5,9]*EAX to EAX+[2,4,8]*EAX }
- { if (b=R_NONE) and
- (((s=2) and (i<>R_ESP)) or
- (s=3) or (s=5) or (s=9)) then
- begin
- b:=i;
- dec(s);
- end;}
- { swap ESP into base if scalefactor is 1 }
- { if (s=1) and (i=R_ESP) then
- begin
- i:=b;
- b:=R_ESP;
- end;}
- {$endif}
- { wrong, for various reasons }
- { if (i=R_ESP) or ((s<>1) and (s<>2) and (s<>4) and (s<>8) and (i<>R_NONE)) then
- exit;}
- { base }
- { case b of
- R_EAX:base:=0;
- R_ECX:base:=1;
- R_EDX:base:=2;
- R_EBX:base:=3;
- R_ESP:base:=4;
- R_NONE,
- R_EBP:base:=5;
- R_ESI:base:=6;
- R_EDI:base:=7;
- else
- exit;
- end;}
- { index }
- { case i of
- R_EAX:index:=0;
- R_ECX:index:=1;
- R_EDX:index:=2;
- R_EBX:index:=3;
- R_NONE:index:=4;
- R_EBP:index:=5;
- R_ESI:index:=6;
- R_EDI:index:=7;
- else
- exit;
- end;
- case s of
- 0,
- 1:scalefactor:=0;
- 2:scalefactor:=1;
- 4:scalefactor:=2;
- 8:scalefactor:=3;
- else
- exit;
- end;
- if (b=R_NONE) or
- ((b<>R_EBP) and (o=0) and (sym=nil)) then
- md:=0
- else
- if ((o>=-128) and (o<=127) and (sym=nil)) then
- md:=1
- else
- md:=2;
- if (b=R_NONE) or (md=2) then
- output.bytes:=4
- else
- output.bytes:=md;}
- { SIB needed ? }
- { if (i=R_NONE) and (b<>R_ESP) then
- begin
- output.sib_present:=false;
- output.modrm:=(md shl 6) or (rfield shl 3) or base;
- end
- else
- begin
- output.sib_present:=true;
- output.modrm:=(md shl 6) or (rfield shl 3) or 4;
- output.sib:=(scalefactor shl 6) or (index shl 3) or base;
- end;}
- end;
- if output.sib_present then
- output.size:=2+output.bytes
- else
- output.size:=1+output.bytes;
- process_ea:=true;
- end;
- function taicpu.calcsize(p:PInsEntry):longint;
- var
- codes:pchar;
- c:byte;
- len:longint;
- ea_data:ea;
- begin
- len:=0;
- codes:=@p^.code;
- repeat
- c:=ord(codes^);
- inc(codes);
- case c of
- 0:
- break;
- 1,2,3:
- begin
- inc(codes,c);
- inc(len,c);
- end;
- 8,9,10:
- begin
- inc(codes);
- inc(len);
- end;
- 4,5,6,7:
- begin
- if opsize=S_W then
- inc(len,2)
- else
- inc(len);
- end;
- 15,
- 12,13,14,
- 16,17,18,
- 20,21,22,
- 40,41,42:
- inc(len);
- 24,25,26,
- 31,
- 48,49,50:
- inc(len,2);
- 28,29,30, { we don't have 16 bit immediates code }
- 32,33,34,
- 52,53,54,
- 56,57,58:
- inc(len,4);
- 192,193,194:
- if NeedAddrPrefix(c-192) then
- inc(len);
- 208:
- inc(len);
- 200,
- 201,
- 202,
- 209,
- 210,
- 217,218,219:;
- 216:
- begin
- inc(codes);
- inc(len);
- end;
- 224,225,226:
- begin
- InternalError(777002);
- end;
- else
- begin
- if (c>=64) and (c<=191) then
- begin
- if not process_ea(oper[(c shr 3) and 7], ea_data, 0) then
- Message(asmw_e_invalid_effective_address)
- else
- inc(len,ea_data.size);
- end
- else
- InternalError(777003);
- end;
- end;
- until false;
- calcsize:=len;
- end;
- procedure taicpu.loadcaddr(opidx:longint;aReg:TRegister;cnst:Integer);
- begin
- if opidx>=ops
- then
- ops:=opidx+1;
- with oper[opidx] do
- begin
- typ:=top_caddr;
- regb:=aReg;
- const13:=cnst;
- end;
- end;
- procedure taicpu.loadraddr(opidx:longint;rg1,rg2:TRegister);
- begin
- if opidx>=ops
- then
- ops:=opidx+1;
- with oper[opidx] do
- begin
- typ:=top_caddr;
- reg1:=rg1;
- reg2:=rg2;
- end;
- end;
- procedure DoneAsm;
- begin
- end;
- procedure InitAsm;
- begin
- end;
- end.
- {
- $Log$
- Revision 1.8 2002-10-22 13:43:01 mazen
- - cga.pas redueced to an empty unit
- Revision 1.7 2002/10/20 19:01:38 mazen
- + op_raddr_reg and op_caddr_reg added to fix functions prologue
- Revision 1.6 2002/10/19 20:35:07 mazen
- * carl's patch applied
- Revision 1.5 2002/10/15 09:00:28 mazen
- * sone coding style modified
- Revision 1.4 2002/10/13 21:46:07 mazen
- * assembler output format fixed
- }
|