Home
last modified time | relevance | path

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

/external/llvm/lib/Target/X86/Utils/
DX86ShuffleDecode.cpp33 unsigned ZMask = Imm & 15; in DecodeINSERTPSMask() local
42 if (ZMask & 1) ShuffleMask[0] = SM_SentinelZero; in DecodeINSERTPSMask()
43 if (ZMask & 2) ShuffleMask[1] = SM_SentinelZero; in DecodeINSERTPSMask()
44 if (ZMask & 4) ShuffleMask[2] = SM_SentinelZero; in DecodeINSERTPSMask()
45 if (ZMask & 8) ShuffleMask[3] = SM_SentinelZero; in DecodeINSERTPSMask()
/external/llvm/lib/Transforms/InstCombine/
DInstCombineCalls.cpp340 uint8_t ZMask = Imm & 0xf; in SimplifyX86insertps() local
348 if (ZMask == 0xf) in SimplifyX86insertps()
357 if (ZMask) { in SimplifyX86insertps()
361 (ZMask & (1 << DestLane))) { in SimplifyX86insertps()
368 if ((ZMask >> i) & 0x1) in SimplifyX86insertps()
/external/llvm/lib/Target/X86/
DX86InstrInfo.cpp5518 unsigned ZMask = Imm & 15; in foldMemoryOperandCustom() local
5525 unsigned NewImm = (DstIdx << 4) | ZMask; in foldMemoryOperandCustom()
DX86ISelLowering.cpp5283 unsigned ZMask = Zeroable.to_ulong(); in LowerBuildVectorv4x32() local
5285 unsigned InsertPSMask = EltMaskIdx << 6 | EltIdx << 4 | ZMask; in LowerBuildVectorv4x32()
8216 unsigned ZMask = 0; in lowerVectorShuffleAsInsertPS() local
8224 ZMask |= 1 << i; in lowerVectorShuffleAsInsertPS()
8269 unsigned InsertPSMask = V2SrcIndex << 6 | V2DstIndex << 4 | ZMask; in lowerVectorShuffleAsInsertPS()