]> asedeno.scripts.mit.edu Git - linux.git/blob - tools/objtool/arch.h
objtool: Convert insn type to enum
[linux.git] / tools / objtool / arch.h
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 /*
3  * Copyright (C) 2015 Josh Poimboeuf <jpoimboe@redhat.com>
4  */
5
6 #ifndef _ARCH_H
7 #define _ARCH_H
8
9 #include <stdbool.h>
10 #include <linux/list.h>
11 #include "elf.h"
12 #include "cfi.h"
13
14 enum insn_type {
15         INSN_JUMP_CONDITIONAL,
16         INSN_JUMP_UNCONDITIONAL,
17         INSN_JUMP_DYNAMIC,
18         INSN_CALL,
19         INSN_CALL_DYNAMIC,
20         INSN_RETURN,
21         INSN_CONTEXT_SWITCH,
22         INSN_STACK,
23         INSN_BUG,
24         INSN_NOP,
25         INSN_STAC,
26         INSN_CLAC,
27         INSN_STD,
28         INSN_CLD,
29         INSN_OTHER,
30 };
31
32 enum op_dest_type {
33         OP_DEST_REG,
34         OP_DEST_REG_INDIRECT,
35         OP_DEST_MEM,
36         OP_DEST_PUSH,
37         OP_DEST_PUSHF,
38         OP_DEST_LEAVE,
39 };
40
41 struct op_dest {
42         enum op_dest_type type;
43         unsigned char reg;
44         int offset;
45 };
46
47 enum op_src_type {
48         OP_SRC_REG,
49         OP_SRC_REG_INDIRECT,
50         OP_SRC_CONST,
51         OP_SRC_POP,
52         OP_SRC_POPF,
53         OP_SRC_ADD,
54         OP_SRC_AND,
55 };
56
57 struct op_src {
58         enum op_src_type type;
59         unsigned char reg;
60         int offset;
61 };
62
63 struct stack_op {
64         struct op_dest dest;
65         struct op_src src;
66 };
67
68 void arch_initial_func_cfi_state(struct cfi_state *state);
69
70 int arch_decode_instruction(struct elf *elf, struct section *sec,
71                             unsigned long offset, unsigned int maxlen,
72                             unsigned int *len, enum insn_type *type,
73                             unsigned long *immediate, struct stack_op *op);
74
75 bool arch_callee_saved_reg(unsigned char reg);
76
77 #endif /* _ARCH_H */