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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
//! Raw `MethodSemantics` table implementation for .NET metadata parsing.
//!
//! This module provides the raw variant of [`crate::metadata::tables::methodsemantics::raw::MethodSemanticsRaw`] table entries with unresolved
//! indexes for initial parsing and memory-efficient storage. The `MethodSemantics` table is a critical
//! component of .NET metadata that defines the semantic relationships between methods and properties/events,
//! enabling the .NET runtime to understand accessor patterns and event handling mechanisms.
//!
//! # Architecture
//!
//! The raw implementation provides the foundation for method semantic parsing:
//! - **Unresolved References**: Contains raw table indices that require resolution
//! - **Memory Efficiency**: Minimal footprint during initial parsing phases
//! - **Binary Format**: Direct representation of ECMA-335 table structure
//! - **Batch Processing**: Optimized for parsing multiple entries efficiently
//!
//! # Binary Format
//!
//! Each `MethodSemantics` table row follows the ECMA-335 §II.22.28 specification:
//!
//! ```text
//! Offset | Size | Field | Description
//! -------|---------|-------------|--------------------------------------------
//! 0x00 | 2 bytes | Semantics | Bitmask of semantic attributes
//! 0x02 | 2-4 | Method | Index into MethodDef table
//! 0x04 | 2-4 | Association | HasSemantics coded index (Event/Property)
//! ```
//!
//! # Semantic Types
//!
//! The table supports the following semantic relationships:
//!
//! **Property Semantics**:
//! - `SETTER` (0x0001) - Property setter method
//! - `GETTER` (0x0002) - Property getter method
//! - `OTHER` (0x0004) - Other property-related method
//!
//! **Event Semantics**:
//! - `ADD_ON` (0x0008) - Event subscription method
//! - `REMOVE_ON` (0x0010) - Event unsubscription method
//! - `FIRE` (0x0020) - Event trigger method
//! - `OTHER` (0x0004) - Other event-related method
//!
//! # Processing Pipeline
//!
//! 1. **Parsing**: Raw entries are read from metadata tables stream
//! 2. **Validation**: Semantic attributes and indices are validated
//! 3. **Resolution**: Raw indices are resolved to actual metadata objects
//! 4. **Application**: Semantic relationships are applied to properties/events
//! 5. **Conversion**: Raw entries are converted to owned representations
//!
//! # Thread Safety
//!
//! All types in this module are thread-safe for concurrent read access:
//! - [`crate::metadata::tables::methodsemantics::raw::MethodSemanticsRaw`] is [`std::marker::Send`] and [`std::marker::Sync`]
//! - Raw parsing operations can be performed concurrently
//! - Conversion methods are thread-safe with proper synchronization
//! - No shared mutable state during parsing operations
//!
//! # Integration
//!
//! This module integrates with:
//! - [`crate::metadata::tables::methodsemantics`] - Owned representation for runtime use
//! - [`crate::metadata::method`] - Method definition resolution and access
//! - [`crate::metadata::tables::property`] - Property table for semantic application
//! - [`crate::metadata::tables::event`] - Event table for semantic application
//! - [`crate::metadata::typesystem`] - Type reference resolution for coded indices
use Arc;
use crate::;
/// Raw representation of a `MethodSemantics` table entry with unresolved indexes.
///
/// This structure represents an unprocessed entry from the `MethodSemantics` metadata table
/// (ID 0x18), which specifies the relationship between methods and events or properties.
/// It contains raw index values that require resolution to actual metadata objects.
///
/// # Purpose
///
/// The `MethodSemantics` table defines which methods serve specific semantic roles for
/// properties and events:
/// - **Property Accessors**: Getters, setters, and other property-related methods
/// - **Event Handlers**: Add, remove, fire, and other event-related methods
/// - **Runtime Binding**: Enables proper method dispatch for property/event operations
/// - **Language Integration**: Supports C#, VB.NET, and other language property/event syntax
///
/// # Raw vs Owned
///
/// This raw variant is used during initial metadata parsing and contains:
/// - **Unresolved Indexes**: Table indices requiring lookup in related tables
/// - **Memory Efficiency**: Minimal footprint for large-scale parsing operations
/// - **Binary Compatibility**: Direct representation of ECMA-335 file format
/// - **Batch Processing**: Optimized for processing multiple entries sequentially
///
/// Use [`crate::metadata::tables::methodsemantics::MethodSemantics`] for resolved references and runtime access.
///
/// # Usage Patterns
///
/// ```rust,ignore
/// use dotscope::metadata::tables::methodsemantics::raw::MethodSemanticsRaw;
/// use dotscope::metadata::tables::MethodSemanticsAttributes;
///
/// # fn process_semantic_entry(raw_entry: &MethodSemanticsRaw) {
/// // Check semantic type
/// match raw_entry.semantics {
/// MethodSemanticsAttributes::GETTER => {
/// println!("Property getter method: {}", raw_entry.method);
/// }
/// MethodSemanticsAttributes::ADD_ON => {
/// println!("Event add method: {}", raw_entry.method);
/// }
/// _ => println!("Other semantic type"),
/// }
///
/// // Access coded index for association
/// println!("Associated with: {:?}", raw_entry.association.tag);
/// # }
/// ```
///
/// # Thread Safety
///
/// [`MethodSemanticsRaw`] is [`std::marker::Send`] and [`std::marker::Sync`] as it contains only primitive data types.
/// Instances can be safely shared across threads and accessed concurrently without synchronization.
///
/// # ECMA-335 Reference
///
/// Corresponds to ECMA-335 §II.22.28 `MethodSemantics` table structure.
/// - [ECMA-335 Standard](https://www.ecma-international.org/publications-and-standards/standards/ecma-335/)
/// - Table ID: 0x18
/// - Purpose: Define semantic relationships between methods and properties/events