You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| All |`sp`, `r15` (s390x)| The stack pointer must be restored to its original value at the end of an asm code block. |
148
-
| All |`fr` (Hexagon), `$fp` (MIPS), `Y` (AVR), `r4` (MSP430), `a6` (M68k), `r11` (s390x), `x29` (Arm64EC) | The frame pointer cannot be used as an input or output. |
137
+
| All |`sp`| The stack pointer must be restored to its original value at the end of an asm code block. |
138
+
| All |`fr` (Hexagon), `$fp` (MIPS), `Y` (AVR), `r4` (MSP430), `a6` (M68k), `x29` (Arm64EC) | The frame pointer cannot be used as an input or output. |
149
139
| All |`r19` (Hexagon), `x19` (Arm64EC) | This is used internally by LLVM as a "base pointer" for functions with complex stack frames. |
150
140
| MIPS |`$0` or `$zero`| This is a constant zero register which can't be modified. |
151
141
| MIPS |`$1` or `$at`| Reserved for assembler. |
@@ -162,8 +152,6 @@ This feature tracks `asm!` and `global_asm!` support for the following architect
162
152
| CSKY |`r15`| This is the link register. |
163
153
| CSKY |`r[26-30]`| Reserved by its ABI. |
164
154
| CSKY |`r31`| This is the TLS register. |
165
-
| s390x |`c[0-15]`| Reserved by the kernel. |
166
-
| s390x |`a[0-1]`| Reserved for system use. |
167
155
| Arm64EC |`xzr`| This is a constant zero register which can't be modified. |
168
156
| Arm64EC |`x18`| This is an OS-reserved register. |
169
157
| Arm64EC |`x13`, `x14`, `x23`, `x24`, `x28`, `v[16-31]`| These are AArch64 registers that are not supported for Arm64EC. |
@@ -182,9 +170,6 @@ This feature tracks `asm!` and `global_asm!` support for the following architect
182
170
| PowerPC |`reg`| None |`0`| None |
183
171
| PowerPC |`reg_nonzero`| None |`3`| None |
184
172
| PowerPC |`freg`| None |`0`| None |
185
-
| s390x |`reg`| None |`%r0`| None |
186
-
| s390x |`reg_addr`| None |`%r1`| None |
187
-
| s390x |`freg`| None |`%f0`| None |
188
173
| CSKY |`reg`| None |`r0`| None |
189
174
| CSKY |`freg`| None |`f0`| None |
190
175
| Arm64EC |`reg`| None |`x0`|`x`|
@@ -207,8 +192,6 @@ These flags registers must be restored upon exiting the asm block if the `preser
0 commit comments