41
41
//! probes on any other architecture like ARM or PowerPC64. LLVM I'm sure would
42
42
//! be more than welcome to accept such a change!
43
43
44
- #![ cfg( not( windows) ) ] // Windows already has builtins to do this
44
+ #![ cfg( not( feature = "mangled-names" ) ) ]
45
+ // Windows already has builtins to do this.
46
+ #![ cfg( not( windows) ) ]
47
+ // We only define stack probing for these architectures today.
48
+ #![ cfg( any( target_arch = "x86_64" , target_arch = "x86" ) ) ]
45
49
46
50
extern "C" {
47
51
pub fn __rust_probestack ( ) ;
@@ -52,11 +56,7 @@ extern "C" {
52
56
// emitted for the function.
53
57
//
54
58
// This is the ELF version.
55
- #[ cfg( all(
56
- any( target_arch = "x86_64" , target_arch = "x86" ) ,
57
- not( feature = "mangled-names" ) ,
58
- not( target_vendor = "apple" )
59
- ) ) ]
59
+ #[ cfg( not( target_vendor = "apple" ) ) ]
60
60
macro_rules! define_rust_probestack {
61
61
( $body: expr) => {
62
62
concat!(
@@ -76,11 +76,7 @@ macro_rules! define_rust_probestack {
76
76
}
77
77
78
78
// Same as above, but for Mach-O.
79
- #[ cfg( all(
80
- any( target_arch = "x86_64" , target_arch = "x86" ) ,
81
- not( feature = "mangled-names" ) ,
82
- target_vendor = "apple"
83
- ) ) ]
79
+ #[ cfg( target_vendor = "apple" ) ]
84
80
macro_rules! define_rust_probestack {
85
81
( $body: expr) => {
86
82
concat!(
@@ -98,7 +94,7 @@ macro_rules! define_rust_probestack {
98
94
//
99
95
// The ABI here is that the stack frame size is located in `%rax`. Upon
100
96
// return we're not supposed to modify `%rsp` or `%rax`.
101
- #[ cfg( all ( target_arch = "x86_64" , not ( feature = "mangled-names" ) ) ) ]
97
+ #[ cfg( target_arch = "x86_64" ) ]
102
98
global_asm ! ( define_rust_probestack!( "
103
99
.cfi_startproc
104
100
pushq %rbp
@@ -150,7 +146,7 @@ global_asm!(define_rust_probestack!("
150
146
.cfi_endproc
151
147
" ) ) ;
152
148
153
- #[ cfg( all ( target_arch = "x86" , not ( feature = "mangled-names" ) ) ) ]
149
+ #[ cfg( target_arch = "x86" ) ]
154
150
// This is the same as x86_64 above, only translated for 32-bit sizes. Note
155
151
// that on Unix we're expected to restore everything as it was, this
156
152
// function basically can't tamper with anything.
0 commit comments