Searched refs:LiveValues (Results 1 - 4 of 4) sorted by relevance

/openbsd-current/gnu/llvm/llvm/include/llvm/Transforms/IPO/
H A DDeadArgumentElimination.h112 LiveSet LiveValues;
/openbsd-current/gnu/llvm/llvm/lib/Transforms/IPO/
H A DDeadArgumentElimination.cpp358 /// Checks Use for liveness in LiveValues. If Use is not live, it adds Use to
484 /// value. This fills in the LiveValues set and Uses map.
691 LiveValues.insert(RA);
699 return LiveFunctions.count(RA.F) || LiveValues.count(RA);
719 /// Remove any arguments and return values from F that are not in LiveValues.
748 if (LiveValues.erase(Arg)) {
795 if (LiveValues.erase(Ret)) {
/openbsd-current/gnu/llvm/llvm/lib/IR/
H A DIRBuilder.cpp786 SmallVector<Value*, 16> LiveValues; local
787 llvm::append_range(LiveValues, GCArgs);
788 Rval.emplace_back("gc-live", LiveValues);
/openbsd-current/gnu/llvm/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp7618 SmallPtrSet<Instruction*, 4> LiveValues;
7652 // Update LiveValues.
7653 LiveValues.erase(PrevInst);
7656 LiveValues.insert(cast<Instruction>(&*J));
7660 dbgs() << "SLP: #LV: " << LiveValues.size();
7661 for (auto *X : LiveValues)
7710 for (auto *II : LiveValues) {

Completed in 150 milliseconds