1
- use std:: fmt;
2
- #[ cfg( not( feature = "cpp_demangle" ) ) ]
3
- use std:: marker:: PhantomData ;
4
- use std:: os:: raw:: c_void;
5
- use std:: path:: Path ;
6
- use std:: str;
1
+ cfg_if ! {
2
+ if #[ cfg( feature = "std" ) ] {
3
+ use std:: fmt;
4
+ use std:: path:: Path ;
5
+ }
6
+ }
7
+
8
+ cfg_if ! {
9
+ if #[ cfg( all( feature = "std" , not( feature = "cpp_demangle" ) ) ) ] {
10
+ use std:: marker:: PhantomData ;
11
+ } else if #[ cfg( not( feature = "cpp_demangle" ) ) ] {
12
+ use core:: marker:: PhantomData ;
13
+ }
14
+ }
15
+
16
+ cfg_if ! {
17
+ if #[ cfg( feature = "std" ) ] {
18
+ use std:: str ;
19
+ } else {
20
+ use core:: str ;
21
+ }
22
+ }
23
+
24
+ use types:: c_void;
7
25
use rustc_demangle:: { try_demangle, Demangle } ;
8
26
9
27
/// Resolve an address to a symbol, passing the symbol to the specified
@@ -37,7 +55,7 @@ use rustc_demangle::{try_demangle, Demangle};
37
55
/// }
38
56
/// ```
39
57
pub fn resolve < F : FnMut ( & Symbol ) > ( addr : * mut c_void , mut cb : F ) {
40
- resolve_imp ( addr, & mut cb)
58
+ resolve_imp ( addr as * mut _ , & mut cb)
41
59
}
42
60
43
61
/// A trait representing the resolution of a symbol in a file.
@@ -63,13 +81,14 @@ impl Symbol {
63
81
/// * The raw `str` value of the symbol can be accessed (if it's valid
64
82
/// utf-8).
65
83
/// * The raw bytes for the symbol name can be accessed.
84
+ #[ cfg( not( all( not( feature = "std" ) , feature = "dladdr" ) ) ) ]
66
85
pub fn name ( & self ) -> Option < SymbolName > {
67
86
self . inner . name ( )
68
87
}
69
88
70
89
/// Returns the starting address of this function.
71
90
pub fn addr ( & self ) -> Option < * mut c_void > {
72
- self . inner . addr ( )
91
+ self . inner . addr ( ) . map ( |p| p as * mut _ )
73
92
}
74
93
75
94
/// Returns the file name where this function was defined.
@@ -78,6 +97,7 @@ impl Symbol {
78
97
/// unix platforms other than OSX) and when a binary is compiled with
79
98
/// debuginfo. If neither of these conditions is met then this will likely
80
99
/// return `None`.
100
+ #[ cfg( feature = "std" ) ]
81
101
pub fn filename ( & self ) -> Option < & Path > {
82
102
self . inner . filename ( )
83
103
}
@@ -91,6 +111,7 @@ impl Symbol {
91
111
}
92
112
}
93
113
114
+ #[ cfg( feature = "std" ) ]
94
115
impl fmt:: Debug for Symbol {
95
116
fn fmt ( & self , f : & mut fmt:: Formatter ) -> fmt:: Result {
96
117
let mut d = f. debug_struct ( "Symbol" ) ;
@@ -189,7 +210,7 @@ impl<'a> SymbolName<'a> {
189
210
}
190
211
191
212
cfg_if ! {
192
- if #[ cfg( feature = "cpp_demangle" ) ] {
213
+ if #[ cfg( all ( feature = "cpp_demangle" , feature = "std" ) ) ] {
193
214
impl <' a> fmt:: Display for SymbolName <' a> {
194
215
fn fmt( & self , f: & mut fmt:: Formatter ) -> fmt:: Result {
195
216
if let Some ( ref s) = self . demangled {
@@ -201,7 +222,7 @@ cfg_if! {
201
222
}
202
223
}
203
224
}
204
- } else {
225
+ } else if # [ cfg ( feature = "std" ) ] {
205
226
impl <' a> fmt:: Display for SymbolName <' a> {
206
227
fn fmt( & self , f: & mut fmt:: Formatter ) -> fmt:: Result {
207
228
if let Some ( ref s) = self . demangled {
@@ -215,7 +236,7 @@ cfg_if! {
215
236
}
216
237
217
238
cfg_if ! {
218
- if #[ cfg( feature = "cpp_demangle" ) ] {
239
+ if #[ cfg( all ( feature = "cpp_demangle" , feature = "std" ) ) ] {
219
240
impl <' a> fmt:: Debug for SymbolName <' a> {
220
241
fn fmt( & self , f: & mut fmt:: Formatter ) -> fmt:: Result {
221
242
use std:: fmt:: Write ;
@@ -237,7 +258,7 @@ cfg_if! {
237
258
String :: from_utf8_lossy( self . bytes) . fmt( f)
238
259
}
239
260
}
240
- } else {
261
+ } else if # [ cfg ( feature = "std" ) ] {
241
262
impl <' a> fmt:: Debug for SymbolName <' a> {
242
263
fn fmt( & self , f: & mut fmt:: Formatter ) -> fmt:: Result {
243
264
if let Some ( ref s) = self . demangled {
@@ -255,7 +276,8 @@ cfg_if! {
255
276
mod dbghelp;
256
277
use self :: dbghelp:: resolve as resolve_imp;
257
278
use self :: dbghelp:: Symbol as SymbolImp ;
258
- } else if #[ cfg( all( feature = "gimli-symbolize" ,
279
+ } else if #[ cfg( all( feature = "std" ,
280
+ feature = "gimli-symbolize" ,
259
281
unix,
260
282
target_os = "linux" ) ) ] {
261
283
mod gimli;
0 commit comments