Searched defs:LiveOuts (Results 1 - 6 of 6) sorted by relevance

/external/llvm/lib/Target/R600/
H A DR600MachineFunctionInfo.h27 SmallVector<unsigned, 4> LiveOuts; member in class:llvm::R600MachineFunctionInfo
/external/llvm/include/llvm/CodeGen/
H A DStackMaps.h146 LiveOutVec LiveOuts; member in struct:llvm::StackMaps::CallsiteInfo
149 LocationVec &Locations, LiveOutVec &LiveOuts)
151 LiveOuts(LiveOuts) {}
164 LocationVec &Locs, LiveOutVec &LiveOuts) const;
148 CallsiteInfo(const MCExpr *CSOffsetExpr, uint64_t ID, LocationVec &Locations, LiveOutVec &LiveOuts) argument
/external/llvm/lib/CodeGen/
H A DStackMaps.cpp81 LocationVec &Locs, LiveOutVec &LiveOuts) const {
133 LiveOuts = parseRegisterLiveOutMask(MOI->getRegLiveOut());
162 LiveOutVec LiveOuts; local
167 LiveOuts.push_back(createLiveOutReg(Reg, TRI));
172 std::sort(LiveOuts.begin(), LiveOuts.end());
173 for (LiveOutVec::iterator I = LiveOuts.begin(), E = LiveOuts.end();
187 LiveOuts.erase(std::remove_if(LiveOuts
202 LiveOutVec LiveOuts; local
365 const LiveOutVec &LiveOuts = CSI.LiveOuts; local
[all...]
H A DExecutionDepsFix.cpp139 LiveOutMap LiveOuts; member in class:__anon25744::ExeDepsFix
387 LiveOutMap::const_iterator fi = LiveOuts.find(*pi);
388 if (fi == LiveOuts.end()) {
429 // Also use LiveOuts as a visited set to detect back-edges.
430 bool First = LiveOuts.insert(std::make_pair(MBB, LiveRegs)).second;
433 // LiveRegs was inserted in LiveOuts. Adjust all defs to be relative to
775 // Clear the LiveOuts vectors and collapse any remaining DomainValues.
778 LiveOutMap::const_iterator FI = LiveOuts.find(*MBBI);
779 if (FI == LiveOuts.end() || !FI->second)
786 LiveOuts
[all...]
H A DLiveVariables.cpp623 SmallSet<unsigned, 4> LiveOuts; local
634 LiveOuts.insert(LReg);
641 if ((PhysRegDef[i] || PhysRegUse[i]) && !LiveOuts.count(i))
H A DMachineScheduler.cpp1113 ArrayRef<unsigned> LiveOuts = RPTracker.getPressure().LiveOutRegs; local
1114 for (ArrayRef<unsigned>::iterator RI = LiveOuts.begin(), RE = LiveOuts.end();

Completed in 128 milliseconds