Page MenuHomeFreeBSD

x86: spell vpxor %zmm0 as vpxord
ClosedPublic

Authored by rlibby on May 15 2019, 6:42 AM.
Tags
None
Referenced Files
F101306659: D20264.diff
Sun, Oct 27, 1:25 PM
Unknown Object (File)
Sat, Oct 5, 8:26 PM
Unknown Object (File)
Sep 20 2024, 11:34 PM
Unknown Object (File)
Sep 9 2024, 3:01 PM
Unknown Object (File)
Sep 1 2024, 10:28 PM
Unknown Object (File)
Sep 1 2024, 3:55 PM
Unknown Object (File)
Aug 19 2024, 3:22 AM
Unknown Object (File)
Aug 18 2024, 9:58 PM
Subscribers

Details

Summary

Fix gcc/gas amd64 & i386 build after r347566.

Test Plan

make buildkernel

Note, this _does_ change the assembly with the clang build from

ffffffff8107f26b: 62 f1 fd 48 ef c0 vpxorq %zmm0, %zmm0, %zmm0
to
ffffffff8107f26b: 62 f1 7d 48 ef c0 vpxord %zmm0, %zmm0, %zmm0

I.e., it was assembly with vpxorq, but now uses d. The assembly goes on
to use d instructions, so I thought that was the intention, but we can
choose q here instead if desired.

Diff Detail

Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 24243
Build 23079: arc lint + arc unit

Event Timeline

I suspect that vpxord/vpxorq difference does not matter. If I have an opportunity, I will ask.

This revision is now accepted and ready to land.May 15 2019, 9:06 AM
This revision was automatically updated to reflect the committed changes.