Lines Matching refs:DeadInsts
89 SmallVector<Instruction *, 32> &DeadInsts);
93 SmallVector<Instruction *, 32> &DeadInsts);
197 LoadInst *LI, SmallVector<Instruction *, 32> &DeadInsts) { in lowerInterleavedLoad() argument
261 DeadInsts.push_back(SVI); in lowerInterleavedLoad()
263 DeadInsts.push_back(LI); in lowerInterleavedLoad()
335 StoreInst *SI, SmallVector<Instruction *, 32> &DeadInsts) { in lowerInterleavedStore() argument
355 DeadInsts.push_back(SI); in lowerInterleavedStore()
356 DeadInsts.push_back(SVI); in lowerInterleavedStore()
371 SmallVector<Instruction *, 32> DeadInsts; in runOnFunction() local
376 Changed |= lowerInterleavedLoad(LI, DeadInsts); in runOnFunction()
379 Changed |= lowerInterleavedStore(SI, DeadInsts); in runOnFunction()
382 for (auto I : DeadInsts) in runOnFunction()