blob: 1e646d4f5b3ff5d3845fc1b44a235bca817f73b2 [file] [log] [blame]
Ulrich Drepperb08d5a82005-07-26 05:00:05 +00001/* Interface for libebl_PPC module.
2 Copyright (C) 2004, 2005 Red Hat, Inc.
3
4 This program is Open Source software; you can redistribute it and/or
5 modify it under the terms of the Open Software License version 1.0 as
6 published by the Open Source Initiative.
7
8 You should have received a copy of the Open Software License along
9 with this program; if not, you may obtain a copy of the Open Software
10 License version 1.0 from http://www.opensource.org/licenses/osl.php or
11 by writing the Open Source Initiative c/o Lawrence Rosen, Esq.,
12 3001 King Ranch Road, Ukiah, CA 95482. */
13
14#ifndef _LIBEBL_PPC_H
15#define _LIBEBL_PPC_H 1
16
17#include <libeblP.h>
18
19
20/* Constructor. */
21extern const char *ppc_init (Elf *elf, GElf_Half machine, Ebl *eh,
22 size_t ehlen);
23
24/* Destructor. */
25extern void ppc_destr (Ebl *bh);
26
27
28/* Function to get relocation type name. */
29extern const char *ppc_reloc_type_name (int type, char *buf, size_t len);
30
31/* Check relocation type. */
32extern bool ppc_reloc_type_check (int type);
33
34/* Check relocation type use. */
35extern bool ppc_reloc_valid_use (Elf *elf, int type);
36
37/* Check for the simple reloc types. */
38extern Elf_Type ppc_reloc_simple_type (Elf *elf, int type);
39
40/* Code note handling. */
41extern bool ppc_core_note (const char *name, uint32_t type, uint32_t descsz,
42 const char *desc);
43
44/* Check whether given relocation is a copy relocation. */
45extern bool ppc_copy_reloc_p (int reloc);
46
47#endif /* libebl_ppc.h */