David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0-or-later */ |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2015 Josh Poimboeuf <jpoimboe@redhat.com> |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #ifndef _ARCH_H |
| 7 | #define _ARCH_H |
| 8 | |
| 9 | #include <stdbool.h> |
| 10 | #include <linux/list.h> |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame] | 11 | #include "objtool.h" |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 12 | #include "cfi.h" |
| 13 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 14 | enum insn_type { |
| 15 | INSN_JUMP_CONDITIONAL, |
| 16 | INSN_JUMP_UNCONDITIONAL, |
| 17 | INSN_JUMP_DYNAMIC, |
| 18 | INSN_JUMP_DYNAMIC_CONDITIONAL, |
| 19 | INSN_CALL, |
| 20 | INSN_CALL_DYNAMIC, |
| 21 | INSN_RETURN, |
| 22 | INSN_CONTEXT_SWITCH, |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 23 | INSN_BUG, |
| 24 | INSN_NOP, |
| 25 | INSN_STAC, |
| 26 | INSN_CLAC, |
| 27 | INSN_STD, |
| 28 | INSN_CLD, |
Olivier Deprez | 92d4c21 | 2022-12-06 15:05:30 +0100 | [diff] [blame^] | 29 | INSN_TRAP, |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 30 | INSN_OTHER, |
| 31 | }; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 32 | |
| 33 | enum op_dest_type { |
| 34 | OP_DEST_REG, |
| 35 | OP_DEST_REG_INDIRECT, |
| 36 | OP_DEST_MEM, |
| 37 | OP_DEST_PUSH, |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 38 | OP_DEST_PUSHF, |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 39 | OP_DEST_LEAVE, |
| 40 | }; |
| 41 | |
| 42 | struct op_dest { |
| 43 | enum op_dest_type type; |
| 44 | unsigned char reg; |
| 45 | int offset; |
| 46 | }; |
| 47 | |
| 48 | enum op_src_type { |
| 49 | OP_SRC_REG, |
| 50 | OP_SRC_REG_INDIRECT, |
| 51 | OP_SRC_CONST, |
| 52 | OP_SRC_POP, |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 53 | OP_SRC_POPF, |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 54 | OP_SRC_ADD, |
| 55 | OP_SRC_AND, |
| 56 | }; |
| 57 | |
| 58 | struct op_src { |
| 59 | enum op_src_type type; |
| 60 | unsigned char reg; |
| 61 | int offset; |
| 62 | }; |
| 63 | |
| 64 | struct stack_op { |
| 65 | struct op_dest dest; |
| 66 | struct op_src src; |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame] | 67 | struct list_head list; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 68 | }; |
| 69 | |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame] | 70 | struct instruction; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 71 | |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame] | 72 | void arch_initial_func_cfi_state(struct cfi_init_state *state); |
| 73 | |
| 74 | int arch_decode_instruction(const struct elf *elf, const struct section *sec, |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 75 | unsigned long offset, unsigned int maxlen, |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 76 | unsigned int *len, enum insn_type *type, |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame] | 77 | unsigned long *immediate, |
| 78 | struct list_head *ops_list); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 79 | |
| 80 | bool arch_callee_saved_reg(unsigned char reg); |
| 81 | |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame] | 82 | unsigned long arch_jump_destination(struct instruction *insn); |
| 83 | |
| 84 | unsigned long arch_dest_reloc_offset(int addend); |
| 85 | |
| 86 | const char *arch_nop_insn(int len); |
Olivier Deprez | 92d4c21 | 2022-12-06 15:05:30 +0100 | [diff] [blame^] | 87 | const char *arch_ret_insn(int len); |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame] | 88 | |
Olivier Deprez | 92d4c21 | 2022-12-06 15:05:30 +0100 | [diff] [blame^] | 89 | int arch_decode_hint_reg(u8 sp_reg, int *base); |
| 90 | |
| 91 | bool arch_is_retpoline(struct symbol *sym); |
| 92 | bool arch_is_rethunk(struct symbol *sym); |
| 93 | |
| 94 | int arch_rewrite_retpolines(struct objtool_file *file); |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame] | 95 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 96 | #endif /* _ARCH_H */ |