reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Target/X86/X86InstrInfo.cpp
 1606     case X86::BLENDPDrri:    Mask = (int8_t)0x03; break;
 1607     case X86::BLENDPSrri:    Mask = (int8_t)0x0F; break;
 1608     case X86::PBLENDWrri:    Mask = (int8_t)0xFF; break;
 1609     case X86::VBLENDPDrri:   Mask = (int8_t)0x03; break;
 1610     case X86::VBLENDPSrri:   Mask = (int8_t)0x0F; break;
 1611     case X86::VBLENDPDYrri:  Mask = (int8_t)0x0F; break;
 1612     case X86::VBLENDPSYrri:  Mask = (int8_t)0xFF; break;
 1613     case X86::VPBLENDDrri:   Mask = (int8_t)0x0F; break;
 1614     case X86::VPBLENDWrri:   Mask = (int8_t)0xFF; break;
 1615     case X86::VPBLENDDYrri:  Mask = (int8_t)0xFF; break;
 1616     case X86::VPBLENDWYrri:  Mask = (int8_t)0xFF; break;
 1621     int8_t Imm = MI.getOperand(3).getImm() & Mask;
 1623     WorkingMI.getOperand(3).setImm(Mask ^ Imm);