about summary refs log tree commit diff
path: root/tests/codegen/debug-accessibility/struct-fields.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2023-12-15 17:13:04 +0000
committerbors <bors@rust-lang.org>2023-12-15 17:13:04 +0000
commit3f39cae1199a2a0217c3646a16d1ae7fa599130b (patch)
tree0d76b542bb913cca9b76ed56b4c5fb33e0118cbc /tests/codegen/debug-accessibility/struct-fields.rs
parente6707df0de337976dce7577e68fc57adcd5e4842 (diff)
parentce290514df95113a51346b0bd046c0436b9cc92b (diff)
downloadrust-3f39cae1199a2a0217c3646a16d1ae7fa599130b.tar.gz
rust-3f39cae1199a2a0217c3646a16d1ae7fa599130b.zip
Auto merge of #115165 - davidtwco:issue-9228-describe-item-member-visibility, r=wesleywiser
codegen_llvm: set `DW_AT_accessibility`

Fixes #9228.
Based on #74778.

Sets the accessibility of types and fields in DWARF using `DW_AT_accessibility` attribute.

`DW_AT_accessibility` (public/protected/private) isn't exactly right for Rust,  but neither is `DW_AT_visibility` (local/exported/qualified), and there's no way to set `DW_AT_visbility` in LLVM's API. Debuggers will special-case the handling of these per-language anyway.

r? `@wesleywiser` (visited in wg-debugging triage)
Diffstat (limited to 'tests/codegen/debug-accessibility/struct-fields.rs')
-rw-r--r--tests/codegen/debug-accessibility/struct-fields.rs30
1 files changed, 30 insertions, 0 deletions
diff --git a/tests/codegen/debug-accessibility/struct-fields.rs b/tests/codegen/debug-accessibility/struct-fields.rs
new file mode 100644
index 00000000000..76831bdc6c6
--- /dev/null
+++ b/tests/codegen/debug-accessibility/struct-fields.rs
@@ -0,0 +1,30 @@
+// compile-flags: -C debuginfo=2
+
+#![allow(dead_code)]
+
+// Checks that visibility information is present in the debuginfo for struct fields.
+
+mod module {
+    use std::hint::black_box;
+
+    struct StructFields {
+        a: u32,
+        pub(crate) b: u32,
+        pub(super) c: u32,
+        pub d: u32,
+    }
+
+    // CHECK: [[StructFields:!.*]] = !DICompositeType(tag: DW_TAG_structure_type, name: "StructFields"{{.*}}flags: DIFlagPrivate{{.*}})
+    // CHECK: {{!.*}} = !DIDerivedType(tag: DW_TAG_member, name: "a", scope: [[StructFields]]{{.*}}flags: DIFlagPrivate{{.*}})
+    // CHECK: {{!.*}} = !DIDerivedType(tag: DW_TAG_member, name: "b", scope: [[StructFields]]{{.*}}flags: DIFlagProtected{{.*}})
+    // CHECK: {{!.*}} = !DIDerivedType(tag: DW_TAG_member, name: "c", scope: [[StructFields]]{{.*}}flags: DIFlagProtected{{.*}})
+    // CHECK: {{!.*}} = !DIDerivedType(tag: DW_TAG_member, name: "d", scope: [[StructFields]]{{.*}}flags: DIFlagPublic{{.*}})
+
+    pub fn use_everything() {
+        black_box(StructFields { a: 1, b: 2, c: 3, d: 4 });
+    }
+}
+
+fn main() {
+    module::use_everything();
+}