Home
last modified time | relevance | path

Searched refs:PrevValue (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/bolt/lib/Profile/
H A DHeatmap.cpp167 uint64_t PrevValue = 0; in print() local
172 OS << " : (" << PrevValue << ", " << Value << "]\n"; in print()
173 PrevValue = Value; in print()
181 unsigned PrevValue = unsigned(-1); in print() local
184 if (Value != PrevValue) { in print()
186 PrevValue = Value; in print()
/llvm-project-15.0.7/llvm/lib/Transforms/Utils/
H A DLoopUnrollAndJam.cpp449 if (Value *PrevValue = PrevItValueMap[OldValue]) in UnrollAndJamLoop() local
450 NewValue = PrevValue; in UnrollAndJamLoop()
/llvm-project-15.0.7/llvm/lib/Analysis/
H A DValueTracking.cpp4443 auto *PrevValue = dyn_cast<Instruction>(PN->getIncomingValue(0)); in isSameUnderlyingObjectInLoop() local
4444 if (!PrevValue || LI->getLoopFor(PrevValue->getParent()) != L) in isSameUnderlyingObjectInLoop()
4445 PrevValue = dyn_cast<Instruction>(PN->getIncomingValue(1)); in isSameUnderlyingObjectInLoop()
4446 if (!PrevValue || LI->getLoopFor(PrevValue->getParent()) != L) in isSameUnderlyingObjectInLoop()
4454 if (auto *Load = dyn_cast<LoadInst>(PrevValue)) in isSameUnderlyingObjectInLoop()
/llvm-project-15.0.7/llvm/lib/MC/MCParser/
H A DMasmParser.cpp3497 const MCConstantExpr *PrevValue = in parseDirectiveEquate() local
3501 if (Var.IsText || !PrevValue || PrevValue->getValue() != Value) { in parseDirectiveEquate()