Home | History | Annotate | Download | only in InstCombine

Lines Matching refs:Index

27 /// element. If false we're extracting a variable index.
142 // If extracting a specified index from the vector, see if we can recursively
148 // InstSimplify handles cases where the index is invalid.
774 int Index = 0;
775 for (int e = Mask.size(); Index != e; ++Index) {
776 if (Mask[Index] == Element) {
789 Builder->getInt32(Index), "", I);
920 // index is aligned to a value in the casted vector type. If the begin index
928 // Index range [4,8): v-----------v Will work.
933 // Index range [6,10): ^-----------^ Needs an extra shuffle.