Home | History | Annotate | Download | only in IPO

Lines Matching defs:StoredVal

236             Value *StoredVal = SI->getOperand(0);
237 if (StoredVal == GV->getInitializer()) {
240 } else if (isa<LoadInst>(StoredVal) &&
241 cast<LoadInst>(StoredVal)->getOperand(0) == GV) {
246 GS.StoredOnceValue = StoredVal;
248 GS.StoredOnceValue == StoredVal) {
1126 Instruction *StoredVal) {
1150 if (InVal == StoredVal) continue;
1675 Instruction *StoredVal = cast<Instruction>(SI->getOperand(0));
1677 // If we've already replaced the input, StoredVal will be a cast or
1680 if (LoadInst *LI = dyn_cast<LoadInst>(StoredVal)) {
1686 assert((isa<CastInst>(StoredVal) || isa<SelectInst>(StoredVal)) &&
1688 StoreVal = StoredVal->getOperand(0);