blob: 0cea40bca106b41426e4fe3a69cb82d104201e80 [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 */
17/* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013-2014 */
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
22#include <stdint.h>
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080023
24#include "include/capstone.h"
25
26typedef struct MCInst MCInst;
Nguyen Anh Quynh42c6b1a2013-12-30 00:15:25 +080027typedef struct cs_struct cs_struct;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080028typedef struct MCOperand MCOperand;
29
30/// MCOperand - Instances of this class represent operands of the MCInst class.
31/// This is a simple discriminated union.
32struct MCOperand {
33 enum {
34 kInvalid = 0, ///< Uninitialized.
35 kRegister, ///< Register operand.
36 kImmediate, ///< Immediate operand.
37 kFPImmediate, ///< Floating-point immediate operand.
38 } MachineOperandType;
39 unsigned char Kind;
40
41 union {
42 unsigned RegVal;
43 int64_t ImmVal;
44 double FPImmVal;
45 };
46};
47
48bool MCOperand_isValid(const MCOperand *op);
49
50bool MCOperand_isReg(const MCOperand *op);
51
52bool MCOperand_isImm(const MCOperand *op);
53
54bool MCOperand_isFPImm(const MCOperand *op);
55
56bool MCOperand_isInst(const MCOperand *op);
57
58void MCInst_clear(MCInst *m);
59
60/// getReg - Returns the register number.
61unsigned MCOperand_getReg(const MCOperand *op);
62
63/// setReg - Set the register number.
64void MCOperand_setReg(MCOperand *op, unsigned Reg);
65
66int64_t MCOperand_getImm(MCOperand *op);
67
68void MCOperand_setImm(MCOperand *op, int64_t Val);
69
70double MCOperand_getFPImm(const MCOperand *op);
71
72void MCOperand_setFPImm(MCOperand *op, double Val);
73
74const MCInst *MCOperand_getInst(const MCOperand *op);
75
76void MCOperand_setInst(MCOperand *op, const MCInst *Val);
77
Nguyen Anh Quynh0f648ea2014-06-10 01:01:23 +070078// create Reg operand in the next slot
Nguyen Anh Quynhcf081382014-06-06 00:56:46 +080079void MCOperand_CreateReg0(MCInst *inst, unsigned Reg);
Nguyen Anh Quynh937e4832014-06-04 22:51:51 +070080
Nguyen Anh Quynh0f648ea2014-06-10 01:01:23 +070081// create Reg operand use the last-unused slot
82MCOperand *MCOperand_CreateReg1(MCInst *inst, unsigned Reg);
83
84// create Imm operand in the next slot
Nguyen Anh Quynhcf081382014-06-06 00:56:46 +080085void MCOperand_CreateImm0(MCInst *inst, int64_t Val);
Nguyen Anh Quynh937e4832014-06-04 22:51:51 +070086
Nguyen Anh Quynh0f648ea2014-06-10 01:01:23 +070087// create Imm operand in the last-unused slot
88MCOperand *MCOperand_CreateImm1(MCInst *inst, int64_t Val);
89
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080090/// MCInst - Instances of this class represent a single low-level machine
91/// instruction.
92struct MCInst {
Nguyen Anh Quynh495295e2014-06-16 15:54:32 +080093 unsigned OpcodePub;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080094 unsigned size; // number of operands
Nguyen Anh Quynhf1ec5262014-06-25 22:03:18 +080095 int has_imm; // indicate this instruction has an X86_OP_IMM operand - used for ATT syntax
96 unsigned Opcode;
97 MCOperand Operands[48];
Nguyen Anh Quynh5329a6f2014-06-08 23:35:52 +070098 cs_insn *flat_insn; // insn to be exposed to public
Nguyen Anh Quynha209e672013-12-14 00:23:41 +080099 uint64_t address; // address of this insn
Nguyen Anh Quynh42c6b1a2013-12-30 00:15:25 +0800100 cs_struct *csh; // save the main csh
Nguyen Anh Quynh10850732014-06-18 12:16:24 +0800101 uint8_t x86opsize; // opsize for [mem] operand
Nguyen Anh Quynha5ffdc32014-05-07 08:25:24 +0800102
Nguyen Anh Quynh10850732014-06-18 12:16:24 +0800103 // (Optional) instruction prefix, which can be up to 4 bytes.
Nguyen Anh Quynha5ffdc32014-05-07 08:25:24 +0800104 // A prefix byte gets value 0 when irrelevant.
105 // This is copied from cs_x86 struct
Nguyen Anh Quynh46b66932014-06-04 19:04:46 +0800106 uint8_t x86_prefix[4];
Nguyen Anh Quynhf1ec5262014-06-25 22:03:18 +0800107 uint8_t imm_size; // immediate size for X86_OP_IMM operand
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800108};
109
Nguyen Anh Quynh495295e2014-06-16 15:54:32 +0800110void MCInst_Init(MCInst *inst);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800111
112void MCInst_clear(MCInst *inst);
113
Nguyen Anh Quynh0f648ea2014-06-10 01:01:23 +0700114// do not free operand after inserting
115void MCInst_insert0(MCInst *inst, int index, MCOperand *Op);
116
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800117void MCInst_setOpcode(MCInst *inst, unsigned Op);
118
119unsigned MCInst_getOpcode(const MCInst*);
120
Nguyen Anh Quynh6b7abe32013-11-30 00:54:24 +0800121void MCInst_setOpcodePub(MCInst *inst, unsigned Op);
122
123unsigned MCInst_getOpcodePub(const MCInst*);
124
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800125MCOperand *MCInst_getOperand(MCInst *inst, unsigned i);
126
127unsigned MCInst_getNumOperands(const MCInst *inst);
128
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800129// This addOperand2 function doesnt free Op
Nguyen Anh Quynh264ca372014-06-16 14:52:09 +0800130void MCInst_addOperand2(MCInst *inst, MCOperand *Op);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800131
132#endif