This is an archive of the discontinued LLVM Phabricator instance.

AVX512: Combine AND + TESTM instrunctions
ClosedPublic

Authored by igorb on Mar 3 2016, 1:07 AM.

Details

Summary

AVX512: Combine AND + TESTM instructions .

vpandq  %zmm0, %zmm1, %zmm2
vptestmq %zmm2, %zmm2, %k0

TO

vptestmq %zmm0, %zmm1, %k0

Diff Detail

Repository
rL LLVM

Event Timeline

igorb updated this revision to Diff 49717.Mar 3 2016, 1:07 AM
igorb retitled this revision from to AVX512: Combine AND + TESTM instrunctions.
igorb updated this object.
igorb added a reviewer: delena.
igorb set the repository for this revision to rL LLVM.
igorb added a subscriber: llvm-commits.
delena accepted this revision.Mar 3 2016, 5:21 AM
delena edited edge metadata.

LGTM

This revision is now accepted and ready to land.Mar 3 2016, 5:21 AM
This revision was automatically updated to reflect the committed changes.