Page MenuHomeFreeBSD

x86: spell vpxor %zmm0 as vpxord
ClosedPublic

Authored by rlibby on May 15 2019, 6:42 AM.
Tags
None
Referenced Files
F109710251: D20264.diff
Sat, Feb 8, 3:10 PM
Unknown Object (File)
Fri, Jan 17, 6:53 PM
Unknown Object (File)
Wed, Jan 15, 4:25 PM
Unknown Object (File)
Dec 8 2024, 10:31 AM
Unknown Object (File)
Nov 21 2024, 1:32 PM
Unknown Object (File)
Nov 8 2024, 2:55 AM
Unknown Object (File)
Nov 7 2024, 9:27 AM
Unknown Object (File)
Oct 27 2024, 3:31 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

Repository
rS FreeBSD src repository - subversion
Lint
Lint Not Applicable
Unit
Tests Not Applicable

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.