Home
last modified time | relevance | path

Searched refs:ZMask (Results 1 – 4 of 4) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/Utils/
DX86ShuffleDecode.cpp31 unsigned ZMask = Imm & 15; in DecodeINSERTPSMask() local
40 if (ZMask & 1) ShuffleMask[0] = SM_SentinelZero; in DecodeINSERTPSMask()
41 if (ZMask & 2) ShuffleMask[1] = SM_SentinelZero; in DecodeINSERTPSMask()
42 if (ZMask & 4) ShuffleMask[2] = SM_SentinelZero; in DecodeINSERTPSMask()
43 if (ZMask & 8) ShuffleMask[3] = SM_SentinelZero; in DecodeINSERTPSMask()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/
DInstCombineCalls.cpp688 uint8_t ZMask = Imm & 0xf; in simplifyX86insertps() local
696 if (ZMask == 0xf) in simplifyX86insertps()
705 if (ZMask) { in simplifyX86insertps()
709 (ZMask & (1 << DestLane))) { in simplifyX86insertps()
716 if ((ZMask >> i) & 0x1) in simplifyX86insertps()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
DX86InstrInfo.cpp1631 unsigned ZMask = Imm & 15; in commuteInstructionImpl() local
1637 if (DstIdx == SrcIdx && (ZMask & (1 << DstIdx)) == 0 && in commuteInstructionImpl()
1638 countPopulation(ZMask) == 2) { in commuteInstructionImpl()
1639 unsigned AltIdx = findFirstSet((ZMask | (1 << DstIdx)) ^ 15); in commuteInstructionImpl()
1641 unsigned AltImm = (AltIdx << 6) | (AltIdx << 4) | ZMask; in commuteInstructionImpl()
4739 unsigned ZMask = Imm & 15; in foldMemoryOperandCustom() local
4748 unsigned NewImm = (DstIdx << 4) | ZMask; in foldMemoryOperandCustom()
DX86ISelLowering.cpp7914 unsigned ZMask = Zeroable.to_ulong(); in LowerBuildVectorv4x32() local
7916 unsigned InsertPSMask = EltMaskIdx << 6 | EltIdx << 4 | ZMask; in LowerBuildVectorv4x32()
12895 unsigned ZMask = 0; in matchShuffleAsInsertPS() local
12903 ZMask |= 1 << i; in matchShuffleAsInsertPS()
12953 InsertPSMask = VBSrcIndex << 6 | VBDstIndex << 4 | ZMask; in matchShuffleAsInsertPS()