itcpugas.pas 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. {
  2. Copyright (c) 1998-2002 by Florian Klaempfl
  3. This unit contains the PowerPC GAS instruction tables
  4. This program is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation; either version 2 of the License, or
  7. (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this program; if not, write to the Free Software
  14. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  15. ****************************************************************************
  16. }
  17. unit itcpugas;
  18. {$i fpcdefs.inc}
  19. interface
  20. uses
  21. cpubase,cgbase;
  22. const
  23. gas_op2str : array[tasmop] of string[14] = ('<none>',
  24. 'add','add.','addo','addo.','addc','addc.','addco','addco.',
  25. 'adde','adde.','addeo','addeo.','addi','addic','addic.','addis',
  26. 'addme','addme.','addmeo','addmeo.','addze','addze.','addzeo',
  27. 'addzeo.','and','and.','andc','andc.','andi.','andis.','b',
  28. 'ba','bl','bla','bc','bca','bcl','bcla','bcctr','bcctrl','bclr',
  29. 'bclrl','cmp','cmpi','cmpl','cmpli','cntlzw','cntlzw.','crand',
  30. 'crandc','creqv','crnand','crnor','cror','crorc','crxor','dcba',
  31. 'dcbf','dcbi','dcbst','dcbt','dcbtst','dcbz','divw','divw.','divwo','divwo.',
  32. 'divwu','divwu.','divwuo','divwuo.','eciwx','ecowx','eieio','eqv',
  33. 'eqv.','extsb','extsb.','extsh','extsh.','fabs','fabs.','fadd',
  34. 'fadd.','fadds','fadds.','fcmpo','fcmpu','fctiw','fctiw.','fctiwz',
  35. 'fctiwz.','fdiv','fdiv.','fdivs','fdivs.','fmadd','fmadd.','fmadds',
  36. 'fmadds.','fmr','fmsub','fmsub.','fmsubs','fmsubs.','fmul','fmul.',
  37. 'fmuls','fmuls.','fnabs','fnabs.','fneg','fneg.','fnmadd',
  38. 'fnmadd.','fnmadds','fnmadds.','fnmsub','fnmsub.','fnmsubs',
  39. 'fnmsubs.','fres','fres.','frsp','frsp.','frsqrte','frsqrte.',
  40. 'fsel','fsel.','fsqrt','fsqrt.','fsqrts','fsqrts.','fsub','fsub.',
  41. 'fsubs','fsubs.','icbi','isync','lbz','lbzu','lbzux','lbzx',
  42. 'lfd','lfdu','lfdux','lfdx','lfs','lfsu','lfsux','lfsx','lha',
  43. 'lhau','lhaux','lhax','lhbrx','lhz','lhzu','lhzux','lhzx','lmw',
  44. 'lswi','lswx','lwarx','lwbrx','lwz','lwzu','lwzux','lwzx','mcrf',
  45. 'mcrfs','mcrxr','mfcr','mffs','mffs.','mfmsr','mfspr','mfsr',
  46. 'mfsrin','mftb','mtcrf','mtfsb0','mtfsb1','mtfsf','mtfsf.',
  47. 'mtfsfi','mtfsfi.','mtmsr','mtspr','mtsr','mtsrin','mulhw',
  48. 'mulhw.','mulhwu','mulhwu.','mulli','mullw','mullw.','mullwo',
  49. 'mullwo.','nand','nand.','neg','neg.','nego','nego.','nor','nor.',
  50. 'or','or.','orc','orc.','ori','oris', 'rfi', 'rlwimi', 'rlwimi.',
  51. 'rlwinm', 'rlwinm.','rlwnm','rlwnm_','sc','slw', 'slw.', 'sraw', 'sraw.',
  52. 'srawi', 'srawi.','srw', 'srw.', 'stb', 'stbu', 'stbux','stbx','stfd',
  53. 'stfdu', 'stfdux', 'stfdx', 'stfiwx', 'stfs', 'stfsu', 'stfsux', 'stfsx',
  54. 'sth', 'sthbrx', 'sthu', 'sthux', 'sthx', 'stmw', 'stswi', 'stswx', 'stw',
  55. 'stwbrx', 'stwcx.', 'stwu', 'stwux', 'stwx', 'subf', 'subf.', 'subfo',
  56. 'subfo.', 'subfc', 'subc.', 'subfco', 'subfco.', 'subfe', 'subfe.',
  57. 'subfeo', 'subfeo.', 'subfic', 'subfme', 'subfme.', 'subfmeo', 'subfmeo.',
  58. 'subfze', 'subfze.', 'subfzeo', 'subfzeo.', 'sync', 'tlbia', 'tlbie',
  59. 'tlbsync', 'tw', 'twi', 'xor', 'xor.', 'xori', 'xoris',
  60. { some simplified mnemonics }
  61. 'subi', 'subis', 'subic', 'subic.', 'sub', 'sub.', 'subo', 'subo.',
  62. 'subc', 'subc.', 'subco', 'subco.', 'cmpwi', 'cmpw', 'cmplwi', 'cmplw',
  63. 'extlwi', 'extlwi.', 'extrwi', 'extrwi.', 'inslwi', 'inslwi.', 'insrwi',
  64. 'insrwi.', 'rotlwi', 'rotlwi.', 'rotlw', 'rotlw.', 'slwi', 'slwi.',
  65. 'srwi', 'srwi.', 'clrlwi', 'clrlwi.', 'clrrwi', 'clrrwi.', 'clrslwi',
  66. 'clrslwi.', 'blr', 'bctr', 'blrl', 'bctrl', 'crset', 'crclr', 'crmove',
  67. 'crnot', 'mt', 'mf','nop', 'li', 'lis', 'la', 'mr','mr.','not', 'not.',
  68. 'mtcr', 'mtlr', 'mflr','mtctr', 'mfctr', 'mftbu', 'mfxer');
  69. function gas_regnum_search(const s:string):Tregister;
  70. function gas_regname(r:Tregister):string;
  71. implementation
  72. uses
  73. globtype,globals,
  74. cutils,verbose, systems;
  75. const
  76. gas_regname_table : array[tregisterindex] of string[7] = (
  77. {$i rppcgas.inc}
  78. );
  79. gas_regname_short_table : array[tregisterindex] of string[7] = (
  80. {$i rppcgss.inc}
  81. );
  82. gas_regname_index : array[tregisterindex] of tregisterindex = (
  83. {$i rppcgri.inc}
  84. );
  85. function findreg_by_gasname(const s:string):tregisterindex;
  86. var
  87. i,p : tregisterindex;
  88. begin
  89. {Binary search.}
  90. p:=0;
  91. i:=regnumber_count_bsstart;
  92. repeat
  93. if (p+i<=high(tregisterindex)) and (gas_regname_table[gas_regname_index[p+i]]<=s) then
  94. p:=p+i;
  95. i:=i shr 1;
  96. until i=0;
  97. if gas_regname_table[gas_regname_index[p]]=s then
  98. findreg_by_gasname:=gas_regname_index[p]
  99. else
  100. findreg_by_gasname:=0;
  101. end;
  102. function gas_regnum_search(const s:string):Tregister;
  103. begin
  104. result:=regnumber_table[findreg_by_gasname(s)];
  105. end;
  106. function gas_regname(r:Tregister):string;
  107. var
  108. p : longint;
  109. begin
  110. p:=findreg_by_number(r);
  111. if p<>0 then
  112. {The GNU assembler only accepts numbers and no full register names (at least in older versions). To
  113. make the assembler code more readable, we define macros at the start of all assembler files we write
  114. to redefine r1..r31 and f1..f31 to 1..31, and then use the full register names.
  115. However, we do not do this for smart linked files since that would cause a lot of (mostly useless)
  116. overhead. In theory, we could also not do it if "-a" is not used. The Mac OS X assembler (which is
  117. based on GNU as) "natively" supports full register names.}
  118. if (cs_create_smart in current_settings.moduleswitches) and
  119. (target_info.system <> system_powerpc_darwin) then
  120. result:=gas_regname_short_table[p]
  121. else
  122. result:=gas_regname_table[p]
  123. else
  124. result:=generic_regname(r);
  125. end;
  126. end.