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. |
154
-
| All |`fr` (Hexagon), `fp` (PowerPC), `$fp` (MIPS), `Y` (AVR), `r4` (MSP430), `a6` (M68k), `r11` (s390x), `x29` (Arm64EC) | The frame pointer cannot be used as an input or output. |
143
+
| All |`sp`, | The stack pointer must be restored to its original value at the end of an asm code block. |
144
+
| All |`fr` (Hexagon), `fp` (PowerPC), `$fp` (MIPS), `Y` (AVR), `r4` (MSP430), `a6` (M68k), `x29` (Arm64EC) | The frame pointer cannot be used as an input or output.|
155
145
| All |`r19` (Hexagon), `r29` (PowerPC), `r30` (PowerPC), `x19` (Arm64EC) | These are used internally by LLVM as "base pointer" for functions with complex stack frames. |
156
146
| MIPS |`$0` or `$zero`| This is a constant zero register which can't be modified. |
157
147
| MIPS |`$1` or `$at`| Reserved for assembler. |
@@ -172,8 +162,6 @@ This feature tracks `asm!` and `global_asm!` support for the following architect
172
162
| CSKY |`r15`| This is the link register. |
173
163
| CSKY |`r[26-30]`| Reserved by its ABI. |
174
164
| CSKY |`r31`| This is the TLS register. |
175
-
| s390x |`c[0-15]`| Reserved by the kernel. |
176
-
| s390x |`a[0-1]`| Reserved for system use. |
177
165
| Arm64EC |`xzr`| This is a constant zero register which can't be modified. |
178
166
| Arm64EC |`x18`| This is an OS-reserved register. |
179
167
| Arm64EC |`x13`, `x14`, `x23`, `x24`, `x28`, `v[16-31]`| These are AArch64 registers that are not supported for Arm64EC. |
@@ -192,9 +180,6 @@ This feature tracks `asm!` and `global_asm!` support for the following architect
192
180
| PowerPC |`reg`| None |`0`| None |
193
181
| PowerPC |`reg_nonzero`| None |`3`| None |
194
182
| PowerPC |`freg`| None |`0`| None |
195
-
| s390x |`reg`| None |`%r0`| None |
196
-
| s390x |`reg_addr`| None |`%r1`| None |
197
-
| s390x |`freg`| None |`%f0`| None |
198
183
| CSKY |`reg`| None |`r0`| None |
199
184
| CSKY |`freg`| None |`f0`| None |
200
185
| Arm64EC |`reg`| None |`x0`|`x`|
@@ -217,8 +202,6 @@ These flags registers must be restored upon exiting the asm block if the `preser
0 commit comments