blob: 88b02bbc2a00030c9b6dfca22f15e0c5a2505cc6 [file] [log] [blame]
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +08001//===-- 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
Nguyen Anh Quynhf721e312014-05-27 10:45:58 +080014/* Capstone Disassembly Engine */
Nguyen Anh Quynhbfcaba52015-03-04 17:45:23 +080015/* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013-2015 */
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080016
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
24void AArch64_printInst(MCInst *MI, SStream *O, void *);
25
Nguyen Anh Quynh64564812014-05-19 16:46:31 +080026void AArch64_post_printer(csh handle, cs_insn *pub_insn, char *insn_asm, MCInst *mci);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080027
28#endif