Skip to content
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

LLVM error with MMX types on i586 #300

Closed
alexcrichton opened this issue Jan 27, 2018 · 2 comments
Closed

LLVM error with MMX types on i586 #300

alexcrichton opened this issue Jan 27, 2018 · 2 comments

Comments

@alexcrichton
Copy link
Member

Playground

Turns out if a function doesn't have the "mmx" feature enabled (like the entire i586-unknown-linux-gnu target) then LLVM will codegen an error if we use the mmx registers there. I... am not entirely sure what the best way is to fix this.

alexcrichton added a commit to alexcrichton/stdarch that referenced this issue Jan 28, 2018
This was historically done as the contents of the `i686` module wouldn't
actually compile on i586 for various reasons. I believe I've tracked this down
to rust-lang#300 where LLVM refuses to compile a function using the `x86_mmx` type
without actually enabling the `mmx` feature (sort of reasonably so!). This
commit will now compile in both the `i586` and `i686` modules of this crate into
the `i586-unknown-linux-gnu` target, and the relevant functions now also enable
the `mmx` feature if they're using the `__m64` type.

I believe this is uncovering a more widespread problem where the `__m64` isn't
usable outside the context of `mmx`-enabled functions. The i686 and x86_64
targets have this feature enabled by default which is why it's worked there, but
they're not enabled for the i586 target. We'll probably want to consider this
when stabilizing!
alexcrichton added a commit to alexcrichton/stdarch that referenced this issue Jan 28, 2018
This was historically done as the contents of the `i686` module wouldn't
actually compile on i586 for various reasons. I believe I've tracked this down
to rust-lang#300 where LLVM refuses to compile a function using the `x86_mmx` type
without actually enabling the `mmx` feature (sort of reasonably so!). This
commit will now compile in both the `i586` and `i686` modules of this crate into
the `i586-unknown-linux-gnu` target, and the relevant functions now also enable
the `mmx` feature if they're using the `__m64` type.

I believe this is uncovering a more widespread problem where the `__m64` isn't
usable outside the context of `mmx`-enabled functions. The i686 and x86_64
targets have this feature enabled by default which is why it's worked there, but
they're not enabled for the i586 target. We'll probably want to consider this
when stabilizing!
alexcrichton added a commit to alexcrichton/stdarch that referenced this issue Jan 28, 2018
This was historically done as the contents of the `i686` module wouldn't
actually compile on i586 for various reasons. I believe I've tracked this down
to rust-lang#300 where LLVM refuses to compile a function using the `x86_mmx` type
without actually enabling the `mmx` feature (sort of reasonably so!). This
commit will now compile in both the `i586` and `i686` modules of this crate into
the `i586-unknown-linux-gnu` target, and the relevant functions now also enable
the `mmx` feature if they're using the `__m64` type.

I believe this is uncovering a more widespread problem where the `__m64` isn't
usable outside the context of `mmx`-enabled functions. The i686 and x86_64
targets have this feature enabled by default which is why it's worked there, but
they're not enabled for the i586 target. We'll probably want to consider this
when stabilizing!
alexcrichton added a commit that referenced this issue Jan 29, 2018
This was historically done as the contents of the `i686` module wouldn't
actually compile on i586 for various reasons. I believe I've tracked this down
to #300 where LLVM refuses to compile a function using the `x86_mmx` type
without actually enabling the `mmx` feature (sort of reasonably so!). This
commit will now compile in both the `i586` and `i686` modules of this crate into
the `i586-unknown-linux-gnu` target, and the relevant functions now also enable
the `mmx` feature if they're using the `__m64` type.

I believe this is uncovering a more widespread problem where the `__m64` isn't
usable outside the context of `mmx`-enabled functions. The i686 and x86_64
targets have this feature enabled by default which is why it's worked there, but
they're not enabled for the i586 target. We'll probably want to consider this
when stabilizing!
@alexcrichton
Copy link
Member Author

Some text I wrote elsewhere relating to this issue:


The types available in the std::vendor module are intended to be generally
usable in any context. They'll only work well (in terms of being fast) in
appropriate contexts, however. The Rust compiler is expected though to at least
not provide unusual errors when using the types in the wrong context by
accident.

Unfortunately, though, this is not currently implemented for the MMX types!
Let's take a look at an example. For example this function works:

use std::vendor::*;
use std::mem;

pub fn foo() {
    let a: __m256i = unsafe { mem::zeroed() };
    let b = a;
}

Despite this function not enabling AVX nor the program enabling AVX globally
this function will operate as intended and won't actually produce any faults. In
other words, this is expected to produce a non-faulting program on all targets.

This is not true, however, for MMX types:

use std::vendor::*;
use std::mem;

pub fn foo() {
    let a: __m64 = unsafe { mem::zeroed() };
    let b = a;
}

When compiled for a target that doesn't support MMX by default (for example
i586-unknown-linux-gnu) this program will reveal a codegen error in LLVM. This
is largely a bug in the compiler due to how __m64 is represented,
unfortunately.

@workingjubilee
Copy link
Member

Direct MMX support is no longer in scope for std::arch: #890

@workingjubilee workingjubilee closed this as not planned Won't fix, can't repro, duplicate, stale Aug 31, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants