@@ -22,6 +22,7 @@ use rustc_target::spec::DebuginfoKind;
22
22
use smallvec:: smallvec;
23
23
use tracing:: { debug, instrument} ;
24
24
25
+ pub ( crate ) use self :: type_map:: TypeMap ;
25
26
use self :: type_map:: { DINodeCreationResult , Stub , UniqueTypeId } ;
26
27
use super :: CodegenUnitDebugContext ;
27
28
use super :: namespace:: mangled_name_of_instance;
@@ -30,6 +31,7 @@ use super::utils::{
30
31
DIB , create_DIArray, debug_context, get_namespace_for_item, is_node_local_to_unit,
31
32
} ;
32
33
use crate :: common:: { AsCCharPtr , CodegenCx } ;
34
+ use crate :: debuginfo:: dwarf_const;
33
35
use crate :: debuginfo:: metadata:: type_map:: build_type_with_children;
34
36
use crate :: debuginfo:: utils:: { WidePtrKind , wide_pointer_kind} ;
35
37
use crate :: llvm:: debuginfo:: {
@@ -59,23 +61,6 @@ impl fmt::Debug for llvm::Metadata {
59
61
}
60
62
}
61
63
62
- // From DWARF 5.
63
- // See http://www.dwarfstd.org/ShowIssue.php?issue=140129.1.
64
- const DW_LANG_RUST : c_uint = 0x1c ;
65
- #[ allow( non_upper_case_globals) ]
66
- const DW_ATE_boolean : c_uint = 0x02 ;
67
- #[ allow( non_upper_case_globals) ]
68
- const DW_ATE_float : c_uint = 0x04 ;
69
- #[ allow( non_upper_case_globals) ]
70
- const DW_ATE_signed : c_uint = 0x05 ;
71
- #[ allow( non_upper_case_globals) ]
72
- const DW_ATE_unsigned : c_uint = 0x07 ;
73
- #[ allow( non_upper_case_globals) ]
74
- const DW_ATE_UTF : c_uint = 0x10 ;
75
-
76
- #[ allow( non_upper_case_globals) ]
77
- const DW_TAG_const_type : c_uint = 0x26 ;
78
-
79
64
pub ( super ) const UNKNOWN_LINE_NUMBER : c_uint = 0 ;
80
65
pub ( super ) const UNKNOWN_COLUMN_NUMBER : c_uint = 0 ;
81
66
@@ -90,8 +75,6 @@ type SmallVec<T> = smallvec::SmallVec<[T; 16]>;
90
75
mod enums;
91
76
mod type_map;
92
77
93
- pub ( crate ) use type_map:: TypeMap ;
94
-
95
78
/// Returns from the enclosing function if the type debuginfo node with the given
96
79
/// unique ID can be found in the type map.
97
80
macro_rules! return_if_di_node_created_in_meantime {
@@ -522,7 +505,7 @@ fn recursion_marker_type_di_node<'ll, 'tcx>(cx: &CodegenCx<'ll, 'tcx>) -> &'ll D
522
505
name. as_c_char_ptr ( ) ,
523
506
name. len ( ) ,
524
507
cx. tcx . data_layout . pointer_size . bits ( ) ,
525
- DW_ATE_unsigned ,
508
+ dwarf_const :: DW_ATE_unsigned ,
526
509
)
527
510
}
528
511
} )
@@ -781,6 +764,8 @@ fn build_basic_type_di_node<'ll, 'tcx>(
781
764
// .natvis visualizers (and perhaps other existing native debuggers?)
782
765
let cpp_like_debuginfo = cpp_like_debuginfo ( cx. tcx ) ;
783
766
767
+ use dwarf_const:: { DW_ATE_UTF , DW_ATE_boolean , DW_ATE_float , DW_ATE_signed , DW_ATE_unsigned } ;
768
+
784
769
let ( name, encoding) = match t. kind ( ) {
785
770
ty:: Never => ( "!" , DW_ATE_unsigned ) ,
786
771
ty:: Tuple ( elements) if elements. is_empty ( ) => {
@@ -961,7 +946,7 @@ pub(crate) fn build_compile_unit_di_node<'ll, 'tcx>(
961
946
962
947
let unit_metadata = llvm:: LLVMRustDIBuilderCreateCompileUnit (
963
948
debug_context. builder ,
964
- DW_LANG_RUST ,
949
+ dwarf_const :: DW_LANG_Rust ,
965
950
compile_unit_file,
966
951
producer. as_c_char_ptr ( ) ,
967
952
producer. len ( ) ,
0 commit comments