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

Completes SSE and adds some MMX intrinsics #247

Merged
merged 3 commits into from
Jan 4, 2018
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
add an exception for intrinsics using cvtpi2ps
  • Loading branch information
gnzlbg committed Jan 4, 2018
commit 4b4ea61970bc84fa131e2b258a758c8a8163ff45
4 changes: 4 additions & 0 deletions stdsimd-test/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -335,6 +335,10 @@ pub fn assert(fnptr: usize, fnname: &str, expected: &str) {
// guess?) we probably can't do much about it...
"vzeroall" | "vzeroupper" if cfg!(windows) => 30,

// Intrinsics using `cvtpi2ps` are typically "composites" and in some
// cases exceed the limit.
"cvtpi2ps" => 25,

_ => 20,
};
let probably_only_one_instruction =
Expand Down