Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
DX86ISelLowering.cpp10864 bool MatchLo = true, MatchHi = true; in matchShuffleWithUNPCK() local
10865 for (int i = 0; (i != NumElts) && (MatchLo || MatchHi); ++i) { in matchShuffleWithUNPCK()
10873 MatchLo &= (M == Unpckl[i]); in matchShuffleWithUNPCK()
10877 if (MatchLo || MatchHi) { in matchShuffleWithUNPCK()
10878 UnpackOpcode = MatchLo ? X86ISD::UNPCKL : X86ISD::UNPCKH; in matchShuffleWithUNPCK()
11436 bool MatchLo = true, MatchHi = true; in lowerShuffleAsUNPCKAndPermute() local
11455 MatchLo &= isUndefOrInRange(M, Lo, Mid) || in lowerShuffleAsUNPCKAndPermute()
11459 if (!MatchLo && !MatchHi) in lowerShuffleAsUNPCKAndPermute()
11463 assert((MatchLo ^ MatchHi) && "Failed to match UNPCKLO/UNPCKHI"); in lowerShuffleAsUNPCKAndPermute()
11483 unsigned UnpckOp = MatchLo ? X86ISD::UNPCKL : X86ISD::UNPCKH; in lowerShuffleAsUNPCKAndPermute()