Server IP : 80.87.202.40 / Your IP : 216.73.216.169 Web Server : Apache System : Linux rospirotorg.ru 5.14.0-539.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Dec 5 22:26:13 UTC 2024 x86_64 User : bitrix ( 600) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/src/kernels/5.14.0-570.el9.x86_64/tools/objtool/include/objtool/ |
Upload File : |
/* SPDX-License-Identifier: GPL-2.0-or-later */ /* * Copyright (C) 2015-2017 Josh Poimboeuf <jpoimboe@redhat.com> */ #ifndef _OBJTOOL_CFI_H #define _OBJTOOL_CFI_H #include <arch/cfi_regs.h> #include <linux/list.h> #define CFI_UNDEFINED -1 #define CFI_CFA -2 #define CFI_SP_INDIRECT -3 #define CFI_BP_INDIRECT -4 struct cfi_reg { int base; int offset; }; struct cfi_init_state { struct cfi_reg regs[CFI_NUM_REGS]; struct cfi_reg cfa; }; struct cfi_state { struct hlist_node hash; /* must be first, cficmp() */ struct cfi_reg regs[CFI_NUM_REGS]; struct cfi_reg vals[CFI_NUM_REGS]; struct cfi_reg cfa; int stack_size; int drap_reg, drap_offset; unsigned char type; bool bp_scratch; bool drap; bool signal; bool end; bool force_undefined; }; #endif /* _OBJTOOL_CFI_H */