Home
last modified time | relevance | path

Searched refs:LiveOuts (Results 1 – 7 of 7) sorted by relevance

/NextBSD/contrib/llvm/lib/CodeGen/
HDStackMaps.cpp90 LiveOutVec &LiveOuts) const { in parseOperand()
152 LiveOuts = parseRegisterLiveOutMask(MOI->getRegLiveOut()); in parseOperand()
163 const LiveOutVec &LiveOuts = CSI.LiveOuts; in print() local
211 OS << WSMP << "\thas " << LiveOuts.size() << " live-out registers\n"; in print()
214 for (const auto &LO : LiveOuts) { in print()
241 LiveOutVec LiveOuts; in parseRegisterLiveOutMask() local
246 LiveOuts.push_back(createLiveOutReg(Reg, TRI)); in parseRegisterLiveOutMask()
252 std::sort(LiveOuts.begin(), LiveOuts.end(), in parseRegisterLiveOutMask()
258 for (auto I = LiveOuts.begin(), E = LiveOuts.end(); I != E; ++I) { in parseRegisterLiveOutMask()
272 LiveOuts.erase( in parseRegisterLiveOutMask()
[all …]
HDExecutionDepsFix.cpp144 LiveOutMap LiveOuts; member in __anon8ec5468a0311::ExeDepsFix
394 LiveOutMap::const_iterator fi = LiveOuts.find(*pi); in enterBasicBlock()
395 if (fi == LiveOuts.end()) { in enterBasicBlock()
437 bool First = LiveOuts.insert(std::make_pair(MBB, LiveRegs)).second; in leaveBasicBlock()
787 LiveOutMap::const_iterator FI = LiveOuts.find(*MBBI); in runOnMachineFunction()
788 if (FI == LiveOuts.end() || !FI->second) in runOnMachineFunction()
795 LiveOuts.clear(); in runOnMachineFunction()
HDLiveVariables.cpp598 SmallSet<unsigned, 4> LiveOuts; in runOnBlock() local
609 LiveOuts.insert(LReg); in runOnBlock()
616 if ((PhysRegDef[i] || PhysRegUse[i]) && !LiveOuts.count(i)) in runOnBlock()
HDMachineScheduler.cpp1133 ArrayRef<unsigned> LiveOuts = RPTracker.getPressure().LiveOutRegs; in computeCyclicCriticalPath() local
1134 for (ArrayRef<unsigned>::iterator RI = LiveOuts.begin(), RE = LiveOuts.end(); in computeCyclicCriticalPath()
/NextBSD/contrib/llvm/include/llvm/CodeGen/
HDStackMaps.h201 LiveOutVec LiveOuts; member
204 LocationVec &&Locations, LiveOutVec &&LiveOuts) in CallsiteInfo()
206 LiveOuts(std::move(LiveOuts)) {} in CallsiteInfo()
219 LiveOutVec &LiveOuts) const;
/NextBSD/contrib/llvm/lib/Target/AMDGPU/
HDR600MachineFunctionInfo.h27 SmallVector<unsigned, 4> LiveOuts; variable
HDR600ISelLowering.cpp563 for (unsigned i = 0, e = MFI->LiveOuts.size(); i != e; ++i) in EmitInstrWithCustomInserter()
564 MIB.addReg(MFI->LiveOuts[i], RegState::Implicit); in EmitInstrWithCustomInserter()
611 MFI->LiveOuts.push_back(Reg); in LowerOperation()