Blame view

tools/objtool/orc.h 348 Bytes
1ccea77e2   Thomas Gleixner   treewide: Replace...
1
  /* SPDX-License-Identifier: GPL-2.0-or-later */
627fce148   Josh Poimboeuf   objtool: Add ORC ...
2
3
  /*
   * Copyright (C) 2017 Josh Poimboeuf <jpoimboe@redhat.com>
627fce148   Josh Poimboeuf   objtool: Add ORC ...
4
5
6
7
   */
  
  #ifndef _ORC_H
  #define _ORC_H
6a77cff81   Josh Poimboeuf   objtool: Move syn...
8
  #include <asm/orc_types.h>
627fce148   Josh Poimboeuf   objtool: Add ORC ...
9
10
11
12
13
14
15
16
17
  
  struct objtool_file;
  
  int create_orc(struct objtool_file *file);
  int create_orc_sections(struct objtool_file *file);
  
  int orc_dump(const char *objname);
  
  #endif /* _ORC_H */