ringkernel-derive 1.1.0

Procedural macros for RingKernel GPU-native actor system
Documentation
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
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
//! Procedural macros for RingKernel.
//!
//! This crate provides the following macros:
//!
//! - `#[derive(RingMessage)]` - Implement the RingMessage trait for message types
//! - `#[derive(PersistentMessage)]` - Implement PersistentMessage for GPU kernel dispatch
//! - `#[ring_kernel]` - Define a ring kernel handler
//! - `#[stencil_kernel]` - Define a GPU stencil kernel (with `cuda-codegen` feature)
//! - `#[gpu_kernel]` - Define a multi-backend GPU kernel with capability checking
//!
//! # Example
//!
//! ```ignore
//! use ringkernel_derive::{RingMessage, ring_kernel};
//!
//! #[derive(RingMessage)]
//! struct AddRequest {
//!     #[message(id)]
//!     id: MessageId,
//!     a: f32,
//!     b: f32,
//! }
//!
//! #[derive(RingMessage)]
//! struct AddResponse {
//!     #[message(id)]
//!     id: MessageId,
//!     result: f32,
//! }
//!
//! #[ring_kernel(id = "adder")]
//! async fn process(ctx: &mut RingContext, req: AddRequest) -> AddResponse {
//!     AddResponse {
//!         id: MessageId::generate(),
//!         result: req.a + req.b,
//!     }
//! }
//! ```
//!
//! # Multi-Backend GPU Kernels
//!
//! The `#[gpu_kernel]` macro enables multi-backend code generation with capability checking:
//!
//! ```ignore
//! use ringkernel_derive::gpu_kernel;
//!
//! // Generate code for CUDA and Metal, with fallback order
//! #[gpu_kernel(backends = [cuda, metal], fallback = [wgpu, cpu])]
//! fn saxpy(x: &[f32], y: &mut [f32], a: f32, n: i32) {
//!     let idx = global_thread_id_x();
//!     if idx < n {
//!         y[idx as usize] = a * x[idx as usize] + y[idx as usize];
//!     }
//! }
//!
//! // Require specific capabilities at compile time
//! #[gpu_kernel(backends = [cuda], requires = [f64, atomic64])]
//! fn double_precision(data: &mut [f64], n: i32) {
//!     // Uses f64 operations - validated at compile time
//! }
//! ```
//!
//! # Stencil Kernels (with `cuda-codegen` feature)
//!
//! ```ignore
//! use ringkernel_derive::stencil_kernel;
//! use ringkernel_cuda_codegen::GridPos;
//!
//! #[stencil_kernel(id = "fdtd", grid = "2d", tile_size = 16, halo = 1)]
//! fn fdtd(p: &[f32], p_prev: &mut [f32], c2: f32, pos: GridPos) {
//!     let curr = p[pos.idx()];
//!     let lap = pos.north(p) + pos.south(p) + pos.east(p) + pos.west(p) - 4.0 * curr;
//!     p_prev[pos.idx()] = 2.0 * curr - p_prev[pos.idx()] + c2 * lap;
//! }
//! ```

use darling::{ast, FromDeriveInput, FromField, FromMeta};
use proc_macro::TokenStream;
use quote::{format_ident, quote};
use syn::{parse_macro_input, DeriveInput, ItemFn};

/// Attributes for the RingMessage derive macro.
#[derive(Debug, FromDeriveInput)]
#[darling(attributes(message, ring_message), supports(struct_named))]
struct RingMessageArgs {
    ident: syn::Ident,
    generics: syn::Generics,
    data: ast::Data<(), RingMessageField>,
    /// Optional explicit message type ID.
    /// If domain is specified, this is the offset within the domain (0-99).
    /// If domain is not specified, this is the absolute type ID.
    #[darling(default)]
    type_id: Option<u64>,
    /// Optional domain for message classification.
    /// When specified, the final type ID = domain.base_type_id() + type_id.
    #[darling(default)]
    domain: Option<String>,
    /// Whether this message is routable via K2K.
    /// When true, generates a K2KMessageRegistration for runtime discovery.
    #[darling(default)]
    k2k_routable: bool,
    /// Optional category for K2K routing groups.
    /// Multiple messages can share a category for grouped routing.
    #[darling(default)]
    category: Option<String>,
}

/// Field attributes for RingMessage.
#[derive(Debug, FromField)]
#[darling(attributes(message))]
struct RingMessageField {
    ident: Option<syn::Ident>,
    #[allow(dead_code)]
    ty: syn::Type,
    /// Mark this field as the message ID.
    #[darling(default)]
    id: bool,
    /// Mark this field as the correlation ID.
    #[darling(default)]
    correlation: bool,
    /// Mark this field as the priority.
    #[darling(default)]
    priority: bool,
}

