reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/CodeGen/InterleavedLoadCombinePass.cpp
  679     EI = new ElementInfo[VTy->getNumElements()];
  682   virtual ~VectorInfo() { delete[] EI; }
  696       if (!EI[i].Ofs.isProvenEqualTo(EI[0].Ofs + i * Factor * Size)) {
  696       if (!EI[i].Ofs.isProvenEqualTo(EI[0].Ofs + i * Factor * Size)) {
  758         Result.EI[i + j] =
  759             ElementInfo(Old.EI[i / Factor].Ofs + j * NewSize,
  760                         j == 0 ? Old.EI[i / Factor].LI : nullptr);
  841         Result.EI[j] = ElementInfo();
  844           Result.EI[j] = LHS.EI[i];
  844           Result.EI[j] = LHS.EI[i];
  846           Result.EI[j] = ElementInfo();
  849           Result.EI[j] = RHS.EI[i - ArgTy->getNumElements()];
  849           Result.EI[j] = RHS.EI[i - ArgTy->getNumElements()];
  851           Result.EI[j] = ElementInfo();
  892       Result.EI[i] = ElementInfo(Offset + Ofs, i == 0 ? LI : nullptr);
 1044       OS << ((i == 0) ? "[" : ", ") << EI[i].Ofs;
 1073         if (C->EI[0].Ofs.isProvenEqualTo(C0->EI[0].Ofs + i * Size)) {
 1073         if (C->EI[0].Ofs.isProvenEqualTo(C0->EI[0].Ofs + i * Size)) {
 1122   LoadInst *InsertionPoint = InterleavedLoad.front().EI[0].LI;