-
Notifications
You must be signed in to change notification settings - Fork 13.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
unstable book: explaining how to properly use labels in inline asm #76704
Comments
This comment has been minimized.
This comment has been minimized.
Would be OK if I pick this task? @lzutao |
@castarco Are you still working on this? If yes, could you claim it? |
@GroteGnoom would this do the trick ? LabelsThe compiler is allowed to instantiate multiple copies of the Moreover due to a llvm bug, you cannot use # #![feature(asm)]
let mut a = 0;
unsafe {
asm!(
"mov {0}, 10",
"2:",
"sub {0}, 1",
"cmp {0}, 3",
"jle 2f",
"jmp 2b",
"2:",
"add {0}, 2",
out(reg) a
);
}
assert_eq!(a, 5); This will decrement a value from 10 to 3, then add 2 and store it in This example show a few thing: First that the same number can be used as a label multiple time in the same inline block. Second, that when a numeric label is used as a reference (as an instruction operand, for example), the suffixes b (“backward”) or f (“forward”) should be added to the numeric label. It will then refer to the nearest label defined by this number in this direction. |
I don't know, I just wanted to clear up who was working on this issue. I guess you can just claim it anyway, since @castarco didn't respond. |
@rustbot claim |
cc @Amanieu who's likely good reviewer for the PR, and may be able to give feedback on the preliminary summary above |
@tdelabro The example looks good! Keep in mind the documentation may have to change in the future depending on what we decide to do with labels in #81088 (comment). |
@Amanieu Yeah I saw this thread while doing my researches. Do you suggest I include a link to this issues, or that I delay this #76704 until the resolution of #81088 ? Imo the best would be for future release on this subject to also amend this section. Is there a way to make sure this happens every time ? |
I'll make sure the documentation is updated when #81088 is resolved. In the meantime it would be best to add your section to the documentation. |
My PR is here: #84015 I have question: Why other examples have their
|
That just hides the line. If you click on the eye icon on the top right it will reveal the line. However it seems that this gets put inside We didn't catch this because the tests were disabled on CI (it was using LLVM 9 at the time which didn't support the necessary features for |
We need a section explaining how to properly use labels in inline asm (i.e. only GAS local labels are allowed).
Originally posted in #76675 (comment)
The text was updated successfully, but these errors were encountered: