blob: befb5e9b0106cdf3247131c7eb14f19d68fc3d7f [file] [log] [blame]
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +08001//===-- llvm/MC/MCInst.h - MCInst class -------------------------*- C++ -*-===//
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 file contains the declaration of the MCInst and MCOperand classes, which
11// is the basic representation used to represent low-level machine code
12// instructions.
13//
14//===----------------------------------------------------------------------===//
15
Nguyen Anh Quynh6023ef72014-04-29 11:21:04 +080016/* Capstone Disassembly Engine */
Nguyen Anh Quynhbfcaba52015-03-04 17:45:23 +080017/* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013-2015 */
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080018
Nguyen Anh Quynhae3649f2014-01-02 13:15:07 +080019#ifndef CS_MCINST_H
20#define CS_MCINST_H
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080021
pancake9c10ace2015-02-24 04:55:55 +010022#include "include/capstone/capstone.h"
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080023
24typedef struct MCInst MCInst;
Nguyen Anh Quynh42c6b1a2013-12-30 00:15:25 +080025typedef struct cs_struct cs_struct;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080026typedef struct MCOperand MCOperand;
27
28/// MCOperand - Instances of this class represent operands of the MCInst class.
29/// This is a simple discriminated union.
30struct MCOperand {
31 enum {
32 kInvalid = 0, ///< Uninitialized.
33 kRegister, ///< Register operand.
34 kImmediate, ///< Immediate operand.
35 kFPImmediate, ///< Floating-point immediate operand.
36 } MachineOperandType;
37 unsigned char Kind;
38
39 union {
40 unsigned RegVal;
41 int64_t ImmVal;
42 double FPImmVal;
43 };
44};
45
46bool MCOperand_isValid(const MCOperand *op);
47
48bool MCOperand_isReg(const MCOperand *op);
49
50bool MCOperand_isImm(const MCOperand *op);
51
52bool MCOperand_isFPImm(const MCOperand *op);
53
54bool MCOperand_isInst(const MCOperand *op);
55
56void MCInst_clear(MCInst *m);
57
58/// getReg - Returns the register number.
59unsigned MCOperand_getReg(const MCOperand *op);
60
61/// setReg - Set the register number.
62void MCOperand_setReg(MCOperand *op, unsigned Reg);
63
64int64_t MCOperand_getImm(MCOperand *op);
65
66void MCOperand_setImm(MCOperand *op, int64_t Val);
67
68double MCOperand_getFPImm(const MCOperand *op);
69
70void MCOperand_setFPImm(MCOperand *op, double Val);
71
72const MCInst *MCOperand_getInst(const MCOperand *op);
73
74void MCOperand_setInst(MCOperand *op, const MCInst *Val);
75
Nguyen Anh Quynh0f648ea2014-06-10 01:01:23 +070076// create Reg operand in the next slot
Nguyen Anh Quynhcf081382014-06-06 00:56:46 +080077void MCOperand_CreateReg0(MCInst *inst, unsigned Reg);
Nguyen Anh Quynh937e4832014-06-04 22:51:51 +070078
Nguyen Anh Quynh0f648ea2014-06-10 01:01:23 +070079// create Reg operand use the last-unused slot
80MCOperand *MCOperand_CreateReg1(MCInst *inst, unsigned Reg);
81
82// create Imm operand in the next slot
Nguyen Anh Quynhcf081382014-06-06 00:56:46 +080083void MCOperand_CreateImm0(MCInst *inst, int64_t Val);
Nguyen Anh Quynh937e4832014-06-04 22:51:51 +070084
Nguyen Anh Quynh0f648ea2014-06-10 01:01:23 +070085// create Imm operand in the last-unused slot
86MCOperand *MCOperand_CreateImm1(MCInst *inst, int64_t Val);
87
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080088/// MCInst - Instances of this class represent a single low-level machine
89/// instruction.
90struct MCInst {
Nguyen Anh Quynh495295e2014-06-16 15:54:32 +080091 unsigned OpcodePub;
Nguyen Anh Quynhff7bba32014-11-03 16:32:06 +080092 uint8_t size; // number of operands
93 bool has_imm; // indicate this instruction has an X86_OP_IMM operand - used for ATT syntax
94 uint8_t op1_size; // size of 1st operand - for X86 Intel syntax
Nguyen Anh Quynhf1ec5262014-06-25 22:03:18 +080095 unsigned Opcode;
96 MCOperand Operands[48];
Nguyen Anh Quynh5329a6f2014-06-08 23:35:52 +070097 cs_insn *flat_insn; // insn to be exposed to public
Nguyen Anh Quynha209e672013-12-14 00:23:41 +080098 uint64_t address; // address of this insn
Nguyen Anh Quynh42c6b1a2013-12-30 00:15:25 +080099 cs_struct *csh; // save the main csh
Nguyen Anh Quynh10850732014-06-18 12:16:24 +0800100 uint8_t x86opsize; // opsize for [mem] operand
Nguyen Anh Quynha5ffdc32014-05-07 08:25:24 +0800101
Nguyen Anh Quynh10850732014-06-18 12:16:24 +0800102 // (Optional) instruction prefix, which can be up to 4 bytes.
Nguyen Anh Quynha5ffdc32014-05-07 08:25:24 +0800103 // A prefix byte gets value 0 when irrelevant.
104 // This is copied from cs_x86 struct
Nguyen Anh Quynh46b66932014-06-04 19:04:46 +0800105 uint8_t x86_prefix[4];
Nguyen Anh Quynhf1ec5262014-06-25 22:03:18 +0800106 uint8_t imm_size; // immediate size for X86_OP_IMM operand
Nguyen Anh Quynhe19490e2015-01-21 12:15:14 +0800107 bool writeback; // writeback for ARM
Nguyen Anh Quynh29f777b2015-04-07 11:59:26 +0800108 // operand access index for list of registers sharing the same access right (for ARM)
109 uint8_t ac_idx;
Nguyen Anh Quynhdabc9f22016-07-15 20:37:19 +0800110 uint8_t popcode_adjust; // Pseudo X86 instruction adjust
Nguyen Anh Quynh64328e32017-05-07 11:17:23 +0800111 char assembly[8]; // for special instruction, so that we dont need printer
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800112};
113
Nguyen Anh Quynh495295e2014-06-16 15:54:32 +0800114void MCInst_Init(MCInst *inst);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800115
116void MCInst_clear(MCInst *inst);
117
Nguyen Anh Quynh0f648ea2014-06-10 01:01:23 +0700118// do not free operand after inserting
119void MCInst_insert0(MCInst *inst, int index, MCOperand *Op);
120
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800121void MCInst_setOpcode(MCInst *inst, unsigned Op);
122
123unsigned MCInst_getOpcode(const MCInst*);
124
Nguyen Anh Quynh6b7abe32013-11-30 00:54:24 +0800125void MCInst_setOpcodePub(MCInst *inst, unsigned Op);
126
127unsigned MCInst_getOpcodePub(const MCInst*);
128
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800129MCOperand *MCInst_getOperand(MCInst *inst, unsigned i);
130
131unsigned MCInst_getNumOperands(const MCInst *inst);
132
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800133// This addOperand2 function doesnt free Op
Nguyen Anh Quynh264ca372014-06-16 14:52:09 +0800134void MCInst_addOperand2(MCInst *inst, MCOperand *Op);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800135
136#endif