HomeSort by relevance Sort by last modified time
    Searched refs:LiveOuts (Results 1 - 7 of 7) sorted by null

  /external/llvm/lib/Target/R600/
R600MachineFunctionInfo.h 27 SmallVector<unsigned, 4> LiveOuts;
R600ISelLowering.cpp 564 for (unsigned i = 0, e = MFI->LiveOuts.size(); i != e; ++i)
565 MIB.addReg(MFI->LiveOuts[i], RegState::Implicit);
610 MFI->LiveOuts.push_back(Reg);
    [all...]
  /external/llvm/lib/CodeGen/
StackMaps.cpp 90 LocationVec &Locs, LiveOutVec &LiveOuts) const {
152 LiveOuts = parseRegisterLiveOutMask(MOI->getRegLiveOut());
163 const LiveOutVec &LiveOuts = CSI.LiveOuts;
211 OS << WSMP << " has " << LiveOuts.size() << " live-out registers\n";
214 for (const auto &LO : LiveOuts) {
241 LiveOutVec LiveOuts;
246 LiveOuts.push_back(createLiveOutReg(Reg, TRI));
251 std::sort(LiveOuts.begin(), LiveOuts.end())
    [all...]
ExecutionDepsFix.cpp 144 LiveOutMap LiveOuts;
394 LiveOutMap::const_iterator fi = LiveOuts.find(*pi);
395 if (fi == LiveOuts.end()) {
436 // Also use LiveOuts as a visited set to detect back-edges.
437 bool First = LiveOuts.insert(std::make_pair(MBB, LiveRegs)).second;
440 // LiveRegs was inserted in LiveOuts. Adjust all defs to be relative to
784 // Clear the LiveOuts vectors and collapse any remaining DomainValues.
787 LiveOutMap::const_iterator FI = LiveOuts.find(*MBBI);
788 if (FI == LiveOuts.end() || !FI->second)
795 LiveOuts.clear()
    [all...]
LiveVariables.cpp 598 SmallSet<unsigned, 4> LiveOuts;
609 LiveOuts.insert(LReg);
616 if ((PhysRegDef[i] || PhysRegUse[i]) && !LiveOuts.count(i))
MachineScheduler.cpp     [all...]
  /external/llvm/include/llvm/CodeGen/
StackMaps.h 201 LiveOutVec LiveOuts;
204 LocationVec &&Locations, LiveOutVec &&LiveOuts)
206 LiveOuts(std::move(LiveOuts)) {}
219 LocationVec &Locs, LiveOutVec &LiveOuts) const;

Completed in 168 milliseconds