Home
last modified time | relevance | path

Searched refs:SeenValues (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DDFAJumpThreading.cpp421 SmallSet<Value *, 16> SeenValues; in isCandidate() local
434 addToQueue(SICond, nullptr, Q, SeenValues); in isCandidate()
444 addToQueue(Incoming, IncomingBB, Q, SeenValues); in isCandidate()
450 addToQueue(SelI->getTrueValue(), CurrentIncomingBB, Q, SeenValues); in isCandidate()
451 addToQueue(SelI->getFalseValue(), CurrentIncomingBB, Q, SeenValues); in isCandidate()
485 SmallSet<Value *, 16> &SeenValues) { in addToQueue()
486 if (SeenValues.contains(Val)) in addToQueue()
489 SeenValues.insert(Val); in addToQueue()
667 SmallSet<Value *, 16> SeenValues; in getStateDefMap() local
673 SeenValues.insert(CurPhi); in getStateDefMap()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/
H A DInstrProfWriter.cpp1042 DenseSet<uint64_t> SeenValues; in validateRecord() local
1044 if (!SeenValues.insert(V.Value).second) in validateRecord()