itcpugas.pas 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  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','hbrx','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');
  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. if (cs_create_smart in aktmoduleswitches) and
  113. (target_info.system <> system_powerpc_darwin) then
  114. result:=gas_regname_short_table[p]
  115. else
  116. result:=gas_regname_table[p]
  117. else
  118. result:=generic_regname(r);
  119. end;
  120. end.