1 //===-- AArch64InstPrinter.h - Convert AArch64 MCInst to assembly syntax --===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 // 10 // This class prints an AArch64 MCInst to a .s file. 11 // 12 //===----------------------------------------------------------------------===// 13 14 /* Capstone Disassembly Engine */ 15 /* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013-2014 */ 16 17 #ifndef CS_LLVM_AARCH64INSTPRINTER_H 18 #define CS_LLVM_AARCH64INSTPRINTER_H 19 20 #include "../../MCInst.h" 21 #include "../../MCRegisterInfo.h" 22 #include "../../SStream.h" 23 24 void AArch64_printInst(MCInst *MI, SStream *O, void *); 25 26 void AArch64_post_printer(csh handle, cs_insn *pub_insn, char *insn_asm, MCInst *mci); 27 28 #endif 29