Thomas Gleixner | 1ccea77 | 2019-05-19 15:51:43 +0200 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0-or-later */ |
Josh Poimboeuf | 442f04c | 2016-02-28 22:22:41 -0600 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2015 Josh Poimboeuf <jpoimboe@redhat.com> |
Josh Poimboeuf | 442f04c | 2016-02-28 22:22:41 -0600 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #ifndef _ARCH_H |
| 7 | #define _ARCH_H |
| 8 | |
| 9 | #include <stdbool.h> |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 10 | #include <linux/list.h> |
Matt Helsley | 0decf1f | 2020-05-19 13:55:33 -0700 | [diff] [blame] | 11 | #include "objtool.h" |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 12 | #include "cfi.h" |
Josh Poimboeuf | 442f04c | 2016-02-28 22:22:41 -0600 | [diff] [blame] | 13 | |
Matt Helsley | 0decf1f | 2020-05-19 13:55:33 -0700 | [diff] [blame] | 14 | #include <asm/orc_types.h> |
| 15 | |
Josh Poimboeuf | 9fe7b76 | 2019-07-17 20:36:56 -0500 | [diff] [blame] | 16 | enum insn_type { |
| 17 | INSN_JUMP_CONDITIONAL, |
| 18 | INSN_JUMP_UNCONDITIONAL, |
| 19 | INSN_JUMP_DYNAMIC, |
Josh Poimboeuf | b68b990 | 2019-07-17 20:36:57 -0500 | [diff] [blame] | 20 | INSN_JUMP_DYNAMIC_CONDITIONAL, |
Josh Poimboeuf | 9fe7b76 | 2019-07-17 20:36:56 -0500 | [diff] [blame] | 21 | INSN_CALL, |
| 22 | INSN_CALL_DYNAMIC, |
| 23 | INSN_RETURN, |
| 24 | INSN_CONTEXT_SWITCH, |
Josh Poimboeuf | 9fe7b76 | 2019-07-17 20:36:56 -0500 | [diff] [blame] | 25 | INSN_BUG, |
| 26 | INSN_NOP, |
| 27 | INSN_STAC, |
| 28 | INSN_CLAC, |
| 29 | INSN_STD, |
| 30 | INSN_CLD, |
| 31 | INSN_OTHER, |
| 32 | }; |
Josh Poimboeuf | 442f04c | 2016-02-28 22:22:41 -0600 | [diff] [blame] | 33 | |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 34 | enum op_dest_type { |
| 35 | OP_DEST_REG, |
| 36 | OP_DEST_REG_INDIRECT, |
| 37 | OP_DEST_MEM, |
| 38 | OP_DEST_PUSH, |
Peter Zijlstra | ea24213 | 2019-02-25 12:50:09 +0100 | [diff] [blame] | 39 | OP_DEST_PUSHF, |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 40 | OP_DEST_LEAVE, |
| 41 | }; |
| 42 | |
| 43 | struct op_dest { |
| 44 | enum op_dest_type type; |
| 45 | unsigned char reg; |
| 46 | int offset; |
| 47 | }; |
| 48 | |
| 49 | enum op_src_type { |
| 50 | OP_SRC_REG, |
| 51 | OP_SRC_REG_INDIRECT, |
| 52 | OP_SRC_CONST, |
| 53 | OP_SRC_POP, |
Peter Zijlstra | ea24213 | 2019-02-25 12:50:09 +0100 | [diff] [blame] | 54 | OP_SRC_POPF, |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 55 | OP_SRC_ADD, |
| 56 | OP_SRC_AND, |
| 57 | }; |
| 58 | |
| 59 | struct op_src { |
| 60 | enum op_src_type type; |
| 61 | unsigned char reg; |
| 62 | int offset; |
| 63 | }; |
| 64 | |
| 65 | struct stack_op { |
| 66 | struct op_dest dest; |
| 67 | struct op_src src; |
Julien Thierry | 65ea47d | 2020-03-27 15:28:47 +0000 | [diff] [blame] | 68 | struct list_head list; |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 69 | }; |
| 70 | |
Raphael Gault | bfb08f2 | 2020-03-27 15:28:45 +0000 | [diff] [blame] | 71 | struct instruction; |
| 72 | |
Peter Zijlstra | a3608f5 | 2020-03-25 15:34:50 +0100 | [diff] [blame] | 73 | void arch_initial_func_cfi_state(struct cfi_init_state *state); |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 74 | |
Ingo Molnar | 0c98be8 | 2020-04-22 12:32:05 +0200 | [diff] [blame] | 75 | int arch_decode_instruction(const struct elf *elf, const struct section *sec, |
Josh Poimboeuf | 442f04c | 2016-02-28 22:22:41 -0600 | [diff] [blame] | 76 | unsigned long offset, unsigned int maxlen, |
Josh Poimboeuf | 9fe7b76 | 2019-07-17 20:36:56 -0500 | [diff] [blame] | 77 | unsigned int *len, enum insn_type *type, |
Julien Thierry | 65ea47d | 2020-03-27 15:28:47 +0000 | [diff] [blame] | 78 | unsigned long *immediate, |
| 79 | struct list_head *ops_list); |
Josh Poimboeuf | baa4146 | 2017-06-28 10:11:07 -0500 | [diff] [blame] | 80 | |
| 81 | bool arch_callee_saved_reg(unsigned char reg); |
Josh Poimboeuf | 442f04c | 2016-02-28 22:22:41 -0600 | [diff] [blame] | 82 | |
Raphael Gault | bfb08f2 | 2020-03-27 15:28:45 +0000 | [diff] [blame] | 83 | unsigned long arch_jump_destination(struct instruction *insn); |
| 84 | |
Matt Helsley | f197422 | 2020-05-29 14:01:13 -0700 | [diff] [blame^] | 85 | unsigned long arch_dest_reloc_offset(int addend); |
Raphael Gault | bfb08f2 | 2020-03-27 15:28:45 +0000 | [diff] [blame] | 86 | |
Josh Poimboeuf | 442f04c | 2016-02-28 22:22:41 -0600 | [diff] [blame] | 87 | #endif /* _ARCH_H */ |