-
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
Bug optimization #47410
Comments
But when I test this code in qemu (I try write my own OS), if I use "y+=1", execution fails and VM repeatedly reboots and then freezes. If I use "y+=x", execution ends successfully. This indicates a significant difference in the generated code. |
It's probably very likely that you did not initialize SSE in your OS and thus you're getting an undefined instruction exception on the SSE instruction. To enable SSE you should check bit 25 in CPUID.01h:EDX and if it is set you can proceed to clear the CR0.EM bit, set the CR0.MP bit, set the CR4.OSFXSR bit and set the CR4.OSXMMEXCPT bit. That being said, most OSes do not use SSE and floats in the kernel (to save costs on context switches) and thus they build their kernels with flags such as |
Thank you for your help) |
May I disable using SSE/MMX instruction in rustc? |
@aristarh2704 I don't have much experience with disabling such instructions myself, but from the bug description at #26449, it sounds like you might be able to use the |
How I can give this argument to cargo, not to rustc? |
@aristarh2704 I'm not sure what current best practice is for configuring I think this was added here: rust-lang/cargo#2241 and is documented here (scroll to where But for current best practices, you may want to ask in the |
The correct solution here is to provide a custom target specification and then to use Xargo to recompile A sample target file that does this might look like: {
"llvm-target": "x86_64-unknown-none",
"data-layout": "e-m:e-i64:64-f80:128-n8:16:32:64-S128",
"linker-flavor": "gcc",
"target-endian": "little",
"target-pointer-width": "64",
"target-c-int-width": "32",
"arch": "x86_64",
"os": "none",
"disable-redzone": true,
"features": "-mmx,-sse,+soft-float"
} Save this as |
I write this code:
and compile: "cargo build --release"
Disassembling views this:
It's not correct code.
But when I write
instead of
it produce this asm:
which is really correct.
Rustc version:
The text was updated successfully, but these errors were encountered: