File tree 4 files changed +18
-13
lines changed
4 files changed +18
-13
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ pub unsafe fn __aeabi_uidivmod() {
11
11
bl __udivmodsi4
12
12
ldr r1, [sp]
13
13
add sp, sp, #4
14
- pop {pc}" ) ;
14
+ pop {pc}" :: : "memory" : "volatile" ) ;
15
15
intrinsics:: unreachable ( ) ;
16
16
}
17
17
@@ -26,7 +26,7 @@ pub unsafe fn __aeabi_uldivmod() {
26
26
ldr r2, [sp, #8]
27
27
ldr r3, [sp, #12]
28
28
add sp, sp, #16
29
- pop {r4, pc}" ) ;
29
+ pop {r4, pc}" :: : "memory" : "volatile" ) ;
30
30
intrinsics:: unreachable ( ) ;
31
31
}
32
32
@@ -38,7 +38,7 @@ pub unsafe fn __aeabi_idivmod() {
38
38
pop {r1, r2}
39
39
muls r2, r2, r0
40
40
subs r1, r1, r2
41
- pop {r4, pc}" ) ;
41
+ pop {r4, pc}" :: : "memory" : "volatile" ) ;
42
42
intrinsics:: unreachable ( ) ;
43
43
}
44
44
@@ -53,7 +53,7 @@ pub unsafe fn __aeabi_ldivmod() {
53
53
ldr r2, [sp, #8]
54
54
ldr r3, [sp, #12]
55
55
add sp, sp, #16
56
- pop {r4, pc}" ) ;
56
+ pop {r4, pc}" :: : "memory" : "volatile" ) ;
57
57
intrinsics:: unreachable ( ) ;
58
58
}
59
59
Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ pub unsafe extern fn __rust_probestack() {
82
82
add %rax,%rsp
83
83
84
84
ret
85
- " ) ;
85
+ " :: : "memory" : "volatile" ) ;
86
86
:: core:: intrinsics:: unreachable ( ) ;
87
87
}
88
88
@@ -111,6 +111,6 @@ pub unsafe extern fn __rust_probestack() {
111
111
add %eax,%esp
112
112
pop %ecx
113
113
ret
114
- " ) ;
114
+ " :: : "memory" : "volatile" ) ;
115
115
:: core:: intrinsics:: unreachable ( ) ;
116
116
}
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ pub unsafe fn ___chkstk_ms() {
29
29
test %ecx,(%ecx)
30
30
pop %eax
31
31
pop %ecx
32
- ret" ) ;
32
+ ret" :: : "memory" : "volatile" ) ;
33
33
intrinsics:: unreachable ( ) ;
34
34
}
35
35
@@ -38,7 +38,8 @@ pub unsafe fn ___chkstk_ms() {
38
38
#[ naked]
39
39
#[ no_mangle]
40
40
pub unsafe fn __alloca ( ) {
41
- asm ! ( "jmp ___chkstk // Jump to ___chkstk since fallthrough may be unreliable" ) ;
41
+ asm ! ( "jmp ___chkstk // Jump to ___chkstk since fallthrough may be unreliable"
42
+ :: : "memory" : "volatile" ) ;
42
43
intrinsics:: unreachable ( ) ;
43
44
}
44
45
@@ -66,6 +67,6 @@ pub unsafe fn ___chkstk() {
66
67
mov -4(%eax),%ecx // restore ecx
67
68
push (%eax) // push return address onto the stack
68
69
sub %esp,%eax // restore the original value in eax
69
- ret" ) ;
70
+ ret" :: : "memory" : "volatile" ) ;
70
71
intrinsics:: unreachable ( ) ;
71
72
}
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ pub unsafe fn ___chkstk_ms() {
29
29
test %rcx,(%rcx)
30
30
pop %rax
31
31
pop %rcx
32
- ret" ) ;
32
+ ret" :: : "memory" : "volatile" ) ;
33
33
intrinsics:: unreachable ( ) ;
34
34
}
35
35
@@ -38,15 +38,17 @@ pub unsafe fn ___chkstk_ms() {
38
38
#[ no_mangle]
39
39
pub unsafe fn __alloca ( ) {
40
40
asm ! ( "mov %rcx,%rax // x64 _alloca is a normal function with parameter in rcx
41
- jmp ___chkstk // Jump to ___chkstk since fallthrough may be unreliable" ) ;
41
+ jmp ___chkstk // Jump to ___chkstk since fallthrough may be unreliable"
42
+ :: : "memory" : "volatile" ) ;
42
43
intrinsics:: unreachable ( ) ;
43
44
}
44
45
45
46
#[ cfg( all( windows, target_env = "gnu" , not( feature = "mangled-names" ) ) ) ]
46
47
#[ naked]
47
48
#[ no_mangle]
48
49
pub unsafe fn ___chkstk ( ) {
49
- asm ! ( "
50
+ asm ! (
51
+ "
50
52
push %rcx
51
53
cmp $$0x1000,%rax
52
54
lea 16(%rsp),%rcx // rsp before calling this routine -> rcx
@@ -66,6 +68,8 @@ pub unsafe fn ___chkstk() {
66
68
mov -8(%rax),%rcx // restore rcx
67
69
push (%rax) // push return address onto the stack
68
70
sub %rsp,%rax // restore the original value in rax
69
- ret" ) ;
71
+ ret"
72
+ :: : "memory" : "volatile"
73
+ ) ;
70
74
intrinsics:: unreachable ( ) ;
71
75
}
You can’t perform that action at this time.
0 commit comments