1
Fork 0

codegen_llvm: set DW_AT_accessibility

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.

Signed-off-by: David Wood <david@davidtw.co>
This commit is contained in:
David Wood 2023-08-23 15:29:23 +01:00
parent d253bf61ad
commit 07931c5a08
No known key found for this signature in database
14 changed files with 268 additions and 15 deletions

View file

@ -0,0 +1,24 @@
// compile-flags: -C debuginfo=2
#![allow(dead_code)]
// Checks that visibility information is present in the debuginfo for crate-visibility enums.
mod module {
use std::hint::black_box;
pub(crate) enum CrateFooEnum {
A,
B(u32),
C { x: u32 },
}
// CHECK: {{!.*}} = !DICompositeType(tag: DW_TAG_structure_type, name: "CrateFooEnum"{{.*}}flags: DIFlagProtected{{.*}})
pub fn use_everything() {
black_box(CrateFooEnum::A);
}
}
fn main() {
module::use_everything();
}