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
Auto merge of #111235 - loongarch-rs:stabilize-asm, r=Amanieu
Stabilize inline asm for LoongArch64
This PR is used to tracking for stabilize `inline asm` for LoongArch64.
**Status**
- [x] #111237
- [x] #111332
- [ ] rust-lang/reference#1357
Any others I missed?
r? `@Amanieu`
| All |`sp`, `r15` (s390x) | The stack pointer must be restored to its original value at the end of an asm code block. |
124
-
| All |`fr` (Hexagon), `$fp` (MIPS), `Y` (AVR), `r4` (MSP430), `a6` (M68k), `$fp` (LoongArch), `r11` (s390x) | The frame pointer cannot be used as an input or output. |
115
+
| All |`fr` (Hexagon), `$fp` (MIPS), `Y` (AVR), `r4` (MSP430), `a6` (M68k), `r11` (s390x) | The frame pointer cannot be used as an input or output. |
125
116
| All |`r19` (Hexagon) | This is used internally by LLVM as a "base pointer" for functions with complex stack frames. |
126
117
| MIPS |`$0` or `$zero`| This is a constant zero register which can't be modified. |
127
118
| MIPS |`$1` or `$at`| Reserved for assembler. |
@@ -132,10 +123,6 @@ This feature tracks `asm!` and `global_asm!` support for the following architect
132
123
| AVR |`r0`, `r1`, `r1r0`| Due to an issue in LLVM, the `r0` and `r1` registers cannot be used as inputs or outputs. If modified, they must be restored to their original values before the end of the block. |
133
124
|MSP430 |`r0`, `r2`, `r3`| These are the program counter, status register, and constant generator respectively. Neither the status register nor constant generator can be written to. |
134
125
| M68k |`a4`, `a5`| Used internally by LLVM for the base pointer and global base pointer. |
135
-
| LoongArch |`$r0` or `$zero`| This is a constant zero register which can't be modified. |
136
-
| LoongArch |`$r2` or `$tp`| This is reserved for TLS. |
137
-
| LoongArch |`$r21`| This is reserved by the ABI. |
138
-
| LoongArch |`$r31` or `$s8`| This is used internally by LLVM. |
139
126
140
127
## Template modifiers
141
128
@@ -150,8 +137,6 @@ This feature tracks `asm!` and `global_asm!` support for the following architect
0 commit comments