mirror of
https://github.com/elliotnunn/NetBoot.git
synced 2025-01-03 01:29:52 +00:00
68 lines
2.5 KiB
C
68 lines
2.5 KiB
C
/* reloc.h reloc header file for vasm */
|
|
/* (c) in 2002,2005-8,2010,2011,2016 by Volker Barthelmann and Frank Wille */
|
|
|
|
#ifndef RELOC_H
|
|
#define RELOC_H
|
|
|
|
/* part of standard relocations */
|
|
|
|
#ifndef FIRST_STANDARD_RELOC
|
|
#define FIRST_STANDARD_RELOC 0
|
|
#endif
|
|
|
|
#define REL_NONE FIRST_STANDARD_RELOC
|
|
#define REL_ABS (REL_NONE+1) /* standard absolute relocation */
|
|
#define REL_PC (REL_ABS+1) /* PC-relative */
|
|
#define REL_GOT (REL_PC+1) /* symbol's pointer in global off.table */
|
|
#define REL_GOTPC (REL_GOT+1) /* global offset table PC-relative */
|
|
#define REL_GOTOFF (REL_GOTPC+1) /* offset to global offset table */
|
|
#define REL_GLOBDAT (REL_GOTOFF+1) /* global data */
|
|
#define REL_PLT (REL_GLOBDAT+1) /* procedure linkage table */
|
|
#define REL_PLTPC (REL_PLT+1) /* procedure linkage table PC-relative */
|
|
#define REL_PLTOFF (REL_PLTPC+1) /* offset to procedure linkage table */
|
|
#define REL_SD (REL_PLTOFF+1) /* small data base relative */
|
|
#define REL_UABS (REL_SD+1) /* unaligned absolute addr. relocation */
|
|
#define REL_LOCALPC (REL_UABS+1) /* pc-relative to local symbol */
|
|
#define REL_LOADREL (REL_LOCALPC+1) /* relative to load addr., no symbol */
|
|
#define REL_COPY (REL_LOADREL+1) /* copy from shared object */
|
|
#define REL_JMPSLOT (REL_COPY+1) /* procedure linkage table entry */
|
|
#define REL_SECOFF (REL_JMPSLOT+1) /* symbol's offset to start of section */
|
|
#define LAST_STANDARD_RELOC REL_SECOFF
|
|
|
|
/* standard reloc struct */
|
|
typedef struct nreloc {
|
|
size_t byteoffset; /* byte-offset in data atom to beginning of relocation */
|
|
size_t bitoffset; /* bit-offset adds to byte-off. - start of reloc.field */
|
|
size_t size; /* size of relocation field in bits */
|
|
taddr mask;
|
|
taddr addend;
|
|
symbol *sym;
|
|
} nreloc;
|
|
|
|
typedef struct rlist {
|
|
struct rlist *next;
|
|
void *reloc;
|
|
int type;
|
|
} rlist;
|
|
|
|
#define MAKEMASK(x) ((1LL<<(x))-1LL)
|
|
|
|
|
|
nreloc *new_nreloc(void);
|
|
rlist *add_extnreloc(rlist **,symbol *,taddr,int,size_t,size_t,size_t);
|
|
rlist *add_extnreloc_masked(rlist **,symbol *,taddr,int,size_t,size_t,
|
|
size_t,taddr);
|
|
int is_pc_reloc(symbol *,section *);
|
|
void do_pic_check(rlist *);
|
|
taddr nreloc_real_addend(nreloc *);
|
|
void unsupp_reloc_error(rlist *);
|
|
void print_reloc(FILE *,int,nreloc *);
|
|
|
|
/* old interface: byteoffset and bitoffset are calculated from offset 'o' */
|
|
#define add_nreloc(r,y,a,t,s,o) \
|
|
add_extnreloc(r,y,a,t,(o)%bitsperbyte,s,(o)/bitsperbyte)
|
|
#define add_nreloc_masked(r,y,a,t,s,o,m) \
|
|
add_extnreloc_masked(r,y,a,t,(o)%bitsperbyte,s,(o)/bitsperbyte,m)
|
|
|
|
#endif
|