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

/external/llvm/lib/Target/AMDGPU/
H A DR600MachineFunctionInfo.h26 SmallVector<unsigned, 4> LiveOuts; member in class:llvm::final
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DExecutionDepsFix.cpp119 LiveOutMap LiveOuts; member in class:__anon22616::ExeDepsFix
282 LiveOutMap::const_iterator fi = LiveOuts.find(*pi);
283 if (fi == LiveOuts.end()) continue;
504 LiveOuts.insert(std::make_pair(MBB, LiveRegs));
508 // Clear the LiveOuts vectors. Should we also collapse any remaining
510 for (LiveOutMap::const_iterator i = LiveOuts.begin(), e = LiveOuts.end();
513 LiveOuts.clear();
/external/llvm/include/llvm/CodeGen/
H A DStackMaps.h200 LiveOutVec LiveOuts; member in struct:llvm::StackMaps::CallsiteInfo
203 LocationVec &&Locations, LiveOutVec &&LiveOuts)
205 LiveOuts(std::move(LiveOuts)) {}
218 LiveOutVec &LiveOuts) const;
202 CallsiteInfo(const MCExpr *CSOffsetExpr, uint64_t ID, LocationVec &&Locations, LiveOutVec &&LiveOuts) argument
/external/llvm/lib/CodeGen/
H A DStackMaps.cpp90 LiveOutVec &LiveOuts) const {
154 LiveOuts = parseRegisterLiveOutMask(MOI->getRegLiveOut());
165 const LiveOutVec &LiveOuts = CSI.LiveOuts; local
213 OS << WSMP << "\thas " << LiveOuts.size() << " live-out registers\n";
216 for (const auto &LO : LiveOuts) {
243 LiveOutVec LiveOuts; local
248 LiveOuts.push_back(createLiveOutReg(Reg, TRI));
254 std::sort(LiveOuts.begin(), LiveOuts
292 LiveOutVec LiveOuts; local
474 const LiveOutVec &LiveOuts = CSI.LiveOuts; local
[all...]
H A DLiveVariables.cpp602 SmallSet<unsigned, 4> LiveOuts; local
611 LiveOuts.insert(LI.PhysReg);
618 if ((PhysRegDef[i] || PhysRegUse[i]) && !LiveOuts.count(i))
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
H A DMachineRegisterInfo.h61 /// LiveIns/LiveOuts - Keep track of the physical registers that are
67 std::vector<unsigned> LiveOuts; member in class:llvm::MachineRegisterInfo
304 void addLiveOut(unsigned Reg) { LiveOuts.push_back(Reg); }
314 liveout_iterator liveout_begin() const { return LiveOuts.begin(); }
315 liveout_iterator liveout_end() const { return LiveOuts.end(); }
316 bool liveout_empty() const { return LiveOuts.empty(); }

Completed in 476 milliseconds