Home
last modified time | relevance | path

Searched refs:LiveOut (Results 1 – 20 of 20) sorted by relevance

/openbsd-src/gnu/llvm/llvm/tools/llvm-objdump/
H A DSourcePrinter.cpp169 ActiveCols[ColIdx].LiveOut = LV.liveAtAddress(NextAddr); in update()
173 << ", LiveOut=" << ActiveCols[ColIdx].LiveOut << "\n"); in update()
175 if (!ActiveCols[ColIdx].LiveIn && !ActiveCols[ColIdx].LiveOut) in update()
188 bool LiveOut = LV.liveAtAddress(NextAddr); in update() local
189 if (!LiveIn && !LiveOut) in update()
196 << ", LiveOut=" << LiveOut << "\n"); in update()
199 ActiveCols[ColIdx].LiveOut = LiveOut; in update()
247 if ((AfterInst && ActiveCols[ColIdx].LiveOut) || in printAfterOtherLine()
250 else if (!AfterInst && ActiveCols[ColIdx].LiveOut) in printAfterOtherLine()
335 else if (ActiveCols[ColIdx].LiveIn && ActiveCols[ColIdx].LiveOut) in printAfterInst()
[all …]
H A DSourcePrinter.h49 bool LiveOut = false; member
/openbsd-src/gnu/llvm/llvm/lib/Analysis/
H A DStackLifetime.cpp195 BitsIn |= I->second.LiveOut; in calculateLocalLiveness()
228 if (BitsIn.test(BlockInfo.LiveOut)) { in calculateLocalLiveness()
230 BlockInfo.LiveOut |= BitsIn; in calculateLocalLiveness()
239 BlockInfo.LiveOut.flip(); in calculateLocalLiveness()
307 << BlockInfo.LiveOut << "\n"; in dumpBlockLiveness()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/
H A DRegAllocFast.cpp98 bool LiveOut = false; ///< Register is possibly live out. member
287 MCPhysReg AssignedReg, bool Kill, bool LiveOut);
431 MCPhysReg AssignedReg, bool Kill, bool LiveOut) { in spill() argument
463 if (LiveOut) { in spill()
661 findLiveVirtReg(VirtReg)->LiveOut; in calcSpillCost()
924 LRI->LiveOut = true; in defineVirtReg()
943 if (LRI->Reloaded || LRI->LiveOut) { in defineVirtReg()
947 LLVM_DEBUG(dbgs() << "Spill Reason: LO: " << LRI->LiveOut << " RL: " in defineVirtReg()
950 spill(SpillBefore, VirtReg, PhysReg, Kill, LRI->LiveOut); in defineVirtReg()
953 LRI->LiveOut = false; in defineVirtReg()
[all …]
H A DStackColoring.cpp427 BitVector LiveOut; member
579 dumpBV("LIVE_OUT", BlockInfo.LiveOut); in dumpBB()
827 LocalLiveIn |= I->second.LiveOut; in calculateLocalLiveness()
848 if (LocalLiveOut.test(BlockInfo.LiveOut)) { in calculateLocalLiveness()
850 BlockInfo.LiveOut |= LocalLiveOut; in calculateLocalLiveness()
H A DAssignmentTrackingAnalysis.cpp321 DenseMap<const BasicBlock *, VarFragMap> LiveOut; member in __anonf860719b0211::MemLocFragmentFill
509 auto PredLiveOut = LiveOut.find(Pred); in meet()
510 assert(PredLiveOut != LiveOut.end()); in meet()
789 LiveOut.init(RPONumber); in run()
827 if (!varFragMapsAreEqual(LiveOut[BB], LiveSet)) { in run()
830 LiveOut[BB] = std::move(LiveSet); in run()
1042 DenseMap<const BasicBlock *, BlockInfo> LiveOut; member in __anonf860719b0211::AssignmentTrackingLowering
1768 auto PredLiveOut = LiveOut.find(Pred); in join()
1770 assert(PredLiveOut != LiveOut.end()); in join()
1967 LiveOut.init(RPONumber); in run()
[all …]
H A DSplitKit.cpp248 BI.LiveOut = true; in calcLiveBlockInfo()
252 BI.LiveOut = false; in calcLiveBlockInfo()
263 BI.LiveOut = false; in calcLiveBlockInfo()
269 BI.LiveOut = true; in calcLiveBlockInfo()
1584 if (BI.LiveIn && BI.LiveOut) in shouldSplitSingleBlock()
1598 if (!BI.LiveOut || BI.LastInstr < LastSplitPoint) { in splitSingleBlock()
1731 << (BI.LiveOut ? ", stack-out" : ", killed in block")); in splitRegInBlock()
1737 if (!BI.LiveOut && (!LeaveBefore || LeaveBefore >= BI.LastInstr)) { in splitRegInBlock()
1786 if (!BI.LiveOut || BI.LastInstr < LSP) { in splitRegInBlock()
1829 assert(BI.LiveOut && "Must be live-out"); in splitRegOutBlock()
[all …]
H A DRegisterPressure.cpp779 LaneBitmask LiveOut = Def.LaneMask & ~PreviousMask; in recede() local
780 if (LiveOut.any()) { in recede()
781 discoverLiveOut(RegisterMaskPair(Reg, LiveOut)); in recede()
784 LiveOut); in recede()
785 PreviousMask = LiveOut; in recede()
834 LaneBitmask LiveOut = getLiveThroughAt(Reg, SlotIdx); in recede() local
835 if (LiveOut.any()) in recede()
836 discoverLiveOut(RegisterMaskPair(Reg, LiveOut)); in recede()
H A DRegAllocGreedy.cpp611 BC.Exit = (BI.LiveOut && in addSplitConstraints()
644 if (BI.LiveOut) { in addSplitConstraints()
836 if (BI.LiveIn && BI.LiveOut && BI.FirstDef) in calcSpillCost()
862 if (BI.LiveOut) in calcGlobalSplitCost()
930 if (BI.LiveOut) { in splitAroundRegion()
1402 BI.LiveOut ? BI.LastInstr.getBoundaryIndex() : BI.LastInstr; in calcGapWeights()
1583 const bool LiveAfter = SplitAfter != NumGaps || BI.LiveOut; in tryLocalSplit()
1676 bool LiveAfter = BestAfter != NumGaps || BI.LiveOut; in tryLocalSplit()
H A DSplitKit.h127 bool LiveOut; ///< Current reg is live out. member
H A DRegisterScavenging.cpp359 const LiveRegUnits &LiveOut, ArrayRef<MCPhysReg> AllocationOrder, in findSurvivorBackwards() argument
383 LiveOut.available(Reg)) in findSurvivorBackwards()
H A DReachingDefAnalysis.cpp383 if (auto *LiveOut = getLocalLiveOutMIDef(MI->getParent(), PhysReg)) { in getGlobalUses() local
384 if (LiveOut != MI) in getGlobalUses()
H A DLiveIntervals.cpp374 SmallPtrSet<const MachineBasicBlock*, 16> LiveOut; in extendSegmentsToUses() local
410 if (!LiveOut.insert(Pred).second) in extendSegmentsToUses()
426 if (!LiveOut.insert(Pred).second) in extendSegmentsToUses()
/openbsd-src/gnu/llvm/llvm/include/llvm/Analysis/
H A DStackLifetime.h43 : Begin(Size), End(Size), LiveIn(Size), LiveOut(Size) {} in BlockLifetimeInfo()
55 BitVector LiveOut; member
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Scalar/
H A DRewriteStatepointsForGC.cpp249 MapVector<BasicBlock *, SetVector<Value *>> LiveOut; member
3298 checkBasicSSA(DT, Data.LiveOut[&BB], BB.getTerminator(), true); in checkBasicSSA()
3318 Data.LiveOut[&BB] = SetVector<Value *>(); in computeLiveInValues()
3319 computeLiveOutSeed(&BB, Data.LiveOut[&BB]); in computeLiveInValues()
3321 Data.LiveIn[&BB].set_union(Data.LiveOut[&BB]); in computeLiveInValues()
3333 SetVector<Value *> LiveOut = Data.LiveOut[BB]; in computeLiveInValues() local
3334 const auto OldLiveOutSize = LiveOut.size(); in computeLiveInValues()
3337 LiveOut.set_union(Data.LiveIn[Succ]); in computeLiveInValues()
3340 if (OldLiveOutSize == LiveOut.size()) { in computeLiveInValues()
3346 Data.LiveOut[BB] = LiveOut; in computeLiveInValues()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Vectorize/
H A DVPlanValue.h206 LiveOut, enumerator
H A DVPlan.h640 : VPUser({Op}, VPUser::VPUserID::LiveOut), Phi(Phi) {} in VPLiveOut()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/LiveDebugValues/
H A DInstrRefBasedImpl.cpp3260 DbgValue *LiveOut = LiveOutIdx[MBB]; in buildVLocValueMap() local
3270 if (*LiveOut != NewVal) { in buildVLocValueMap()
3271 *LiveOut = NewVal; in buildVLocValueMap()
3276 if (*LiveOut != TransferIt->second) { in buildVLocValueMap()
3277 *LiveOut = TransferIt->second; in buildVLocValueMap()
3283 if (*LiveOut != *LiveIn) { in buildVLocValueMap()
3284 *LiveOut = *LiveIn; in buildVLocValueMap()
/openbsd-src/gnu/llvm/llvm/lib/Target/Hexagon/
H A DHexagonInstrInfo.cpp1055 LivePhysRegs LiveIn(HRI), LiveOut(HRI); in expandPostRAPseudo() local
1367 getLiveOutRegsAt(LiveOut, MI); in expandPostRAPseudo()
1368 bool IsDestLive = !LiveOut.available(MRI, Op0.getReg()); in expandPostRAPseudo()
1400 getLiveOutRegsAt(LiveOut, MI); in expandPostRAPseudo()
1401 bool IsDestLive = !LiveOut.available(MRI, Op0.getReg()); in expandPostRAPseudo()
/openbsd-src/gnu/llvm/llvm/docs/
H A DStatepoints.rst502 The LiveOut section of the StkMapRecord will be empty for a statepoint