/// Derive macro for implementing the RingMessage trait.
///
/// # Attributes
///
/// On the struct (via `#[message(...)]` or `#[ring_message(...)]`):
/// - `type_id = 123` - Set explicit message type ID (or domain offset if domain is set)
/// - `domain = "OrderMatching"` - Assign to a business domain (adds base type ID)
/// - `k2k_routable = true` - Register for K2K routing discovery
/// - `category = "orders"` - Group messages for K2K routing
///
/// On fields:
/// - `#[message(id)]` - Mark as message ID field
/// - `#[message(correlation)]` - Mark as correlation ID field
/// - `#[message(priority)]` - Mark as priority field
///
/// # Examples
///
/// Basic usage:
/// ```ignore
/// #[derive(RingMessage)]
/// #[message(type_id = 1)]
/// struct MyMessage {
///     #[message(id)]
///     id: MessageId,
///     #[message(correlation)]
///     correlation: CorrelationId,
///     #[message(priority)]
///     priority: Priority,
///     payload: Vec<u8>,
/// }
/// ```
///
/// With domain (type ID = 500 + 1 = 501):
/// ```ignore
/// #[derive(RingMessage)]
/// #[ring_message(type_id = 1, domain = "OrderMatching")]
/// pub struct SubmitOrderInput {
///     #[message(id)]
///     id: MessageId,
///     pub order: Order,
/// }
/// // Also implements DomainMessage trait
/// assert_eq!(SubmitOrderInput::domain(), Domain::OrderMatching);
/// ```
///
/// K2K-routable message:
/// ```ignore
/// #[derive(RingMessage)]
/// #[ring_message(type_id = 1, domain = "OrderMatching", k2k_routable = true, category = "orders")]
/// pub struct SubmitOrderInput { ... }
///
/// // Runtime discovery:
/// let registry = K2KTypeRegistry::discover();
/// assert!(registry.is_routable(501));
/// ```
#[proc_macro_derive(RingMessage, attributes(message, ring_message))]
pub fn derive_ring_message(input: TokenStream) -> TokenStream {
    let input = parse_macro_input!(input as DeriveInput);

    let args = match RingMessageArgs::from_derive_input(&input) {
        Ok(args) => args,
        Err(e) => return e.write_errors().into(),
    };

    let name = &args.ident;
    let (impl_generics, ty_generics, where_clause) = args.generics.split_for_impl();

    // Calculate base type ID (offset within domain, or absolute if no domain)
    let base_type_id = args.type_id.unwrap_or_else(|| {
        use std::collections::hash_map::DefaultHasher;
        use std::hash::{Hash, Hasher};
        let mut hasher = DefaultHasher::new();
        name.to_string().hash(&mut hasher);
        // If domain is set, hash to a value within 0-99 range
        if args.domain.is_some() {
            hasher.finish() % 100
        } else {
            hasher.finish()
        }
    });

    // Find annotated fields
    let fields = match &args.data {
        ast::Data::Struct(fields) => fields,
        _ => panic!("RingMessage can only be derived for structs"),
    };

    let mut id_field: Option<&syn::Ident> = None;
    let mut correlation_field: Option<&syn::Ident> = None;
    let mut priority_field: Option<&syn::Ident> = None;

    for field in fields.iter() {
        if field.id {
            id_field = field.ident.as_ref();
        }
        if field.correlation {
            correlation_field = field.ident.as_ref();
        }
        if field.priority {
            priority_field = field.ident.as_ref();
        }
    }

    // Generate message_id method
    let message_id_impl = if let Some(field) = id_field {
        quote! { self.#field }
    } else {
        quote! { ::ringkernel_core::message::MessageId::new(0) }
    };

    // Generate correlation_id method
    let correlation_id_impl = if let Some(field) = correlation_field {
        quote! { self.#field }
    } else {
        quote! { ::ringkernel_core::message::CorrelationId::none() }
    };

    // Generate priority method
    let priority_impl = if let Some(field) = priority_field {
        quote! { self.#field }
    } else {
        quote! { ::ringkernel_core::message::Priority::Normal }
    };

    // Generate message_type() implementation based on whether domain is specified
    let message_type_impl = if let Some(ref domain_str) = args.domain {
        // With domain: type_id = domain.base_type_id() + offset
        quote! {
            ::ringkernel_core::domain::Domain::from_str(#domain_str)
                .unwrap_or(::ringkernel_core::domain::Domain::General)
                .base_type_id() + #base_type_id
        }
    } else {
        // Without domain: use absolute type_id
        quote! { #base_type_id }
    };

    // Generate DomainMessage impl if domain is specified
    let domain_impl = if let Some(ref domain_str) = args.domain {
        quote! {
            impl #impl_generics ::ringkernel_core::domain::DomainMessage for #name #ty_generics #where_clause {
                fn domain() -> ::ringkernel_core::domain::Domain {
                    ::ringkernel_core::domain::Domain::from_str(#domain_str)
                        .unwrap_or(::ringkernel_core::domain::Domain::General)
                }
            }
        }
    } else {
        quote! {}
    };

    // Generate K2K registration if k2k_routable is set
    let k2k_registration = if args.k2k_routable {
        let registration_name = format_ident!(
            "__K2K_MESSAGE_REGISTRATION_{}",
            name.to_string().to_uppercase()
        );
        let type_name_str = name.to_string();
        let category_tokens = match &args.category {
            Some(cat) => quote! { ::std::option::Option::Some(#cat) },
            None => quote! { ::std::option::Option::None },
        };

        quote! {
            #[allow(non_upper_case_globals)]
            #[::inventory::submit]
            static #registration_name: ::ringkernel_core::k2k::K2KMessageRegistration =
                ::ringkernel_core::k2k::K2KMessageRegistration {
                    type_id: {
                        // Note: This is a const context, so we use the base calculation
                        // For domain types, we need to add the base manually
                        #base_type_id
                    },
                    type_name: #type_name_str,
                    k2k_routable: true,
                    category: #category_tokens,
                };
        }
    } else {
        quote! {}
    };

    let expanded = quote! {
        impl #impl_generics ::ringkernel_core::message::RingMessage for #name #ty_generics #where_clause {
            fn message_type() -> u64 {
                #message_type_impl
            }

            fn message_id(&self) -> ::ringkernel_core::message::MessageId {
                #message_id_impl
            }

            fn correlation_id(&self) -> ::ringkernel_core::message::CorrelationId {
                #correlation_id_impl
            }

            fn priority(&self) -> ::ringkernel_core::message::Priority {
                #priority_impl
            }

            fn serialize(&self) -> Vec<u8> {
                // Use rkyv for serialization with a 4KB scratch buffer
                // For larger payloads, rkyv will allocate as needed
                ::rkyv::to_bytes::<_, 4096>(self)
                    .map(|v| v.to_vec())
                    .unwrap_or_default()
            }

            fn deserialize(bytes: &[u8]) -> ::ringkernel_core::error::Result<Self>
            where
                Self: Sized,
            {
                use ::rkyv::Deserialize as _;
                let archived = unsafe { ::rkyv::archived_root::<Self>(bytes) };
                let deserialized: Self = archived.deserialize(&mut ::rkyv::Infallible)
                    .map_err(|_| ::ringkernel_core::error::RingKernelError::DeserializationError(
                        "rkyv deserialization failed".to_string()
                    ))?;
                Ok(deserialized)
            }

            fn size_hint(&self) -> usize {
                ::std::mem::size_of::<Self>()
            }
        }

        #domain_impl

        #k2k_registration
    };

    TokenStream::from(expanded)
}

// ============================================================================
// PersistentMessage Derive Macro
// ============================================================================

/// Maximum size for inline payload in persistent messages.
#[allow(dead_code)]
const MAX_INLINE_PAYLOAD_SIZE: usize = 32;

/// Attributes for the PersistentMessage derive macro.
#[derive(Debug, FromDeriveInput)]
#[darling(attributes(persistent_message), supports(struct_named))]
struct PersistentMessageArgs {
    ident: syn::Ident,
    generics: syn::Generics,
    /// Field data (reserved for future per-field attributes).
    #[allow(dead_code)]
    data: ast::Data<(), PersistentMessageField>,
    /// Handler ID for CUDA dispatch (0-255).
    handler_id: u32,
    /// Whether this message type expects a response.
    #[darling(default)]
    requires_response: bool,
}

/// Field attributes for PersistentMessage (reserved for future use).
#[derive(Debug, FromField)]
#[darling(attributes(persistent_message))]
struct PersistentMessageField {
    /// Field identifier.
    #[allow(dead_code)]
    ident: Option<syn::Ident>,
    /// Field type.
    #[allow(dead_code)]
    ty: syn::Type,
}

/// Derive macro for implementing the PersistentMessage trait.
///
/// This macro enables type-based dispatch within persistent GPU kernels by
/// generating handler_id, inline payload serialization, and deserialization.
///
/// # Requirements
///
/// The struct must:
/// - Already implement `RingMessage` (use `#[derive(RingMessage)]`)
/// - Be `#[repr(C)]` for safe memory layout
/// - Be `Copy` + `Clone` for inline payload serialization
///
/// # Attributes
///
/// On the struct:
/// - `handler_id = N` (required) - CUDA dispatch handler ID (0-255)
/// - `requires_response = true/false` (optional) - Whether this message expects a response
///
/// # Example
///
/// ```ignore
/// use ringkernel_derive::{RingMessage, PersistentMessage};
///
/// #[derive(RingMessage, PersistentMessage, Clone, Copy)]
/// #[repr(C)]
/// #[message(type_id = 1001)]
/// #[persistent_message(handler_id = 1, requires_response = true)]
/// pub struct FraudCheckRequest {
///     pub transaction_id: u64,
///     pub amount: f32,
///     pub account_id: u32,
/// }
///
/// // Generated implementations:
/// // - handler_id() returns 1
/// // - requires_response() returns true
/// // - to_inline_payload() serializes the struct to [u8; 32] if it fits
/// // - from_inline_payload() deserializes from bytes
/// // - payload_size() returns the struct size
/// ```
///
/// # Size Validation
///
/// For inline payload serialization, structs must be <= 32 bytes.
/// Larger structs will return `None` from `to_inline_payload()`.
///
/// # CUDA Integration
///
/// The handler_id maps to a switch case in generated CUDA code:
///
/// ```cuda
/// switch (msg->handler_id) {
///     case 1: handle_fraud_check(msg, state, response); break;
///     case 2: handle_aggregate(msg, state, response); break;
///     // ...
/// }
/// ```
#[proc_macro_derive(PersistentMessage, attributes(persistent_message))]
pub fn derive_persistent_message(input: TokenStream) -> TokenStream {
    let input = parse_macro_input!(input as DeriveInput);

    let args = match PersistentMessageArgs::from_derive_input(&input) {
        Ok(args) => args,
        Err(e) => return e.write_errors().into(),
    };

    let name = &args.ident;
    let (impl_generics, ty_generics, where_clause) = args.generics.split_for_impl();

    let handler_id = args.handler_id;
    let requires_response = args.requires_response;

    // Generate the PersistentMessage implementation
    let expanded = quote! {
        impl #impl_generics ::ringkernel_core::persistent_message::PersistentMessage for #name #ty_generics #where_clause {
            fn handler_id() -> u32 {
                #handler_id
            }

            fn requires_response() -> bool {
                #requires_response
            }

            fn payload_size() -> usize {
                ::std::mem::size_of::<Self>()
            }

            fn to_inline_payload(&self) -> ::std::option::Option<[u8; ::ringkernel_core::persistent_message::MAX_INLINE_PAYLOAD_SIZE]> {
                // Only serialize if the struct fits in the inline payload
                if ::std::mem::size_of::<Self>() > ::ringkernel_core::persistent_message::MAX_INLINE_PAYLOAD_SIZE {
                    return ::std::option::Option::None;
                }

                let mut payload = [0u8; ::ringkernel_core::persistent_message::MAX_INLINE_PAYLOAD_SIZE];

                // Safety: We've verified the struct fits in the payload,
                // and the struct is repr(C) + Copy
                unsafe {
                    ::std::ptr::copy_nonoverlapping(
                        self as *const Self as *const u8,
                        payload.as_mut_ptr(),
                        ::std::mem::size_of::<Self>()
                    );
                }

                ::std::option::Option::Some(payload)
            }

            fn from_inline_payload(payload: &[u8]) -> ::ringkernel_core::error::Result<Self> {
                let size = ::std::mem::size_of::<Self>();

                if payload.len() < size {
                    return ::std::result::Result::Err(
                        ::ringkernel_core::error::RingKernelError::DeserializationError(
                            ::std::format!(
                                "Payload too small: expected {} bytes, got {}",
                                size,
                                payload.len()
                            )
                        )
                    );
                }

                // Safety: We've verified the payload is large enough,
                // and the struct is repr(C) + Copy
                let value = unsafe {
                    ::std::ptr::read(payload.as_ptr() as *const Self)
                };

                ::std::result::Result::Ok(value)
            }
        }
    };

    TokenStream::from(expanded)
}

/// Attributes for the ring_kernel macro.
#[derive(Debug, FromMeta)]
struct RingKernelArgs {
    /// Kernel identifier.
    id: String,
    /// Execution mode (persistent or event_driven).
    #[darling(default)]
    mode: Option<String>,
    /// Grid size.
    #[darling(default)]
    grid_size: Option<u32>,
    /// Block size.
    #[darling(default)]
    block_size: Option<u32>,
    /// Target kernels this kernel publishes to.
    #[darling(default)]
    publishes_to: Option<String>,
}

/// Attribute macro for defining ring kernel handlers.
///
/// # Attributes
///
/// - `id` (required) - Unique kernel identifier
/// - `mode` - Execution mode: "persistent" (default) or "event_driven"
/// - `grid_size` - Number of blocks (default: 1)
/// - `block_size` - Threads per block (default: 256)
/// - `publishes_to` - Comma-separated list of target kernel IDs
///
/// # Example
///
/// ```ignore
/// #[ring_kernel(id = "processor", mode = "persistent", block_size = 128)]
/// async fn handle(ctx: &mut RingContext, msg: MyMessage) -> MyResponse {
///     // Process message
///     MyResponse { ... }
/// }
/// ```
#[proc_macro_attribute]
pub fn ring_kernel(attr: TokenStream, item: TokenStream) -> TokenStream {
    let args = match darling::ast::NestedMeta::parse_meta_list(attr.into()) {
        Ok(v) => v,
        Err(e) => return TokenStream::from(darling::Error::from(e).write_errors()),
    };

    let args = match RingKernelArgs::from_list(&args) {
        Ok(v) => v,
        Err(e) => return TokenStream::from(e.write_errors()),
    };

    let input = parse_macro_input!(item as ItemFn);

    let kernel_id = &args.id;
    let fn_name = &input.sig.ident;
    let fn_vis = &input.vis;
    let fn_block = &input.block;
    let fn_attrs = &input.attrs;

    // Parse function signature
    let inputs = &input.sig.inputs;
    let output = &input.sig.output;

    // Extract context and message types from signature
    let (_ctx_arg, msg_arg) = if inputs.len() >= 2 {
        let ctx = inputs.first();
        let msg = inputs.iter().nth(1);
        (ctx, msg)
    } else {
        (None, None)
    };

    // Get message type
    let msg_type = msg_arg
        .map(|arg| {
            if let syn::FnArg::Typed(pat_type) = arg {
                pat_type.ty.clone()
            } else {
                syn::parse_quote!(())
            }
        })
        .unwrap_or_else(|| syn::parse_quote!(()));

    // Generate kernel mode
    let mode = args.mode.as_deref().unwrap_or("persistent");
    let mode_expr = if mode == "event_driven" {
        quote! { ::ringkernel_core::types::KernelMode::EventDriven }
    } else {
        quote! { ::ringkernel_core::types::KernelMode::Persistent }
    };

    // Generate grid/block size
    let grid_size = args.grid_size.unwrap_or(1);
    let block_size = args.block_size.unwrap_or(256);

    // Parse publishes_to into a list of target kernel IDs
    let publishes_to_targets: Vec<String> = args
        .publishes_to
        .as_ref()
        .map(|s| s.split(',').map(|t| t.trim().to_string()).collect())
        .unwrap_or_default();

    // Generate registration struct name
    let registration_name = format_ident!(
        "__RINGKERNEL_REGISTRATION_{}",
        fn_name.to_string().to_uppercase()
    );
    let handler_name = format_ident!("{}_handler", fn_name);

    // Generate the expanded code
    let expanded = quote! {
        // Original function (preserved for documentation/testing)
        #(#fn_attrs)*
        #fn_vis async fn #fn_name #inputs #output #fn_block

        // Kernel handler wrapper
        #fn_vis fn #handler_name(
            ctx: &mut ::ringkernel_core::RingContext<'_>,
            envelope: ::ringkernel_core::message::MessageEnvelope,
        ) -> ::std::pin::Pin<Box<dyn ::std::future::Future<Output = ::ringkernel_core::error::Result<::ringkernel_core::message::MessageEnvelope>> + Send + '_>> {
            Box::pin(async move {
                // Deserialize input message
                let msg: #msg_type = ::ringkernel_core::message::RingMessage::deserialize(&envelope.payload)?;

                // Call the actual handler
                let response = #fn_name(ctx, msg).await;

                // Serialize response
                let response_payload = ::ringkernel_core::message::RingMessage::serialize(&response);
                let response_header = ::ringkernel_core::message::MessageHeader::new(
                    <_ as ::ringkernel_core::message::RingMessage>::message_type(),
                    envelope.header.dest_kernel,
                    envelope.header.source_kernel,
                    response_payload.len(),
                    ctx.now(),
                ).with_correlation(envelope.header.correlation_id);

                Ok(::ringkernel_core::message::MessageEnvelope {
                    header: response_header,
                    payload: response_payload,
                    ..::std::default::Default::default()
                })
            })
        }

        // Kernel registration
        #[allow(non_upper_case_globals)]
        #[::inventory::submit]
        static #registration_name: ::ringkernel_core::__private::KernelRegistration = ::ringkernel_core::__private::KernelRegistration {
            id: #kernel_id,
            mode: #mode_expr,
            grid_size: #grid_size,
            block_size: #block_size,
            publishes_to: &[#(#publishes_to_targets),*],
        };
    };

    TokenStream::from(expanded)
}

/// Derive macro for GPU-compatible types.
///
/// Ensures the type has a stable memory layout suitable for GPU transfer.
#[proc_macro_derive(GpuType)]
pub fn derive_gpu_type(input: TokenStream) -> TokenStream {
    let input = parse_macro_input!(input as DeriveInput);
    let name = &input.ident;
    let (impl_generics, ty_generics, where_clause) = input.generics.split_for_impl();

    // Generate assertions for GPU compatibility
    let expanded = quote! {
        // Verify type is Copy (required for GPU transfer)
        const _: fn() = || {
            fn assert_copy<T: Copy>() {}
            assert_copy::<#name #ty_generics>();
        };

        // Verify type is Pod (plain old data)
        unsafe impl #impl_generics ::bytemuck::Pod for #name #ty_generics #where_clause {}
        unsafe impl #impl_generics ::bytemuck::Zeroable for #name #ty_generics #where_clause {}
    };

    TokenStream::from(expanded)
}

// ============================================================================
// Stencil Kernel Macro (requires cuda-codegen feature)
// ============================================================================

/// Attributes for the stencil_kernel macro.
#[derive(Debug, FromMeta)]
struct StencilKernelArgs {
    /// Kernel identifier.
    id: String,
    /// Grid dimensionality: "1d", "2d", or "3d".
    #[darling(default)]
    grid: Option<String>,
    /// Tile/block size (single value for square tiles).
    #[darling(default)]
    tile_size: Option<u32>,
    /// Tile width (for non-square tiles).
    #[darling(default)]
    tile_width: Option<u32>,
    /// Tile height (for non-square tiles).
    #[darling(default)]
    tile_height: Option<u32>,
    /// Halo/ghost cell width (stencil radius).
    #[darling(default)]
    halo: Option<u32>,
}

/// Attribute macro for defining stencil kernels that transpile to CUDA.
///
/// This macro generates CUDA C code from Rust stencil kernel functions at compile time.
/// The generated CUDA source is embedded in the binary and can be compiled at runtime
/// using NVRTC.
///
/// # Attributes
///
/// - `id` (required) - Unique kernel identifier
/// - `grid` - Grid dimensionality: "1d", "2d" (default), or "3d"
/// - `tile_size` - Tile/block size (default: 16)
/// - `tile_width` / `tile_height` - Non-square tile dimensions
/// - `halo` - Stencil radius / ghost cell width (default: 1)
///
/// # Supported Rust Subset
///
/// - Primitives: `f32`, `f64`, `i32`, `u32`, `i64`, `u64`, `bool`
/// - Slices: `&[T]`, `&mut [T]`
/// - Arithmetic: `+`, `-`, `*`, `/`, `%`
/// - Comparisons: `<`, `>`, `<=`, `>=`, `==`, `!=`
/// - Let bindings: `let x = expr;`
/// - If/else: `if cond { a } else { b }`
/// - Stencil intrinsics via `GridPos`
///
/// # Example
///
/// ```ignore
/// use ringkernel_derive::stencil_kernel;
/// use ringkernel_cuda_codegen::GridPos;
///
/// #[stencil_kernel(id = "fdtd", grid = "2d", tile_size = 16, halo = 1)]
/// fn fdtd(p: &[f32], p_prev: &mut [f32], c2: f32, pos: GridPos) {
///     let curr = p[pos.idx()];
///     let lap = pos.north(p) + pos.south(p) + pos.east(p) + pos.west(p) - 4.0 * curr;
///     p_prev[pos.idx()] = 2.0 * curr - p_prev[pos.idx()] + c2 * lap;
/// }
///
/// // Access generated CUDA source:
/// assert!(FDTD_CUDA_SOURCE.contains("__global__"));
/// ```
#[proc_macro_attribute]
pub fn stencil_kernel(attr: TokenStream, item: TokenStream) -> TokenStream {
    let args = match darling::ast::NestedMeta::parse_meta_list(attr.into()) {
        Ok(v) => v,
        Err(e) => return TokenStream::from(darling::Error::from(e).write_errors()),
    };

    let args = match StencilKernelArgs::from_list(&args) {
        Ok(v) => v,
        Err(e) => return TokenStream::from(e.write_errors()),
    };

    let input = parse_macro_input!(item as ItemFn);

    // Generate the stencil kernel code
    stencil_kernel_impl(args, input)
}

fn stencil_kernel_impl(args: StencilKernelArgs, input: ItemFn) -> TokenStream {
    let kernel_id = &args.id;
    let fn_name = &input.sig.ident;
    let fn_vis = &input.vis;
    let fn_block = &input.block;
    let fn_inputs = &input.sig.inputs;
    let fn_output = &input.sig.output;
    let fn_attrs = &input.attrs;

    // Parse configuration
    let grid = args.grid.as_deref().unwrap_or("2d");
    let tile_width = args
        .tile_width
        .unwrap_or_else(|| args.tile_size.unwrap_or(16));
    let tile_height = args
        .tile_height
        .unwrap_or_else(|| args.tile_size.unwrap_or(16));
    let halo = args.halo.unwrap_or(1);

    // Generate CUDA source constant name
    let cuda_const_name = format_ident!("{}_CUDA_SOURCE", fn_name.to_string().to_uppercase());

    // Generate registration name
    let registration_name = format_ident!(
        "__STENCIL_KERNEL_REGISTRATION_{}",
        fn_name.to_string().to_uppercase()
    );

    // Transpile to CUDA (if feature enabled)
    #[cfg(feature = "cuda-codegen")]
    let cuda_source_code = {
        use ringkernel_cuda_codegen::{transpile_stencil_kernel, Grid, StencilConfig};

        let grid_type = match grid {
            "1d" => Grid::Grid1D,
            "2d" => Grid::Grid2D,
            "3d" => Grid::Grid3D,
            _ => Grid::Grid2D,
        };

        let config = StencilConfig::new(kernel_id.clone())
            .with_grid(grid_type)
            .with_tile_size(tile_width as usize, tile_height as usize)
            .with_halo(halo as usize);

        match transpile_stencil_kernel(&input, &config) {
            Ok(cuda) => cuda,
            Err(e) => {
                return TokenStream::from(
                    syn::Error::new_spanned(
                        &input.sig.ident,
                        format!("CUDA transpilation failed: {}", e),
                    )
                    .to_compile_error(),
                );
            }
        }
    };

    #[cfg(not(feature = "cuda-codegen"))]
    let cuda_source_code = format!(
        "// CUDA codegen not enabled. Enable 'cuda-codegen' feature.\n// Kernel: {}\n",
        kernel_id
    );

    // Generate the expanded code
    let expanded = quote! {
        // Original function (for documentation/testing/CPU fallback)
        #(#fn_attrs)*
        #fn_vis fn #fn_name #fn_inputs #fn_output #fn_block

        /// Generated CUDA source code for this stencil kernel.
        #fn_vis const #cuda_const_name: &str = #cuda_source_code;

        /// Stencil kernel registration for runtime discovery.
        #[allow(non_upper_case_globals)]
        #[::inventory::submit]
        static #registration_name: ::ringkernel_core::__private::StencilKernelRegistration =
            ::ringkernel_core::__private::StencilKernelRegistration {
                id: #kernel_id,
                grid: #grid,
                tile_width: #tile_width,
                tile_height: #tile_height,
                halo: #halo,
                cuda_source: #cuda_source_code,
            };
    };

    TokenStream::from(expanded)
}

// ============================================================================
// Multi-Backend GPU Kernel Macro
// ============================================================================

/// GPU backend targets (internal use only).
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
enum GpuBackend {
    /// NVIDIA CUDA backend.
    Cuda,
    /// Apple Metal backend.
    Metal,
    /// WebGPU backend (cross-platform).
    Wgpu,
    /// CPU fallback backend.
    Cpu,
}

impl GpuBackend {
    fn from_str(s: &str) -> Option<Self> {
        match s.to_lowercase().as_str() {
            "cuda" => Some(Self::Cuda),
            "metal" => Some(Self::Metal),
            "wgpu" | "webgpu" => Some(Self::Wgpu),
            "cpu" => Some(Self::Cpu),
            _ => None,
        }
    }

    fn as_str(&self) -> &'static str {
        match self {
            Self::Cuda => "cuda",
            Self::Metal => "metal",
            Self::Wgpu => "wgpu",
            Self::Cpu => "cpu",
        }
    }
}

/// GPU capability flags that can be required by a kernel (internal use only).
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
enum GpuCapability {
    /// 64-bit floating point support.
    Float64,
    /// 64-bit integer support.
    Int64,
    /// 64-bit atomics support.
    Atomic64,
    /// Cooperative groups / grid-wide sync.
    CooperativeGroups,
    /// Subgroup / warp / SIMD operations.
    Subgroups,
    /// Shared memory / threadgroup memory.
    SharedMemory,
    /// Dynamic parallelism (launching kernels from kernels).
    DynamicParallelism,
    /// Half-precision (f16) support.
    Float16,
}

impl GpuCapability {
    fn from_str(s: &str) -> Option<Self> {
        match s.to_lowercase().as_str() {
            "f64" | "float64" => Some(Self::Float64),
            "i64" | "int64" => Some(Self::Int64),
            "atomic64" => Some(Self::Atomic64),
            "cooperative_groups" | "cooperativegroups" | "grid_sync" => {
                Some(Self::CooperativeGroups)
            }
            "subgroups" | "warp" | "simd" => Some(Self::Subgroups),
            "shared_memory" | "sharedmemory" | "threadgroup" => Some(Self::SharedMemory),
            "dynamic_parallelism" | "dynamicparallelism" => Some(Self::DynamicParallelism),
            "f16" | "float16" | "half" => Some(Self::Float16),
            _ => None,
        }
    }

    fn as_str(&self) -> &'static str {
        match self {
            Self::Float64 => "f64",
            Self::Int64 => "i64",
            Self::Atomic64 => "atomic64",
            Self::CooperativeGroups => "cooperative_groups",
            Self::Subgroups => "subgroups",
            Self::SharedMemory => "shared_memory",
            Self::DynamicParallelism => "dynamic_parallelism",
            Self::Float16 => "f16",
        }
    }

    /// Check if a backend supports this capability.
    fn supported_by(&self, backend: GpuBackend) -> bool {
        match (self, backend) {
            // CUDA supports everything
            (_, GpuBackend::Cuda) => true,

            // Metal capabilities
            (Self::Float64, GpuBackend::Metal) => false,
            (Self::CooperativeGroups, GpuBackend::Metal) => false,
            (Self::DynamicParallelism, GpuBackend::Metal) => false,
            (_, GpuBackend::Metal) => true,

            // WebGPU capabilities
            (Self::Float64, GpuBackend::Wgpu) => false,
            (Self::Int64, GpuBackend::Wgpu) => false,
            (Self::Atomic64, GpuBackend::Wgpu) => false, // Emulated only
            (Self::CooperativeGroups, GpuBackend::Wgpu) => false,
            (Self::DynamicParallelism, GpuBackend::Wgpu) => false,
            (Self::Subgroups, GpuBackend::Wgpu) => true, // Optional extension
            (_, GpuBackend::Wgpu) => true,

            // CPU supports everything (in emulation)
            (_, GpuBackend::Cpu) => true,
        }
    }
}

/// Attributes for the gpu_kernel macro.
#[derive(Debug)]
struct GpuKernelArgs {
    /// Kernel identifier.
    id: Option<String>,
    /// Target backends to generate code for.
    backends: Vec<GpuBackend>,
    /// Fallback order for backend selection.
    fallback: Vec<GpuBackend>,
    /// Required capabilities.
    requires: Vec<GpuCapability>,
    /// Block/workgroup size.
    block_size: Option<u32>,
}

impl Default for GpuKernelArgs {
    fn default() -> Self {
        Self {
            id: None,
            backends: vec![GpuBackend::Cuda, GpuBackend::Metal, GpuBackend::Wgpu],
            fallback: vec![
                GpuBackend::Cuda,
                GpuBackend::Metal,
                GpuBackend::Wgpu,
                GpuBackend::Cpu,
            ],
            requires: Vec::new(),
            block_size: None,
        }
    }
}

impl GpuKernelArgs {
    fn parse(attr: proc_macro2::TokenStream) -> Result<Self, darling::Error> {
        let mut args = Self::default();
        let attr_str = attr.to_string();

        // Parse backends = [...]
        if let Some(start) = attr_str.find("backends") {
            if let Some(bracket_start) = attr_str[start..].find('[') {
                if let Some(bracket_end) = attr_str[start + bracket_start..].find(']') {
                    let backends_str =
                        &attr_str[start + bracket_start + 1..start + bracket_start + bracket_end];
                    args.backends = backends_str
                        .split(',')
                        .filter_map(|s| GpuBackend::from_str(s.trim()))
                        .collect();
                }
            }
        }

        // Parse fallback = [...]
        if let Some(start) = attr_str.find("fallback") {
            if let Some(bracket_start) = attr_str[start..].find('[') {
                if let Some(bracket_end) = attr_str[start + bracket_start..].find(']') {
                    let fallback_str =
                        &attr_str[start + bracket_start + 1..start + bracket_start + bracket_end];
                    args.fallback = fallback_str
                        .split(',')
                        .filter_map(|s| GpuBackend::from_str(s.trim()))
                        .collect();
                }
            }
        }

        // Parse requires = [...]
        if let Some(start) = attr_str.find("requires") {
            if let Some(bracket_start) = attr_str[start..].find('[') {
                if let Some(bracket_end) = attr_str[start + bracket_start..].find(']') {
                    let requires_str =
                        &attr_str[start + bracket_start + 1..start + bracket_start + bracket_end];
                    args.requires = requires_str
                        .split(',')
                        .filter_map(|s| GpuCapability::from_str(s.trim()))
                        .collect();
                }
            }
        }

        // Parse id = "..."
        if let Some(start) = attr_str.find("id") {
            if let Some(quote_start) = attr_str[start..].find('"') {
                if let Some(quote_end) = attr_str[start + quote_start + 1..].find('"') {
                    args.id = Some(
                        attr_str[start + quote_start + 1..start + quote_start + 1 + quote_end]
                            .to_string(),
                    );
                }
            }
        }

        // Parse block_size = N
        if let Some(start) = attr_str.find("block_size") {
            if let Some(eq) = attr_str[start..].find('=') {
                let rest = &attr_str[start + eq + 1..];
                let num_end = rest
                    .find(|c: char| !c.is_numeric() && c != ' ')
                    .unwrap_or(rest.len());
                if let Ok(n) = rest[..num_end].trim().parse() {
                    args.block_size = Some(n);
                }
            }
        }

        Ok(args)
    }

    /// Validate that all required capabilities are supported by at least one backend.
    fn validate_capabilities(&self) -> Result<(), String> {
        for cap in &self.requires {
            let mut supported_by_any = false;
            for backend in &self.backends {
                if cap.supported_by(*backend) {
                    supported_by_any = true;
                    break;
                }
            }
            if !supported_by_any {
                return Err(format!(
                    "Capability '{}' is not supported by any of the specified backends: {:?}",
                    cap.as_str(),
                    self.backends.iter().map(|b| b.as_str()).collect::<Vec<_>>()
                ));
            }
        }
        Ok(())
    }

    /// Get backends that support all required capabilities.
    fn compatible_backends(&self) -> Vec<GpuBackend> {
        self.backends
            .iter()
            .filter(|backend| self.requires.iter().all(|cap| cap.supported_by(**backend)))
            .copied()
            .collect()
    }
}

/// Attribute macro for defining multi-backend GPU kernels.
///
/// This macro generates code for multiple GPU backends with compile-time
/// capability validation. It integrates with the `ringkernel-ir` crate
/// to lower Rust DSL to backend-specific shader code.
///
/// # Attributes
///
/// - `backends = [cuda, metal, wgpu]` - Target backends (default: all)
/// - `fallback = [cuda, metal, wgpu, cpu]` - Fallback order for runtime selection
/// - `requires = [f64, atomic64]` - Required capabilities (validated at compile time)
/// - `id = "kernel_name"` - Explicit kernel identifier
/// - `block_size = 256` - Thread block size
///
/// # Example
///
/// ```ignore
/// use ringkernel_derive::gpu_kernel;
///
/// #[gpu_kernel(backends = [cuda, metal], requires = [subgroups])]
/// fn warp_reduce(data: &mut [f32], n: i32) {
///     let idx = global_thread_id_x();
///     if idx < n {
///         // Use warp shuffle for reduction
///         let val = data[idx as usize];
///         let reduced = warp_reduce_sum(val);
///         if lane_id() == 0 {
///             data[idx as usize] = reduced;
///         }
///     }
/// }
/// ```
///
/// # Capability Checking
///
/// The macro validates at compile time that all required capabilities are
/// supported by at least one target backend:
///
/// | Capability | CUDA | Metal | WebGPU | CPU |
/// |------------|------|-------|--------|-----|
/// | f64        | Yes  | No    | No     | Yes |
/// | i64        | Yes  | Yes   | No     | Yes |
/// | atomic64   | Yes  | Yes   | No*    | Yes |
/// | cooperative_groups | Yes | No | No | Yes |
/// | subgroups  | Yes  | Yes   | Opt    | Yes |
/// | shared_memory | Yes | Yes | Yes    | Yes |
/// | f16        | Yes  | Yes   | Yes    | Yes |
///
/// *WebGPU emulates 64-bit atomics with 32-bit pairs.
///
/// # Generated Code
///
/// For each compatible backend, the macro generates:
/// - Backend-specific source code constant (e.g., `KERNEL_NAME_CUDA_SOURCE`)
/// - Registration entry for runtime discovery
/// - CPU fallback function (if `cpu_fallback = true`)
#[proc_macro_attribute]
pub fn gpu_kernel(attr: TokenStream, item: TokenStream) -> TokenStream {
    let attr2: proc_macro2::TokenStream = attr.into();
    let args = match GpuKernelArgs::parse(attr2) {
        Ok(args) => args,
        Err(e) => return TokenStream::from(e.write_errors()),
    };

    let input = parse_macro_input!(item as ItemFn);

    // Validate capabilities
    if let Err(msg) = args.validate_capabilities() {
        return TokenStream::from(
            syn::Error::new_spanned(&input.sig.ident, msg).to_compile_error(),
        );
    }

    gpu_kernel_impl(args, input)
}

fn gpu_kernel_impl(args: GpuKernelArgs, input: ItemFn) -> TokenStream {
    let fn_name = &input.sig.ident;
    let fn_vis = &input.vis;
    let fn_block = &input.block;
    let fn_inputs = &input.sig.inputs;
    let fn_output = &input.sig.output;
    let fn_attrs = &input.attrs;

    let kernel_id = args.id.clone().unwrap_or_else(|| fn_name.to_string());
    let block_size = args.block_size.unwrap_or(256);

    // Get compatible backends
    let compatible_backends = args.compatible_backends();

    // Generate backend-specific source constants
    let mut source_constants = Vec::new();

    for backend in &compatible_backends {
        let const_name = format_ident!(
            "{}_{}",
            fn_name.to_string().to_uppercase(),
            backend.as_str().to_uppercase()
        );

        let backend_str = backend.as_str();

        // Generate placeholder source (actual IR lowering happens at build time)
        // In a full implementation, this would call ringkernel-ir lowering
        let source_placeholder = format!(
            "// {} source for kernel '{}'\n// Generated by ringkernel-derive\n// Capabilities: {:?}\n",
            backend_str.to_uppercase(),
            kernel_id,
            args.requires.iter().map(|c| c.as_str()).collect::<Vec<_>>()
        );

        source_constants.push(quote! {
            /// Generated source code for this kernel.
            #fn_vis const #const_name: &str = #source_placeholder;
        });
    }

    // Generate capability flags as strings
    let capability_strs: Vec<_> = args.requires.iter().map(|c| c.as_str()).collect();
    let backend_strs: Vec<_> = compatible_backends.iter().map(|b| b.as_str()).collect();
    let fallback_strs: Vec<_> = args.fallback.iter().map(|b| b.as_str()).collect();

    // Generate registration struct name
    let registration_name = format_ident!(
        "__GPU_KERNEL_REGISTRATION_{}",
        fn_name.to_string().to_uppercase()
    );

    // Generate info struct name
    let info_name = format_ident!("{}_INFO", fn_name.to_string().to_uppercase());

    // Generate the expanded code
    let expanded = quote! {
        // Original function (CPU fallback / documentation / testing)
        #(#fn_attrs)*
        #fn_vis fn #fn_name #fn_inputs #fn_output #fn_block

        // Backend source constants
        #(#source_constants)*

        /// Multi-backend kernel information.
        #fn_vis mod #info_name {
            /// Kernel identifier.
            pub const ID: &str = #kernel_id;

            /// Block/workgroup size.
            pub const BLOCK_SIZE: u32 = #block_size;

            /// Required capabilities.
            pub const CAPABILITIES: &[&str] = &[#(#capability_strs),*];

            /// Compatible backends (those that support all required capabilities).
            pub const BACKENDS: &[&str] = &[#(#backend_strs),*];

            /// Fallback order for runtime backend selection.
            pub const FALLBACK_ORDER: &[&str] = &[#(#fallback_strs),*];
        }

        /// GPU kernel registration for runtime discovery.
        #[allow(non_upper_case_globals)]
        #[::inventory::submit]
        static #registration_name: ::ringkernel_core::__private::GpuKernelRegistration =
            ::ringkernel_core::__private::GpuKernelRegistration {
                id: #kernel_id,
                block_size: #block_size,
                capabilities: &[#(#capability_strs),*],
                backends: &[#(#backend_strs),*],
                fallback_order: &[#(#fallback_strs),*],
            };
    };

    TokenStream::from(expanded)
}

// ============================================================================
// ControlBlockState Derive Macro (FR-4)
// ============================================================================

/// Attributes for the ControlBlockState derive macro.
#[derive(Debug, FromDeriveInput)]
#[darling(attributes(state), supports(struct_named))]
struct ControlBlockStateArgs {
    ident: syn::Ident,
    generics: syn::Generics,
    /// State version for forward compatibility.
    #[darling(default)]
    version: Option<u32>,
}

/// Derive macro for implementing EmbeddedState trait.
///
/// This macro generates implementations for types that can be stored in
/// the ControlBlock's 24-byte `_reserved` field for zero-copy state access.
///
/// # Requirements
///
/// The type must:
/// - Be `#[repr(C)]` for stable memory layout
/// - Be <= 24 bytes in size (checked at compile time)
/// - Implement `Clone`, `Copy`, and `Default`
/// - Contain only POD (Plain Old Data) types
///
/// # Attributes
///
/// - `#[state(version = N)]` - Set state version for migrations (default: 1)
///
/// # Example
///
/// ```ignore
/// #[derive(ControlBlockState, Default, Clone, Copy)]
/// #[repr(C, align(8))]
/// #[state(version = 1)]
/// pub struct OrderBookState {
///     pub best_bid: u64,    // 8 bytes
///     pub best_ask: u64,    // 8 bytes
///     pub order_count: u32, // 4 bytes
///     pub _pad: u32,        // 4 bytes (padding for alignment)
/// }  // Total: 24 bytes - fits in ControlBlock._reserved
///
/// // Use with ControlBlockStateHelper:
/// let mut block = ControlBlock::new();
/// let state = OrderBookState { best_bid: 100, best_ask: 101, order_count: 42, _pad: 0 };
/// ControlBlockStateHelper::write_embedded(&mut block, &state)?;
/// ```
///
/// # Size Validation
///
/// The macro generates a compile-time assertion that fails if the type
/// exceeds 24 bytes:
///
/// ```ignore
/// #[derive(ControlBlockState, Default, Clone, Copy)]
/// #[repr(C)]
/// struct TooLarge {
///     data: [u8; 32],  // 32 bytes - COMPILE ERROR!
/// }
/// ```
#[proc_macro_derive(ControlBlockState, attributes(state))]
pub fn derive_control_block_state(input: TokenStream) -> TokenStream {
    let input = parse_macro_input!(input as DeriveInput);

    let args = match ControlBlockStateArgs::from_derive_input(&input) {
        Ok(args) => args,
        Err(e) => return e.write_errors().into(),
    };

    let name = &args.ident;
    let (impl_generics, ty_generics, where_clause) = args.generics.split_for_impl();
    let version = args.version.unwrap_or(1);

    let expanded = quote! {
        // Compile-time size check: EmbeddedState must fit in 24 bytes
        const _: () = {
            assert!(
                ::std::mem::size_of::<#name #ty_generics>() <= 24,
                "ControlBlockState types must fit in 24 bytes (ControlBlock._reserved size)"
            );
        };

        // Verify type is Copy (required for GPU transfer)
        const _: fn() = || {
            fn assert_copy<T: Copy>() {}
            assert_copy::<#name #ty_generics>();
        };

        // Implement Pod and Zeroable (required by EmbeddedState)
        // SAFETY: Type is #[repr(C)] with only primitive types, verified by user
        unsafe impl #impl_generics ::bytemuck::Zeroable for #name #ty_generics #where_clause {}
        unsafe impl #impl_generics ::bytemuck::Pod for #name #ty_generics #where_clause {}

        // Implement EmbeddedState
        impl #impl_generics ::ringkernel_core::state::EmbeddedState for #name #ty_generics #where_clause {
            const VERSION: u32 = #version;

            fn is_embedded() -> bool {
                true
            }
        }
    };

    TokenStream::from(expanded)
}