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

No verification on intrinsic function number of arguments #28062

Closed
GuillaumeGomez opened this issue Aug 28, 2015 · 3 comments
Closed

No verification on intrinsic function number of arguments #28062

GuillaumeGomez opened this issue Aug 28, 2015 · 3 comments

Comments

@GuillaumeGomez
Copy link
Member

The following code will compile:

#![feature(repr_simd, platform_intrinsics)]

#[repr(simd)]
struct f64x2(f64, f64);

extern "platform-intrinsic" {
    fn x86_mm_movemask_pd(x: f64x2, y: f64x2, z: f64x2) -> i32;
}

but it shouldn't because the function takes only one f64x2 as parameter and it crashes when executed:

rustc: /home/rustbuild/src/rust-buildbot/slave/nightly-dist-rustc-linux/build/src/llvm/lib/IR/Instructions.cpp:234: void llvm::CallInst::init(llvm::FunctionType*, llvm::Value*, llvm::ArrayRef<llvm::Value*>, const llvm::Twine&): Assertion `(Args.size() == FTy->getNumParams() || (FTy->isVarArg() && Args.size() > FTy->getNumParams())) && "Calling a function with bad signature!"' failed.
Aborted (core dumped)
playpen: application terminated with error code 134

As long as the awaited parameters are good, the compiler doesn't complain whereas it should.

@arielb1
Copy link
Contributor

arielb1 commented Aug 29, 2015

misdeclaring foreign functions is always a bad idea, but I guess we can handle this case.

@GuillaumeGomez
Copy link
Member Author

It's the only case where nothing comes out from the compiler (I was quite surprised at the beggining).

@GuillaumeGomez
Copy link
Member Author

I'm working on it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants