123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460 |
- {
- $Id$
- Copyright (c) 1998-2002 by Florian Klaempfl
- This unit implements an asm for the PowerPC
- 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.
- ****************************************************************************
- }
- { This unit implements the GNU Assembler writer for the PowerPC
- }
- unit agppcgas;
- {$i fpcdefs.inc}
- interface
- uses
- aasmtai,
- aggas,
- cpubase;
- type
- PPPCGNUAssembler=^TPPCGNUAssembler;
- TPPCGNUAssembler=class(TGNUassembler)
- procedure WriteExtraHeader;override;
- procedure WriteInstruction(hp : tai);override;
- end;
- const
- gas_reg2str : treg2strtable = ('',
- 'r0','r1','r2','r3','r4','r5','r6','r7','r8','r9','r10','r11','r12','r13','r14','r15','r16',
- 'r17','r18','r19','r20','r21','r22','r23','r24','r25','r26','r27','r28','r29','r30','r31',
- 'f0','f1','f2','f3','f4','f5','f6','f7', 'f8','f9','f10','f11','f12',
- 'f13','f14','f15','f16','f17', 'f18','f19','f20','f21','f22', 'f23','f24',
- 'f25','f26','f27','f28','f29','f30','f31',
- 'v0','v1','v2','v3','v4','v5','v6','v7','v8','v9','v10','v11','v12',
- 'v13','v14','v15','v16','v17','v18','v19','v20','v21','v22', 'v23','v24',
- 'v25','v26','v27','v28','v29','v30','v31',
- 'cR','cr0','cr1','cr2','cr3','cr4','cr5','cr6','cr7',
- 'xer','lr','ctr','fpscr'
- );
- implementation
- uses
- cutils,globals,verbose,
- systems,
- assemble,
- aasmcpu;
- procedure TPPCGNUAssembler.WriteExtraHeader;
- var
- i : longint;
- begin
- for i:=0 to 31 do
- AsmWriteln(#9'.set'#9'r'+tostr(i)+','+tostr(i));
- for i:=0 to 31 do
- AsmWriteln(#9'.set'#9'f'+tostr(i)+','+tostr(i));
- end;
- const
- as_ppc_gas_info : tasminfo =
- (
- id : as_gas;
- idtxt : 'AS';
- asmbin : 'as';
- asmcmd : '-o $OBJ $ASM';
- supported_target : system_any;
- outputbinary: false;
- allowdirect : true;
- needar : true;
- labelprefix_only_inside_procedure : false;
- labelprefix : '.L';
- comment : '# ';
- secnames : ('',
- '.text','.data','.text',
- '','','','','','',
- '.stab','.stabstr','COMMON')
- );
- op2str : array[tasmop] of string[14] = ('<none>',
- 'add','add.','addo','addo.','addc','addc.','addco','addco.',
- 'adde','adde.','addeo','addeo.','addi','addic','addic.','addis',
- 'addme','addme.','addmeo','addmeo.','addze','addze.','addzeo',
- 'addzeo.','and','and.','andc','andc.','andi.','andis.','b',
- 'ba','bl','bla','bc','bca','bcl','bcla','bcctr','bcctrl','bclr',
- 'bclrl','cmp','cmpi','cmpl','cmpli','cntlzw','cntlzw.','crand',
- 'crandc','creqv','crnand','crnor','cror','crorc','crxor','dcba',
- 'dcbf','dcbi','dcbst','dcbt','divw','divw.','divwo','divwo.',
- 'divwu','divwu.','divwuo','divwuo.','eciwx','ecowx','eieio','eqv',
- 'eqv.','extsb','extsb.','extsh','extsh.','fabs','fabs.','fadd',
- 'fadd.','fadds','fadds.','fcmpo','fcmpu','fctiw','fctw.','fctwz',
- 'fctwz.','fdiv','fdiv.','fdivs','fdivs.','fmadd','fmadd.','fmadds',
- 'fmadds.','fmr','fmsub','fmsub.','fmsubs','fmsubs.','fmul','fmul.',
- 'fmuls','fmuls.','fnabs','fnabs.','fneg','fneg.','fnmadd',
- 'fnmadd.','fnmadds','fnmadds.','fnmsub','fnmsub.','fnmsubs',
- 'fnmsubs.','fres','fres.','frsp','frsp.','frsqrte','frsqrte.',
- 'fsel','fsel.','fsqrt','fsqrt.','fsqrts','fsqrts.','fsub','fsub.',
- 'fsubs','fsubs.','icbi','isync','lbz','lbzu','lbzux','lbzx',
- 'lfd','lfdu','lfdux','lfdx','lfs','lfsu','lfsux','lfsx','lha',
- 'lhau','lhaux','lhax','hbrx','lhz','lhzu','lhzux','lhzx','lmw',
- 'lswi','lswx','lwarx','lwbrx','lwz','lwzu','lwzux','lwzx','mcrf',
- 'mcrfs','mcrxr','lcrxe','mfcr','mffs','maffs.','mfmsr','mfspr','mfsr',
- 'mfsrin','mftb','mtfcrf','mtfd0','mtfsb1','mtfsf','mtfsf.',
- 'mtfsfi','mtfsfi.','mtmsr','mtspr','mtsr','mtsrin','mulhw',
- 'mulhw.','mulhwu','mulhwu.','mulli','mullw','mullw.','mullwo',
- 'mullwo.','nand','nand.','neg','neg.','nego','nego.','nor','nor.',
- 'or','or.','orc','orc.','ori','oris', 'rfi', 'rlwimi', 'rlwimi.',
- 'rlwinm', 'rlwinm.','rlwnm','sc','slw', 'slw.', 'sraw', 'sraw.',
- 'srawi', 'srawi.','srw', 'srw.', 'stb', 'stbu', 'stbux','stbx','stfd',
- 'stfdu', 'stfdux', 'stfdx', 'stfiwx', 'stfs', 'stfsu', 'stfsux', 'stfsx',
- 'sth', 'sthbrx', 'sthu', 'sthux', 'sthx', 'stmw', 'stswi', 'stswx', 'stw',
- 'stwbrx', 'stwx.', 'stwu', 'stwux', 'stwx', 'subf', 'subf.', 'subfo',
- 'subfo.', 'subfc', 'subc.', 'subfco', 'subfco.', 'subfe', 'subfe.',
- 'subfeo', 'subfeo.', 'subfic', 'subfme', 'subfme.', 'subfmeo', 'subfmeo.',
- 'subfze', 'subfze.', 'subfzeo', 'subfzeo.', 'sync', 'tlbia', 'tlbie',
- 'tlbsync', 'tw', 'twi', 'xor', 'xor.', 'xori', 'xoris',
- { some simplified mnemonics }
- 'subi', 'subis', 'subic', 'subic.', 'sub', 'sub.', 'subo', 'subo.',
- 'subc', 'subc.', 'subco', 'subco.', 'cmpwi', 'cmpw', 'cmplwi', 'cmplw',
- 'extlwi', 'extlwi.', 'extrwi', 'extrwi.', 'inslwi', 'inslwi.', 'insrwi',
- 'insrwi.', 'rotlwi', 'rotlwi.', 'rotlw', 'rotlw.', 'slwi', 'slwi.',
- 'srwi', 'srwi.', 'clrlwi', 'clrlwi.', 'clrrwi', 'clrrwi.', 'clrslwi',
- 'clrslwi.', 'blr', 'bctr', 'blrl', 'bctrl', 'crset', 'crclr', 'crmove',
- 'crnot', 'mt', 'mf','nop', 'li', 'lis', 'la', 'mr','mr.','not', 'mtcr', 'mtlr', 'mflr',
- 'mtctr', 'mfctr');
- symaddr2str: array[trefsymaddr] of string[3] = ('','@ha','@l');
- function getreferencestring(var ref : treference) : string;
- var
- s : string;
- begin
- with ref do
- begin
- inc(offset,offsetfixup);
- if ((offset < -32768) or (offset > 32767)) and
- (symaddr = refs_full) then
- internalerror(19991);
- if (symaddr = refs_full) then
- s := ''
- else if not assigned(symbol) then
- s := '('
- else
- s:='('+symbol.name;
- if offset<0 then
- s:=s+tostr(offset)
- else
- if (offset>0) then
- begin
- if assigned(symbol) then
- s:=s+'+'+tostr(offset)
- else
- s:=s+tostr(offset);
- end;
- if (symaddr <> refs_full) then
- s := s+')'+symaddr2str[symaddr];
- if (index.enum < firstreg) or (index.enum > lastreg) then
- internalerror(20030312);
- if (base.enum < firstreg) or (base.enum > lastreg) then
- internalerror(200303123);
- if (index.enum=R_NO) and (base.enum<>R_NO) then
- begin
- if offset=0 then
- begin
- if assigned(symbol) then
- s:=s+'+0'
- else
- s:=s+'0';
- end;
- s:=s+'('+gas_reg2str[base.enum]+')'
- end
- else if (index.enum<>R_NO) and (base.enum<>R_NO) and (offset=0) then
- s:=s+gas_reg2str[base.enum]+','+gas_reg2str[index.enum]
- else if ((index.enum<>R_NO) or (base.enum<>R_NO)) then
- internalerror(19992);
- end;
- getreferencestring:=s;
- end;
- function getopstr_jmp(const o:toper) : string;
- var
- hs : string;
- begin
- case o.typ of
- top_reg :
- begin
- if (o.reg.enum < R_0) or (o.reg.enum > lastreg) then
- internalerror(200303121);
- getopstr_jmp:=gas_reg2str[o.reg.enum];
- end;
- { no top_ref jumping for powerpc }
- top_const :
- getopstr_jmp:=tostr(o.val);
- top_symbol :
- begin
- hs:=o.sym.name;
- if o.symofs>0 then
- hs:=hs+'+'+tostr(o.symofs)
- else
- if o.symofs<0 then
- hs:=hs+tostr(o.symofs);
- getopstr_jmp:=hs;
- end;
- top_none:
- getopstr_jmp:='';
- else
- {$ifndef testing}
- internalerror(2002070603);
- {$else testing}
- begin
- writeln('internalerror 10001');
- halt(1);
- end;
- {$endif testing}
- end;
- end;
- function getopstr(const o:toper) : string;
- var
- hs : string;
- begin
- case o.typ of
- top_reg:
- begin
- if (o.reg.enum < R_0) or (o.reg.enum > lastreg) then
- internalerror(200303125);
- getopstr:=gas_reg2str[o.reg.enum];
- end;
- top_const:
- getopstr:=tostr(longint(o.val));
- top_ref:
- getopstr:=getreferencestring(o.ref^);
- top_symbol:
- begin
- hs:=o.sym.name;
- if o.symofs>0 then
- hs:=hs+'+'+tostr(o.symofs)
- else
- if o.symofs<0 then
- hs:=hs+tostr(o.symofs);
- getopstr:=hs;
- end;
- else
- {$ifndef testing}
- internalerror(2002070604);
- {$else testing}
- begin
- writeln('internalerror 10001');
- halt(1);
- end;
- {$endif testing}
- end;
- end;
- function branchmode(o: tasmop): string[4];
- var tempstr: string[4];
- begin
- tempstr := '';
- case o of
- A_BCCTR,A_BCCTRL: tempstr := 'ctr';
- A_BCLR,A_BCLRL: tempstr := 'lr';
- end;
- case o of
- A_BL,A_BLA,A_BCL,A_BCLA,A_BCCTRL,A_BCLRL: tempstr := tempstr+'l';
- end;
- case o of
- A_BA,A_BLA,A_BCA,A_BCLA: tempstr:=tempstr+'a';
- end;
- branchmode := tempstr;
- end;
- function cond2str(op: tasmop; c: tasmcond): string;
- { note: no checking is performed whether the given combination of }
- { conditions is valid }
- var tempstr: string;
- begin
- tempstr:=#9;
- case c.simple of
- false: cond2str := tempstr+op2str[op]+#9+tostr(c.bo)+','+
- tostr(c.bi);
- true:
- if (op >= A_B) and (op <= A_BCLRL) then
- case c.cond of
- { unconditional branch }
- C_NONE:
- cond2str := tempstr+op2str[op];
- { bdnzt etc }
- else
- begin
- tempstr := tempstr+'b'+asmcondflag2str[c.cond]+
- branchmode(op)+#9;
- case c.cond of
- C_LT..C_NU:
- cond2str := tempstr+gas_reg2str[c.cr];
- C_T..C_DZF:
- cond2str := tempstr+tostr(c.crbit);
- end;
- end;
- end
- { we have a trap instruction }
- else
- begin
- internalerror(2002070601);
- { not yet implemented !!!!!!!!!!!!!!!!!!!!! }
- { case tempstr := 'tw';}
- end;
- end;
- end;
- Procedure TPPCGNUAssembler.WriteInstruction(hp : tai);
- var op: TAsmOp;
- s: string;
- i: byte;
- sep: string[3];
- begin
- op:=taicpu(hp).opcode;
- if is_calljmp(op) then
- begin
- { direct BO/BI in op[0] and op[1] not supported, put them in condition! }
- case op of
- A_B,A_BA,A_BL,A_BLA:
- s:=#9+op2str[op]+#9;
- A_BCTR,A_BCTRL,A_BLR,A_BLRL:
- s:=#9+op2str[op]
- else
- s:=cond2str(op,taicpu(hp).condition)+',';
- end;
- if (taicpu(hp).oper[0].typ <> top_none) then
- s:=s+getopstr_jmp(taicpu(hp).oper[0]);
- end
- else
- { process operands }
- begin
- s:=#9+op2str[op];
- if taicpu(hp).ops<>0 then
- begin
- {
- if not is_calljmp(op) then
- sep:=','
- else
- }
- sep:=#9;
- for i:=0 to taicpu(hp).ops-1 do
- begin
- // debug code
- // writeln(s);
- // writeln(taicpu(hp).fileinfo.line);
- s:=s+sep+getopstr(taicpu(hp).oper[i]);
- sep:=',';
- end;
- end;
- end;
- AsmWriteLn(s);
- end;
- begin
- RegisterAssembler(as_ppc_gas_info,TPPCGNUAssembler);
- end.
- {
- $Log$
- Revision 1.22 2003-04-23 12:35:35 florian
- * fixed several issues with powerpc
- + applied a patch from Jonas for nested function calls (PowerPC only)
- * ...
- Revision 1.21 2003/03/12 22:43:38 jonas
- * more powerpc and generic fixes related to the new register allocator
- Revision 1.20 2003/01/08 18:43:57 daniel
- * Tregister changed into a record
- Revision 1.19 2002/11/07 15:50:23 jonas
- * fixed bctr(l) problems
- Revision 1.18 2002/09/08 13:03:26 jonas
- * several large offset-related fixes
- Revision 1.17 2002/09/01 21:04:48 florian
- * several powerpc related stuff fixed
- Revision 1.16 2002/08/31 19:27:48 jonas
- + support top_none for branches
- Revision 1.15 2002/08/20 21:40:44 florian
- + target macos for ppc added
- + frame work for mpw assembler output
- Revision 1.14 2002/08/18 22:16:14 florian
- + the ppc gas assembler writer adds now registers aliases
- to the assembler file
- Revision 1.13 2002/08/18 21:36:42 florian
- + handling of local variables in direct reader implemented
- Revision 1.12 2002/08/18 10:34:30 florian
- * more ppc assembling fixes
- Revision 1.11 2002/08/17 18:23:53 florian
- * some assembler writer bugs fixed
- Revision 1.10 2002/08/12 15:08:44 carl
- + stab register indexes for powerpc (moved from gdb to cpubase)
- + tprocessor enumeration moved to cpuinfo
- + linker in target_info is now a class
- * many many updates for m68k (will soon start to compile)
- - removed some ifdef or correct them for correct cpu
- Revision 1.9 2002/07/27 19:57:18 jonas
- * some typo corrections in the instruction tables
- * renamed the m* registers to v*
- Revision 1.8 2002/07/26 21:15:45 florian
- * rewrote the system handling
- Revision 1.7 2002/07/26 11:19:57 jonas
- * fixed range errors
- Revision 1.6 2002/07/21 16:56:20 jonas
- * fixed bugs with writing out unconditinal jumps
- Revision 1.5 2002/07/12 10:10:01 jonas
- * changed motorola syntax of references with symbols to GNU syntax
- Revision 1.4 2002/07/11 14:41:34 florian
- * start of the new generic parameter handling
- Revision 1.3 2002/07/11 07:34:55 jonas
- * fixed mullw entry in instruction list
- Revision 1.2 2002/07/09 19:45:01 jonas
- * unarynminus and shlshr node fixed for 32bit and smaller ordinals
- * small fixes in the assembler writer
- * changed scratch registers, because they were used by the linker (r11
- and r12) and by the abi under linux (r31)
- Revision 1.1 2002/07/07 09:44:31 florian
- * powerpc target fixed, very simple units can be compiled
- }
|