]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - tools/objtool/objtool.h
Merge tag 'notifications-20200601' of git://git.kernel.org/pub/scm/linux/kernel/git...
[mirror_ubuntu-hirsute-kernel.git] / tools / objtool / objtool.h
CommitLineData
d37c90d4
MH
1/* SPDX-License-Identifier: GPL-2.0-or-later */
2/*
3 * Copyright (C) 2020 Matt Helsley <mhelsley@vmware.com>
4 */
5
6#ifndef _OBJTOOL_H
7#define _OBJTOOL_H
8
9#include <stdbool.h>
10#include <linux/list.h>
11#include <linux/hashtable.h>
12
13#include "elf.h"
14
15struct objtool_file {
16 struct elf *elf;
17 struct list_head insn_list;
18 DECLARE_HASHTABLE(insn_hash, 20);
19 bool ignore_unreachables, c_file, hints, rodata;
20};
21
0decf1f8
MH
22int check(const char *objname, bool orc);
23int orc_dump(const char *objname);
24int create_orc(struct objtool_file *file);
25int create_orc_sections(struct objtool_file *file);
26
d37c90d4 27#endif /* _OBJTOOL_H */