about summary refs log tree commit diff
path: root/compiler/rustc_middle/src/ty/mod.rs
diff options
context:
space:
mode:
authorKaran Janthe <karanjanthe@gmail.com>2025-09-01 05:05:49 +0000
committerKaran Janthe <karanjanthe@gmail.com>2025-09-19 04:11:35 +0000
commit31541feb6f7e46c23141bdeb3e35ecd305bf8762 (patch)
tree60836416827be070e55eaf27b9d28a52edf03165 /compiler/rustc_middle/src/ty/mod.rs
parent54f9376660707d4ca9fce51fd423658f75128ac4 (diff)
downloadrust-31541feb6f7e46c23141bdeb3e35ecd305bf8762.tar.gz
rust-31541feb6f7e46c23141bdeb3e35ecd305bf8762.zip
autodiff: add TypeTree support for arrays
Diffstat (limited to 'compiler/rustc_middle/src/ty/mod.rs')
-rw-r--r--compiler/rustc_middle/src/ty/mod.rs42
1 files changed, 41 insertions, 1 deletions
diff --git a/compiler/rustc_middle/src/ty/mod.rs b/compiler/rustc_middle/src/ty/mod.rs
index 741b5d7fd4e..02a4e4e2b15 100644
--- a/compiler/rustc_middle/src/ty/mod.rs
+++ b/compiler/rustc_middle/src/ty/mod.rs
@@ -2286,6 +2286,46 @@ pub fn typetree_from_ty<'tcx>(tcx: TyCtxt<'tcx>, ty: Ty<'tcx>) -> TypeTree {
         }]);
     }
 
-    // FIXME(KMJ-007): Handle arrays, slices, structs, and other complex types
+    if ty.is_array() {
+        if let ty::Array(element_ty, len_const) = ty.kind() {
+            let len = len_const.try_to_target_usize(tcx).unwrap_or(0);
+            if len == 0 {
+                return TypeTree::new();
+            }
+
+            let element_tree = typetree_from_ty(tcx, *element_ty);
+
+            let element_layout = tcx
+                .layout_of(ty::TypingEnv::fully_monomorphized().as_query_input(*element_ty))
+                .ok()
+                .map(|layout| layout.size.bytes_usize())
+                .unwrap_or(0);
+
+            if element_layout == 0 {
+                return TypeTree::new();
+            }
+
+            let mut types = Vec::new();
+            for i in 0..len {
+                let base_offset = (i as usize * element_layout) as isize;
+
+                for elem_type in &element_tree.0 {
+                    types.push(Type {
+                        offset: if elem_type.offset == -1 {
+                            base_offset
+                        } else {
+                            base_offset + elem_type.offset
+                        },
+                        size: elem_type.size,
+                        kind: elem_type.kind,
+                        child: elem_type.child.clone(),
+                    });
+                }
+            }
+
+            return TypeTree(types);
+        }
+    }
+
     TypeTree::new()
 }