File: Symbol.hpp

package info (click to toggle)
edb-debugger 1.3.0-2.2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,124 kB
  • sloc: cpp: 46,241; xml: 4,998; ansic: 3,088; sh: 52; asm: 33; makefile: 5
file content (41 lines) | stat: -rw-r--r-- 738 bytes parent folder | download | duplicates (4)
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
#pragma once

#include <cstdint>

namespace Fas {

enum class ValueTypes : uint8_t {
	ABSOLUTE_VALUE = 0,
	RELOCATABLE_SEGMENT_ADDRESS,
	RELOCATABLE_32_BIT_ADDRESS,
	RELOCATABLE_RELATIVE_32_BIT_ADDRESS,
	RELOCATABLE_64_BIT_ADDRESS,
	GOT_RELATIVE_32_BIT_ADDRESS,
	_32_BIT_ADDRESS_OF_PLT_ENTRY,
	RELATIVE_32_BIT_ADDRESS_OF_PLT_ENTRY
};

#pragma pack(push, 1)
struct Symbol {
	uint64_t value : 63;
	uint64_t valueSign : 1;

	uint16_t flags;

	uint8_t sizeOfData;
	ValueTypes typeOfValue;
	uint32_t extendedSib;
	uint16_t numberOfPassDefined;
	uint16_t numberOfPassUsed;

	uint32_t section : 31;
	uint32_t sectionSign : 1;

	uint32_t preprocessed : 31;
	uint32_t preprocessedSign : 1;

	uint32_t offsetInPreprocessed;
};
#pragma pack(pop)

}