forked from robertapengelly/as86
-
Notifications
You must be signed in to change notification settings - Fork 0
/
section.h
76 lines (54 loc) · 2.39 KB
/
section.h
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/******************************************************************************
* @file section.h
*****************************************************************************/
#ifndef _SECTION_H
#define _SECTION_H
#include "fixup.h"
#include "types.h"
#define SECTION_FLAG_ALLOC (1U << 0)
#define SECTION_FLAG_LOAD (1U << 1)
#define SECTION_FLAG_READONLY (1U << 2)
#define SECTION_FLAG_CODE (1U << 3)
#define SECTION_FLAG_DATA (1U << 4)
#define SECTION_FLAG_NEVER_LOAD (1U << 5)
#define SECTION_FLAG_DEBUGGING (1U << 6)
#define SECTION_FLAG_EXCLUDE (1U << 7)
#define SECTION_FLAG_NOREAD (1U << 8)
#define SECTION_FLAG_SHARED (1U << 9)
struct frag_chain {
frag_t first_frag, last_frag;
struct fixup *first_fixup, *last_fixup;
subsection_t subsection;
struct frag_chain *next;
};
extern struct frag_chain *current_frag_chain;
extern section_t undefined_section;
extern section_t absolute_section;
extern section_t expr_section;
extern section_t reg_section;
extern section_t text_section;
extern section_t data_section;
extern section_t bss_section;
extern section_t sections;
extern section_t current_section;
extern subsection_t current_subsection;
#define SECTION_IS_NORMAL(section) \
((section != undefined_section) && (section != absolute_section) && (section != expr_section) && (section != reg_section))
section_t section_get_next_section (section_t section);
section_t section_set (section_t section);
section_t section_set_by_name (const char *name);
section_t section_subsection_set (section_t section, subsection_t subsection);
section_t section_subsection_set_by_name (const char *name, subsection_t subsection);
symbol_t section_symbol (section_t section);
const char *section_get_name (section_t section);
int section_find_by_name (const char *name);
uint32_t sections_get_count (void);
uint32_t section_get_number (section_t section);
void sections_chain_subsection_frags (void);
void sections_init (void);
void sections_number (uint32_t start_at);
void *section_get_object_format_dependent_data (section_t section);
void section_set_object_format_dependent_data (section_t section, void *data);
void section_set_flags (section_t section, unsigned int flags);
unsigned int section_get_flags (section_t section);
#endif /* _SECTION_H */