Lines Matching defs:OGVN
1192 std::optional<unsigned> OGVN = Cand.getGVN(Incoming);
1193 if (!OGVN && Blocks.contains(IncomingBlock)) {
1204 unsigned GVN = *OGVN;
1205 OGVN = Cand.getCanonicalNum(GVN);
1206 assert(OGVN && "No GVN found for incoming value?");
1207 PHIGVNs.push_back(*OGVN);
1211 OGVN = Cand.getGVN(IncomingBlock);
1216 if (!OGVN) {
1231 OGVN = Cand.getGVN(PrevBlock);
1233 GVN = *OGVN;
1234 OGVN = Cand.getCanonicalNum(GVN);
1235 assert(OGVN && "No GVN found for incoming block?");
1236 PHIGVNs.push_back(*OGVN);
2517 std::optional<unsigned> OGVN =
2519 assert(OGVN && "Could not find GVN for Canonical Number?");
2520 std::optional<Value *> OV = Region.Candidate->fromGVN(*OGVN);