Home
last modified time | relevance | path

Searched refs:PrevV (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/
H A DRetainCountDiagnostics.cpp99 RefVal PrevV = *PrevT; in shouldGenerateNote() local
104 assert(!PrevV.hasSameState(CurrV) && "The state should have changed."); in shouldGenerateNote()
115 if (!PrevV.hasSameState(CurrV)) in shouldGenerateNote()
119 if (PrevV.getCount() == CurrV.getCount()) { in shouldGenerateNote()
121 if (PrevV.getAutoreleaseCount() == CurrV.getAutoreleaseCount()) in shouldGenerateNote()
124 assert(PrevV.getAutoreleaseCount() < CurrV.getAutoreleaseCount()); in shouldGenerateNote()
129 if (PrevV.getCount() > CurrV.getCount()) in shouldGenerateNote()
142 CurrV.getIvarAccessHistory() != PrevV.getIvarAccessHistory()) { in shouldGenerateNote()
/freebsd/contrib/llvm-project/llvm/lib/SandboxIR/
H A DTracker.cpp111 auto *PrevV = PHI->getIncomingValue(Idx - 1); in revert() local
113 PHI->setIncomingValue(Idx, PrevV); in revert()
/freebsd/contrib/llvm-project/clang/utils/TableGen/
H A DMveEmitter.cpp1164 Result::Ptr PrevV = nullptr; in getCodeForDag() local
1173 if (PrevV) in getCodeForDag()
1174 V->setPredecessor(PrevV); in getCodeForDag()
1175 PrevV = V; in getCodeForDag()
1177 return PrevV; in getCodeForDag()
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonVectorCombine.cpp1367 Value *PrevV = ASpanV[Index - 1].Seg.Val, *ThisV = ASpanV[Index].Seg.Val; in realignStoreGroup() local
1369 assert(isSectorTy(PrevV->getType()) && isSectorTy(PrevM->getType())); in realignStoreGroup()
1370 ASpanV[Index - 1].Seg.Val = HVC.vlalignb(Builder, PrevV, ThisV, AlignVal); in realignStoreGroup()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp18813 Value *PrevV = EEIt->second.first; in vectorizeTree() local
18814 if (auto *I = dyn_cast<Instruction>(PrevV); in vectorizeTree()
18823 Ex = PrevV; in vectorizeTree()