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:
parent
d253bf61ad
commit
07931c5a08
14 changed files with 268 additions and 15 deletions
17
tests/codegen/debug-accessibility/public-struct.rs
Normal file
17
tests/codegen/debug-accessibility/public-struct.rs
Normal file
|
@ -0,0 +1,17 @@
|
|||
// compile-flags: -C debuginfo=2
|
||||
|
||||
#![allow(dead_code)]
|
||||
|
||||
// Checks that visibility information is present in the debuginfo for public structs.
|
||||
|
||||
use std::hint::black_box;
|
||||
|
||||
pub struct PublicFooStruct {
|
||||
x: u32,
|
||||
}
|
||||
|
||||
// CHECK: {{!.*}} = !DICompositeType(tag: DW_TAG_structure_type, name: "PublicFooStruct"{{.*}}flags: DIFlagPublic{{.*}})
|
||||
|
||||
fn main() {
|
||||
black_box(PublicFooStruct { x: 4 });
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue