Thomas Gleixner | 1ccea77 | 2019-05-19 15:51:43 +0200 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0-or-later */ |
Josh Poimboeuf | 627fce1 | 2017-07-11 10:33:42 -0500 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2017 Josh Poimboeuf <jpoimboe@redhat.com> |
Josh Poimboeuf | 627fce1 | 2017-07-11 10:33:42 -0500 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #ifndef _ORC_H |
| 7 | #define _ORC_H |
| 8 | |
Josh Poimboeuf | 6a77cff | 2017-11-06 07:21:50 -0600 | [diff] [blame] | 9 | #include <asm/orc_types.h> |
Josh Poimboeuf | 627fce1 | 2017-07-11 10:33:42 -0500 | [diff] [blame] | 10 | |
| 11 | struct objtool_file; |
| 12 | |
| 13 | int create_orc(struct objtool_file *file); |
| 14 | int create_orc_sections(struct objtool_file *file); |
| 15 | |
| 16 | int orc_dump(const char *objname); |
| 17 | |
| 18 | #endif /* _ORC_H */ |