Path: blob/master/libs/capstone/arch/AArch64/AArch64InstPrinter.h
4389 views
//===-- AArch64InstPrinter.h - Convert AArch64 MCInst to assembly syntax --===//1//2// The LLVM Compiler Infrastructure3//4// This file is distributed under the University of Illinois Open Source5// License. See LICENSE.TXT for details.6//7//===----------------------------------------------------------------------===//8//9// This class prints an AArch64 MCInst to a .s file.10//11//===----------------------------------------------------------------------===//1213/* Capstone Disassembly Engine */14/* By Nguyen Anh Quynh <[email protected]>, 2013-2019 */1516#ifndef CS_LLVM_AARCH64INSTPRINTER_H17#define CS_LLVM_AARCH64INSTPRINTER_H1819#include "../../MCInst.h"20#include "../../MCRegisterInfo.h"21#include "../../SStream.h"2223void AArch64_printInst(MCInst *MI, SStream *O, void *);2425void AArch64_post_printer(csh handle, cs_insn *pub_insn, char *insn_asm, MCInst *mci);2627#endif282930