Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:LI

83   bool lowerInterleavedLoad(LoadInst *LI,
179 LoadInst *LI, SmallVector<Instruction *, 32> &DeadInsts) {
180 if (!LI->isSimple())
186 for (auto UI = LI->user_begin(), E = LI->user_end(); UI != E; UI++) {
222 DEBUG(dbgs() << "IA: Found an interleaved load: " << *LI << "\n");
225 if (!TLI->lowerInterleavedLoad(LI, Shuffles, Indices, Factor))
231 DeadInsts.push_back(LI);
275 if (LoadInst *LI = dyn_cast<LoadInst>(&I))
276 Changed |= lowerInterleavedLoad(LI, DeadInsts);