Skip to content

Commit

Permalink
feat: added more avx512 instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
gbotrel committed Sep 30, 2024
1 parent 38427ea commit 39bbd7a
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions amd64/instructions.go
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,11 @@ func (amd64 *Amd64) VPERMT2Q(r1, r2, r3 interface{}, comment ...string) {
amd64.writeOp(comment, "VPERMT2Q", r1, r2, r3)
}

// VPMOVQ2M: Move Signs of Packed Quadword Integers to Mask Register
func (amd64 *Amd64) VPMOVQ2M(r1, r2 interface{}, comment ...string) {
amd64.writeOp(comment, "VPMOVQ2M", r1, r2)
}

// VMOVDQA64 Move Aligned Quadword Values
func (amd64 *Amd64) VMOVDQA64(r1, r2 interface{}, comment ...string) {
amd64.writeOp(comment, "VMOVDQA64", r1, r2)
Expand Down

0 comments on commit 39bbd7a

Please sign in to comment.