2020-02-20 09:19:48 +00:00
|
|
|
error: invalid register class `foo`: unknown register class
|
2021-12-10 00:15:33 +00:00
|
|
|
--> $DIR/bad-reg.rs:14:20
|
2020-02-20 09:19:48 +00:00
|
|
|
|
|
|
|
|
LL | asm!("{}", in(foo) foo);
|
|
|
|
| ^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: invalid register `foo`: unknown register
|
2021-12-10 00:15:33 +00:00
|
|
|
--> $DIR/bad-reg.rs:16:18
|
2020-02-20 09:19:48 +00:00
|
|
|
|
|
|
|
|
LL | asm!("", in("foo") foo);
|
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: invalid asm template modifier for this register class
|
2021-12-10 00:15:33 +00:00
|
|
|
--> $DIR/bad-reg.rs:18:15
|
2020-02-20 09:19:48 +00:00
|
|
|
|
|
|
|
|
LL | asm!("{:z}", in(reg) foo);
|
|
|
|
| ^^^^ ----------- argument
|
|
|
|
| |
|
|
|
|
| template modifier
|
|
|
|
|
|
2020-05-08 00:15:56 +00:00
|
|
|
= note: the `reg` register class supports the following template modifiers: `l`, `x`, `e`, `r`
|
2020-02-20 09:19:48 +00:00
|
|
|
|
|
|
|
error: invalid asm template modifier for this register class
|
2021-12-10 00:15:33 +00:00
|
|
|
--> $DIR/bad-reg.rs:20:15
|
2020-02-20 09:19:48 +00:00
|
|
|
|
|
|
|
|
LL | asm!("{:r}", in(xmm_reg) foo);
|
|
|
|
| ^^^^ --------------- argument
|
|
|
|
| |
|
|
|
|
| template modifier
|
|
|
|
|
|
|
|
|
= note: the `xmm_reg` register class supports the following template modifiers: `x`, `y`, `z`
|
|
|
|
|
|
|
|
error: asm template modifiers are not allowed for `const` arguments
|
2021-12-10 00:15:33 +00:00
|
|
|
--> $DIR/bad-reg.rs:22:15
|
2020-02-20 09:19:48 +00:00
|
|
|
|
|
|
|
|
LL | asm!("{:a}", const 0);
|
|
|
|
| ^^^^ ------- argument
|
|
|
|
| |
|
|
|
|
| template modifier
|
|
|
|
|
|
|
|
error: asm template modifiers are not allowed for `sym` arguments
|
2021-12-10 00:15:33 +00:00
|
|
|
--> $DIR/bad-reg.rs:24:15
|
2020-02-20 09:19:48 +00:00
|
|
|
|
|
|
|
|
LL | asm!("{:a}", sym main);
|
|
|
|
| ^^^^ -------- argument
|
|
|
|
| |
|
|
|
|
| template modifier
|
|
|
|
|
|
|
|
error: invalid register `ebp`: the frame pointer cannot be used as an operand for inline asm
|
2021-12-10 00:15:33 +00:00
|
|
|
--> $DIR/bad-reg.rs:26:18
|
2020-02-20 09:19:48 +00:00
|
|
|
|
|
|
|
|
LL | asm!("", in("ebp") foo);
|
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: invalid register `rsp`: the stack pointer cannot be used as an operand for inline asm
|
2021-12-10 00:15:33 +00:00
|
|
|
--> $DIR/bad-reg.rs:28:18
|
2020-02-20 09:19:48 +00:00
|
|
|
|
|
|
|
|
LL | asm!("", in("rsp") foo);
|
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: invalid register `ip`: the instruction pointer cannot be used as an operand for inline asm
|
2021-12-10 00:15:33 +00:00
|
|
|
--> $DIR/bad-reg.rs:30:18
|
2020-02-20 09:19:48 +00:00
|
|
|
|
|
|
|
|
LL | asm!("", in("ip") foo);
|
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
2021-06-17 20:00:52 +00:00
|
|
|
error: invalid register `k0`: the k0 AVX mask register cannot be used as an operand for inline asm
|
2021-12-10 00:15:33 +00:00
|
|
|
--> $DIR/bad-reg.rs:32:18
|
2020-02-20 09:19:48 +00:00
|
|
|
|
|
2021-06-17 20:00:52 +00:00
|
|
|
LL | asm!("", in("k0") foo);
|
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: register class `x87_reg` can only be used as a clobber, not as an input or output
|
2022-02-17 18:16:04 +00:00
|
|
|
--> $DIR/bad-reg.rs:35:18
|
2021-06-17 20:00:52 +00:00
|
|
|
|
|
2020-02-20 09:19:48 +00:00
|
|
|
LL | asm!("", in("st(2)") foo);
|
|
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
2021-06-17 20:00:52 +00:00
|
|
|
error: register class `mmx_reg` can only be used as a clobber, not as an input or output
|
2022-02-17 18:16:04 +00:00
|
|
|
--> $DIR/bad-reg.rs:37:18
|
2020-02-20 09:19:48 +00:00
|
|
|
|
|
|
|
|
LL | asm!("", in("mm0") foo);
|
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
2021-06-17 20:00:52 +00:00
|
|
|
error: register class `x87_reg` can only be used as a clobber, not as an input or output
|
2022-02-17 18:16:04 +00:00
|
|
|
--> $DIR/bad-reg.rs:41:20
|
2020-02-20 09:19:48 +00:00
|
|
|
|
|
2021-06-17 20:00:52 +00:00
|
|
|
LL | asm!("{}", in(x87_reg) foo);
|
|
|
|
| ^^^^^^^^^^^^^^^
|
2020-02-20 09:19:48 +00:00
|
|
|
|
2021-06-17 20:00:52 +00:00
|
|
|
error: register class `mmx_reg` can only be used as a clobber, not as an input or output
|
2022-02-17 18:16:04 +00:00
|
|
|
--> $DIR/bad-reg.rs:43:20
|
2021-04-04 16:44:46 +00:00
|
|
|
|
|
2021-06-17 20:00:52 +00:00
|
|
|
LL | asm!("{}", in(mmx_reg) foo);
|
|
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: register class `x87_reg` can only be used as a clobber, not as an input or output
|
2022-02-17 18:16:04 +00:00
|
|
|
--> $DIR/bad-reg.rs:45:20
|
2021-06-17 20:00:52 +00:00
|
|
|
|
|
|
|
|
LL | asm!("{}", out(x87_reg) _);
|
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: register class `mmx_reg` can only be used as a clobber, not as an input or output
|
2022-02-17 18:16:04 +00:00
|
|
|
--> $DIR/bad-reg.rs:47:20
|
2021-06-17 20:00:52 +00:00
|
|
|
|
|
|
|
|
LL | asm!("{}", out(mmx_reg) _);
|
|
|
|
| ^^^^^^^^^^^^^^
|
2021-04-04 16:44:46 +00:00
|
|
|
|
2020-04-28 23:45:58 +00:00
|
|
|
error: register `al` conflicts with register `ax`
|
2022-02-17 18:16:04 +00:00
|
|
|
--> $DIR/bad-reg.rs:53:33
|
2020-02-20 09:19:48 +00:00
|
|
|
|
|
|
|
|
LL | asm!("", in("eax") foo, in("al") bar);
|
2020-04-28 23:45:58 +00:00
|
|
|
| ------------- ^^^^^^^^^^^^ register `al`
|
2020-02-20 09:19:48 +00:00
|
|
|
| |
|
|
|
|
| register `ax`
|
|
|
|
|
|
|
|
error: register `ax` conflicts with register `ax`
|
2022-02-17 18:16:04 +00:00
|
|
|
--> $DIR/bad-reg.rs:55:33
|
2020-02-20 09:19:48 +00:00
|
|
|
|
|
|
|
|
LL | asm!("", in("rax") foo, out("rax") bar);
|
|
|
|
| ------------- ^^^^^^^^^^^^^^ register `ax`
|
|
|
|
| |
|
|
|
|
| register `ax`
|
|
|
|
|
|
|
|
|
help: use `lateout` instead of `out` to avoid conflict
|
2022-02-17 18:16:04 +00:00
|
|
|
--> $DIR/bad-reg.rs:55:18
|
2020-02-20 09:19:48 +00:00
|
|
|
|
|
|
|
|
LL | asm!("", in("rax") foo, out("rax") bar);
|
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: register `ymm0` conflicts with register `xmm0`
|
2022-02-17 18:16:04 +00:00
|
|
|
--> $DIR/bad-reg.rs:58:34
|
2020-02-20 09:19:48 +00:00
|
|
|
|
|
|
|
|
LL | asm!("", in("xmm0") foo, in("ymm0") bar);
|
|
|
|
| -------------- ^^^^^^^^^^^^^^ register `ymm0`
|
|
|
|
| |
|
|
|
|
| register `xmm0`
|
|
|
|
|
|
|
|
error: register `ymm0` conflicts with register `xmm0`
|
2022-02-17 18:16:04 +00:00
|
|
|
--> $DIR/bad-reg.rs:60:34
|
2020-02-20 09:19:48 +00:00
|
|
|
|
|
|
|
|
LL | asm!("", in("xmm0") foo, out("ymm0") bar);
|
|
|
|
| -------------- ^^^^^^^^^^^^^^^ register `ymm0`
|
|
|
|
| |
|
|
|
|
| register `xmm0`
|
|
|
|
|
|
|
|
|
help: use `lateout` instead of `out` to avoid conflict
|
2022-02-17 18:16:04 +00:00
|
|
|
--> $DIR/bad-reg.rs:60:18
|
2020-02-20 09:19:48 +00:00
|
|
|
|
|
|
|
|
LL | asm!("", in("xmm0") foo, out("ymm0") bar);
|
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
2022-02-17 18:16:04 +00:00
|
|
|
error: aborting due to 20 previous errors
|
2020-02-20 09:19:48 +00:00
|
|
|
|