Lines Matching refs:LoadPOPPair
46 struct LoadPOPPair { struct
47 LoadPOPPair() = default;
48 LoadPOPPair(LoadInst *L, PointerOffsetPair P, unsigned O) in LoadPOPPair() function
83 bool combineLoads(DenseMap<const Value *, SmallVector<LoadPOPPair, 8>> &);
84 bool aggregateLoads(SmallVectorImpl<LoadPOPPair> &);
85 bool combineLoads(SmallVectorImpl<LoadPOPPair> &);
120 DenseMap<const Value *, SmallVector<LoadPOPPair, 8>> &LoadMap) { in combineLoads() argument
126 [](const LoadPOPPair &A, const LoadPOPPair &B) { in combineLoads()
139 bool LoadCombine::aggregateLoads(SmallVectorImpl<LoadPOPPair> &Loads) { in aggregateLoads()
142 SmallVector<LoadPOPPair, 8> AggregateLoads; in aggregateLoads()
183 bool LoadCombine::combineLoads(SmallVectorImpl<LoadPOPPair> &Loads) { in combineLoads()
201 LoadPOPPair FirstLP; in combineLoads()
245 DenseMap<const Value *, SmallVector<LoadPOPPair, 8>> LoadMap; in runOnBasicBlock()
267 LoadMap[POP.Pointer].push_back(LoadPOPPair(LI, POP, Index++)); in runOnBasicBlock()