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.
- package/LICENSE +26 -0
- package/README.md +191 -0
- package/binding.gyp +168 -0
- package/deps/capstone/LEB128.h +38 -0
- package/deps/capstone/MCDisassembler.h +14 -0
- package/deps/capstone/MCFixedLenDisassembler.h +32 -0
- package/deps/capstone/MCInst.c +270 -0
- package/deps/capstone/MCInst.h +165 -0
- package/deps/capstone/MCInstrDesc.c +41 -0
- package/deps/capstone/MCInstrDesc.h +167 -0
- package/deps/capstone/MCRegisterInfo.c +151 -0
- package/deps/capstone/MCRegisterInfo.h +116 -0
- package/deps/capstone/Mapping.c +254 -0
- package/deps/capstone/Mapping.h +174 -0
- package/deps/capstone/MathExtras.h +442 -0
- package/deps/capstone/SStream.c +181 -0
- package/deps/capstone/SStream.h +40 -0
- package/deps/capstone/arch/AArch64/AArch64AddressingModes.h +945 -0
- package/deps/capstone/arch/AArch64/AArch64BaseInfo.c +77 -0
- package/deps/capstone/arch/AArch64/AArch64BaseInfo.h +585 -0
- package/deps/capstone/arch/AArch64/AArch64Disassembler.c +2280 -0
- package/deps/capstone/arch/AArch64/AArch64Disassembler.h +18 -0
- package/deps/capstone/arch/AArch64/AArch64GenAsmWriter.inc +26589 -0
- package/deps/capstone/arch/AArch64/AArch64GenDisassemblerTables.inc +27322 -0
- package/deps/capstone/arch/AArch64/AArch64GenInstrInfo.inc +13194 -0
- package/deps/capstone/arch/AArch64/AArch64GenRegisterInfo.inc +3814 -0
- package/deps/capstone/arch/AArch64/AArch64GenRegisterName.inc +714 -0
- package/deps/capstone/arch/AArch64/AArch64GenRegisterV.inc +673 -0
- package/deps/capstone/arch/AArch64/AArch64GenSubtargetInfo.inc +229 -0
- package/deps/capstone/arch/AArch64/AArch64GenSystemOperands.inc +2863 -0
- package/deps/capstone/arch/AArch64/AArch64GenSystemOperands_enum.inc +21 -0
- package/deps/capstone/arch/AArch64/AArch64InstPrinter.c +3029 -0
- package/deps/capstone/arch/AArch64/AArch64InstPrinter.h +28 -0
- package/deps/capstone/arch/AArch64/AArch64Mapping.c +883 -0
- package/deps/capstone/arch/AArch64/AArch64Mapping.h +43 -0
- package/deps/capstone/arch/AArch64/AArch64MappingInsn.inc +37790 -0
- package/deps/capstone/arch/AArch64/AArch64MappingInsnName.inc +1282 -0
- package/deps/capstone/arch/AArch64/AArch64MappingInsnOp.inc +26994 -0
- package/deps/capstone/arch/AArch64/AArch64Module.c +44 -0
- package/deps/capstone/arch/AArch64/AArch64Module.h +12 -0
- package/deps/capstone/arch/ARM/ARMAddressingModes.h +698 -0
- package/deps/capstone/arch/ARM/ARMBaseInfo.h +486 -0
- package/deps/capstone/arch/ARM/ARMDisassembler.c +5763 -0
- package/deps/capstone/arch/ARM/ARMDisassembler.h +18 -0
- package/deps/capstone/arch/ARM/ARMGenAsmWriter.inc +9545 -0
- package/deps/capstone/arch/ARM/ARMGenDisassemblerTables.inc +15185 -0
- package/deps/capstone/arch/ARM/ARMGenInstrInfo.inc +6632 -0
- package/deps/capstone/arch/ARM/ARMGenRegisterInfo.inc +2102 -0
- package/deps/capstone/arch/ARM/ARMGenRegisterName.inc +231 -0
- package/deps/capstone/arch/ARM/ARMGenRegisterName_digit.inc +231 -0
- package/deps/capstone/arch/ARM/ARMGenSubtargetInfo.inc +162 -0
- package/deps/capstone/arch/ARM/ARMGenSystemRegister.inc +270 -0
- package/deps/capstone/arch/ARM/ARMInstPrinter.c +3364 -0
- package/deps/capstone/arch/ARM/ARMInstPrinter.h +43 -0
- package/deps/capstone/arch/ARM/ARMMapping.c +551 -0
- package/deps/capstone/arch/ARM/ARMMapping.h +40 -0
- package/deps/capstone/arch/ARM/ARMMappingInsn.inc +18772 -0
- package/deps/capstone/arch/ARM/ARMMappingInsnName.inc +475 -0
- package/deps/capstone/arch/ARM/ARMMappingInsnOp.inc +10729 -0
- package/deps/capstone/arch/ARM/ARMModule.c +63 -0
- package/deps/capstone/arch/ARM/ARMModule.h +12 -0
- package/deps/capstone/arch/BPF/BPFConstants.h +88 -0
- package/deps/capstone/arch/BPF/BPFDisassembler.c +464 -0
- package/deps/capstone/arch/BPF/BPFDisassembler.h +27 -0
- package/deps/capstone/arch/BPF/BPFInstPrinter.c +285 -0
- package/deps/capstone/arch/BPF/BPFInstPrinter.h +16 -0
- package/deps/capstone/arch/BPF/BPFMapping.c +513 -0
- package/deps/capstone/arch/BPF/BPFMapping.h +21 -0
- package/deps/capstone/arch/BPF/BPFModule.c +34 -0
- package/deps/capstone/arch/BPF/BPFModule.h +12 -0
- package/deps/capstone/arch/EVM/EVMDisassembler.c +379 -0
- package/deps/capstone/arch/EVM/EVMDisassembler.h +12 -0
- package/deps/capstone/arch/EVM/EVMInstPrinter.c +20 -0
- package/deps/capstone/arch/EVM/EVMInstPrinter.h +17 -0
- package/deps/capstone/arch/EVM/EVMMapping.c +344 -0
- package/deps/capstone/arch/EVM/EVMMapping.h +8 -0
- package/deps/capstone/arch/EVM/EVMMappingInsn.inc +259 -0
- package/deps/capstone/arch/EVM/EVMModule.c +33 -0
- package/deps/capstone/arch/EVM/EVMModule.h +12 -0
- package/deps/capstone/arch/M680X/M680XDisassembler.c +2307 -0
- package/deps/capstone/arch/M680X/M680XDisassembler.h +17 -0
- package/deps/capstone/arch/M680X/M680XDisassemblerInternals.h +57 -0
- package/deps/capstone/arch/M680X/M680XInstPrinter.c +360 -0
- package/deps/capstone/arch/M680X/M680XInstPrinter.h +25 -0
- package/deps/capstone/arch/M680X/M680XModule.c +77 -0
- package/deps/capstone/arch/M680X/M680XModule.h +12 -0
- package/deps/capstone/arch/M680X/cpu12.inc +335 -0
- package/deps/capstone/arch/M680X/hcs08.inc +60 -0
- package/deps/capstone/arch/M680X/hd6301.inc +15 -0
- package/deps/capstone/arch/M680X/hd6309.inc +259 -0
- package/deps/capstone/arch/M680X/insn_props.inc +367 -0
- package/deps/capstone/arch/M680X/m6800.inc +277 -0
- package/deps/capstone/arch/M680X/m6801.inc +39 -0
- package/deps/capstone/arch/M680X/m6805.inc +277 -0
- package/deps/capstone/arch/M680X/m6808.inc +91 -0
- package/deps/capstone/arch/M680X/m6809.inc +352 -0
- package/deps/capstone/arch/M680X/m6811.inc +105 -0
- package/deps/capstone/arch/M68K/M68KDisassembler.c +3668 -0
- package/deps/capstone/arch/M68K/M68KDisassembler.h +30 -0
- package/deps/capstone/arch/M68K/M68KInstPrinter.c +387 -0
- package/deps/capstone/arch/M68K/M68KInstPrinter.h +21 -0
- package/deps/capstone/arch/M68K/M68KInstructionTable.inc +65540 -0
- package/deps/capstone/arch/M68K/M68KModule.c +42 -0
- package/deps/capstone/arch/M68K/M68KModule.h +12 -0
- package/deps/capstone/arch/MOS65XX/MOS65XXDisassembler.c +544 -0
- package/deps/capstone/arch/MOS65XX/MOS65XXDisassembler.h +22 -0
- package/deps/capstone/arch/MOS65XX/MOS65XXDisassemblerInternals.h +23 -0
- package/deps/capstone/arch/MOS65XX/MOS65XXModule.c +79 -0
- package/deps/capstone/arch/MOS65XX/MOS65XXModule.h +12 -0
- package/deps/capstone/arch/MOS65XX/instruction_info.inc +106 -0
- package/deps/capstone/arch/MOS65XX/m6502.inc +256 -0
- package/deps/capstone/arch/MOS65XX/m65816.inc +256 -0
- package/deps/capstone/arch/MOS65XX/m65c02.inc +256 -0
- package/deps/capstone/arch/MOS65XX/mw65c02.inc +256 -0
- package/deps/capstone/arch/Mips/MipsDisassembler.c +1794 -0
- package/deps/capstone/arch/Mips/MipsDisassembler.h +16 -0
- package/deps/capstone/arch/Mips/MipsGenAsmWriter.inc +5725 -0
- package/deps/capstone/arch/Mips/MipsGenDisassemblerTables.inc +6942 -0
- package/deps/capstone/arch/Mips/MipsGenInstrInfo.inc +1805 -0
- package/deps/capstone/arch/Mips/MipsGenRegisterInfo.inc +1679 -0
- package/deps/capstone/arch/Mips/MipsGenSubtargetInfo.inc +52 -0
- package/deps/capstone/arch/Mips/MipsInstPrinter.c +424 -0
- package/deps/capstone/arch/Mips/MipsInstPrinter.h +25 -0
- package/deps/capstone/arch/Mips/MipsMapping.c +1070 -0
- package/deps/capstone/arch/Mips/MipsMapping.h +25 -0
- package/deps/capstone/arch/Mips/MipsMappingInsn.inc +9315 -0
- package/deps/capstone/arch/Mips/MipsModule.c +52 -0
- package/deps/capstone/arch/Mips/MipsModule.h +12 -0
- package/deps/capstone/arch/PowerPC/PPCDisassembler.c +627 -0
- package/deps/capstone/arch/PowerPC/PPCDisassembler.h +17 -0
- package/deps/capstone/arch/PowerPC/PPCGenAsmWriter.inc +11451 -0
- package/deps/capstone/arch/PowerPC/PPCGenDisassemblerTables.inc +6886 -0
- package/deps/capstone/arch/PowerPC/PPCGenInstrInfo.inc +4772 -0
- package/deps/capstone/arch/PowerPC/PPCGenRegisterInfo.inc +1122 -0
- package/deps/capstone/arch/PowerPC/PPCGenRegisterName.inc +278 -0
- package/deps/capstone/arch/PowerPC/PPCGenSubtargetInfo.inc +90 -0
- package/deps/capstone/arch/PowerPC/PPCInstPrinter.c +1238 -0
- package/deps/capstone/arch/PowerPC/PPCInstPrinter.h +15 -0
- package/deps/capstone/arch/PowerPC/PPCMapping.c +570 -0
- package/deps/capstone/arch/PowerPC/PPCMapping.h +40 -0
- package/deps/capstone/arch/PowerPC/PPCMappingInsn.inc +13220 -0
- package/deps/capstone/arch/PowerPC/PPCMappingInsnName.inc +1731 -0
- package/deps/capstone/arch/PowerPC/PPCModule.c +45 -0
- package/deps/capstone/arch/PowerPC/PPCModule.h +12 -0
- package/deps/capstone/arch/PowerPC/PPCPredicates.h +62 -0
- package/deps/capstone/arch/RISCV/RISCVBaseInfo.h +106 -0
- package/deps/capstone/arch/RISCV/RISCVDisassembler.c +433 -0
- package/deps/capstone/arch/RISCV/RISCVDisassembler.h +18 -0
- package/deps/capstone/arch/RISCV/RISCVGenAsmWriter.inc +2651 -0
- package/deps/capstone/arch/RISCV/RISCVGenDisassemblerTables.inc +1776 -0
- package/deps/capstone/arch/RISCV/RISCVGenInsnNameMaps.inc +275 -0
- package/deps/capstone/arch/RISCV/RISCVGenInstrInfo.inc +470 -0
- package/deps/capstone/arch/RISCV/RISCVGenRegisterInfo.inc +426 -0
- package/deps/capstone/arch/RISCV/RISCVGenSubtargetInfo.inc +33 -0
- package/deps/capstone/arch/RISCV/RISCVInstPrinter.c +447 -0
- package/deps/capstone/arch/RISCV/RISCVInstPrinter.h +24 -0
- package/deps/capstone/arch/RISCV/RISCVMapping.c +366 -0
- package/deps/capstone/arch/RISCV/RISCVMapping.h +22 -0
- package/deps/capstone/arch/RISCV/RISCVMappingInsn.inc +1635 -0
- package/deps/capstone/arch/RISCV/RISCVModule.c +42 -0
- package/deps/capstone/arch/RISCV/RISCVModule.h +12 -0
- package/deps/capstone/arch/SH/SHDisassembler.c +2221 -0
- package/deps/capstone/arch/SH/SHDisassembler.h +19 -0
- package/deps/capstone/arch/SH/SHInsnTable.inc +66 -0
- package/deps/capstone/arch/SH/SHInstPrinter.c +438 -0
- package/deps/capstone/arch/SH/SHInstPrinter.h +23 -0
- package/deps/capstone/arch/SH/SHModule.c +39 -0
- package/deps/capstone/arch/SH/SHModule.h +12 -0
- package/deps/capstone/arch/SH/mktable.rb +390 -0
- package/deps/capstone/arch/Sparc/Sparc.h +63 -0
- package/deps/capstone/arch/Sparc/SparcDisassembler.c +500 -0
- package/deps/capstone/arch/Sparc/SparcDisassembler.h +17 -0
- package/deps/capstone/arch/Sparc/SparcGenAsmWriter.inc +5709 -0
- package/deps/capstone/arch/Sparc/SparcGenDisassemblerTables.inc +2028 -0
- package/deps/capstone/arch/Sparc/SparcGenInstrInfo.inc +514 -0
- package/deps/capstone/arch/Sparc/SparcGenRegisterInfo.inc +451 -0
- package/deps/capstone/arch/Sparc/SparcGenSubtargetInfo.inc +27 -0
- package/deps/capstone/arch/Sparc/SparcInstPrinter.c +446 -0
- package/deps/capstone/arch/Sparc/SparcInstPrinter.h +17 -0
- package/deps/capstone/arch/Sparc/SparcMapping.c +665 -0
- package/deps/capstone/arch/Sparc/SparcMapping.h +34 -0
- package/deps/capstone/arch/Sparc/SparcMappingInsn.inc +2643 -0
- package/deps/capstone/arch/Sparc/SparcModule.c +45 -0
- package/deps/capstone/arch/Sparc/SparcModule.h +12 -0
- package/deps/capstone/arch/SystemZ/SystemZDisassembler.c +484 -0
- package/deps/capstone/arch/SystemZ/SystemZDisassembler.h +17 -0
- package/deps/capstone/arch/SystemZ/SystemZGenAsmWriter.inc +11575 -0
- package/deps/capstone/arch/SystemZ/SystemZGenDisassemblerTables.inc +10262 -0
- package/deps/capstone/arch/SystemZ/SystemZGenInsnNameMaps.inc +2348 -0
- package/deps/capstone/arch/SystemZ/SystemZGenInstrInfo.inc +2820 -0
- package/deps/capstone/arch/SystemZ/SystemZGenRegisterInfo.inc +741 -0
- package/deps/capstone/arch/SystemZ/SystemZGenSubtargetInfo.inc +49 -0
- package/deps/capstone/arch/SystemZ/SystemZInstPrinter.c +433 -0
- package/deps/capstone/arch/SystemZ/SystemZInstPrinter.h +15 -0
- package/deps/capstone/arch/SystemZ/SystemZMCTargetDesc.c +195 -0
- package/deps/capstone/arch/SystemZ/SystemZMCTargetDesc.h +51 -0
- package/deps/capstone/arch/SystemZ/SystemZMapping.c +479 -0
- package/deps/capstone/arch/SystemZ/SystemZMapping.h +23 -0
- package/deps/capstone/arch/SystemZ/SystemZMappingInsn.inc +14175 -0
- package/deps/capstone/arch/SystemZ/SystemZModule.c +44 -0
- package/deps/capstone/arch/SystemZ/SystemZModule.h +12 -0
- package/deps/capstone/arch/TMS320C64x/TMS320C64xDisassembler.c +628 -0
- package/deps/capstone/arch/TMS320C64x/TMS320C64xDisassembler.h +19 -0
- package/deps/capstone/arch/TMS320C64x/TMS320C64xGenAsmWriter.inc +684 -0
- package/deps/capstone/arch/TMS320C64x/TMS320C64xGenDisassemblerTables.inc +1352 -0
- package/deps/capstone/arch/TMS320C64x/TMS320C64xGenInstrInfo.inc +298 -0
- package/deps/capstone/arch/TMS320C64x/TMS320C64xGenRegisterInfo.inc +277 -0
- package/deps/capstone/arch/TMS320C64x/TMS320C64xInstPrinter.c +572 -0
- package/deps/capstone/arch/TMS320C64x/TMS320C64xInstPrinter.h +15 -0
- package/deps/capstone/arch/TMS320C64x/TMS320C64xMapping.c +1926 -0
- package/deps/capstone/arch/TMS320C64x/TMS320C64xMapping.h +26 -0
- package/deps/capstone/arch/TMS320C64x/TMS320C64xModule.c +39 -0
- package/deps/capstone/arch/TMS320C64x/TMS320C64xModule.h +12 -0
- package/deps/capstone/arch/TriCore/TriCore.td +134 -0
- package/deps/capstone/arch/TriCore/TriCoreCallingConv.td +61 -0
- package/deps/capstone/arch/TriCore/TriCoreDisassembler.c +1655 -0
- package/deps/capstone/arch/TriCore/TriCoreDisassembler.h +18 -0
- package/deps/capstone/arch/TriCore/TriCoreGenAsmWriter.inc +3691 -0
- package/deps/capstone/arch/TriCore/TriCoreGenCSFeatureName.inc +22 -0
- package/deps/capstone/arch/TriCore/TriCoreGenCSMappingInsn.inc +8938 -0
- package/deps/capstone/arch/TriCore/TriCoreGenCSMappingInsnName.inc +404 -0
- package/deps/capstone/arch/TriCore/TriCoreGenCSMappingInsnOp.inc +7994 -0
- package/deps/capstone/arch/TriCore/TriCoreGenCSOpGroup.inc +32 -0
- package/deps/capstone/arch/TriCore/TriCoreGenDisassemblerTables.inc +4044 -0
- package/deps/capstone/arch/TriCore/TriCoreGenInstrInfo.inc +2693 -0
- package/deps/capstone/arch/TriCore/TriCoreGenRegisterInfo.inc +295 -0
- package/deps/capstone/arch/TriCore/TriCoreGenSubtargetInfo.inc +40 -0
- package/deps/capstone/arch/TriCore/TriCoreInstPrinter.c +488 -0
- package/deps/capstone/arch/TriCore/TriCoreInstrFormats.td +773 -0
- package/deps/capstone/arch/TriCore/TriCoreInstrInfo.td +1873 -0
- package/deps/capstone/arch/TriCore/TriCoreLinkage.h +21 -0
- package/deps/capstone/arch/TriCore/TriCoreMapping.c +241 -0
- package/deps/capstone/arch/TriCore/TriCoreMapping.h +32 -0
- package/deps/capstone/arch/TriCore/TriCoreModule.c +44 -0
- package/deps/capstone/arch/TriCore/TriCoreModule.h +11 -0
- package/deps/capstone/arch/TriCore/TriCoreRegisterInfo.td +153 -0
- package/deps/capstone/arch/WASM/WASMDisassembler.c +1009 -0
- package/deps/capstone/arch/WASM/WASMDisassembler.h +12 -0
- package/deps/capstone/arch/WASM/WASMInstPrinter.c +47 -0
- package/deps/capstone/arch/WASM/WASMInstPrinter.h +18 -0
- package/deps/capstone/arch/WASM/WASMMapping.c +333 -0
- package/deps/capstone/arch/WASM/WASMMapping.h +9 -0
- package/deps/capstone/arch/WASM/WASMModule.c +33 -0
- package/deps/capstone/arch/WASM/WASMModule.h +12 -0
- package/deps/capstone/arch/X86/X86ATTInstPrinter.c +997 -0
- package/deps/capstone/arch/X86/X86BaseInfo.h +50 -0
- package/deps/capstone/arch/X86/X86Disassembler.c +1033 -0
- package/deps/capstone/arch/X86/X86Disassembler.h +28 -0
- package/deps/capstone/arch/X86/X86DisassemblerDecoder.c +2358 -0
- package/deps/capstone/arch/X86/X86DisassemblerDecoder.h +725 -0
- package/deps/capstone/arch/X86/X86DisassemblerDecoderCommon.h +483 -0
- package/deps/capstone/arch/X86/X86GenAsmWriter.inc +49199 -0
- package/deps/capstone/arch/X86/X86GenAsmWriter1.inc +33196 -0
- package/deps/capstone/arch/X86/X86GenAsmWriter1_reduce.inc +2531 -0
- package/deps/capstone/arch/X86/X86GenAsmWriter_reduce.inc +2855 -0
- package/deps/capstone/arch/X86/X86GenDisassemblerTables.inc +112961 -0
- package/deps/capstone/arch/X86/X86GenDisassemblerTables2.inc +102151 -0
- package/deps/capstone/arch/X86/X86GenDisassemblerTables_reduce.inc +28047 -0
- package/deps/capstone/arch/X86/X86GenDisassemblerTables_reduce2.inc +18827 -0
- package/deps/capstone/arch/X86/X86GenInstrInfo.inc +15158 -0
- package/deps/capstone/arch/X86/X86GenInstrInfo_reduce.inc +1564 -0
- package/deps/capstone/arch/X86/X86GenRegisterInfo.inc +1549 -0
- package/deps/capstone/arch/X86/X86GenRegisterName.inc +292 -0
- package/deps/capstone/arch/X86/X86GenRegisterName1.inc +291 -0
- package/deps/capstone/arch/X86/X86ImmSize.inc +335 -0
- package/deps/capstone/arch/X86/X86InstPrinter.h +26 -0
- package/deps/capstone/arch/X86/X86InstPrinterCommon.c +116 -0
- package/deps/capstone/arch/X86/X86InstPrinterCommon.h +16 -0
- package/deps/capstone/arch/X86/X86IntelInstPrinter.c +1061 -0
- package/deps/capstone/arch/X86/X86Lookup16.inc +16874 -0
- package/deps/capstone/arch/X86/X86Lookup16_reduce.inc +2308 -0
- package/deps/capstone/arch/X86/X86Mapping.c +2266 -0
- package/deps/capstone/arch/X86/X86Mapping.h +96 -0
- package/deps/capstone/arch/X86/X86MappingInsn.inc +105977 -0
- package/deps/capstone/arch/X86/X86MappingInsnName.inc +1527 -0
- package/deps/capstone/arch/X86/X86MappingInsnName_reduce.inc +348 -0
- package/deps/capstone/arch/X86/X86MappingInsnOp.inc +75700 -0
- package/deps/capstone/arch/X86/X86MappingInsnOp_reduce.inc +7729 -0
- package/deps/capstone/arch/X86/X86MappingInsn_reduce.inc +10819 -0
- package/deps/capstone/arch/X86/X86MappingReg.inc +280 -0
- package/deps/capstone/arch/X86/X86Module.c +94 -0
- package/deps/capstone/arch/X86/X86Module.h +12 -0
- package/deps/capstone/arch/XCore/XCoreDisassembler.c +794 -0
- package/deps/capstone/arch/XCore/XCoreDisassembler.h +17 -0
- package/deps/capstone/arch/XCore/XCoreGenAsmWriter.inc +772 -0
- package/deps/capstone/arch/XCore/XCoreGenDisassemblerTables.inc +853 -0
- package/deps/capstone/arch/XCore/XCoreGenInstrInfo.inc +267 -0
- package/deps/capstone/arch/XCore/XCoreGenRegisterInfo.inc +110 -0
- package/deps/capstone/arch/XCore/XCoreInstPrinter.c +250 -0
- package/deps/capstone/arch/XCore/XCoreInstPrinter.h +18 -0
- package/deps/capstone/arch/XCore/XCoreMapping.c +297 -0
- package/deps/capstone/arch/XCore/XCoreMapping.h +26 -0
- package/deps/capstone/arch/XCore/XCoreMappingInsn.inc +1287 -0
- package/deps/capstone/arch/XCore/XCoreModule.c +41 -0
- package/deps/capstone/arch/XCore/XCoreModule.h +12 -0
- package/deps/capstone/cs.c +1664 -0
- package/deps/capstone/cs_priv.h +101 -0
- package/deps/capstone/cs_simple_types.h +886 -0
- package/deps/capstone/include/capstone/arm.h +991 -0
- package/deps/capstone/include/capstone/arm64.h +3159 -0
- package/deps/capstone/include/capstone/bpf.h +209 -0
- package/deps/capstone/include/capstone/capstone.h +875 -0
- package/deps/capstone/include/capstone/evm.h +188 -0
- package/deps/capstone/include/capstone/m680x.h +537 -0
- package/deps/capstone/include/capstone/m68k.h +613 -0
- package/deps/capstone/include/capstone/mips.h +956 -0
- package/deps/capstone/include/capstone/mos65xx.h +204 -0
- package/deps/capstone/include/capstone/platform.h +122 -0
- package/deps/capstone/include/capstone/ppc.h +2108 -0
- package/deps/capstone/include/capstone/riscv.h +531 -0
- package/deps/capstone/include/capstone/sh.h +465 -0
- package/deps/capstone/include/capstone/sparc.h +520 -0
- package/deps/capstone/include/capstone/systemz.h +2601 -0
- package/deps/capstone/include/capstone/tms320c64x.h +359 -0
- package/deps/capstone/include/capstone/tricore.h +567 -0
- package/deps/capstone/include/capstone/wasm.h +250 -0
- package/deps/capstone/include/capstone/x86.h +1986 -0
- package/deps/capstone/include/capstone/xcore.h +235 -0
- package/deps/capstone/include/platform.h +110 -0
- package/deps/capstone/include/windowsce/intrin.h +12 -0
- package/deps/capstone/include/windowsce/stdint.h +133 -0
- package/deps/capstone/utils.c +140 -0
- package/deps/capstone/utils.h +54 -0
- package/index.d.ts +448 -0
- package/index.js +64 -0
- package/index.mjs +25 -0
- package/package.json +82 -0
- package/prebuilds/win32-x64/hexcore-capstone.node +0 -0
- package/src/capstone_wrapper.cpp +910 -0
- package/src/capstone_wrapper.h +147 -0
- package/src/disasm_async_worker.h +215 -0
- package/src/main.cpp +145 -0
|
@@ -0,0 +1,572 @@
|
|
|
1
|
+
/* Capstone Disassembly Engine */
|
|
2
|
+
/* TMS320C64x Backend by Fotis Loukos <me@fotisl.com> 2016 */
|
|
3
|
+
|
|
4
|
+
#ifdef CAPSTONE_HAS_TMS320C64X
|
|
5
|
+
|
|
6
|
+
#ifdef _MSC_VER
|
|
7
|
+
// Disable security warnings for strcpy
|
|
8
|
+
#ifndef _CRT_SECURE_NO_WARNINGS
|
|
9
|
+
#define _CRT_SECURE_NO_WARNINGS
|
|
10
|
+
#endif
|
|
11
|
+
|
|
12
|
+
// Banned API Usage : strcpy is a Banned API as listed in dontuse.h for
|
|
13
|
+
// security purposes.
|
|
14
|
+
#pragma warning(disable:28719)
|
|
15
|
+
#endif
|
|
16
|
+
|
|
17
|
+
#include <ctype.h>
|
|
18
|
+
#include <string.h>
|
|
19
|
+
|
|
20
|
+
#include "TMS320C64xInstPrinter.h"
|
|
21
|
+
#include "../../MCInst.h"
|
|
22
|
+
#include "../../utils.h"
|
|
23
|
+
#include "../../SStream.h"
|
|
24
|
+
#include "../../MCRegisterInfo.h"
|
|
25
|
+
#include "../../MathExtras.h"
|
|
26
|
+
#include "TMS320C64xMapping.h"
|
|
27
|
+
|
|
28
|
+
#include "capstone/tms320c64x.h"
|
|
29
|
+
|
|
30
|
+
static const char *getRegisterName(unsigned RegNo);
|
|
31
|
+
static void printOperand(MCInst *MI, unsigned OpNo, SStream *O);
|
|
32
|
+
static void printMemOperand(MCInst *MI, unsigned OpNo, SStream *O);
|
|
33
|
+
static void printMemOperand2(MCInst *MI, unsigned OpNo, SStream *O);
|
|
34
|
+
static void printRegPair(MCInst *MI, unsigned OpNo, SStream *O);
|
|
35
|
+
|
|
36
|
+
void TMS320C64x_post_printer(csh ud, cs_insn *insn, char *insn_asm, MCInst *mci)
|
|
37
|
+
{
|
|
38
|
+
SStream ss;
|
|
39
|
+
char *p, *p2, tmp[8];
|
|
40
|
+
unsigned int unit = 0;
|
|
41
|
+
int i;
|
|
42
|
+
cs_tms320c64x *tms320c64x;
|
|
43
|
+
|
|
44
|
+
if (mci->csh->detail) {
|
|
45
|
+
tms320c64x = &mci->flat_insn->detail->tms320c64x;
|
|
46
|
+
|
|
47
|
+
for (i = 0; i < insn->detail->groups_count; i++) {
|
|
48
|
+
switch(insn->detail->groups[i]) {
|
|
49
|
+
case TMS320C64X_GRP_FUNIT_D:
|
|
50
|
+
unit = TMS320C64X_FUNIT_D;
|
|
51
|
+
break;
|
|
52
|
+
case TMS320C64X_GRP_FUNIT_L:
|
|
53
|
+
unit = TMS320C64X_FUNIT_L;
|
|
54
|
+
break;
|
|
55
|
+
case TMS320C64X_GRP_FUNIT_M:
|
|
56
|
+
unit = TMS320C64X_FUNIT_M;
|
|
57
|
+
break;
|
|
58
|
+
case TMS320C64X_GRP_FUNIT_S:
|
|
59
|
+
unit = TMS320C64X_FUNIT_S;
|
|
60
|
+
break;
|
|
61
|
+
case TMS320C64X_GRP_FUNIT_NO:
|
|
62
|
+
unit = TMS320C64X_FUNIT_NO;
|
|
63
|
+
break;
|
|
64
|
+
}
|
|
65
|
+
if (unit != 0)
|
|
66
|
+
break;
|
|
67
|
+
}
|
|
68
|
+
tms320c64x->funit.unit = unit;
|
|
69
|
+
|
|
70
|
+
SStream_Init(&ss);
|
|
71
|
+
if (tms320c64x->condition.reg != TMS320C64X_REG_INVALID)
|
|
72
|
+
SStream_concat(&ss, "[%c%s]|", (tms320c64x->condition.zero == 1) ? '!' : '|', cs_reg_name(ud, tms320c64x->condition.reg));
|
|
73
|
+
|
|
74
|
+
p = strchr(insn_asm, '\t');
|
|
75
|
+
if (p != NULL)
|
|
76
|
+
*p++ = '\0';
|
|
77
|
+
|
|
78
|
+
SStream_concat0(&ss, insn_asm);
|
|
79
|
+
if ((p != NULL) && (((p2 = strchr(p, '[')) != NULL) || ((p2 = strchr(p, '(')) != NULL))) {
|
|
80
|
+
while ((p2 > p) && ((*p2 != 'a') && (*p2 != 'b')))
|
|
81
|
+
p2--;
|
|
82
|
+
if (p2 == p) {
|
|
83
|
+
strcpy(insn_asm, "Invalid!");
|
|
84
|
+
return;
|
|
85
|
+
}
|
|
86
|
+
if (*p2 == 'a')
|
|
87
|
+
strcpy(tmp, "1T");
|
|
88
|
+
else
|
|
89
|
+
strcpy(tmp, "2T");
|
|
90
|
+
} else {
|
|
91
|
+
tmp[0] = '\0';
|
|
92
|
+
}
|
|
93
|
+
switch(tms320c64x->funit.unit) {
|
|
94
|
+
case TMS320C64X_FUNIT_D:
|
|
95
|
+
SStream_concat(&ss, ".D%s%u", tmp, tms320c64x->funit.side);
|
|
96
|
+
break;
|
|
97
|
+
case TMS320C64X_FUNIT_L:
|
|
98
|
+
SStream_concat(&ss, ".L%s%u", tmp, tms320c64x->funit.side);
|
|
99
|
+
break;
|
|
100
|
+
case TMS320C64X_FUNIT_M:
|
|
101
|
+
SStream_concat(&ss, ".M%s%u", tmp, tms320c64x->funit.side);
|
|
102
|
+
break;
|
|
103
|
+
case TMS320C64X_FUNIT_S:
|
|
104
|
+
SStream_concat(&ss, ".S%s%u", tmp, tms320c64x->funit.side);
|
|
105
|
+
break;
|
|
106
|
+
}
|
|
107
|
+
if (tms320c64x->funit.crosspath > 0)
|
|
108
|
+
SStream_concat0(&ss, "X");
|
|
109
|
+
|
|
110
|
+
if (p != NULL)
|
|
111
|
+
SStream_concat(&ss, "\t%s", p);
|
|
112
|
+
|
|
113
|
+
if (tms320c64x->parallel != 0)
|
|
114
|
+
SStream_concat0(&ss, "\t||");
|
|
115
|
+
|
|
116
|
+
/* insn_asm is a buffer from an SStream, so there should be enough space */
|
|
117
|
+
strcpy(insn_asm, ss.buffer);
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
#define PRINT_ALIAS_INSTR
|
|
122
|
+
#include "TMS320C64xGenAsmWriter.inc"
|
|
123
|
+
|
|
124
|
+
#define GET_INSTRINFO_ENUM
|
|
125
|
+
#include "TMS320C64xGenInstrInfo.inc"
|
|
126
|
+
|
|
127
|
+
static void printOperand(MCInst *MI, unsigned OpNo, SStream *O)
|
|
128
|
+
{
|
|
129
|
+
MCOperand *Op = MCInst_getOperand(MI, OpNo);
|
|
130
|
+
unsigned reg;
|
|
131
|
+
|
|
132
|
+
if (MCOperand_isReg(Op)) {
|
|
133
|
+
reg = MCOperand_getReg(Op);
|
|
134
|
+
if ((MCInst_getOpcode(MI) == TMS320C64x_MVC_s1_rr) && (OpNo == 1)) {
|
|
135
|
+
switch(reg) {
|
|
136
|
+
case TMS320C64X_REG_EFR:
|
|
137
|
+
SStream_concat0(O, "EFR");
|
|
138
|
+
break;
|
|
139
|
+
case TMS320C64X_REG_IFR:
|
|
140
|
+
SStream_concat0(O, "IFR");
|
|
141
|
+
break;
|
|
142
|
+
default:
|
|
143
|
+
SStream_concat0(O, getRegisterName(reg));
|
|
144
|
+
break;
|
|
145
|
+
}
|
|
146
|
+
} else {
|
|
147
|
+
SStream_concat0(O, getRegisterName(reg));
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
if (MI->csh->detail) {
|
|
151
|
+
MI->flat_insn->detail->tms320c64x.operands[MI->flat_insn->detail->tms320c64x.op_count].type = TMS320C64X_OP_REG;
|
|
152
|
+
MI->flat_insn->detail->tms320c64x.operands[MI->flat_insn->detail->tms320c64x.op_count].reg = reg;
|
|
153
|
+
MI->flat_insn->detail->tms320c64x.op_count++;
|
|
154
|
+
}
|
|
155
|
+
} else if (MCOperand_isImm(Op)) {
|
|
156
|
+
int64_t Imm = MCOperand_getImm(Op);
|
|
157
|
+
|
|
158
|
+
if (Imm >= 0) {
|
|
159
|
+
if (Imm > HEX_THRESHOLD)
|
|
160
|
+
SStream_concat(O, "0x%"PRIx64, Imm);
|
|
161
|
+
else
|
|
162
|
+
SStream_concat(O, "%"PRIu64, Imm);
|
|
163
|
+
} else {
|
|
164
|
+
if (Imm < -HEX_THRESHOLD)
|
|
165
|
+
SStream_concat(O, "-0x%"PRIx64, -Imm);
|
|
166
|
+
else
|
|
167
|
+
SStream_concat(O, "-%"PRIu64, -Imm);
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
if (MI->csh->detail) {
|
|
171
|
+
MI->flat_insn->detail->tms320c64x.operands[MI->flat_insn->detail->tms320c64x.op_count].type = TMS320C64X_OP_IMM;
|
|
172
|
+
MI->flat_insn->detail->tms320c64x.operands[MI->flat_insn->detail->tms320c64x.op_count].imm = Imm;
|
|
173
|
+
MI->flat_insn->detail->tms320c64x.op_count++;
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
static void printMemOperand(MCInst *MI, unsigned OpNo, SStream *O)
|
|
179
|
+
{
|
|
180
|
+
MCOperand *Op = MCInst_getOperand(MI, OpNo);
|
|
181
|
+
int64_t Val = MCOperand_getImm(Op);
|
|
182
|
+
unsigned scaled, base, offset, mode, unit;
|
|
183
|
+
cs_tms320c64x *tms320c64x;
|
|
184
|
+
char st, nd;
|
|
185
|
+
|
|
186
|
+
scaled = (Val >> 19) & 1;
|
|
187
|
+
base = (Val >> 12) & 0x7f;
|
|
188
|
+
offset = (Val >> 5) & 0x7f;
|
|
189
|
+
mode = (Val >> 1) & 0xf;
|
|
190
|
+
unit = Val & 1;
|
|
191
|
+
|
|
192
|
+
if (scaled) {
|
|
193
|
+
st = '[';
|
|
194
|
+
nd = ']';
|
|
195
|
+
} else {
|
|
196
|
+
st = '(';
|
|
197
|
+
nd = ')';
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
switch(mode) {
|
|
201
|
+
case 0:
|
|
202
|
+
SStream_concat(O, "*-%s%c%u%c", getRegisterName(base), st, offset, nd);
|
|
203
|
+
break;
|
|
204
|
+
case 1:
|
|
205
|
+
SStream_concat(O, "*+%s%c%u%c", getRegisterName(base), st, offset, nd);
|
|
206
|
+
break;
|
|
207
|
+
case 4:
|
|
208
|
+
SStream_concat(O, "*-%s%c%s%c", getRegisterName(base), st, getRegisterName(offset), nd);
|
|
209
|
+
break;
|
|
210
|
+
case 5:
|
|
211
|
+
SStream_concat(O, "*+%s%c%s%c", getRegisterName(base), st, getRegisterName(offset), nd);
|
|
212
|
+
break;
|
|
213
|
+
case 8:
|
|
214
|
+
SStream_concat(O, "*--%s%c%u%c", getRegisterName(base), st, offset, nd);
|
|
215
|
+
break;
|
|
216
|
+
case 9:
|
|
217
|
+
SStream_concat(O, "*++%s%c%u%c", getRegisterName(base), st, offset, nd);
|
|
218
|
+
break;
|
|
219
|
+
case 10:
|
|
220
|
+
SStream_concat(O, "*%s--%c%u%c", getRegisterName(base), st, offset, nd);
|
|
221
|
+
break;
|
|
222
|
+
case 11:
|
|
223
|
+
SStream_concat(O, "*%s++%c%u%c", getRegisterName(base), st, offset, nd);
|
|
224
|
+
break;
|
|
225
|
+
case 12:
|
|
226
|
+
SStream_concat(O, "*--%s%c%s%c", getRegisterName(base), st, getRegisterName(offset), nd);
|
|
227
|
+
break;
|
|
228
|
+
case 13:
|
|
229
|
+
SStream_concat(O, "*++%s%c%s%c", getRegisterName(base), st, getRegisterName(offset), nd);
|
|
230
|
+
break;
|
|
231
|
+
case 14:
|
|
232
|
+
SStream_concat(O, "*%s--%c%s%c", getRegisterName(base), st, getRegisterName(offset), nd);
|
|
233
|
+
break;
|
|
234
|
+
case 15:
|
|
235
|
+
SStream_concat(O, "*%s++%c%s%c", getRegisterName(base), st, getRegisterName(offset), nd);
|
|
236
|
+
break;
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
if (MI->csh->detail) {
|
|
240
|
+
tms320c64x = &MI->flat_insn->detail->tms320c64x;
|
|
241
|
+
|
|
242
|
+
tms320c64x->operands[tms320c64x->op_count].type = TMS320C64X_OP_MEM;
|
|
243
|
+
tms320c64x->operands[tms320c64x->op_count].mem.base = base;
|
|
244
|
+
tms320c64x->operands[tms320c64x->op_count].mem.disp = offset;
|
|
245
|
+
tms320c64x->operands[tms320c64x->op_count].mem.unit = unit + 1;
|
|
246
|
+
tms320c64x->operands[tms320c64x->op_count].mem.scaled = scaled;
|
|
247
|
+
switch(mode) {
|
|
248
|
+
case 0:
|
|
249
|
+
tms320c64x->operands[tms320c64x->op_count].mem.disptype = TMS320C64X_MEM_DISP_CONSTANT;
|
|
250
|
+
tms320c64x->operands[tms320c64x->op_count].mem.direction = TMS320C64X_MEM_DIR_BW;
|
|
251
|
+
tms320c64x->operands[tms320c64x->op_count].mem.modify = TMS320C64X_MEM_MOD_NO;
|
|
252
|
+
break;
|
|
253
|
+
case 1:
|
|
254
|
+
tms320c64x->operands[tms320c64x->op_count].mem.disptype = TMS320C64X_MEM_DISP_CONSTANT;
|
|
255
|
+
tms320c64x->operands[tms320c64x->op_count].mem.direction = TMS320C64X_MEM_DIR_FW;
|
|
256
|
+
tms320c64x->operands[tms320c64x->op_count].mem.modify = TMS320C64X_MEM_MOD_NO;
|
|
257
|
+
break;
|
|
258
|
+
case 4:
|
|
259
|
+
tms320c64x->operands[tms320c64x->op_count].mem.disptype = TMS320C64X_MEM_DISP_REGISTER;
|
|
260
|
+
tms320c64x->operands[tms320c64x->op_count].mem.direction = TMS320C64X_MEM_DIR_BW;
|
|
261
|
+
tms320c64x->operands[tms320c64x->op_count].mem.modify = TMS320C64X_MEM_MOD_NO;
|
|
262
|
+
break;
|
|
263
|
+
case 5:
|
|
264
|
+
tms320c64x->operands[tms320c64x->op_count].mem.disptype = TMS320C64X_MEM_DISP_REGISTER;
|
|
265
|
+
tms320c64x->operands[tms320c64x->op_count].mem.direction = TMS320C64X_MEM_DIR_FW;
|
|
266
|
+
tms320c64x->operands[tms320c64x->op_count].mem.modify = TMS320C64X_MEM_MOD_NO;
|
|
267
|
+
break;
|
|
268
|
+
case 8:
|
|
269
|
+
tms320c64x->operands[tms320c64x->op_count].mem.disptype = TMS320C64X_MEM_DISP_CONSTANT;
|
|
270
|
+
tms320c64x->operands[tms320c64x->op_count].mem.direction = TMS320C64X_MEM_DIR_BW;
|
|
271
|
+
tms320c64x->operands[tms320c64x->op_count].mem.modify = TMS320C64X_MEM_MOD_PRE;
|
|
272
|
+
break;
|
|
273
|
+
case 9:
|
|
274
|
+
tms320c64x->operands[tms320c64x->op_count].mem.disptype = TMS320C64X_MEM_DISP_CONSTANT;
|
|
275
|
+
tms320c64x->operands[tms320c64x->op_count].mem.direction = TMS320C64X_MEM_DIR_FW;
|
|
276
|
+
tms320c64x->operands[tms320c64x->op_count].mem.modify = TMS320C64X_MEM_MOD_PRE;
|
|
277
|
+
break;
|
|
278
|
+
case 10:
|
|
279
|
+
tms320c64x->operands[tms320c64x->op_count].mem.disptype = TMS320C64X_MEM_DISP_CONSTANT;
|
|
280
|
+
tms320c64x->operands[tms320c64x->op_count].mem.direction = TMS320C64X_MEM_DIR_BW;
|
|
281
|
+
tms320c64x->operands[tms320c64x->op_count].mem.modify = TMS320C64X_MEM_MOD_POST;
|
|
282
|
+
break;
|
|
283
|
+
case 11:
|
|
284
|
+
tms320c64x->operands[tms320c64x->op_count].mem.disptype = TMS320C64X_MEM_DISP_CONSTANT;
|
|
285
|
+
tms320c64x->operands[tms320c64x->op_count].mem.direction = TMS320C64X_MEM_DIR_FW;
|
|
286
|
+
tms320c64x->operands[tms320c64x->op_count].mem.modify = TMS320C64X_MEM_MOD_POST;
|
|
287
|
+
break;
|
|
288
|
+
case 12:
|
|
289
|
+
tms320c64x->operands[tms320c64x->op_count].mem.disptype = TMS320C64X_MEM_DISP_REGISTER;
|
|
290
|
+
tms320c64x->operands[tms320c64x->op_count].mem.direction = TMS320C64X_MEM_DIR_BW;
|
|
291
|
+
tms320c64x->operands[tms320c64x->op_count].mem.modify = TMS320C64X_MEM_MOD_PRE;
|
|
292
|
+
break;
|
|
293
|
+
case 13:
|
|
294
|
+
tms320c64x->operands[tms320c64x->op_count].mem.disptype = TMS320C64X_MEM_DISP_REGISTER;
|
|
295
|
+
tms320c64x->operands[tms320c64x->op_count].mem.direction = TMS320C64X_MEM_DIR_FW;
|
|
296
|
+
tms320c64x->operands[tms320c64x->op_count].mem.modify = TMS320C64X_MEM_MOD_PRE;
|
|
297
|
+
break;
|
|
298
|
+
case 14:
|
|
299
|
+
tms320c64x->operands[tms320c64x->op_count].mem.disptype = TMS320C64X_MEM_DISP_REGISTER;
|
|
300
|
+
tms320c64x->operands[tms320c64x->op_count].mem.direction = TMS320C64X_MEM_DIR_BW;
|
|
301
|
+
tms320c64x->operands[tms320c64x->op_count].mem.modify = TMS320C64X_MEM_MOD_POST;
|
|
302
|
+
break;
|
|
303
|
+
case 15:
|
|
304
|
+
tms320c64x->operands[tms320c64x->op_count].mem.disptype = TMS320C64X_MEM_DISP_REGISTER;
|
|
305
|
+
tms320c64x->operands[tms320c64x->op_count].mem.direction = TMS320C64X_MEM_DIR_FW;
|
|
306
|
+
tms320c64x->operands[tms320c64x->op_count].mem.modify = TMS320C64X_MEM_MOD_POST;
|
|
307
|
+
break;
|
|
308
|
+
}
|
|
309
|
+
tms320c64x->op_count++;
|
|
310
|
+
}
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
static void printMemOperand2(MCInst *MI, unsigned OpNo, SStream *O)
|
|
314
|
+
{
|
|
315
|
+
MCOperand *Op = MCInst_getOperand(MI, OpNo);
|
|
316
|
+
int64_t Val = MCOperand_getImm(Op);
|
|
317
|
+
uint16_t offset;
|
|
318
|
+
unsigned basereg;
|
|
319
|
+
cs_tms320c64x *tms320c64x;
|
|
320
|
+
|
|
321
|
+
basereg = Val & 0x7f;
|
|
322
|
+
offset = (Val >> 7) & 0x7fff;
|
|
323
|
+
SStream_concat(O, "*+%s[0x%x]", getRegisterName(basereg), offset);
|
|
324
|
+
|
|
325
|
+
if (MI->csh->detail) {
|
|
326
|
+
tms320c64x = &MI->flat_insn->detail->tms320c64x;
|
|
327
|
+
|
|
328
|
+
tms320c64x->operands[tms320c64x->op_count].type = TMS320C64X_OP_MEM;
|
|
329
|
+
tms320c64x->operands[tms320c64x->op_count].mem.base = basereg;
|
|
330
|
+
tms320c64x->operands[tms320c64x->op_count].mem.unit = 2;
|
|
331
|
+
tms320c64x->operands[tms320c64x->op_count].mem.disp = offset;
|
|
332
|
+
tms320c64x->operands[tms320c64x->op_count].mem.disptype = TMS320C64X_MEM_DISP_CONSTANT;
|
|
333
|
+
tms320c64x->operands[tms320c64x->op_count].mem.direction = TMS320C64X_MEM_DIR_FW;
|
|
334
|
+
tms320c64x->operands[tms320c64x->op_count].mem.modify = TMS320C64X_MEM_MOD_NO;
|
|
335
|
+
tms320c64x->op_count++;
|
|
336
|
+
}
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
static void printRegPair(MCInst *MI, unsigned OpNo, SStream *O)
|
|
340
|
+
{
|
|
341
|
+
MCOperand *Op = MCInst_getOperand(MI, OpNo);
|
|
342
|
+
unsigned reg = MCOperand_getReg(Op);
|
|
343
|
+
cs_tms320c64x *tms320c64x;
|
|
344
|
+
|
|
345
|
+
SStream_concat(O, "%s:%s", getRegisterName(reg + 1), getRegisterName(reg));
|
|
346
|
+
|
|
347
|
+
if (MI->csh->detail) {
|
|
348
|
+
tms320c64x = &MI->flat_insn->detail->tms320c64x;
|
|
349
|
+
|
|
350
|
+
tms320c64x->operands[tms320c64x->op_count].type = TMS320C64X_OP_REGPAIR;
|
|
351
|
+
tms320c64x->operands[tms320c64x->op_count].reg = reg;
|
|
352
|
+
tms320c64x->op_count++;
|
|
353
|
+
}
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
static bool printAliasInstruction(MCInst *MI, SStream *O, MCRegisterInfo *MRI)
|
|
357
|
+
{
|
|
358
|
+
unsigned opcode = MCInst_getOpcode(MI);
|
|
359
|
+
MCOperand *op;
|
|
360
|
+
|
|
361
|
+
switch(opcode) {
|
|
362
|
+
/* ADD.Dx -i, x, y -> SUB.Dx x, i, y */
|
|
363
|
+
case TMS320C64x_ADD_d2_rir:
|
|
364
|
+
/* ADD.L -i, x, y -> SUB.L x, i, y */
|
|
365
|
+
case TMS320C64x_ADD_l1_irr:
|
|
366
|
+
case TMS320C64x_ADD_l1_ipp:
|
|
367
|
+
/* ADD.S -i, x, y -> SUB.S x, i, y */
|
|
368
|
+
case TMS320C64x_ADD_s1_irr:
|
|
369
|
+
if ((MCInst_getNumOperands(MI) == 3) &&
|
|
370
|
+
MCOperand_isReg(MCInst_getOperand(MI, 0)) &&
|
|
371
|
+
MCOperand_isReg(MCInst_getOperand(MI, 1)) &&
|
|
372
|
+
MCOperand_isImm(MCInst_getOperand(MI, 2)) &&
|
|
373
|
+
(MCOperand_getImm(MCInst_getOperand(MI, 2)) < 0)) {
|
|
374
|
+
|
|
375
|
+
MCInst_setOpcodePub(MI, TMS320C64X_INS_SUB);
|
|
376
|
+
op = MCInst_getOperand(MI, 2);
|
|
377
|
+
MCOperand_setImm(op, -MCOperand_getImm(op));
|
|
378
|
+
|
|
379
|
+
SStream_concat0(O, "SUB\t");
|
|
380
|
+
printOperand(MI, 1, O);
|
|
381
|
+
SStream_concat0(O, ", ");
|
|
382
|
+
printOperand(MI, 2, O);
|
|
383
|
+
SStream_concat0(O, ", ");
|
|
384
|
+
printOperand(MI, 0, O);
|
|
385
|
+
|
|
386
|
+
return true;
|
|
387
|
+
}
|
|
388
|
+
break;
|
|
389
|
+
}
|
|
390
|
+
switch(opcode) {
|
|
391
|
+
/* ADD.D 0, x, y -> MV.D x, y */
|
|
392
|
+
case TMS320C64x_ADD_d1_rir:
|
|
393
|
+
/* OR.D x, 0, y -> MV.D x, y */
|
|
394
|
+
case TMS320C64x_OR_d2_rir:
|
|
395
|
+
/* ADD.L 0, x, y -> MV.L x, y */
|
|
396
|
+
case TMS320C64x_ADD_l1_irr:
|
|
397
|
+
case TMS320C64x_ADD_l1_ipp:
|
|
398
|
+
/* OR.L 0, x, y -> MV.L x, y */
|
|
399
|
+
case TMS320C64x_OR_l1_irr:
|
|
400
|
+
/* ADD.S 0, x, y -> MV.S x, y */
|
|
401
|
+
case TMS320C64x_ADD_s1_irr:
|
|
402
|
+
/* OR.S 0, x, y -> MV.S x, y */
|
|
403
|
+
case TMS320C64x_OR_s1_irr:
|
|
404
|
+
if ((MCInst_getNumOperands(MI) == 3) &&
|
|
405
|
+
MCOperand_isReg(MCInst_getOperand(MI, 0)) &&
|
|
406
|
+
MCOperand_isReg(MCInst_getOperand(MI, 1)) &&
|
|
407
|
+
MCOperand_isImm(MCInst_getOperand(MI, 2)) &&
|
|
408
|
+
(MCOperand_getImm(MCInst_getOperand(MI, 2)) == 0)) {
|
|
409
|
+
|
|
410
|
+
MCInst_setOpcodePub(MI, TMS320C64X_INS_MV);
|
|
411
|
+
MI->size--;
|
|
412
|
+
|
|
413
|
+
SStream_concat0(O, "MV\t");
|
|
414
|
+
printOperand(MI, 1, O);
|
|
415
|
+
SStream_concat0(O, ", ");
|
|
416
|
+
printOperand(MI, 0, O);
|
|
417
|
+
|
|
418
|
+
return true;
|
|
419
|
+
}
|
|
420
|
+
break;
|
|
421
|
+
}
|
|
422
|
+
switch(opcode) {
|
|
423
|
+
/* XOR.D -1, x, y -> NOT.D x, y */
|
|
424
|
+
case TMS320C64x_XOR_d2_rir:
|
|
425
|
+
/* XOR.L -1, x, y -> NOT.L x, y */
|
|
426
|
+
case TMS320C64x_XOR_l1_irr:
|
|
427
|
+
/* XOR.S -1, x, y -> NOT.S x, y */
|
|
428
|
+
case TMS320C64x_XOR_s1_irr:
|
|
429
|
+
if ((MCInst_getNumOperands(MI) == 3) &&
|
|
430
|
+
MCOperand_isReg(MCInst_getOperand(MI, 0)) &&
|
|
431
|
+
MCOperand_isReg(MCInst_getOperand(MI, 1)) &&
|
|
432
|
+
MCOperand_isImm(MCInst_getOperand(MI, 2)) &&
|
|
433
|
+
(MCOperand_getImm(MCInst_getOperand(MI, 2)) == -1)) {
|
|
434
|
+
|
|
435
|
+
MCInst_setOpcodePub(MI, TMS320C64X_INS_NOT);
|
|
436
|
+
MI->size--;
|
|
437
|
+
|
|
438
|
+
SStream_concat0(O, "NOT\t");
|
|
439
|
+
printOperand(MI, 1, O);
|
|
440
|
+
SStream_concat0(O, ", ");
|
|
441
|
+
printOperand(MI, 0, O);
|
|
442
|
+
|
|
443
|
+
return true;
|
|
444
|
+
}
|
|
445
|
+
break;
|
|
446
|
+
}
|
|
447
|
+
switch(opcode) {
|
|
448
|
+
/* MVK.D 0, x -> ZERO.D x */
|
|
449
|
+
case TMS320C64x_MVK_d1_rr:
|
|
450
|
+
/* MVK.L 0, x -> ZERO.L x */
|
|
451
|
+
case TMS320C64x_MVK_l2_ir:
|
|
452
|
+
if ((MCInst_getNumOperands(MI) == 2) &&
|
|
453
|
+
MCOperand_isReg(MCInst_getOperand(MI, 0)) &&
|
|
454
|
+
MCOperand_isImm(MCInst_getOperand(MI, 1)) &&
|
|
455
|
+
(MCOperand_getImm(MCInst_getOperand(MI, 1)) == 0)) {
|
|
456
|
+
|
|
457
|
+
MCInst_setOpcodePub(MI, TMS320C64X_INS_ZERO);
|
|
458
|
+
MI->size--;
|
|
459
|
+
|
|
460
|
+
SStream_concat0(O, "ZERO\t");
|
|
461
|
+
printOperand(MI, 0, O);
|
|
462
|
+
|
|
463
|
+
return true;
|
|
464
|
+
}
|
|
465
|
+
break;
|
|
466
|
+
}
|
|
467
|
+
switch(opcode) {
|
|
468
|
+
/* SUB.L x, x, y -> ZERO.L y */
|
|
469
|
+
case TMS320C64x_SUB_l1_rrp_x1:
|
|
470
|
+
/* SUB.S x, x, y -> ZERO.S y */
|
|
471
|
+
case TMS320C64x_SUB_s1_rrr:
|
|
472
|
+
if ((MCInst_getNumOperands(MI) == 3) &&
|
|
473
|
+
MCOperand_isReg(MCInst_getOperand(MI, 0)) &&
|
|
474
|
+
MCOperand_isReg(MCInst_getOperand(MI, 1)) &&
|
|
475
|
+
MCOperand_isReg(MCInst_getOperand(MI, 2)) &&
|
|
476
|
+
(MCOperand_getReg(MCInst_getOperand(MI, 1)) == MCOperand_getReg(MCInst_getOperand(MI, 2)))) {
|
|
477
|
+
|
|
478
|
+
MCInst_setOpcodePub(MI, TMS320C64X_INS_ZERO);
|
|
479
|
+
MI->size -= 2;
|
|
480
|
+
|
|
481
|
+
SStream_concat0(O, "ZERO\t");
|
|
482
|
+
printOperand(MI, 0, O);
|
|
483
|
+
|
|
484
|
+
return true;
|
|
485
|
+
}
|
|
486
|
+
break;
|
|
487
|
+
}
|
|
488
|
+
switch(opcode) {
|
|
489
|
+
/* SUB.L 0, x, y -> NEG.L x, y */
|
|
490
|
+
case TMS320C64x_SUB_l1_irr:
|
|
491
|
+
case TMS320C64x_SUB_l1_ipp:
|
|
492
|
+
/* SUB.S 0, x, y -> NEG.S x, y */
|
|
493
|
+
case TMS320C64x_SUB_s1_irr:
|
|
494
|
+
if ((MCInst_getNumOperands(MI) == 3) &&
|
|
495
|
+
MCOperand_isReg(MCInst_getOperand(MI, 0)) &&
|
|
496
|
+
MCOperand_isReg(MCInst_getOperand(MI, 1)) &&
|
|
497
|
+
MCOperand_isImm(MCInst_getOperand(MI, 2)) &&
|
|
498
|
+
(MCOperand_getImm(MCInst_getOperand(MI, 2)) == 0)) {
|
|
499
|
+
|
|
500
|
+
MCInst_setOpcodePub(MI, TMS320C64X_INS_NEG);
|
|
501
|
+
MI->size--;
|
|
502
|
+
|
|
503
|
+
SStream_concat0(O, "NEG\t");
|
|
504
|
+
printOperand(MI, 1, O);
|
|
505
|
+
SStream_concat0(O, ", ");
|
|
506
|
+
printOperand(MI, 0, O);
|
|
507
|
+
|
|
508
|
+
return true;
|
|
509
|
+
}
|
|
510
|
+
break;
|
|
511
|
+
}
|
|
512
|
+
switch(opcode) {
|
|
513
|
+
/* PACKLH2.L x, x, y -> SWAP2.L x, y */
|
|
514
|
+
case TMS320C64x_PACKLH2_l1_rrr_x2:
|
|
515
|
+
/* PACKLH2.S x, x, y -> SWAP2.S x, y */
|
|
516
|
+
case TMS320C64x_PACKLH2_s1_rrr:
|
|
517
|
+
if ((MCInst_getNumOperands(MI) == 3) &&
|
|
518
|
+
MCOperand_isReg(MCInst_getOperand(MI, 0)) &&
|
|
519
|
+
MCOperand_isReg(MCInst_getOperand(MI, 1)) &&
|
|
520
|
+
MCOperand_isReg(MCInst_getOperand(MI, 2)) &&
|
|
521
|
+
(MCOperand_getReg(MCInst_getOperand(MI, 1)) == MCOperand_getReg(MCInst_getOperand(MI, 2)))) {
|
|
522
|
+
|
|
523
|
+
MCInst_setOpcodePub(MI, TMS320C64X_INS_SWAP2);
|
|
524
|
+
MI->size--;
|
|
525
|
+
|
|
526
|
+
SStream_concat0(O, "SWAP2\t");
|
|
527
|
+
printOperand(MI, 1, O);
|
|
528
|
+
SStream_concat0(O, ", ");
|
|
529
|
+
printOperand(MI, 0, O);
|
|
530
|
+
|
|
531
|
+
return true;
|
|
532
|
+
}
|
|
533
|
+
break;
|
|
534
|
+
}
|
|
535
|
+
switch(opcode) {
|
|
536
|
+
/* NOP 16 -> IDLE */
|
|
537
|
+
/* NOP 1 -> NOP */
|
|
538
|
+
case TMS320C64x_NOP_n:
|
|
539
|
+
if ((MCInst_getNumOperands(MI) == 1) &&
|
|
540
|
+
MCOperand_isImm(MCInst_getOperand(MI, 0)) &&
|
|
541
|
+
(MCOperand_getReg(MCInst_getOperand(MI, 0)) == 16)) {
|
|
542
|
+
|
|
543
|
+
MCInst_setOpcodePub(MI, TMS320C64X_INS_IDLE);
|
|
544
|
+
MI->size--;
|
|
545
|
+
|
|
546
|
+
SStream_concat0(O, "IDLE");
|
|
547
|
+
|
|
548
|
+
return true;
|
|
549
|
+
}
|
|
550
|
+
if ((MCInst_getNumOperands(MI) == 1) &&
|
|
551
|
+
MCOperand_isImm(MCInst_getOperand(MI, 0)) &&
|
|
552
|
+
(MCOperand_getReg(MCInst_getOperand(MI, 0)) == 1)) {
|
|
553
|
+
|
|
554
|
+
MI->size--;
|
|
555
|
+
|
|
556
|
+
SStream_concat0(O, "NOP");
|
|
557
|
+
|
|
558
|
+
return true;
|
|
559
|
+
}
|
|
560
|
+
break;
|
|
561
|
+
}
|
|
562
|
+
|
|
563
|
+
return false;
|
|
564
|
+
}
|
|
565
|
+
|
|
566
|
+
void TMS320C64x_printInst(MCInst *MI, SStream *O, void *Info)
|
|
567
|
+
{
|
|
568
|
+
if (!printAliasInstruction(MI, O, Info))
|
|
569
|
+
printInstruction(MI, O, Info);
|
|
570
|
+
}
|
|
571
|
+
|
|
572
|
+
#endif
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/* Capstone Disassembly Engine */
|
|
2
|
+
/* TMS320C64x Backend by Fotis Loukos <me@fotisl.com> 2016 */
|
|
3
|
+
|
|
4
|
+
#ifndef CS_TMS320C64XINSTPRINTER_H
|
|
5
|
+
#define CS_TMS320C64XINSTPRINTER_H
|
|
6
|
+
|
|
7
|
+
#include "../../MCInst.h"
|
|
8
|
+
#include "../../MCRegisterInfo.h"
|
|
9
|
+
#include "../../SStream.h"
|
|
10
|
+
|
|
11
|
+
void TMS320C64x_printInst(MCInst *MI, SStream *O, void *Info);
|
|
12
|
+
|
|
13
|
+
void TMS320C64x_post_printer(csh ud, cs_insn *insn, char *insn_asm, MCInst *mci);
|
|
14
|
+
|
|
15
|
+
#endif
|