Searched refs:LiveOuts (Results 1 - 3 of 3) sorted by relevance

/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/CodeGen/
H A DMachineRegisterInfo.h98 /// LiveIns/LiveOuts - Keep track of the physical registers that are
104 std::vector<unsigned> LiveOuts; member in class:llvm::MachineRegisterInfo
465 void addLiveOut(unsigned Reg) { LiveOuts.push_back(Reg); }
475 liveout_iterator liveout_begin() const { return LiveOuts.begin(); }
476 liveout_iterator liveout_end() const { return LiveOuts.end(); }
477 bool liveout_empty() const { return LiveOuts.empty(); }
/macosx-10.9.5/llvmCore-3425.0.33/lib/CodeGen/
H A DExecutionDepsFix.cpp137 LiveOutMap LiveOuts; member in class:__anon10140::ExeDepsFix
373 LiveOutMap::const_iterator fi = LiveOuts.find(*pi);
374 if (fi == LiveOuts.end()) {
415 // Also use LiveOuts as a visited set to detect back-edges.
416 bool First = LiveOuts.insert(std::make_pair(MBB, LiveRegs)).second;
419 // LiveRegs was inserted in LiveOuts. Adjust all defs to be relative to
704 // Clear the LiveOuts vectors and collapse any remaining DomainValues.
707 LiveOutMap::const_iterator FI = LiveOuts.find(*MBBI);
708 if (FI == LiveOuts.end() || !FI->second)
715 LiveOuts
[all...]
H A DLiveVariables.cpp647 SmallSet<unsigned, 4> LiveOuts; local
658 LiveOuts.insert(LReg);
665 if ((PhysRegDef[i] || PhysRegUse[i]) && !LiveOuts.count(i))

Completed in 189 milliseconds