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

  /external/llvm/lib/Target/R600/
R600MachineFunctionInfo.h 27 SmallVector<unsigned, 4> LiveOuts;
  /external/llvm/include/llvm/CodeGen/
StackMaps.h 146 LiveOutVec LiveOuts;
149 LocationVec &Locations, LiveOutVec &LiveOuts)
151 LiveOuts(LiveOuts) {}
164 LocationVec &Locs, LiveOutVec &LiveOuts) const;
  /external/llvm/lib/CodeGen/
StackMaps.cpp 81 LocationVec &Locs, LiveOutVec &LiveOuts) const {
133 LiveOuts = parseRegisterLiveOutMask(MOI->getRegLiveOut());
162 LiveOutVec LiveOuts;
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.begin(), LiveOuts.end()
    [all...]
ExecutionDepsFix.cpp 139 LiveOutMap LiveOuts;
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.clear()
    [all...]
LiveVariables.cpp 623 SmallSet<unsigned, 4> LiveOuts;
634 LiveOuts.insert(LReg);
641 if ((PhysRegDef[i] || PhysRegUse[i]) && !LiveOuts.count(i))
MachineScheduler.cpp     [all...]

Completed in 360 milliseconds