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

  /external/llvm/include/llvm/CodeGen/
MachineRegisterInfo.h 61 /// LiveIns/LiveOuts - Keep track of the physical registers that are
67 std::vector<unsigned> LiveOuts;
312 void addLiveOut(unsigned Reg) { LiveOuts.push_back(Reg); }
322 liveout_iterator liveout_begin() const { return LiveOuts.begin(); }
323 liveout_iterator liveout_end() const { return LiveOuts.end(); }
324 bool liveout_empty() const { return LiveOuts.empty(); }
  /external/llvm/lib/CodeGen/
ExecutionDepsFix.cpp 119 LiveOutMap LiveOuts;
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();

Completed in 119 milliseconds