Lines Matching defs:Load
181 // Insert Load and the value number of its memory address in VNtoLoads.
182 void insert(LoadInst *Load, GVNPass::ValueTable &VN) {
183 if (Load->isSimple()) {
184 unsigned V = VN.lookupOrAdd(Load->getPointerOperand());
187 VNtoLoads[{V, (uintptr_t)Load->getType()}].push_back(Load);
223 // onlyReadsMemory will be handled as a Load instruction,
278 enum InsKind { Unknown, Scalar, Load, Store };
1165 if (auto *Load = dyn_cast<LoadInst>(&I1))
1166 LI.insert(Load, VN);
1194 computeInsertionPoints(LI.getVNTable(), HPL, InsKind::Load);
1197 computeInsertionPoints(CI.getLoadVNTable(), HPL, InsKind::Load);