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

/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineAndOrXor.cpp1384 /// accepted, the high byte of ByteValues is set to X to indicate a correct
1392 /// byte of ByteValues is actually being set.
1401 SmallVectorImpl<Value *> &ByteValues) {
1406 ByteValues) ||
1408 ByteValues);
1417 if ((ShAmt & 7) || (ShAmt > 8*ByteValues.size()))
1429 ByteMask &= (~0U >> (32-ByteValues.size()));
1432 if (OverallLeftShift >= (int)ByteValues.size()) return true;
1433 if (OverallLeftShift <= -(int)ByteValues.size()) return true;
1436 ByteValues);
1400 CollectBSwapParts(Value *V, int OverallLeftShift, uint32_t ByteMask, SmallVectorImpl<Value *> &ByteValues) argument
[all...]

Completed in 130 milliseconds