Searched defs:isLHSID (Results 1 - 2 of 2) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
H A DInstCombineVectorOps.cpp507 bool isLHSID = true, isRHSID = true; local
512 isLHSID &= (Mask[i] == (int)i);
519 if (isLHSID) return ReplaceInstUsesWith(SVI, LHS);
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineVectorOps.cpp885 bool &isLHSID, bool &isRHSID) {
886 isLHSID = isRHSID = true;
891 isLHSID &= (Mask[i] == (int)i);
982 bool isLHSID, isRHSID; local
983 recognizeIdentityMask(Mask, isLHSID, isRHSID);
986 if (isLHSID) return replaceInstUsesWith(SVI, LHS);
1268 bool isLHSID, isRHSID; local
1269 recognizeIdentityMask(newMask, isLHSID, isRHSID);
1270 if (isLHSID && VWidth == LHSOp0Width) return replaceInstUsesWith(SVI, newLHS);
884 recognizeIdentityMask(const SmallVectorImpl<int> &Mask, bool &isLHSID, bool &isRHSID) argument

Completed in 102 milliseconds