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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
use crate::{HeaderTagFlag, HeaderTagType};
use core::fmt;
use core::fmt::{Debug, Formatter};
use core::mem::size_of;
#[repr(u32)]
#[derive(Copy, Clone, Debug)]
pub enum RelocatableHeaderTagPreference {
None = 0,
Low = 1,
High = 2,
}
#[derive(Copy, Clone)]
#[repr(C)]
pub struct RelocatableHeaderTag {
typ: HeaderTagType,
flags: HeaderTagFlag,
size: u32,
min_addr: u32,
max_addr: u32,
align: u32,
preference: RelocatableHeaderTagPreference,
}
impl RelocatableHeaderTag {
pub const fn new(
flags: HeaderTagFlag,
min_addr: u32,
max_addr: u32,
align: u32,
preference: RelocatableHeaderTagPreference,
) -> Self {
RelocatableHeaderTag {
typ: HeaderTagType::Relocatable,
flags,
size: size_of::<Self>() as u32,
min_addr,
max_addr,
align,
preference,
}
}
pub const fn typ(&self) -> HeaderTagType {
self.typ
}
pub const fn flags(&self) -> HeaderTagFlag {
self.flags
}
pub const fn size(&self) -> u32 {
self.size
}
pub const fn min_addr(&self) -> u32 {
self.min_addr
}
pub const fn max_addr(&self) -> u32 {
self.max_addr
}
pub const fn align(&self) -> u32 {
self.align
}
pub const fn preference(&self) -> RelocatableHeaderTagPreference {
self.preference
}
}
impl Debug for RelocatableHeaderTag {
fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
f.debug_struct("RelocatableHeaderTag")
.field("type", &{ self.typ })
.field("flags", &{ self.flags })
.field("size", &{ self.size })
.field("min_addr", &(self.min_addr as *const u32))
.field("max_addr", &(self.max_addr as *const u32))
.field("align", &{ self.align })
.field("preference", &{ self.preference })
.finish()
}
}
#[cfg(test)]
mod tests {
use crate::RelocatableHeaderTag;
#[test]
fn test_assert_size() {
assert_eq!(
core::mem::size_of::<RelocatableHeaderTag>(),
2 + 2 + 4 + 4 + 4 + 4 + 4
);
}
}