hexcore-capstone 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (332) hide show
  1. package/LICENSE +26 -0
  2. package/README.md +191 -0
  3. package/binding.gyp +168 -0
  4. package/deps/capstone/LEB128.h +38 -0
  5. package/deps/capstone/MCDisassembler.h +14 -0
  6. package/deps/capstone/MCFixedLenDisassembler.h +32 -0
  7. package/deps/capstone/MCInst.c +270 -0
  8. package/deps/capstone/MCInst.h +165 -0
  9. package/deps/capstone/MCInstrDesc.c +41 -0
  10. package/deps/capstone/MCInstrDesc.h +167 -0
  11. package/deps/capstone/MCRegisterInfo.c +151 -0
  12. package/deps/capstone/MCRegisterInfo.h +116 -0
  13. package/deps/capstone/Mapping.c +254 -0
  14. package/deps/capstone/Mapping.h +174 -0
  15. package/deps/capstone/MathExtras.h +442 -0
  16. package/deps/capstone/SStream.c +181 -0
  17. package/deps/capstone/SStream.h +40 -0
  18. package/deps/capstone/arch/AArch64/AArch64AddressingModes.h +945 -0
  19. package/deps/capstone/arch/AArch64/AArch64BaseInfo.c +77 -0
  20. package/deps/capstone/arch/AArch64/AArch64BaseInfo.h +585 -0
  21. package/deps/capstone/arch/AArch64/AArch64Disassembler.c +2280 -0
  22. package/deps/capstone/arch/AArch64/AArch64Disassembler.h +18 -0
  23. package/deps/capstone/arch/AArch64/AArch64GenAsmWriter.inc +26589 -0
  24. package/deps/capstone/arch/AArch64/AArch64GenDisassemblerTables.inc +27322 -0
  25. package/deps/capstone/arch/AArch64/AArch64GenInstrInfo.inc +13194 -0
  26. package/deps/capstone/arch/AArch64/AArch64GenRegisterInfo.inc +3814 -0
  27. package/deps/capstone/arch/AArch64/AArch64GenRegisterName.inc +714 -0
  28. package/deps/capstone/arch/AArch64/AArch64GenRegisterV.inc +673 -0
  29. package/deps/capstone/arch/AArch64/AArch64GenSubtargetInfo.inc +229 -0
  30. package/deps/capstone/arch/AArch64/AArch64GenSystemOperands.inc +2863 -0
  31. package/deps/capstone/arch/AArch64/AArch64GenSystemOperands_enum.inc +21 -0
  32. package/deps/capstone/arch/AArch64/AArch64InstPrinter.c +3029 -0
  33. package/deps/capstone/arch/AArch64/AArch64InstPrinter.h +28 -0
  34. package/deps/capstone/arch/AArch64/AArch64Mapping.c +883 -0
  35. package/deps/capstone/arch/AArch64/AArch64Mapping.h +43 -0
  36. package/deps/capstone/arch/AArch64/AArch64MappingInsn.inc +37790 -0
  37. package/deps/capstone/arch/AArch64/AArch64MappingInsnName.inc +1282 -0
  38. package/deps/capstone/arch/AArch64/AArch64MappingInsnOp.inc +26994 -0
  39. package/deps/capstone/arch/AArch64/AArch64Module.c +44 -0
  40. package/deps/capstone/arch/AArch64/AArch64Module.h +12 -0
  41. package/deps/capstone/arch/ARM/ARMAddressingModes.h +698 -0
  42. package/deps/capstone/arch/ARM/ARMBaseInfo.h +486 -0
  43. package/deps/capstone/arch/ARM/ARMDisassembler.c +5763 -0
  44. package/deps/capstone/arch/ARM/ARMDisassembler.h +18 -0
  45. package/deps/capstone/arch/ARM/ARMGenAsmWriter.inc +9545 -0
  46. package/deps/capstone/arch/ARM/ARMGenDisassemblerTables.inc +15185 -0
  47. package/deps/capstone/arch/ARM/ARMGenInstrInfo.inc +6632 -0
  48. package/deps/capstone/arch/ARM/ARMGenRegisterInfo.inc +2102 -0
  49. package/deps/capstone/arch/ARM/ARMGenRegisterName.inc +231 -0
  50. package/deps/capstone/arch/ARM/ARMGenRegisterName_digit.inc +231 -0
  51. package/deps/capstone/arch/ARM/ARMGenSubtargetInfo.inc +162 -0
  52. package/deps/capstone/arch/ARM/ARMGenSystemRegister.inc +270 -0
  53. package/deps/capstone/arch/ARM/ARMInstPrinter.c +3364 -0
  54. package/deps/capstone/arch/ARM/ARMInstPrinter.h +43 -0
  55. package/deps/capstone/arch/ARM/ARMMapping.c +551 -0
  56. package/deps/capstone/arch/ARM/ARMMapping.h +40 -0
  57. package/deps/capstone/arch/ARM/ARMMappingInsn.inc +18772 -0
  58. package/deps/capstone/arch/ARM/ARMMappingInsnName.inc +475 -0
  59. package/deps/capstone/arch/ARM/ARMMappingInsnOp.inc +10729 -0
  60. package/deps/capstone/arch/ARM/ARMModule.c +63 -0
  61. package/deps/capstone/arch/ARM/ARMModule.h +12 -0
  62. package/deps/capstone/arch/BPF/BPFConstants.h +88 -0
  63. package/deps/capstone/arch/BPF/BPFDisassembler.c +464 -0
  64. package/deps/capstone/arch/BPF/BPFDisassembler.h +27 -0
  65. package/deps/capstone/arch/BPF/BPFInstPrinter.c +285 -0
  66. package/deps/capstone/arch/BPF/BPFInstPrinter.h +16 -0
  67. package/deps/capstone/arch/BPF/BPFMapping.c +513 -0
  68. package/deps/capstone/arch/BPF/BPFMapping.h +21 -0
  69. package/deps/capstone/arch/BPF/BPFModule.c +34 -0
  70. package/deps/capstone/arch/BPF/BPFModule.h +12 -0
  71. package/deps/capstone/arch/EVM/EVMDisassembler.c +379 -0
  72. package/deps/capstone/arch/EVM/EVMDisassembler.h +12 -0
  73. package/deps/capstone/arch/EVM/EVMInstPrinter.c +20 -0
  74. package/deps/capstone/arch/EVM/EVMInstPrinter.h +17 -0
  75. package/deps/capstone/arch/EVM/EVMMapping.c +344 -0
  76. package/deps/capstone/arch/EVM/EVMMapping.h +8 -0
  77. package/deps/capstone/arch/EVM/EVMMappingInsn.inc +259 -0
  78. package/deps/capstone/arch/EVM/EVMModule.c +33 -0
  79. package/deps/capstone/arch/EVM/EVMModule.h +12 -0
  80. package/deps/capstone/arch/M680X/M680XDisassembler.c +2307 -0
  81. package/deps/capstone/arch/M680X/M680XDisassembler.h +17 -0
  82. package/deps/capstone/arch/M680X/M680XDisassemblerInternals.h +57 -0
  83. package/deps/capstone/arch/M680X/M680XInstPrinter.c +360 -0
  84. package/deps/capstone/arch/M680X/M680XInstPrinter.h +25 -0
  85. package/deps/capstone/arch/M680X/M680XModule.c +77 -0
  86. package/deps/capstone/arch/M680X/M680XModule.h +12 -0
  87. package/deps/capstone/arch/M680X/cpu12.inc +335 -0
  88. package/deps/capstone/arch/M680X/hcs08.inc +60 -0
  89. package/deps/capstone/arch/M680X/hd6301.inc +15 -0
  90. package/deps/capstone/arch/M680X/hd6309.inc +259 -0
  91. package/deps/capstone/arch/M680X/insn_props.inc +367 -0
  92. package/deps/capstone/arch/M680X/m6800.inc +277 -0
  93. package/deps/capstone/arch/M680X/m6801.inc +39 -0
  94. package/deps/capstone/arch/M680X/m6805.inc +277 -0
  95. package/deps/capstone/arch/M680X/m6808.inc +91 -0
  96. package/deps/capstone/arch/M680X/m6809.inc +352 -0
  97. package/deps/capstone/arch/M680X/m6811.inc +105 -0
  98. package/deps/capstone/arch/M68K/M68KDisassembler.c +3668 -0
  99. package/deps/capstone/arch/M68K/M68KDisassembler.h +30 -0
  100. package/deps/capstone/arch/M68K/M68KInstPrinter.c +387 -0
  101. package/deps/capstone/arch/M68K/M68KInstPrinter.h +21 -0
  102. package/deps/capstone/arch/M68K/M68KInstructionTable.inc +65540 -0
  103. package/deps/capstone/arch/M68K/M68KModule.c +42 -0
  104. package/deps/capstone/arch/M68K/M68KModule.h +12 -0
  105. package/deps/capstone/arch/MOS65XX/MOS65XXDisassembler.c +544 -0
  106. package/deps/capstone/arch/MOS65XX/MOS65XXDisassembler.h +22 -0
  107. package/deps/capstone/arch/MOS65XX/MOS65XXDisassemblerInternals.h +23 -0
  108. package/deps/capstone/arch/MOS65XX/MOS65XXModule.c +79 -0
  109. package/deps/capstone/arch/MOS65XX/MOS65XXModule.h +12 -0
  110. package/deps/capstone/arch/MOS65XX/instruction_info.inc +106 -0
  111. package/deps/capstone/arch/MOS65XX/m6502.inc +256 -0
  112. package/deps/capstone/arch/MOS65XX/m65816.inc +256 -0
  113. package/deps/capstone/arch/MOS65XX/m65c02.inc +256 -0
  114. package/deps/capstone/arch/MOS65XX/mw65c02.inc +256 -0
  115. package/deps/capstone/arch/Mips/MipsDisassembler.c +1794 -0
  116. package/deps/capstone/arch/Mips/MipsDisassembler.h +16 -0
  117. package/deps/capstone/arch/Mips/MipsGenAsmWriter.inc +5725 -0
  118. package/deps/capstone/arch/Mips/MipsGenDisassemblerTables.inc +6942 -0
  119. package/deps/capstone/arch/Mips/MipsGenInstrInfo.inc +1805 -0
  120. package/deps/capstone/arch/Mips/MipsGenRegisterInfo.inc +1679 -0
  121. package/deps/capstone/arch/Mips/MipsGenSubtargetInfo.inc +52 -0
  122. package/deps/capstone/arch/Mips/MipsInstPrinter.c +424 -0
  123. package/deps/capstone/arch/Mips/MipsInstPrinter.h +25 -0
  124. package/deps/capstone/arch/Mips/MipsMapping.c +1070 -0
  125. package/deps/capstone/arch/Mips/MipsMapping.h +25 -0
  126. package/deps/capstone/arch/Mips/MipsMappingInsn.inc +9315 -0
  127. package/deps/capstone/arch/Mips/MipsModule.c +52 -0
  128. package/deps/capstone/arch/Mips/MipsModule.h +12 -0
  129. package/deps/capstone/arch/PowerPC/PPCDisassembler.c +627 -0
  130. package/deps/capstone/arch/PowerPC/PPCDisassembler.h +17 -0
  131. package/deps/capstone/arch/PowerPC/PPCGenAsmWriter.inc +11451 -0
  132. package/deps/capstone/arch/PowerPC/PPCGenDisassemblerTables.inc +6886 -0
  133. package/deps/capstone/arch/PowerPC/PPCGenInstrInfo.inc +4772 -0
  134. package/deps/capstone/arch/PowerPC/PPCGenRegisterInfo.inc +1122 -0
  135. package/deps/capstone/arch/PowerPC/PPCGenRegisterName.inc +278 -0
  136. package/deps/capstone/arch/PowerPC/PPCGenSubtargetInfo.inc +90 -0
  137. package/deps/capstone/arch/PowerPC/PPCInstPrinter.c +1238 -0
  138. package/deps/capstone/arch/PowerPC/PPCInstPrinter.h +15 -0
  139. package/deps/capstone/arch/PowerPC/PPCMapping.c +570 -0
  140. package/deps/capstone/arch/PowerPC/PPCMapping.h +40 -0
  141. package/deps/capstone/arch/PowerPC/PPCMappingInsn.inc +13220 -0
  142. package/deps/capstone/arch/PowerPC/PPCMappingInsnName.inc +1731 -0
  143. package/deps/capstone/arch/PowerPC/PPCModule.c +45 -0
  144. package/deps/capstone/arch/PowerPC/PPCModule.h +12 -0
  145. package/deps/capstone/arch/PowerPC/PPCPredicates.h +62 -0
  146. package/deps/capstone/arch/RISCV/RISCVBaseInfo.h +106 -0
  147. package/deps/capstone/arch/RISCV/RISCVDisassembler.c +433 -0
  148. package/deps/capstone/arch/RISCV/RISCVDisassembler.h +18 -0
  149. package/deps/capstone/arch/RISCV/RISCVGenAsmWriter.inc +2651 -0
  150. package/deps/capstone/arch/RISCV/RISCVGenDisassemblerTables.inc +1776 -0
  151. package/deps/capstone/arch/RISCV/RISCVGenInsnNameMaps.inc +275 -0
  152. package/deps/capstone/arch/RISCV/RISCVGenInstrInfo.inc +470 -0
  153. package/deps/capstone/arch/RISCV/RISCVGenRegisterInfo.inc +426 -0
  154. package/deps/capstone/arch/RISCV/RISCVGenSubtargetInfo.inc +33 -0
  155. package/deps/capstone/arch/RISCV/RISCVInstPrinter.c +447 -0
  156. package/deps/capstone/arch/RISCV/RISCVInstPrinter.h +24 -0
  157. package/deps/capstone/arch/RISCV/RISCVMapping.c +366 -0
  158. package/deps/capstone/arch/RISCV/RISCVMapping.h +22 -0
  159. package/deps/capstone/arch/RISCV/RISCVMappingInsn.inc +1635 -0
  160. package/deps/capstone/arch/RISCV/RISCVModule.c +42 -0
  161. package/deps/capstone/arch/RISCV/RISCVModule.h +12 -0
  162. package/deps/capstone/arch/SH/SHDisassembler.c +2221 -0
  163. package/deps/capstone/arch/SH/SHDisassembler.h +19 -0
  164. package/deps/capstone/arch/SH/SHInsnTable.inc +66 -0
  165. package/deps/capstone/arch/SH/SHInstPrinter.c +438 -0
  166. package/deps/capstone/arch/SH/SHInstPrinter.h +23 -0
  167. package/deps/capstone/arch/SH/SHModule.c +39 -0
  168. package/deps/capstone/arch/SH/SHModule.h +12 -0
  169. package/deps/capstone/arch/SH/mktable.rb +390 -0
  170. package/deps/capstone/arch/Sparc/Sparc.h +63 -0
  171. package/deps/capstone/arch/Sparc/SparcDisassembler.c +500 -0
  172. package/deps/capstone/arch/Sparc/SparcDisassembler.h +17 -0
  173. package/deps/capstone/arch/Sparc/SparcGenAsmWriter.inc +5709 -0
  174. package/deps/capstone/arch/Sparc/SparcGenDisassemblerTables.inc +2028 -0
  175. package/deps/capstone/arch/Sparc/SparcGenInstrInfo.inc +514 -0
  176. package/deps/capstone/arch/Sparc/SparcGenRegisterInfo.inc +451 -0
  177. package/deps/capstone/arch/Sparc/SparcGenSubtargetInfo.inc +27 -0
  178. package/deps/capstone/arch/Sparc/SparcInstPrinter.c +446 -0
  179. package/deps/capstone/arch/Sparc/SparcInstPrinter.h +17 -0
  180. package/deps/capstone/arch/Sparc/SparcMapping.c +665 -0
  181. package/deps/capstone/arch/Sparc/SparcMapping.h +34 -0
  182. package/deps/capstone/arch/Sparc/SparcMappingInsn.inc +2643 -0
  183. package/deps/capstone/arch/Sparc/SparcModule.c +45 -0
  184. package/deps/capstone/arch/Sparc/SparcModule.h +12 -0
  185. package/deps/capstone/arch/SystemZ/SystemZDisassembler.c +484 -0
  186. package/deps/capstone/arch/SystemZ/SystemZDisassembler.h +17 -0
  187. package/deps/capstone/arch/SystemZ/SystemZGenAsmWriter.inc +11575 -0
  188. package/deps/capstone/arch/SystemZ/SystemZGenDisassemblerTables.inc +10262 -0
  189. package/deps/capstone/arch/SystemZ/SystemZGenInsnNameMaps.inc +2348 -0
  190. package/deps/capstone/arch/SystemZ/SystemZGenInstrInfo.inc +2820 -0
  191. package/deps/capstone/arch/SystemZ/SystemZGenRegisterInfo.inc +741 -0
  192. package/deps/capstone/arch/SystemZ/SystemZGenSubtargetInfo.inc +49 -0
  193. package/deps/capstone/arch/SystemZ/SystemZInstPrinter.c +433 -0
  194. package/deps/capstone/arch/SystemZ/SystemZInstPrinter.h +15 -0
  195. package/deps/capstone/arch/SystemZ/SystemZMCTargetDesc.c +195 -0
  196. package/deps/capstone/arch/SystemZ/SystemZMCTargetDesc.h +51 -0
  197. package/deps/capstone/arch/SystemZ/SystemZMapping.c +479 -0
  198. package/deps/capstone/arch/SystemZ/SystemZMapping.h +23 -0
  199. package/deps/capstone/arch/SystemZ/SystemZMappingInsn.inc +14175 -0
  200. package/deps/capstone/arch/SystemZ/SystemZModule.c +44 -0
  201. package/deps/capstone/arch/SystemZ/SystemZModule.h +12 -0
  202. package/deps/capstone/arch/TMS320C64x/TMS320C64xDisassembler.c +628 -0
  203. package/deps/capstone/arch/TMS320C64x/TMS320C64xDisassembler.h +19 -0
  204. package/deps/capstone/arch/TMS320C64x/TMS320C64xGenAsmWriter.inc +684 -0
  205. package/deps/capstone/arch/TMS320C64x/TMS320C64xGenDisassemblerTables.inc +1352 -0
  206. package/deps/capstone/arch/TMS320C64x/TMS320C64xGenInstrInfo.inc +298 -0
  207. package/deps/capstone/arch/TMS320C64x/TMS320C64xGenRegisterInfo.inc +277 -0
  208. package/deps/capstone/arch/TMS320C64x/TMS320C64xInstPrinter.c +572 -0
  209. package/deps/capstone/arch/TMS320C64x/TMS320C64xInstPrinter.h +15 -0
  210. package/deps/capstone/arch/TMS320C64x/TMS320C64xMapping.c +1926 -0
  211. package/deps/capstone/arch/TMS320C64x/TMS320C64xMapping.h +26 -0
  212. package/deps/capstone/arch/TMS320C64x/TMS320C64xModule.c +39 -0
  213. package/deps/capstone/arch/TMS320C64x/TMS320C64xModule.h +12 -0
  214. package/deps/capstone/arch/TriCore/TriCore.td +134 -0
  215. package/deps/capstone/arch/TriCore/TriCoreCallingConv.td +61 -0
  216. package/deps/capstone/arch/TriCore/TriCoreDisassembler.c +1655 -0
  217. package/deps/capstone/arch/TriCore/TriCoreDisassembler.h +18 -0
  218. package/deps/capstone/arch/TriCore/TriCoreGenAsmWriter.inc +3691 -0
  219. package/deps/capstone/arch/TriCore/TriCoreGenCSFeatureName.inc +22 -0
  220. package/deps/capstone/arch/TriCore/TriCoreGenCSMappingInsn.inc +8938 -0
  221. package/deps/capstone/arch/TriCore/TriCoreGenCSMappingInsnName.inc +404 -0
  222. package/deps/capstone/arch/TriCore/TriCoreGenCSMappingInsnOp.inc +7994 -0
  223. package/deps/capstone/arch/TriCore/TriCoreGenCSOpGroup.inc +32 -0
  224. package/deps/capstone/arch/TriCore/TriCoreGenDisassemblerTables.inc +4044 -0
  225. package/deps/capstone/arch/TriCore/TriCoreGenInstrInfo.inc +2693 -0
  226. package/deps/capstone/arch/TriCore/TriCoreGenRegisterInfo.inc +295 -0
  227. package/deps/capstone/arch/TriCore/TriCoreGenSubtargetInfo.inc +40 -0
  228. package/deps/capstone/arch/TriCore/TriCoreInstPrinter.c +488 -0
  229. package/deps/capstone/arch/TriCore/TriCoreInstrFormats.td +773 -0
  230. package/deps/capstone/arch/TriCore/TriCoreInstrInfo.td +1873 -0
  231. package/deps/capstone/arch/TriCore/TriCoreLinkage.h +21 -0
  232. package/deps/capstone/arch/TriCore/TriCoreMapping.c +241 -0
  233. package/deps/capstone/arch/TriCore/TriCoreMapping.h +32 -0
  234. package/deps/capstone/arch/TriCore/TriCoreModule.c +44 -0
  235. package/deps/capstone/arch/TriCore/TriCoreModule.h +11 -0
  236. package/deps/capstone/arch/TriCore/TriCoreRegisterInfo.td +153 -0
  237. package/deps/capstone/arch/WASM/WASMDisassembler.c +1009 -0
  238. package/deps/capstone/arch/WASM/WASMDisassembler.h +12 -0
  239. package/deps/capstone/arch/WASM/WASMInstPrinter.c +47 -0
  240. package/deps/capstone/arch/WASM/WASMInstPrinter.h +18 -0
  241. package/deps/capstone/arch/WASM/WASMMapping.c +333 -0
  242. package/deps/capstone/arch/WASM/WASMMapping.h +9 -0
  243. package/deps/capstone/arch/WASM/WASMModule.c +33 -0
  244. package/deps/capstone/arch/WASM/WASMModule.h +12 -0
  245. package/deps/capstone/arch/X86/X86ATTInstPrinter.c +997 -0
  246. package/deps/capstone/arch/X86/X86BaseInfo.h +50 -0
  247. package/deps/capstone/arch/X86/X86Disassembler.c +1033 -0
  248. package/deps/capstone/arch/X86/X86Disassembler.h +28 -0
  249. package/deps/capstone/arch/X86/X86DisassemblerDecoder.c +2358 -0
  250. package/deps/capstone/arch/X86/X86DisassemblerDecoder.h +725 -0
  251. package/deps/capstone/arch/X86/X86DisassemblerDecoderCommon.h +483 -0
  252. package/deps/capstone/arch/X86/X86GenAsmWriter.inc +49199 -0
  253. package/deps/capstone/arch/X86/X86GenAsmWriter1.inc +33196 -0
  254. package/deps/capstone/arch/X86/X86GenAsmWriter1_reduce.inc +2531 -0
  255. package/deps/capstone/arch/X86/X86GenAsmWriter_reduce.inc +2855 -0
  256. package/deps/capstone/arch/X86/X86GenDisassemblerTables.inc +112961 -0
  257. package/deps/capstone/arch/X86/X86GenDisassemblerTables2.inc +102151 -0
  258. package/deps/capstone/arch/X86/X86GenDisassemblerTables_reduce.inc +28047 -0
  259. package/deps/capstone/arch/X86/X86GenDisassemblerTables_reduce2.inc +18827 -0
  260. package/deps/capstone/arch/X86/X86GenInstrInfo.inc +15158 -0
  261. package/deps/capstone/arch/X86/X86GenInstrInfo_reduce.inc +1564 -0
  262. package/deps/capstone/arch/X86/X86GenRegisterInfo.inc +1549 -0
  263. package/deps/capstone/arch/X86/X86GenRegisterName.inc +292 -0
  264. package/deps/capstone/arch/X86/X86GenRegisterName1.inc +291 -0
  265. package/deps/capstone/arch/X86/X86ImmSize.inc +335 -0
  266. package/deps/capstone/arch/X86/X86InstPrinter.h +26 -0
  267. package/deps/capstone/arch/X86/X86InstPrinterCommon.c +116 -0
  268. package/deps/capstone/arch/X86/X86InstPrinterCommon.h +16 -0
  269. package/deps/capstone/arch/X86/X86IntelInstPrinter.c +1061 -0
  270. package/deps/capstone/arch/X86/X86Lookup16.inc +16874 -0
  271. package/deps/capstone/arch/X86/X86Lookup16_reduce.inc +2308 -0
  272. package/deps/capstone/arch/X86/X86Mapping.c +2266 -0
  273. package/deps/capstone/arch/X86/X86Mapping.h +96 -0
  274. package/deps/capstone/arch/X86/X86MappingInsn.inc +105977 -0
  275. package/deps/capstone/arch/X86/X86MappingInsnName.inc +1527 -0
  276. package/deps/capstone/arch/X86/X86MappingInsnName_reduce.inc +348 -0
  277. package/deps/capstone/arch/X86/X86MappingInsnOp.inc +75700 -0
  278. package/deps/capstone/arch/X86/X86MappingInsnOp_reduce.inc +7729 -0
  279. package/deps/capstone/arch/X86/X86MappingInsn_reduce.inc +10819 -0
  280. package/deps/capstone/arch/X86/X86MappingReg.inc +280 -0
  281. package/deps/capstone/arch/X86/X86Module.c +94 -0
  282. package/deps/capstone/arch/X86/X86Module.h +12 -0
  283. package/deps/capstone/arch/XCore/XCoreDisassembler.c +794 -0
  284. package/deps/capstone/arch/XCore/XCoreDisassembler.h +17 -0
  285. package/deps/capstone/arch/XCore/XCoreGenAsmWriter.inc +772 -0
  286. package/deps/capstone/arch/XCore/XCoreGenDisassemblerTables.inc +853 -0
  287. package/deps/capstone/arch/XCore/XCoreGenInstrInfo.inc +267 -0
  288. package/deps/capstone/arch/XCore/XCoreGenRegisterInfo.inc +110 -0
  289. package/deps/capstone/arch/XCore/XCoreInstPrinter.c +250 -0
  290. package/deps/capstone/arch/XCore/XCoreInstPrinter.h +18 -0
  291. package/deps/capstone/arch/XCore/XCoreMapping.c +297 -0
  292. package/deps/capstone/arch/XCore/XCoreMapping.h +26 -0
  293. package/deps/capstone/arch/XCore/XCoreMappingInsn.inc +1287 -0
  294. package/deps/capstone/arch/XCore/XCoreModule.c +41 -0
  295. package/deps/capstone/arch/XCore/XCoreModule.h +12 -0
  296. package/deps/capstone/cs.c +1664 -0
  297. package/deps/capstone/cs_priv.h +101 -0
  298. package/deps/capstone/cs_simple_types.h +886 -0
  299. package/deps/capstone/include/capstone/arm.h +991 -0
  300. package/deps/capstone/include/capstone/arm64.h +3159 -0
  301. package/deps/capstone/include/capstone/bpf.h +209 -0
  302. package/deps/capstone/include/capstone/capstone.h +875 -0
  303. package/deps/capstone/include/capstone/evm.h +188 -0
  304. package/deps/capstone/include/capstone/m680x.h +537 -0
  305. package/deps/capstone/include/capstone/m68k.h +613 -0
  306. package/deps/capstone/include/capstone/mips.h +956 -0
  307. package/deps/capstone/include/capstone/mos65xx.h +204 -0
  308. package/deps/capstone/include/capstone/platform.h +122 -0
  309. package/deps/capstone/include/capstone/ppc.h +2108 -0
  310. package/deps/capstone/include/capstone/riscv.h +531 -0
  311. package/deps/capstone/include/capstone/sh.h +465 -0
  312. package/deps/capstone/include/capstone/sparc.h +520 -0
  313. package/deps/capstone/include/capstone/systemz.h +2601 -0
  314. package/deps/capstone/include/capstone/tms320c64x.h +359 -0
  315. package/deps/capstone/include/capstone/tricore.h +567 -0
  316. package/deps/capstone/include/capstone/wasm.h +250 -0
  317. package/deps/capstone/include/capstone/x86.h +1986 -0
  318. package/deps/capstone/include/capstone/xcore.h +235 -0
  319. package/deps/capstone/include/platform.h +110 -0
  320. package/deps/capstone/include/windowsce/intrin.h +12 -0
  321. package/deps/capstone/include/windowsce/stdint.h +133 -0
  322. package/deps/capstone/utils.c +140 -0
  323. package/deps/capstone/utils.h +54 -0
  324. package/index.d.ts +448 -0
  325. package/index.js +64 -0
  326. package/index.mjs +25 -0
  327. package/package.json +82 -0
  328. package/prebuilds/win32-x64/hexcore-capstone.node +0 -0
  329. package/src/capstone_wrapper.cpp +910 -0
  330. package/src/capstone_wrapper.h +147 -0
  331. package/src/disasm_async_worker.h +215 -0
  332. package/src/main.cpp +145 -0
