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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
//! Raw `FieldLayout` structures for the `FieldLayout` metadata table.
//!
//! This module provides the [`crate::metadata::tables::fieldlayout::raw::FieldLayoutRaw`] struct for reading field layout data
//! directly from metadata tables before index resolution. The `FieldLayout` table specifies
//! explicit field positioning within types that use explicit layout.
//!
//! # Table Structure
//! The `FieldLayout` table (`TableId` = 0x10) contains these columns:
//! - `Offset`: 4-byte field offset within the containing type
//! - `Field`: Index into Field table identifying the positioned field
//!
//! # Usage Context
//! `FieldLayout` entries are only present for types that require explicit field positioning:
//! - **Interop types**: Types for P/Invoke or COM interop
//! - **Performance-critical types**: Cache-optimized data structures
//! - **Legacy compatibility**: Matching existing binary layouts
//! - **Platform-specific layouts**: Architecture-dependent positioning
//!
//! # ECMA-335 Reference
//! See ECMA-335, Partition II, §22.16 for the `FieldLayout` table specification.
use Arc;
use crate::;
/// Raw field layout data read directly from the `FieldLayout` metadata table.
///
/// This structure represents a field layout entry before index resolution and field
/// dereferencing. Field layouts specify the explicit byte offset of fields within
/// types that use explicit layout attributes.
///
/// # Binary Format
/// Each row in the `FieldLayout` table has this layout:
/// ```text
/// Offset | Size | Field | Description
/// -------|------|------------|----------------------------------
/// 0 | 4 | Offset | Field offset within type
/// 4 | 2/4 | Field | Field table index
/// ```
///
/// The Field index size depends on the number of entries in the Field table.
///
/// # Layout Context
/// `FieldLayout` entries are created for types with explicit layout control:
/// - **C# StructLayout(LayoutKind.Explicit)**: Explicitly positioned fields
/// - **C++ CLI types**: Native interop data structures
/// - **P/Invoke types**: Matching native struct layouts
/// - **Performance types**: Cache-line aligned data structures
///
/// # ECMA-335 Reference
/// See ECMA-335, Partition II, §22.16 for the complete `FieldLayout` table specification.