-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathelf32.h
More file actions
46 lines (37 loc) · 1.48 KB
/
elf32.h
File metadata and controls
46 lines (37 loc) · 1.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/* $VER: vlink elf32.h V0.14 (13.06.11)
*
* This file is part of vlink, a portable linker for multiple
* object formats.
* Copyright (c) 1997-2011 Frank Wille
*/
#include "elfcommon.h"
#include "elf32std.h"
struct ShdrNode {
struct node n;
struct Elf32_Shdr s;
};
/* .stab compilation units */
struct StabCompUnit {
struct node n;
long nameidx;
unsigned long entries;
struct list stabs;
struct StrTabList strtab;
};
/* Prototypes from t_elf32.c */
void elf32_parse(struct GlobalVars *,struct LinkFile *,struct Elf32_Ehdr *,
uint8_t (*)(uint8_t,struct RelocInsert *));
void elf32_initdynlink(struct GlobalVars *);
struct Section *elf32_dyntable(struct GlobalVars *,unsigned long,unsigned long,
uint8_t,uint8_t,uint8_t,int);
struct Symbol *elf32_pltgotentry(struct GlobalVars *,struct Section *,DynArg,
uint8_t,unsigned long,unsigned long,int);
struct Symbol *elf32_bssentry(struct GlobalVars *,const char *,struct Symbol *);
void elf32_dynamicentry(struct GlobalVars *,uint32_t,uint32_t,struct Section *);
void elf32_dyncreate(struct GlobalVars *,const char *);
unsigned long elf32_headersize(struct GlobalVars *);
void elf32_writerelocs(struct GlobalVars *,FILE *);
void elf32_writeobject(struct GlobalVars *,FILE *,uint16_t,int8_t,
uint8_t (*)(struct Reloc *));
void elf32_writeexec(struct GlobalVars *,FILE *,uint16_t,int8_t,
uint8_t (*)(struct Reloc *));