@@ -0,0 +1,1122 @@
1
+
2
+ /* Capstone Disassembly Engine, http://www.capstone-engine.org */
3
+ /* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013-2019 */
4
+
5
+ /*===- TableGen'erated file -------------------------------------*- C++ -*-===*\
6
+ |* *|
7
+ |* Target Register Enum Values *|
8
+ |* *|
9
+ |* Automatically generated file, do not edit! *|
10
+ |* *|
11
+ \*===----------------------------------------------------------------------===*/
12
+
13
+ #ifdef GET_REGINFO_ENUM
14
+ #undef GET_REGINFO_ENUM
15
+
16
+ enum {
17
+ PPC_NoRegister,
18
+ PPC_BP = 1,
19
+ PPC_CARRY = 2,
20
+ PPC_CTR = 3,
21
+ PPC_FP = 4,
22
+ PPC_LR = 5,
23
+ PPC_RM = 6,
24
+ PPC_SPEFSCR = 7,
25
+ PPC_VRSAVE = 8,
26
+ PPC_XER = 9,
27
+ PPC_ZERO = 10,
28
+ PPC_BP8 = 11,
29
+ PPC_CR0 = 12,
30
+ PPC_CR1 = 13,
31
+ PPC_CR2 = 14,
32
+ PPC_CR3 = 15,
33
+ PPC_CR4 = 16,
34
+ PPC_CR5 = 17,
35
+ PPC_CR6 = 18,
36
+ PPC_CR7 = 19,
37
+ PPC_CTR8 = 20,
38
+ PPC_F0 = 21,
39
+ PPC_F1 = 22,
40
+ PPC_F2 = 23,
41
+ PPC_F3 = 24,
42
+ PPC_F4 = 25,
43
+ PPC_F5 = 26,
44
+ PPC_F6 = 27,
45
+ PPC_F7 = 28,
46
+ PPC_F8 = 29,
47
+ PPC_F9 = 30,
48
+ PPC_F10 = 31,
49
+ PPC_F11 = 32,
50
+ PPC_F12 = 33,
51
+ PPC_F13 = 34,
52
+ PPC_F14 = 35,
53
+ PPC_F15 = 36,
54
+ PPC_F16 = 37,
55
+ PPC_F17 = 38,
56
+ PPC_F18 = 39,
57
+ PPC_F19 = 40,
58
+ PPC_F20 = 41,
59
+ PPC_F21 = 42,
60
+ PPC_F22 = 43,
61
+ PPC_F23 = 44,
62
+ PPC_F24 = 45,
63
+ PPC_F25 = 46,
64
+ PPC_F26 = 47,
65
+ PPC_F27 = 48,
66
+ PPC_F28 = 49,
67
+ PPC_F29 = 50,
68
+ PPC_F30 = 51,
69
+ PPC_F31 = 52,
70
+ PPC_FP8 = 53,
71
+ PPC_LR8 = 54,
72
+ PPC_QF0 = 55,
73
+ PPC_QF1 = 56,
74
+ PPC_QF2 = 57,
75
+ PPC_QF3 = 58,
76
+ PPC_QF4 = 59,
77
+ PPC_QF5 = 60,
78
+ PPC_QF6 = 61,
79
+ PPC_QF7 = 62,
80
+ PPC_QF8 = 63,
81
+ PPC_QF9 = 64,
82
+ PPC_QF10 = 65,
83
+ PPC_QF11 = 66,
84
+ PPC_QF12 = 67,
85
+ PPC_QF13 = 68,
86
+ PPC_QF14 = 69,
87
+ PPC_QF15 = 70,
88
+ PPC_QF16 = 71,
89
+ PPC_QF17 = 72,
90
+ PPC_QF18 = 73,
91
+ PPC_QF19 = 74,
92
+ PPC_QF20 = 75,
93
+ PPC_QF21 = 76,
94
+ PPC_QF22 = 77,
95
+ PPC_QF23 = 78,
96
+ PPC_QF24 = 79,
97
+ PPC_QF25 = 80,
98
+ PPC_QF26 = 81,
99
+ PPC_QF27 = 82,
100
+ PPC_QF28 = 83,
101
+ PPC_QF29 = 84,
102
+ PPC_QF30 = 85,
103
+ PPC_QF31 = 86,
104
+ PPC_R0 = 87,
105
+ PPC_R1 = 88,
106
+ PPC_R2 = 89,
107
+ PPC_R3 = 90,
108
+ PPC_R4 = 91,
109
+ PPC_R5 = 92,
110
+ PPC_R6 = 93,
111
+ PPC_R7 = 94,
112
+ PPC_R8 = 95,
113
+ PPC_R9 = 96,
114
+ PPC_R10 = 97,
115
+ PPC_R11 = 98,
116
+ PPC_R12 = 99,
117
+ PPC_R13 = 100,
118
+ PPC_R14 = 101,
119
+ PPC_R15 = 102,
120
+ PPC_R16 = 103,
121
+ PPC_R17 = 104,
122
+ PPC_R18 = 105,
123
+ PPC_R19 = 106,
124
+ PPC_R20 = 107,
125
+ PPC_R21 = 108,
126
+ PPC_R22 = 109,
127
+ PPC_R23 = 110,
128
+ PPC_R24 = 111,
129
+ PPC_R25 = 112,
130
+ PPC_R26 = 113,
131
+ PPC_R27 = 114,
132
+ PPC_R28 = 115,
133
+ PPC_R29 = 116,
134
+ PPC_R30 = 117,
135
+ PPC_R31 = 118,
136
+ PPC_S0 = 119,
137
+ PPC_S1 = 120,
138
+ PPC_S2 = 121,
139
+ PPC_S3 = 122,
140
+ PPC_S4 = 123,
141
+ PPC_S5 = 124,
142
+ PPC_S6 = 125,
143
+ PPC_S7 = 126,
144
+ PPC_S8 = 127,
145
+ PPC_S9 = 128,
146
+ PPC_S10 = 129,
147
+ PPC_S11 = 130,
148
+ PPC_S12 = 131,
149
+ PPC_S13 = 132,
150
+ PPC_S14 = 133,
151
+ PPC_S15 = 134,
152
+ PPC_S16 = 135,
153
+ PPC_S17 = 136,
154
+ PPC_S18 = 137,
155
+ PPC_S19 = 138,
156
+ PPC_S20 = 139,
157
+ PPC_S21 = 140,
158
+ PPC_S22 = 141,
159
+ PPC_S23 = 142,
160
+ PPC_S24 = 143,
161
+ PPC_S25 = 144,
162
+ PPC_S26 = 145,
163
+ PPC_S27 = 146,
164
+ PPC_S28 = 147,
165
+ PPC_S29 = 148,
166
+ PPC_S30 = 149,
167
+ PPC_S31 = 150,
168
+ PPC_V0 = 151,
169
+ PPC_V1 = 152,
170
+ PPC_V2 = 153,
171
+ PPC_V3 = 154,
172
+ PPC_V4 = 155,
173
+ PPC_V5 = 156,
174
+ PPC_V6 = 157,
175
+ PPC_V7 = 158,
176
+ PPC_V8 = 159,
177
+ PPC_V9 = 160,
178
+ PPC_V10 = 161,
179
+ PPC_V11 = 162,
180
+ PPC_V12 = 163,
181
+ PPC_V13 = 164,
182
+ PPC_V14 = 165,
183
+ PPC_V15 = 166,
184
+ PPC_V16 = 167,
185
+ PPC_V17 = 168,
186
+ PPC_V18 = 169,
187
+ PPC_V19 = 170,
188
+ PPC_V20 = 171,
189
+ PPC_V21 = 172,
190
+ PPC_V22 = 173,
191
+ PPC_V23 = 174,
192
+ PPC_V24 = 175,
193
+ PPC_V25 = 176,
194
+ PPC_V26 = 177,
195
+ PPC_V27 = 178,
196
+ PPC_V28 = 179,
197
+ PPC_V29 = 180,
198
+ PPC_V30 = 181,
199
+ PPC_V31 = 182,
200
+ PPC_VF0 = 183,
201
+ PPC_VF1 = 184,
202
+ PPC_VF2 = 185,
203
+ PPC_VF3 = 186,
204
+ PPC_VF4 = 187,
205
+ PPC_VF5 = 188,
206
+ PPC_VF6 = 189,
207
+ PPC_VF7 = 190,
208
+ PPC_VF8 = 191,
209
+ PPC_VF9 = 192,
210
+ PPC_VF10 = 193,
211
+ PPC_VF11 = 194,
212
+ PPC_VF12 = 195,
213
+ PPC_VF13 = 196,
214
+ PPC_VF14 = 197,
215
+ PPC_VF15 = 198,
216
+ PPC_VF16 = 199,
217
+ PPC_VF17 = 200,
218
+ PPC_VF18 = 201,
219
+ PPC_VF19 = 202,
220
+ PPC_VF20 = 203,
221
+ PPC_VF21 = 204,
222
+ PPC_VF22 = 205,
223
+ PPC_VF23 = 206,
224
+ PPC_VF24 = 207,
225
+ PPC_VF25 = 208,
226
+ PPC_VF26 = 209,
227
+ PPC_VF27 = 210,
228
+ PPC_VF28 = 211,
229
+ PPC_VF29 = 212,
230
+ PPC_VF30 = 213,
231
+ PPC_VF31 = 214,
232
+ PPC_VSL0 = 215,
233
+ PPC_VSL1 = 216,
234
+ PPC_VSL2 = 217,
235
+ PPC_VSL3 = 218,
236
+ PPC_VSL4 = 219,
237
+ PPC_VSL5 = 220,
238
+ PPC_VSL6 = 221,
239
+ PPC_VSL7 = 222,
240
+ PPC_VSL8 = 223,
241
+ PPC_VSL9 = 224,
242
+ PPC_VSL10 = 225,
243
+ PPC_VSL11 = 226,
244
+ PPC_VSL12 = 227,
245
+ PPC_VSL13 = 228,
246
+ PPC_VSL14 = 229,
247
+ PPC_VSL15 = 230,
248
+ PPC_VSL16 = 231,
249
+ PPC_VSL17 = 232,
250
+ PPC_VSL18 = 233,
251
+ PPC_VSL19 = 234,
252
+ PPC_VSL20 = 235,
253
+ PPC_VSL21 = 236,
254
+ PPC_VSL22 = 237,
255
+ PPC_VSL23 = 238,
256
+ PPC_VSL24 = 239,
257
+ PPC_VSL25 = 240,
258
+ PPC_VSL26 = 241,
259
+ PPC_VSL27 = 242,
260
+ PPC_VSL28 = 243,
261
+ PPC_VSL29 = 244,
262
+ PPC_VSL30 = 245,
263
+ PPC_VSL31 = 246,
264
+ PPC_VSX32 = 247,
265
+ PPC_VSX33 = 248,
266
+ PPC_VSX34 = 249,
267
+ PPC_VSX35 = 250,
268
+ PPC_VSX36 = 251,
269
+ PPC_VSX37 = 252,
270
+ PPC_VSX38 = 253,
271
+ PPC_VSX39 = 254,
272
+ PPC_VSX40 = 255,
273
+ PPC_VSX41 = 256,
274
+ PPC_VSX42 = 257,
275
+ PPC_VSX43 = 258,
276
+ PPC_VSX44 = 259,
277
+ PPC_VSX45 = 260,
278
+ PPC_VSX46 = 261,
279
+ PPC_VSX47 = 262,
280
+ PPC_VSX48 = 263,
281
+ PPC_VSX49 = 264,
282
+ PPC_VSX50 = 265,
283
+ PPC_VSX51 = 266,
284
+ PPC_VSX52 = 267,
285
+ PPC_VSX53 = 268,
286
+ PPC_VSX54 = 269,
287
+ PPC_VSX55 = 270,
288
+ PPC_VSX56 = 271,
289
+ PPC_VSX57 = 272,
290
+ PPC_VSX58 = 273,
291
+ PPC_VSX59 = 274,
292
+ PPC_VSX60 = 275,
293
+ PPC_VSX61 = 276,
294
+ PPC_VSX62 = 277,
295
+ PPC_VSX63 = 278,
296
+ PPC_X0 = 279,
297
+ PPC_X1 = 280,
298
+ PPC_X2 = 281,
299
+ PPC_X3 = 282,
300
+ PPC_X4 = 283,
301
+ PPC_X5 = 284,
302
+ PPC_X6 = 285,
303
+ PPC_X7 = 286,
304
+ PPC_X8 = 287,
305
+ PPC_X9 = 288,
306
+ PPC_X10 = 289,
307
+ PPC_X11 = 290,
308
+ PPC_X12 = 291,
309
+ PPC_X13 = 292,
310
+ PPC_X14 = 293,
311
+ PPC_X15 = 294,
312
+ PPC_X16 = 295,
313
+ PPC_X17 = 296,
314
+ PPC_X18 = 297,
315
+ PPC_X19 = 298,
316
+ PPC_X20 = 299,
317
+ PPC_X21 = 300,
318
+ PPC_X22 = 301,
319
+ PPC_X23 = 302,
320
+ PPC_X24 = 303,
321
+ PPC_X25 = 304,
322
+ PPC_X26 = 305,
323
+ PPC_X27 = 306,
324
+ PPC_X28 = 307,
325
+ PPC_X29 = 308,
326
+ PPC_X30 = 309,
327
+ PPC_X31 = 310,
328
+ PPC_ZERO8 = 311,
329
+ PPC_CR0EQ = 312,
330
+ PPC_CR1EQ = 313,
331
+ PPC_CR2EQ = 314,
332
+ PPC_CR3EQ = 315,
333
+ PPC_CR4EQ = 316,
334
+ PPC_CR5EQ = 317,
335
+ PPC_CR6EQ = 318,
336
+ PPC_CR7EQ = 319,
337
+ PPC_CR0GT = 320,
338
+ PPC_CR1GT = 321,
339
+ PPC_CR2GT = 322,
340
+ PPC_CR3GT = 323,
341
+ PPC_CR4GT = 324,
342
+ PPC_CR5GT = 325,
343
+ PPC_CR6GT = 326,
344
+ PPC_CR7GT = 327,
345
+ PPC_CR0LT = 328,
346
+ PPC_CR1LT = 329,
347
+ PPC_CR2LT = 330,
348
+ PPC_CR3LT = 331,
349
+ PPC_CR4LT = 332,
350
+ PPC_CR5LT = 333,
351
+ PPC_CR6LT = 334,
352
+ PPC_CR7LT = 335,
353
+ PPC_CR0UN = 336,
354
+ PPC_CR1UN = 337,
355
+ PPC_CR2UN = 338,
356
+ PPC_CR3UN = 339,
357
+ PPC_CR4UN = 340,
358
+ PPC_CR5UN = 341,
359
+ PPC_CR6UN = 342,
360
+ PPC_CR7UN = 343,
361
+ PPC_NUM_TARGET_REGS // 344
362
+ };
363
+
364
+ // Register classes
365
+ enum {
366
+ PPC_VSSRCRegClassID = 0,
367
+ PPC_GPRCRegClassID = 1,
368
+ PPC_GPRC_NOR0RegClassID = 2,
369
+ PPC_SPE4RCRegClassID = 3,
370
+ PPC_GPRC_and_GPRC_NOR0RegClassID = 4,
371
+ PPC_CRBITRCRegClassID = 5,
372
+ PPC_F4RCRegClassID = 6,
373
+ PPC_CRRCRegClassID = 7,
374
+ PPC_CARRYRCRegClassID = 8,
375
+ PPC_CTRRCRegClassID = 9,
376
+ PPC_VRSAVERCRegClassID = 10,
377
+ PPC_SPILLTOVSRRCRegClassID = 11,
378
+ PPC_VSFRCRegClassID = 12,
379
+ PPC_G8RCRegClassID = 13,
380
+ PPC_G8RC_NOX0RegClassID = 14,
381
+ PPC_SPILLTOVSRRC_and_VSFRCRegClassID = 15,
382
+ PPC_G8RC_and_G8RC_NOX0RegClassID = 16,
383
+ PPC_F8RCRegClassID = 17,
384
+ PPC_SPERCRegClassID = 18,
385
+ PPC_VFRCRegClassID = 19,
386
+ PPC_SPERC_with_sub_32_in_GPRC_NOR0RegClassID = 20,
387
+ PPC_SPILLTOVSRRC_and_VFRCRegClassID = 21,
388
+ PPC_SPILLTOVSRRC_and_F4RCRegClassID = 22,
389
+ PPC_CTRRC8RegClassID = 23,
390
+ PPC_VSRCRegClassID = 24,
391
+ PPC_VSRC_with_sub_64_in_SPILLTOVSRRCRegClassID = 25,
392
+ PPC_QSRCRegClassID = 26,
393
+ PPC_VRRCRegClassID = 27,
394
+ PPC_VSLRCRegClassID = 28,
395
+ PPC_VRRC_with_sub_64_in_SPILLTOVSRRCRegClassID = 29,
396
+ PPC_QSRC_with_sub_64_in_SPILLTOVSRRCRegClassID = 30,
397
+ PPC_VSLRC_with_sub_64_in_SPILLTOVSRRCRegClassID = 31,
398
+ PPC_QBRCRegClassID = 32,
399
+ PPC_QFRCRegClassID = 33,
400
+ PPC_QBRC_with_sub_64_in_SPILLTOVSRRCRegClassID = 34,
401
+ };
402
+
403
+ #endif // GET_REGINFO_ENUM
404
+
405
+ #ifdef GET_REGINFO_MC_DESC
406
+ #undef GET_REGINFO_MC_DESC
407
+
408
+
409
+ static const MCPhysReg PPCRegDiffLists[] = {
410
+ /* 0 */ 0, 0,
411
+ /* 2 */ 65497, 1, 1, 1, 0,
412
+ /* 7 */ 3, 0,
413
+ /* 9 */ 10, 0,
414
+ /* 11 */ 21, 0,
415
+ /* 13 */ 316, 65528, 65528, 24, 0,
416
+ /* 18 */ 32, 0,
417
+ /* 20 */ 49, 0,
418
+ /* 22 */ 74, 0,
419
+ /* 24 */ 32, 160, 0,
420
+ /* 27 */ 34, 160, 0,
421
+ /* 30 */ 301, 0,
422
+ /* 32 */ 64204, 0,
423
+ /* 34 */ 64233, 0,
424
+ /* 36 */ 64266, 0,
425
+ /* 38 */ 64299, 0,
426
+ /* 40 */ 64611, 0,
427
+ /* 42 */ 65212, 0,
428
+ /* 44 */ 65220, 0,
429
+ /* 46 */ 65228, 0,
430
+ /* 48 */ 65235, 0,
431
+ /* 50 */ 65236, 0,
432
+ /* 52 */ 65332, 0,
433
+ /* 54 */ 65342, 0,
434
+ /* 56 */ 65344, 0,
435
+ /* 58 */ 65363, 0,
436
+ /* 60 */ 65428, 0,
437
+ /* 62 */ 65460, 0,
438
+ /* 64 */ 65474, 0,
439
+ /* 66 */ 65487, 0,
440
+ /* 68 */ 65492, 0,
441
+ /* 70 */ 65502, 0,
442
+ /* 72 */ 65504, 0,
443
+ /* 74 */ 65523, 0,
444
+ /* 76 */ 65524, 0,
445
+ /* 78 */ 65526, 0,
446
+ /* 80 */ 65535, 0,
447
+ };
448
+
449
+ static const uint16_t PPCSubRegIdxLists[] = {
450
+ /* 0 */ 1, 0,
451
+ /* 2 */ 2, 0,
452
+ /* 4 */ 5, 4, 3, 6, 0,
453
+ };
454
+
455
+ static const MCRegisterDesc PPCRegDesc[] = {
456
+ { 4, 0, 0, 0, 0, 0 },
457
+ { 1237, 1, 9, 1, 1281, 0 },
458
+ { 1406, 1, 1, 1, 1281, 0 },
459
+ { 1306, 1, 1, 1, 1281, 0 },
460
+ { 1240, 1, 20, 1, 1281, 0 },
461
+ { 1303, 1, 1, 1, 1281, 0 },
462
+ { 1181, 1, 1, 1, 1281, 0 },
463
+ { 1291, 1, 1, 1, 1281, 0 },
464
+ { 1174, 1, 1, 1, 1281, 0 },
465
+ { 1299, 1, 1, 1, 1031, 0 },
466
+ { 1232, 1, 30, 1, 1031, 0 },
467
+ { 1041, 78, 1, 0, 0, 2 },
468
+ { 127, 13, 1, 4, 36, 6 },
469
+ { 267, 13, 1, 4, 36, 6 },
470
+ { 381, 13, 1, 4, 36, 6 },
471
+ { 495, 13, 1, 4, 36, 6 },
472
+ { 603, 13, 1, 4, 36, 6 },
473
+ { 711, 13, 1, 4, 36, 6 },
474
+ { 819, 13, 1, 4, 36, 6 },
475
+ { 927, 13, 1, 4, 36, 6 },
476
+ { 1053, 1, 1, 1, 177, 0 },
477
+ { 115, 1, 27, 1, 177, 0 },
478
+ { 255, 1, 27, 1, 177, 0 },
479
+ { 369, 1, 27, 1, 177, 0 },
480
+ { 483, 1, 27, 1, 177, 0 },
481
+ { 591, 1, 27, 1, 177, 0 },
482
+ { 699, 1, 27, 1, 177, 0 },
483
+ { 807, 1, 27, 1, 177, 0 },
484
+ { 915, 1, 27, 1, 177, 0 },
485
+ { 1023, 1, 27, 1, 177, 0 },
486
+ { 1150, 1, 27, 1, 177, 0 },
487
+ { 1, 1, 27, 1, 177, 0 },
488
+ { 141, 1, 27, 1, 177, 0 },
489
+ { 281, 1, 27, 1, 177, 0 },
490
+ { 395, 1, 27, 1, 177, 0 },
491
+ { 509, 1, 27, 1, 177, 0 },
492
+ { 617, 1, 27, 1, 177, 0 },
493
+ { 725, 1, 27, 1, 177, 0 },
494
+ { 833, 1, 27, 1, 177, 0 },
495
+ { 941, 1, 27, 1, 177, 0 },
496
+ { 1068, 1, 27, 1, 177, 0 },
497
+ { 33, 1, 27, 1, 177, 0 },
498
+ { 173, 1, 27, 1, 177, 0 },
499
+ { 313, 1, 27, 1, 177, 0 },
500
+ { 427, 1, 27, 1, 177, 0 },
501
+ { 541, 1, 27, 1, 177, 0 },
502
+ { 649, 1, 27, 1, 177, 0 },
503
+ { 757, 1, 27, 1, 177, 0 },
504
+ { 865, 1, 27, 1, 177, 0 },
505
+ { 973, 1, 27, 1, 177, 0 },
506
+ { 1100, 1, 27, 1, 177, 0 },
507
+ { 65, 1, 27, 1, 177, 0 },
508
+ { 205, 1, 27, 1, 177, 0 },
509
+ { 1045, 66, 1, 0, 112, 2 },
510
+ { 1049, 1, 1, 1, 352, 0 },
511
+ { 114, 70, 1, 2, 1185, 4 },
512
+ { 254, 70, 1, 2, 1185, 4 },
513
+ { 368, 70, 1, 2, 1185, 4 },
514
+ { 482, 70, 1, 2, 1185, 4 },
515
+ { 590, 70, 1, 2, 1185, 4 },
516
+ { 698, 70, 1, 2, 1185, 4 },
517
+ { 806, 70, 1, 2, 1185, 4 },
518
+ { 914, 70, 1, 2, 1185, 4 },
519
+ { 1022, 70, 1, 2, 1185, 4 },
520
+ { 1149, 70, 1, 2, 1185, 4 },
521
+ { 0, 70, 1, 2, 1185, 4 },
522
+ { 140, 70, 1, 2, 1185, 4 },
523
+ { 280, 70, 1, 2, 1185, 4 },
524
+ { 394, 70, 1, 2, 1185, 4 },
525
+ { 508, 70, 1, 2, 1185, 4 },
526
+ { 616, 70, 1, 2, 1185, 4 },
527
+ { 724, 70, 1, 2, 1185, 4 },
528
+ { 832, 70, 1, 2, 1185, 4 },
529
+ { 940, 70, 1, 2, 1185, 4 },
530
+ { 1067, 70, 1, 2, 1185, 4 },
531
+ { 32, 70, 1, 2, 1185, 4 },
532
+ { 172, 70, 1, 2, 1185, 4 },
533
+ { 312, 70, 1, 2, 1185, 4 },
534
+ { 426, 70, 1, 2, 1185, 4 },
535
+ { 540, 70, 1, 2, 1185, 4 },
536
+ { 648, 70, 1, 2, 1185, 4 },
537
+ { 756, 70, 1, 2, 1185, 4 },
538
+ { 864, 70, 1, 2, 1185, 4 },
539
+ { 972, 70, 1, 2, 1185, 4 },
540
+ { 1099, 70, 1, 2, 1185, 4 },
541
+ { 64, 70, 1, 2, 1185, 4 },
542
+ { 204, 70, 1, 2, 1185, 4 },
543
+ { 128, 1, 24, 1, 1217, 0 },
544
+ { 268, 1, 24, 1, 1217, 0 },
545
+ { 382, 1, 24, 1, 1217, 0 },
546
+ { 496, 1, 24, 1, 1217, 0 },
547
+ { 604, 1, 24, 1, 1217, 0 },
548
+ { 712, 1, 24, 1, 1217, 0 },
549
+ { 820, 1, 24, 1, 1217, 0 },
550
+ { 928, 1, 24, 1, 1217, 0 },
551
+ { 1050, 1, 24, 1, 1217, 0 },
552
+ { 1162, 1, 24, 1, 1217, 0 },
553
+ { 16, 1, 24, 1, 1217, 0 },
554
+ { 156, 1, 24, 1, 1217, 0 },
555
+ { 296, 1, 24, 1, 1217, 0 },
556
+ { 410, 1, 24, 1, 1217, 0 },
557
+ { 524, 1, 24, 1, 1217, 0 },
558
+ { 632, 1, 24, 1, 1217, 0 },
559
+ { 740, 1, 24, 1, 1217, 0 },
560
+ { 848, 1, 24, 1, 1217, 0 },
561
+ { 956, 1, 24, 1, 1217, 0 },
562
+ { 1083, 1, 24, 1, 1217, 0 },
563
+ { 48, 1, 24, 1, 1217, 0 },
564
+ { 188, 1, 24, 1, 1217, 0 },
565
+ { 328, 1, 24, 1, 1217, 0 },
566
+ { 442, 1, 24, 1, 1217, 0 },
567
+ { 556, 1, 24, 1, 1217, 0 },
568
+ { 664, 1, 24, 1, 1217, 0 },
569
+ { 772, 1, 24, 1, 1217, 0 },
570
+ { 880, 1, 24, 1, 1217, 0 },
571
+ { 988, 1, 24, 1, 1217, 0 },
572
+ { 1115, 1, 24, 1, 1217, 0 },
573
+ { 80, 1, 24, 1, 1217, 0 },
574
+ { 220, 1, 24, 1, 1217, 0 },
575
+ { 131, 72, 1, 0, 1089, 2 },
576
+ { 271, 72, 1, 0, 1089, 2 },
577
+ { 385, 72, 1, 0, 1089, 2 },
578
+ { 499, 72, 1, 0, 1089, 2 },
579
+ { 607, 72, 1, 0, 1089, 2 },
580
+ { 715, 72, 1, 0, 1089, 2 },
581
+ { 823, 72, 1, 0, 1089, 2 },
582
+ { 931, 72, 1, 0, 1089, 2 },
583
+ { 1058, 72, 1, 0, 1089, 2 },
584
+ { 1165, 72, 1, 0, 1089, 2 },
585
+ { 20, 72, 1, 0, 1089, 2 },
586
+ { 160, 72, 1, 0, 1089, 2 },
587
+ { 300, 72, 1, 0, 1089, 2 },
588
+ { 414, 72, 1, 0, 1089, 2 },
589
+ { 528, 72, 1, 0, 1089, 2 },
590
+ { 636, 72, 1, 0, 1089, 2 },
591
+ { 744, 72, 1, 0, 1089, 2 },
592
+ { 852, 72, 1, 0, 1089, 2 },
593
+ { 960, 72, 1, 0, 1089, 2 },
594
+ { 1087, 72, 1, 0, 1089, 2 },
595
+ { 52, 72, 1, 0, 1089, 2 },
596
+ { 192, 72, 1, 0, 1089, 2 },
597
+ { 332, 72, 1, 0, 1089, 2 },
598
+ { 446, 72, 1, 0, 1089, 2 },
599
+ { 560, 72, 1, 0, 1089, 2 },
600
+ { 668, 72, 1, 0, 1089, 2 },
601
+ { 776, 72, 1, 0, 1089, 2 },
602
+ { 884, 72, 1, 0, 1089, 2 },
603
+ { 992, 72, 1, 0, 1089, 2 },
604
+ { 1119, 72, 1, 0, 1089, 2 },
605
+ { 84, 72, 1, 0, 1089, 2 },
606
+ { 224, 72, 1, 0, 1089, 2 },
607
+ { 134, 18, 1, 2, 1089, 4 },
608
+ { 274, 18, 1, 2, 1089, 4 },
609
+ { 388, 18, 1, 2, 1089, 4 },
610
+ { 502, 18, 1, 2, 1089, 4 },
611
+ { 610, 18, 1, 2, 1089, 4 },
612
+ { 718, 18, 1, 2, 1089, 4 },
613
+ { 826, 18, 1, 2, 1089, 4 },
614
+ { 934, 18, 1, 2, 1089, 4 },
615
+ { 1061, 18, 1, 2, 1089, 4 },
616
+ { 1168, 18, 1, 2, 1089, 4 },
617
+ { 24, 18, 1, 2, 1089, 4 },
618
+ { 164, 18, 1, 2, 1089, 4 },
619
+ { 304, 18, 1, 2, 1089, 4 },
620
+ { 418, 18, 1, 2, 1089, 4 },
621
+ { 532, 18, 1, 2, 1089, 4 },
622
+ { 640, 18, 1, 2, 1089, 4 },
623
+ { 748, 18, 1, 2, 1089, 4 },
624
+ { 856, 18, 1, 2, 1089, 4 },
625
+ { 964, 18, 1, 2, 1089, 4 },
626
+ { 1091, 18, 1, 2, 1089, 4 },
627
+ { 56, 18, 1, 2, 1089, 4 },
628
+ { 196, 18, 1, 2, 1089, 4 },
629
+ { 336, 18, 1, 2, 1089, 4 },
630
+ { 450, 18, 1, 2, 1089, 4 },
631
+ { 564, 18, 1, 2, 1089, 4 },
632
+ { 672, 18, 1, 2, 1089, 4 },
633
+ { 780, 18, 1, 2, 1089, 4 },
634
+ { 888, 18, 1, 2, 1089, 4 },
635
+ { 996, 18, 1, 2, 1089, 4 },
636
+ { 1123, 18, 1, 2, 1089, 4 },
637
+ { 88, 18, 1, 2, 1089, 4 },
638
+ { 228, 18, 1, 2, 1089, 4 },
639
+ { 118, 1, 72, 1, 993, 0 },
640
+ { 258, 1, 72, 1, 993, 0 },
641
+ { 372, 1, 72, 1, 993, 0 },
642
+ { 486, 1, 72, 1, 993, 0 },
643
+ { 594, 1, 72, 1, 993, 0 },
644
+ { 702, 1, 72, 1, 993, 0 },
645
+ { 810, 1, 72, 1, 993, 0 },
646
+ { 918, 1, 72, 1, 993, 0 },
647
+ { 1026, 1, 72, 1, 993, 0 },
648
+ { 1153, 1, 72, 1, 993, 0 },
649
+ { 5, 1, 72, 1, 993, 0 },
650
+ { 145, 1, 72, 1, 993, 0 },
651
+ { 285, 1, 72, 1, 993, 0 },
652
+ { 399, 1, 72, 1, 993, 0 },
653
+ { 513, 1, 72, 1, 993, 0 },
654
+ { 621, 1, 72, 1, 993, 0 },
655
+ { 729, 1, 72, 1, 993, 0 },
656
+ { 837, 1, 72, 1, 993, 0 },
657
+ { 945, 1, 72, 1, 993, 0 },
658
+ { 1072, 1, 72, 1, 993, 0 },
659
+ { 37, 1, 72, 1, 993, 0 },
660
+ { 177, 1, 72, 1, 993, 0 },
661
+ { 317, 1, 72, 1, 993, 0 },
662
+ { 431, 1, 72, 1, 993, 0 },
663
+ { 545, 1, 72, 1, 993, 0 },
664
+ { 653, 1, 72, 1, 993, 0 },
665
+ { 761, 1, 72, 1, 993, 0 },
666
+ { 869, 1, 72, 1, 993, 0 },
667
+ { 977, 1, 72, 1, 993, 0 },
668
+ { 1104, 1, 72, 1, 993, 0 },
669
+ { 69, 1, 72, 1, 993, 0 },
670
+ { 209, 1, 72, 1, 993, 0 },
671
+ { 122, 54, 1, 2, 929, 4 },
672
+ { 262, 54, 1, 2, 929, 4 },
673
+ { 376, 54, 1, 2, 929, 4 },
674
+ { 490, 54, 1, 2, 929, 4 },
675
+ { 598, 54, 1, 2, 929, 4 },
676
+ { 706, 54, 1, 2, 929, 4 },
677
+ { 814, 54, 1, 2, 929, 4 },
678
+ { 922, 54, 1, 2, 929, 4 },
679
+ { 1030, 54, 1, 2, 929, 4 },
680
+ { 1157, 54, 1, 2, 929, 4 },
681
+ { 10, 54, 1, 2, 929, 4 },
682
+ { 150, 54, 1, 2, 929, 4 },
683
+ { 290, 54, 1, 2, 929, 4 },
684
+ { 404, 54, 1, 2, 929, 4 },
685
+ { 518, 54, 1, 2, 929, 4 },
686
+ { 626, 54, 1, 2, 929, 4 },
687
+ { 734, 54, 1, 2, 929, 4 },
688
+ { 842, 54, 1, 2, 929, 4 },
689
+ { 950, 54, 1, 2, 929, 4 },
690
+ { 1077, 54, 1, 2, 929, 4 },
691
+ { 42, 54, 1, 2, 929, 4 },
692
+ { 182, 54, 1, 2, 929, 4 },
693
+ { 322, 54, 1, 2, 929, 4 },
694
+ { 436, 54, 1, 2, 929, 4 },
695
+ { 550, 54, 1, 2, 929, 4 },
696
+ { 658, 54, 1, 2, 929, 4 },
697
+ { 766, 54, 1, 2, 929, 4 },
698
+ { 874, 54, 1, 2, 929, 4 },
699
+ { 982, 54, 1, 2, 929, 4 },
700
+ { 1109, 54, 1, 2, 929, 4 },
701
+ { 74, 54, 1, 2, 929, 4 },
702
+ { 214, 54, 1, 2, 929, 4 },
703
+ { 344, 1, 1, 1, 961, 0 },
704
+ { 458, 1, 1, 1, 961, 0 },
705
+ { 572, 1, 1, 1, 961, 0 },
706
+ { 680, 1, 1, 1, 961, 0 },
707
+ { 788, 1, 1, 1, 961, 0 },
708
+ { 896, 1, 1, 1, 961, 0 },
709
+ { 1004, 1, 1, 1, 961, 0 },
710
+ { 1131, 1, 1, 1, 961, 0 },
711
+ { 96, 1, 1, 1, 961, 0 },
712
+ { 236, 1, 1, 1, 961, 0 },
713
+ { 350, 1, 1, 1, 961, 0 },
714
+ { 464, 1, 1, 1, 961, 0 },
715
+ { 578, 1, 1, 1, 961, 0 },
716
+ { 686, 1, 1, 1, 961, 0 },
717
+ { 794, 1, 1, 1, 961, 0 },
718
+ { 902, 1, 1, 1, 961, 0 },
719
+ { 1010, 1, 1, 1, 961, 0 },
720
+ { 1137, 1, 1, 1, 961, 0 },
721
+ { 102, 1, 1, 1, 961, 0 },
722
+ { 242, 1, 1, 1, 961, 0 },
723
+ { 356, 1, 1, 1, 961, 0 },
724
+ { 470, 1, 1, 1, 961, 0 },
725
+ { 584, 1, 1, 1, 961, 0 },
726
+ { 692, 1, 1, 1, 961, 0 },
727
+ { 800, 1, 1, 1, 961, 0 },
728
+ { 908, 1, 1, 1, 961, 0 },
729
+ { 1016, 1, 1, 1, 961, 0 },
730
+ { 1143, 1, 1, 1, 961, 0 },
731
+ { 108, 1, 1, 1, 961, 0 },
732
+ { 248, 1, 1, 1, 961, 0 },
733
+ { 362, 1, 1, 1, 961, 0 },
734
+ { 476, 1, 1, 1, 961, 0 },
735
+ { 137, 56, 1, 0, 833, 2 },
736
+ { 277, 56, 1, 0, 833, 2 },
737
+ { 391, 56, 1, 0, 833, 2 },
738
+ { 505, 56, 1, 0, 833, 2 },
739
+ { 613, 56, 1, 0, 833, 2 },
740
+ { 721, 56, 1, 0, 833, 2 },
741
+ { 829, 56, 1, 0, 833, 2 },
742
+ { 937, 56, 1, 0, 833, 2 },
743
+ { 1064, 56, 1, 0, 833, 2 },
744
+ { 1171, 56, 1, 0, 833, 2 },
745
+ { 28, 56, 1, 0, 833, 2 },
746
+ { 168, 56, 1, 0, 833, 2 },
747
+ { 308, 56, 1, 0, 833, 2 },
748
+ { 422, 56, 1, 0, 833, 2 },
749
+ { 536, 56, 1, 0, 833, 2 },
750
+ { 644, 56, 1, 0, 833, 2 },
751
+ { 752, 56, 1, 0, 833, 2 },
752
+ { 860, 56, 1, 0, 833, 2 },
753
+ { 968, 56, 1, 0, 833, 2 },
754
+ { 1095, 56, 1, 0, 833, 2 },
755
+ { 60, 56, 1, 0, 833, 2 },
756
+ { 200, 56, 1, 0, 833, 2 },
757
+ { 340, 56, 1, 0, 833, 2 },
758
+ { 454, 56, 1, 0, 833, 2 },
759
+ { 568, 56, 1, 0, 833, 2 },
760
+ { 676, 56, 1, 0, 833, 2 },
761
+ { 784, 56, 1, 0, 833, 2 },
762
+ { 892, 56, 1, 0, 833, 2 },
763
+ { 1000, 56, 1, 0, 833, 2 },
764
+ { 1127, 56, 1, 0, 833, 2 },
765
+ { 92, 56, 1, 0, 833, 2 },
766
+ { 232, 56, 1, 0, 833, 2 },
767
+ { 1035, 48, 1, 0, 643, 2 },
768
+ { 1243, 1, 50, 1, 643, 0 },
769
+ { 1249, 1, 50, 1, 612, 0 },
770
+ { 1255, 1, 50, 1, 612, 0 },
771
+ { 1261, 1, 50, 1, 612, 0 },
772
+ { 1267, 1, 50, 1, 612, 0 },
773
+ { 1273, 1, 50, 1, 612, 0 },
774
+ { 1279, 1, 50, 1, 612, 0 },
775
+ { 1285, 1, 50, 1, 612, 0 },
776
+ { 1310, 1, 46, 1, 580, 0 },
777
+ { 1316, 1, 46, 1, 580, 0 },
778
+ { 1322, 1, 46, 1, 580, 0 },
779
+ { 1328, 1, 46, 1, 580, 0 },
780
+ { 1334, 1, 46, 1, 580, 0 },
781
+ { 1340, 1, 46, 1, 580, 0 },
782
+ { 1346, 1, 46, 1, 580, 0 },
783
+ { 1352, 1, 46, 1, 580, 0 },
784
+ { 1358, 1, 44, 1, 548, 0 },
785
+ { 1364, 1, 44, 1, 548, 0 },
786
+ { 1370, 1, 44, 1, 548, 0 },
787
+ { 1376, 1, 44, 1, 548, 0 },
788
+ { 1382, 1, 44, 1, 548, 0 },
789
+ { 1388, 1, 44, 1, 548, 0 },
790
+ { 1394, 1, 44, 1, 548, 0 },
791
+ { 1400, 1, 44, 1, 548, 0 },
792
+ { 1184, 1, 42, 1, 516, 0 },
793
+ { 1190, 1, 42, 1, 516, 0 },
794
+ { 1196, 1, 42, 1, 516, 0 },
795
+ { 1202, 1, 42, 1, 516, 0 },
796
+ { 1208, 1, 42, 1, 516, 0 },
797
+ { 1214, 1, 42, 1, 516, 0 },
798
+ { 1220, 1, 42, 1, 516, 0 },
799
+ { 1226, 1, 42, 1, 516, 0 },
800
+ };
801
+
802
+ // VSSRC Register Class...
803
+ static const MCPhysReg VSSRC[] = {
804
+ PPC_F0, PPC_F1, PPC_F2, PPC_F3, PPC_F4, PPC_F5, PPC_F6, PPC_F7, PPC_F8, PPC_F9, PPC_F10, PPC_F11, PPC_F12, PPC_F13, PPC_F31, PPC_F30, PPC_F29, PPC_F28, PPC_F27, PPC_F26, PPC_F25, PPC_F24, PPC_F23, PPC_F22, PPC_F21, PPC_F20, PPC_F19, PPC_F18, PPC_F17, PPC_F16, PPC_F15, PPC_F14, PPC_VF2, PPC_VF3, PPC_VF4, PPC_VF5, PPC_VF0, PPC_VF1, PPC_VF6, PPC_VF7, PPC_VF8, PPC_VF9, PPC_VF10, PPC_VF11, PPC_VF12, PPC_VF13, PPC_VF14, PPC_VF15, PPC_VF16, PPC_VF17, PPC_VF18, PPC_VF19, PPC_VF31, PPC_VF30, PPC_VF29, PPC_VF28, PPC_VF27, PPC_VF26, PPC_VF25, PPC_VF24, PPC_VF23, PPC_VF22, PPC_VF21, PPC_VF20,
805
+ };
806
+ // VSSRC Bit set.
807
+ static const uint8_t VSSRCBits[] = {
808
+ 0x00, 0x00, 0xe0, 0xff, 0xff, 0xff, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xff, 0xff, 0xff, 0x7f,
809
+ };
810
+ // GPRC Register Class...
811
+ static const MCPhysReg GPRC[] = {
812
+ PPC_R2, PPC_R3, PPC_R4, PPC_R5, PPC_R6, PPC_R7, PPC_R8, PPC_R9, PPC_R10, PPC_R11, PPC_R12, PPC_R30, PPC_R29, PPC_R28, PPC_R27, PPC_R26, PPC_R25, PPC_R24, PPC_R23, PPC_R22, PPC_R21, PPC_R20, PPC_R19, PPC_R18, PPC_R17, PPC_R16, PPC_R15, PPC_R14, PPC_R13, PPC_R31, PPC_R0, PPC_R1, PPC_FP, PPC_BP,
813
+ };
814
+ // GPRC Bit set.
815
+ static const uint8_t GPRCBits[] = {
816
+ 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xff, 0xff, 0xff, 0x7f,
817
+ };
818
+ // GPRC_NOR0 Register Class...
819
+ static const MCPhysReg GPRC_NOR0[] = {
820
+ PPC_R2, PPC_R3, PPC_R4, PPC_R5, PPC_R6, PPC_R7, PPC_R8, PPC_R9, PPC_R10, PPC_R11, PPC_R12, PPC_R30, PPC_R29, PPC_R28, PPC_R27, PPC_R26, PPC_R25, PPC_R24, PPC_R23, PPC_R22, PPC_R21, PPC_R20, PPC_R19, PPC_R18, PPC_R17, PPC_R16, PPC_R15, PPC_R14, PPC_R13, PPC_R31, PPC_R1, PPC_FP, PPC_BP, PPC_ZERO,
821
+ };
822
+ // GPRC_NOR0 Bit set.
823
+ static const uint8_t GPRC_NOR0Bits[] = {
824
+ 0x12, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x7f,
825
+ };
826
+ // SPE4RC Register Class...
827
+ static const MCPhysReg SPE4RC[] = {
828
+ PPC_R2, PPC_R3, PPC_R4, PPC_R5, PPC_R6, PPC_R7, PPC_R8, PPC_R9, PPC_R10, PPC_R11, PPC_R12, PPC_R30, PPC_R29, PPC_R28, PPC_R27, PPC_R26, PPC_R25, PPC_R24, PPC_R23, PPC_R22, PPC_R21, PPC_R20, PPC_R19, PPC_R18, PPC_R17, PPC_R16, PPC_R15, PPC_R14, PPC_R13, PPC_R31, PPC_R0, PPC_R1, PPC_FP, PPC_BP,
829
+ };
830
+ // SPE4RC Bit set.
831
+ static const uint8_t SPE4RCBits[] = {
832
+ 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xff, 0xff, 0xff, 0x7f,
833
+ };
834
+ // GPRC_and_GPRC_NOR0 Register Class...
835
+ static const MCPhysReg GPRC_and_GPRC_NOR0[] = {
836
+ PPC_R2, PPC_R3, PPC_R4, PPC_R5, PPC_R6, PPC_R7, PPC_R8, PPC_R9, PPC_R10, PPC_R11, PPC_R12, PPC_R30, PPC_R29, PPC_R28, PPC_R27, PPC_R26, PPC_R25, PPC_R24, PPC_R23, PPC_R22, PPC_R21, PPC_R20, PPC_R19, PPC_R18, PPC_R17, PPC_R16, PPC_R15, PPC_R14, PPC_R13, PPC_R31, PPC_R1, PPC_FP, PPC_BP,
837
+ };
838
+ // GPRC_and_GPRC_NOR0 Bit set.
839
+ static const uint8_t GPRC_and_GPRC_NOR0Bits[] = {
840
+ 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x7f,
841
+ };
842
+ // CRBITRC Register Class...
843
+ static const MCPhysReg CRBITRC[] = {
844
+ PPC_CR2LT, PPC_CR2GT, PPC_CR2EQ, PPC_CR2UN, PPC_CR3LT, PPC_CR3GT, PPC_CR3EQ, PPC_CR3UN, PPC_CR4LT, PPC_CR4GT, PPC_CR4EQ, PPC_CR4UN, PPC_CR5LT, PPC_CR5GT, PPC_CR5EQ, PPC_CR5UN, PPC_CR6LT, PPC_CR6GT, PPC_CR6EQ, PPC_CR6UN, PPC_CR7LT, PPC_CR7GT, PPC_CR7EQ, PPC_CR7UN, PPC_CR1LT, PPC_CR1GT, PPC_CR1EQ, PPC_CR1UN, PPC_CR0LT, PPC_CR0GT, PPC_CR0EQ, PPC_CR0UN,
845
+ };
846
+ // CRBITRC Bit set.
847
+ static const uint8_t CRBITRCBits[] = {
848
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
849
+ };
850
+ // F4RC Register Class...
851
+ static const MCPhysReg F4RC[] = {
852
+ PPC_F0, PPC_F1, PPC_F2, PPC_F3, PPC_F4, PPC_F5, PPC_F6, PPC_F7, PPC_F8, PPC_F9, PPC_F10, PPC_F11, PPC_F12, PPC_F13, PPC_F31, PPC_F30, PPC_F29, PPC_F28, PPC_F27, PPC_F26, PPC_F25, PPC_F24, PPC_F23, PPC_F22, PPC_F21, PPC_F20, PPC_F19, PPC_F18, PPC_F17, PPC_F16, PPC_F15, PPC_F14,
853
+ };
854
+ // F4RC Bit set.
855
+ static const uint8_t F4RCBits[] = {
856
+ 0x00, 0x00, 0xe0, 0xff, 0xff, 0xff, 0x1f,
857
+ };
858
+ // CRRC Register Class...
859
+ static const MCPhysReg CRRC[] = {
860
+ PPC_CR0, PPC_CR1, PPC_CR5, PPC_CR6, PPC_CR7, PPC_CR2, PPC_CR3, PPC_CR4,
861
+ };
862
+ // CRRC Bit set.
863
+ static const uint8_t CRRCBits[] = {
864
+ 0x00, 0xf0, 0x0f,
865
+ };
866
+ // CARRYRC Register Class...
867
+ static const MCPhysReg CARRYRC[] = {
868
+ PPC_CARRY, PPC_XER,
869
+ };
870
+ // CARRYRC Bit set.
871
+ static const uint8_t CARRYRCBits[] = {
872
+ 0x04, 0x02,
873
+ };
874
+ // CTRRC Register Class...
875
+ static const MCPhysReg CTRRC[] = {
876
+ PPC_CTR,
877
+ };
878
+ // CTRRC Bit set.
879
+ static const uint8_t CTRRCBits[] = {
880
+ 0x08,
881
+ };
882
+ // VRSAVERC Register Class...
883
+ static const MCPhysReg VRSAVERC[] = {
884
+ PPC_VRSAVE,
885
+ };
886
+ // VRSAVERC Bit set.
887
+ static const uint8_t VRSAVERCBits[] = {
888
+ 0x00, 0x01,
889
+ };
890
+ // SPILLTOVSRRC Register Class...
891
+ static const MCPhysReg SPILLTOVSRRC[] = {
892
+ PPC_X2, PPC_X3, PPC_X4, PPC_X5, PPC_X6, PPC_X7, PPC_X8, PPC_X9, PPC_X10, PPC_X11, PPC_X12, PPC_X30, PPC_X29, PPC_X28, PPC_X27, PPC_X26, PPC_X25, PPC_X24, PPC_X23, PPC_X22, PPC_X21, PPC_X20, PPC_X19, PPC_X18, PPC_X17, PPC_X16, PPC_X15, PPC_X14, PPC_X31, PPC_X13, PPC_X0, PPC_X1, PPC_FP8, PPC_BP8, PPC_F0, PPC_F1, PPC_F2, PPC_F3, PPC_F4, PPC_F5, PPC_F6, PPC_F7, PPC_F8, PPC_F9, PPC_F10, PPC_F11, PPC_F12, PPC_F13, PPC_VF2, PPC_VF3, PPC_VF4, PPC_VF5, PPC_VF0, PPC_VF1, PPC_VF6, PPC_VF7, PPC_VF8, PPC_VF9, PPC_VF10, PPC_VF11, PPC_VF12, PPC_VF13, PPC_VF14, PPC_VF15, PPC_VF16, PPC_VF17, PPC_VF18, PPC_VF19,
893
+ };
894
+ // SPILLTOVSRRC Bit set.
895
+ static const uint8_t SPILLTOVSRRCBits[] = {
896
+ 0x00, 0x08, 0xe0, 0xff, 0x07, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xff, 0xff, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xff, 0xff, 0xff, 0x7f,
897
+ };
898
+ // VSFRC Register Class...
899
+ static const MCPhysReg VSFRC[] = {
900
+ PPC_F0, PPC_F1, PPC_F2, PPC_F3, PPC_F4, PPC_F5, PPC_F6, PPC_F7, PPC_F8, PPC_F9, PPC_F10, PPC_F11, PPC_F12, PPC_F13, PPC_F31, PPC_F30, PPC_F29, PPC_F28, PPC_F27, PPC_F26, PPC_F25, PPC_F24, PPC_F23, PPC_F22, PPC_F21, PPC_F20, PPC_F19, PPC_F18, PPC_F17, PPC_F16, PPC_F15, PPC_F14, PPC_VF2, PPC_VF3, PPC_VF4, PPC_VF5, PPC_VF0, PPC_VF1, PPC_VF6, PPC_VF7, PPC_VF8, PPC_VF9, PPC_VF10, PPC_VF11, PPC_VF12, PPC_VF13, PPC_VF14, PPC_VF15, PPC_VF16, PPC_VF17, PPC_VF18, PPC_VF19, PPC_VF31, PPC_VF30, PPC_VF29, PPC_VF28, PPC_VF27, PPC_VF26, PPC_VF25, PPC_VF24, PPC_VF23, PPC_VF22, PPC_VF21, PPC_VF20,
901
+ };
902
+ // VSFRC Bit set.
903
+ static const uint8_t VSFRCBits[] = {
904
+ 0x00, 0x00, 0xe0, 0xff, 0xff, 0xff, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xff, 0xff, 0xff, 0x7f,
905
+ };
906
+ // G8RC Register Class...
907
+ static const MCPhysReg G8RC[] = {
908
+ PPC_X2, PPC_X3, PPC_X4, PPC_X5, PPC_X6, PPC_X7, PPC_X8, PPC_X9, PPC_X10, PPC_X11, PPC_X12, PPC_X30, PPC_X29, PPC_X28, PPC_X27, PPC_X26, PPC_X25, PPC_X24, PPC_X23, PPC_X22, PPC_X21, PPC_X20, PPC_X19, PPC_X18, PPC_X17, PPC_X16, PPC_X15, PPC_X14, PPC_X31, PPC_X13, PPC_X0, PPC_X1, PPC_FP8, PPC_BP8,
909
+ };
910
+ // G8RC Bit set.
911
+ static const uint8_t G8RCBits[] = {
912
+ 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xff, 0xff, 0xff, 0x7f,
913
+ };
914
+ // G8RC_NOX0 Register Class...
915
+ static const MCPhysReg G8RC_NOX0[] = {
916
+ PPC_X2, PPC_X3, PPC_X4, PPC_X5, PPC_X6, PPC_X7, PPC_X8, PPC_X9, PPC_X10, PPC_X11, PPC_X12, PPC_X30, PPC_X29, PPC_X28, PPC_X27, PPC_X26, PPC_X25, PPC_X24, PPC_X23, PPC_X22, PPC_X21, PPC_X20, PPC_X19, PPC_X18, PPC_X17, PPC_X16, PPC_X15, PPC_X14, PPC_X31, PPC_X13, PPC_X1, PPC_FP8, PPC_BP8, PPC_ZERO8,
917
+ };
918
+ // G8RC_NOX0 Bit set.
919
+ static const uint8_t G8RC_NOX0Bits[] = {
920
+ 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
921
+ };
922
+ // SPILLTOVSRRC_and_VSFRC Register Class...
923
+ static const MCPhysReg SPILLTOVSRRC_and_VSFRC[] = {
924
+ PPC_F0, PPC_F1, PPC_F2, PPC_F3, PPC_F4, PPC_F5, PPC_F6, PPC_F7, PPC_F8, PPC_F9, PPC_F10, PPC_F11, PPC_F12, PPC_F13, PPC_VF2, PPC_VF3, PPC_VF4, PPC_VF5, PPC_VF0, PPC_VF1, PPC_VF6, PPC_VF7, PPC_VF8, PPC_VF9, PPC_VF10, PPC_VF11, PPC_VF12, PPC_VF13, PPC_VF14, PPC_VF15, PPC_VF16, PPC_VF17, PPC_VF18, PPC_VF19,
925
+ };
926
+ // SPILLTOVSRRC_and_VSFRC Bit set.
927
+ static const uint8_t SPILLTOVSRRC_and_VSFRCBits[] = {
928
+ 0x00, 0x00, 0xe0, 0xff, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xff, 0xff, 0x07,
929
+ };
930
+ // G8RC_and_G8RC_NOX0 Register Class...
931
+ static const MCPhysReg G8RC_and_G8RC_NOX0[] = {
932
+ PPC_X2, PPC_X3, PPC_X4, PPC_X5, PPC_X6, PPC_X7, PPC_X8, PPC_X9, PPC_X10, PPC_X11, PPC_X12, PPC_X30, PPC_X29, PPC_X28, PPC_X27, PPC_X26, PPC_X25, PPC_X24, PPC_X23, PPC_X22, PPC_X21, PPC_X20, PPC_X19, PPC_X18, PPC_X17, PPC_X16, PPC_X15, PPC_X14, PPC_X31, PPC_X13, PPC_X1, PPC_FP8, PPC_BP8,
933
+ };
934
+ // G8RC_and_G8RC_NOX0 Bit set.
935
+ static const uint8_t G8RC_and_G8RC_NOX0Bits[] = {
936
+ 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x7f,
937
+ };
938
+ // F8RC Register Class...
939
+ static const MCPhysReg F8RC[] = {
940
+ PPC_F0, PPC_F1, PPC_F2, PPC_F3, PPC_F4, PPC_F5, PPC_F6, PPC_F7, PPC_F8, PPC_F9, PPC_F10, PPC_F11, PPC_F12, PPC_F13, PPC_F31, PPC_F30, PPC_F29, PPC_F28, PPC_F27, PPC_F26, PPC_F25, PPC_F24, PPC_F23, PPC_F22, PPC_F21, PPC_F20, PPC_F19, PPC_F18, PPC_F17, PPC_F16, PPC_F15, PPC_F14,
941
+ };
942
+ // F8RC Bit set.
943
+ static const uint8_t F8RCBits[] = {
944
+ 0x00, 0x00, 0xe0, 0xff, 0xff, 0xff, 0x1f,
945
+ };
946
+ // SPERC Register Class...
947
+ static const MCPhysReg SPERC[] = {
948
+ PPC_S2, PPC_S3, PPC_S4, PPC_S5, PPC_S6, PPC_S7, PPC_S8, PPC_S9, PPC_S10, PPC_S11, PPC_S12, PPC_S30, PPC_S29, PPC_S28, PPC_S27, PPC_S26, PPC_S25, PPC_S24, PPC_S23, PPC_S22, PPC_S21, PPC_S20, PPC_S19, PPC_S18, PPC_S17, PPC_S16, PPC_S15, PPC_S14, PPC_S13, PPC_S31, PPC_S0, PPC_S1,
949
+ };
950
+ // SPERC Bit set.
951
+ static const uint8_t SPERCBits[] = {
952
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xff, 0xff, 0xff, 0x7f,
953
+ };
954
+ // VFRC Register Class...
955
+ static const MCPhysReg VFRC[] = {
956
+ PPC_VF2, PPC_VF3, PPC_VF4, PPC_VF5, PPC_VF0, PPC_VF1, PPC_VF6, PPC_VF7, PPC_VF8, PPC_VF9, PPC_VF10, PPC_VF11, PPC_VF12, PPC_VF13, PPC_VF14, PPC_VF15, PPC_VF16, PPC_VF17, PPC_VF18, PPC_VF19, PPC_VF31, PPC_VF30, PPC_VF29, PPC_VF28, PPC_VF27, PPC_VF26, PPC_VF25, PPC_VF24, PPC_VF23, PPC_VF22, PPC_VF21, PPC_VF20,
957
+ };
958
+ // VFRC Bit set.
959
+ static const uint8_t VFRCBits[] = {
960
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xff, 0xff, 0xff, 0x7f,
961
+ };
962
+ // SPERC_with_sub_32_in_GPRC_NOR0 Register Class...
963
+ static const MCPhysReg SPERC_with_sub_32_in_GPRC_NOR0[] = {
964
+ PPC_S2, PPC_S3, PPC_S4, PPC_S5, PPC_S6, PPC_S7, PPC_S8, PPC_S9, PPC_S10, PPC_S11, PPC_S12, PPC_S30, PPC_S29, PPC_S28, PPC_S27, PPC_S26, PPC_S25, PPC_S24, PPC_S23, PPC_S22, PPC_S21, PPC_S20, PPC_S19, PPC_S18, PPC_S17, PPC_S16, PPC_S15, PPC_S14, PPC_S13, PPC_S31, PPC_S1,
965
+ };
966
+ // SPERC_with_sub_32_in_GPRC_NOR0 Bit set.
967
+ static const uint8_t SPERC_with_sub_32_in_GPRC_NOR0Bits[] = {
968
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x7f,
969
+ };
970
+ // SPILLTOVSRRC_and_VFRC Register Class...
971
+ static const MCPhysReg SPILLTOVSRRC_and_VFRC[] = {
972
+ PPC_VF2, PPC_VF3, PPC_VF4, PPC_VF5, PPC_VF0, PPC_VF1, PPC_VF6, PPC_VF7, PPC_VF8, PPC_VF9, PPC_VF10, PPC_VF11, PPC_VF12, PPC_VF13, PPC_VF14, PPC_VF15, PPC_VF16, PPC_VF17, PPC_VF18, PPC_VF19,
973
+ };
974
+ // SPILLTOVSRRC_and_VFRC Bit set.
975
+ static const uint8_t SPILLTOVSRRC_and_VFRCBits[] = {
976
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xff, 0xff, 0x07,
977
+ };
978
+ // SPILLTOVSRRC_and_F4RC Register Class...
979
+ static const MCPhysReg SPILLTOVSRRC_and_F4RC[] = {
980
+ PPC_F0, PPC_F1, PPC_F2, PPC_F3, PPC_F4, PPC_F5, PPC_F6, PPC_F7, PPC_F8, PPC_F9, PPC_F10, PPC_F11, PPC_F12, PPC_F13,
981
+ };
982
+ // SPILLTOVSRRC_and_F4RC Bit set.
983
+ static const uint8_t SPILLTOVSRRC_and_F4RCBits[] = {
984
+ 0x00, 0x00, 0xe0, 0xff, 0x07,
985
+ };
986
+ // CTRRC8 Register Class...
987
+ static const MCPhysReg CTRRC8[] = {
988
+ PPC_CTR8,
989
+ };
990
+ // CTRRC8 Bit set.
991
+ static const uint8_t CTRRC8Bits[] = {
992
+ 0x00, 0x00, 0x10,
993
+ };
994
+ // VSRC Register Class...
995
+ static const MCPhysReg VSRC[] = {
996
+ PPC_VSL0, PPC_VSL1, PPC_VSL2, PPC_VSL3, PPC_VSL4, PPC_VSL5, PPC_VSL6, PPC_VSL7, PPC_VSL8, PPC_VSL9, PPC_VSL10, PPC_VSL11, PPC_VSL12, PPC_VSL13, PPC_VSL31, PPC_VSL30, PPC_VSL29, PPC_VSL28, PPC_VSL27, PPC_VSL26, PPC_VSL25, PPC_VSL24, PPC_VSL23, PPC_VSL22, PPC_VSL21, PPC_VSL20, PPC_VSL19, PPC_VSL18, PPC_VSL17, PPC_VSL16, PPC_VSL15, PPC_VSL14, PPC_V2, PPC_V3, PPC_V4, PPC_V5, PPC_V0, PPC_V1, PPC_V6, PPC_V7, PPC_V8, PPC_V9, PPC_V10, PPC_V11, PPC_V12, PPC_V13, PPC_V14, PPC_V15, PPC_V16, PPC_V17, PPC_V18, PPC_V19, PPC_V31, PPC_V30, PPC_V29, PPC_V28, PPC_V27, PPC_V26, PPC_V25, PPC_V24, PPC_V23, PPC_V22, PPC_V21, PPC_V20,
997
+ };
998
+ // VSRC Bit set.
999
+ static const uint8_t VSRCBits[] = {
1000
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xff, 0xff, 0xff, 0x7f, 0x00, 0x00, 0x00, 0x80, 0xff, 0xff, 0xff, 0x7f,
1001
+ };
1002
+ // VSRC_with_sub_64_in_SPILLTOVSRRC Register Class...
1003
+ static const MCPhysReg VSRC_with_sub_64_in_SPILLTOVSRRC[] = {
1004
+ PPC_VSL0, PPC_VSL1, PPC_VSL2, PPC_VSL3, PPC_VSL4, PPC_VSL5, PPC_VSL6, PPC_VSL7, PPC_VSL8, PPC_VSL9, PPC_VSL10, PPC_VSL11, PPC_VSL12, PPC_VSL13, PPC_V2, PPC_V3, PPC_V4, PPC_V5, PPC_V0, PPC_V1, PPC_V6, PPC_V7, PPC_V8, PPC_V9, PPC_V10, PPC_V11, PPC_V12, PPC_V13, PPC_V14, PPC_V15, PPC_V16, PPC_V17, PPC_V18, PPC_V19,
1005
+ };
1006
+ // VSRC_with_sub_64_in_SPILLTOVSRRC Bit set.
1007
+ static const uint8_t VSRC_with_sub_64_in_SPILLTOVSRRCBits[] = {
1008
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xff, 0xff, 0x07, 0x00, 0x00, 0x00, 0x00, 0x80, 0xff, 0x1f,
1009
+ };
1010
+ // QSRC Register Class...
1011
+ static const MCPhysReg QSRC[] = {
1012
+ PPC_QF0, PPC_QF1, PPC_QF2, PPC_QF3, PPC_QF4, PPC_QF5, PPC_QF6, PPC_QF7, PPC_QF8, PPC_QF9, PPC_QF10, PPC_QF11, PPC_QF12, PPC_QF13, PPC_QF31, PPC_QF30, PPC_QF29, PPC_QF28, PPC_QF27, PPC_QF26, PPC_QF25, PPC_QF24, PPC_QF23, PPC_QF22, PPC_QF21, PPC_QF20, PPC_QF19, PPC_QF18, PPC_QF17, PPC_QF16, PPC_QF15, PPC_QF14,
1013
+ };
1014
+ // QSRC Bit set.
1015
+ static const uint8_t QSRCBits[] = {
1016
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xff, 0xff, 0xff, 0x7f,
1017
+ };
1018
+ // VRRC Register Class...
1019
+ static const MCPhysReg VRRC[] = {
1020
+ PPC_V2, PPC_V3, PPC_V4, PPC_V5, PPC_V0, PPC_V1, PPC_V6, PPC_V7, PPC_V8, PPC_V9, PPC_V10, PPC_V11, PPC_V12, PPC_V13, PPC_V14, PPC_V15, PPC_V16, PPC_V17, PPC_V18, PPC_V19, PPC_V31, PPC_V30, PPC_V29, PPC_V28, PPC_V27, PPC_V26, PPC_V25, PPC_V24, PPC_V23, PPC_V22, PPC_V21, PPC_V20,
1021
+ };
1022
+ // VRRC Bit set.
1023
+ static const uint8_t VRRCBits[] = {
1024
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xff, 0xff, 0xff, 0x7f,
1025
+ };
1026
+ // VSLRC Register Class...
1027
+ static const MCPhysReg VSLRC[] = {
1028
+ PPC_VSL0, PPC_VSL1, PPC_VSL2, PPC_VSL3, PPC_VSL4, PPC_VSL5, PPC_VSL6, PPC_VSL7, PPC_VSL8, PPC_VSL9, PPC_VSL10, PPC_VSL11, PPC_VSL12, PPC_VSL13, PPC_VSL31, PPC_VSL30, PPC_VSL29, PPC_VSL28, PPC_VSL27, PPC_VSL26, PPC_VSL25, PPC_VSL24, PPC_VSL23, PPC_VSL22, PPC_VSL21, PPC_VSL20, PPC_VSL19, PPC_VSL18, PPC_VSL17, PPC_VSL16, PPC_VSL15, PPC_VSL14,
1029
+ };
1030
+ // VSLRC Bit set.
1031
+ static const uint8_t VSLRCBits[] = {
1032
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xff, 0xff, 0xff, 0x7f,
1033
+ };
1034
+ // VRRC_with_sub_64_in_SPILLTOVSRRC Register Class...
1035
+ static const MCPhysReg VRRC_with_sub_64_in_SPILLTOVSRRC[] = {
1036
+ PPC_V2, PPC_V3, PPC_V4, PPC_V5, PPC_V0, PPC_V1, PPC_V6, PPC_V7, PPC_V8, PPC_V9, PPC_V10, PPC_V11, PPC_V12, PPC_V13, PPC_V14, PPC_V15, PPC_V16, PPC_V17, PPC_V18, PPC_V19,
1037
+ };
1038
+ // VRRC_with_sub_64_in_SPILLTOVSRRC Bit set.
1039
+ static const uint8_t VRRC_with_sub_64_in_SPILLTOVSRRCBits[] = {
1040
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xff, 0xff, 0x07,
1041
+ };
1042
+ // QSRC_with_sub_64_in_SPILLTOVSRRC Register Class...
1043
+ static const MCPhysReg QSRC_with_sub_64_in_SPILLTOVSRRC[] = {
1044
+ PPC_QF0, PPC_QF1, PPC_QF2, PPC_QF3, PPC_QF4, PPC_QF5, PPC_QF6, PPC_QF7, PPC_QF8, PPC_QF9, PPC_QF10, PPC_QF11, PPC_QF12, PPC_QF13,
1045
+ };
1046
+ // QSRC_with_sub_64_in_SPILLTOVSRRC Bit set.
1047
+ static const uint8_t QSRC_with_sub_64_in_SPILLTOVSRRCBits[] = {
1048
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xff, 0x1f,
1049
+ };
1050
+ // VSLRC_with_sub_64_in_SPILLTOVSRRC Register Class...
1051
+ static const MCPhysReg VSLRC_with_sub_64_in_SPILLTOVSRRC[] = {
1052
+ PPC_VSL0, PPC_VSL1, PPC_VSL2, PPC_VSL3, PPC_VSL4, PPC_VSL5, PPC_VSL6, PPC_VSL7, PPC_VSL8, PPC_VSL9, PPC_VSL10, PPC_VSL11, PPC_VSL12, PPC_VSL13,
1053
+ };
1054
+ // VSLRC_with_sub_64_in_SPILLTOVSRRC Bit set.
1055
+ static const uint8_t VSLRC_with_sub_64_in_SPILLTOVSRRCBits[] = {
1056
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xff, 0x1f,
1057
+ };
1058
+ // QBRC Register Class...
1059
+ static const MCPhysReg QBRC[] = {
1060
+ PPC_QF0, PPC_QF1, PPC_QF2, PPC_QF3, PPC_QF4, PPC_QF5, PPC_QF6, PPC_QF7, PPC_QF8, PPC_QF9, PPC_QF10, PPC_QF11, PPC_QF12, PPC_QF13, PPC_QF31, PPC_QF30, PPC_QF29, PPC_QF28, PPC_QF27, PPC_QF26, PPC_QF25, PPC_QF24, PPC_QF23, PPC_QF22, PPC_QF21, PPC_QF20, PPC_QF19, PPC_QF18, PPC_QF17, PPC_QF16, PPC_QF15, PPC_QF14,
1061
+ };
1062
+ // QBRC Bit set.
1063
+ static const uint8_t QBRCBits[] = {
1064
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xff, 0xff, 0xff, 0x7f,
1065
+ };
1066
+ // QFRC Register Class...
1067
+ static const MCPhysReg QFRC[] = {
1068
+ PPC_QF0, PPC_QF1, PPC_QF2, PPC_QF3, PPC_QF4, PPC_QF5, PPC_QF6, PPC_QF7, PPC_QF8, PPC_QF9, PPC_QF10, PPC_QF11, PPC_QF12, PPC_QF13, PPC_QF31, PPC_QF30, PPC_QF29, PPC_QF28, PPC_QF27, PPC_QF26, PPC_QF25, PPC_QF24, PPC_QF23, PPC_QF22, PPC_QF21, PPC_QF20, PPC_QF19, PPC_QF18, PPC_QF17, PPC_QF16, PPC_QF15, PPC_QF14,
1069
+ };
1070
+ // QFRC Bit set.
1071
+ static const uint8_t QFRCBits[] = {
1072
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xff, 0xff, 0xff, 0x7f,
1073
+ };
1074
+ // QBRC_with_sub_64_in_SPILLTOVSRRC Register Class...
1075
+ static const MCPhysReg QBRC_with_sub_64_in_SPILLTOVSRRC[] = {
1076
+ PPC_QF0, PPC_QF1, PPC_QF2, PPC_QF3, PPC_QF4, PPC_QF5, PPC_QF6, PPC_QF7, PPC_QF8, PPC_QF9, PPC_QF10, PPC_QF11, PPC_QF12, PPC_QF13,
1077
+ };
1078
+ // QBRC_with_sub_64_in_SPILLTOVSRRC Bit set.
1079
+ static const uint8_t QBRC_with_sub_64_in_SPILLTOVSRRCBits[] = {
1080
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xff, 0x1f,
1081
+ };
1082
+
1083
+
1084
+ static const MCRegisterClass PPCMCRegisterClasses[] = {
1085
+ { VSSRC, VSSRCBits, sizeof(VSSRCBits) },
1086
+ { GPRC, GPRCBits, sizeof(GPRCBits) },
1087
+ { GPRC_NOR0, GPRC_NOR0Bits, sizeof(GPRC_NOR0Bits) },
1088
+ { SPE4RC, SPE4RCBits, sizeof(SPE4RCBits) },
1089
+ { GPRC_and_GPRC_NOR0, GPRC_and_GPRC_NOR0Bits, sizeof(GPRC_and_GPRC_NOR0Bits) },
1090
+ { CRBITRC, CRBITRCBits, sizeof(CRBITRCBits) },
1091
+ { F4RC, F4RCBits, sizeof(F4RCBits) },
1092
+ { CRRC, CRRCBits, sizeof(CRRCBits) },
1093
+ { CARRYRC, CARRYRCBits, sizeof(CARRYRCBits) },
1094
+ { CTRRC, CTRRCBits, sizeof(CTRRCBits) },
1095
+ { VRSAVERC, VRSAVERCBits, sizeof(VRSAVERCBits) },
1096
+ { SPILLTOVSRRC, SPILLTOVSRRCBits, sizeof(SPILLTOVSRRCBits) },
1097
+ { VSFRC, VSFRCBits, sizeof(VSFRCBits) },
1098
+ { G8RC, G8RCBits, sizeof(G8RCBits) },
1099
+ { G8RC_NOX0, G8RC_NOX0Bits, sizeof(G8RC_NOX0Bits) },
1100
+ { SPILLTOVSRRC_and_VSFRC, SPILLTOVSRRC_and_VSFRCBits, sizeof(SPILLTOVSRRC_and_VSFRCBits) },
1101
+ { G8RC_and_G8RC_NOX0, G8RC_and_G8RC_NOX0Bits, sizeof(G8RC_and_G8RC_NOX0Bits) },
1102
+ { F8RC, F8RCBits, sizeof(F8RCBits) },
1103
+ { SPERC, SPERCBits, sizeof(SPERCBits) },
1104
+ { VFRC, VFRCBits, sizeof(VFRCBits) },
1105
+ { SPERC_with_sub_32_in_GPRC_NOR0, SPERC_with_sub_32_in_GPRC_NOR0Bits, sizeof(SPERC_with_sub_32_in_GPRC_NOR0Bits) },
1106
+ { SPILLTOVSRRC_and_VFRC, SPILLTOVSRRC_and_VFRCBits, sizeof(SPILLTOVSRRC_and_VFRCBits) },
1107
+ { SPILLTOVSRRC_and_F4RC, SPILLTOVSRRC_and_F4RCBits, sizeof(SPILLTOVSRRC_and_F4RCBits) },
1108
+ { CTRRC8, CTRRC8Bits, sizeof(CTRRC8Bits) },
1109
+ { VSRC, VSRCBits, sizeof(VSRCBits) },
1110
+ { VSRC_with_sub_64_in_SPILLTOVSRRC, VSRC_with_sub_64_in_SPILLTOVSRRCBits, sizeof(VSRC_with_sub_64_in_SPILLTOVSRRCBits) },
1111
+ { QSRC, QSRCBits, sizeof(QSRCBits) },
1112
+ { VRRC, VRRCBits, sizeof(VRRCBits) },
1113
+ { VSLRC, VSLRCBits, sizeof(VSLRCBits) },
1114
+ { VRRC_with_sub_64_in_SPILLTOVSRRC, VRRC_with_sub_64_in_SPILLTOVSRRCBits, sizeof(VRRC_with_sub_64_in_SPILLTOVSRRCBits) },
1115
+ { QSRC_with_sub_64_in_SPILLTOVSRRC, QSRC_with_sub_64_in_SPILLTOVSRRCBits, sizeof(QSRC_with_sub_64_in_SPILLTOVSRRCBits) },
1116
+ { VSLRC_with_sub_64_in_SPILLTOVSRRC, VSLRC_with_sub_64_in_SPILLTOVSRRCBits, sizeof(VSLRC_with_sub_64_in_SPILLTOVSRRCBits) },
1117
+ { QBRC, QBRCBits, sizeof(QBRCBits) },
1118
+ { QFRC, QFRCBits, sizeof(QFRCBits) },
1119
+ { QBRC_with_sub_64_in_SPILLTOVSRRC, QBRC_with_sub_64_in_SPILLTOVSRRCBits, sizeof(QBRC_with_sub_64_in_SPILLTOVSRRCBits) },
1120
+ };
1121
+
1122
+ #endif // GET_REGINFO_MC_DESC