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

  /external/llvm/lib/CodeGen/
MachineRegisterInfo.cpp 370 for (unsigned i = 0, e = LiveIns.size(); i != e; ++i)
371 if (LiveIns[i].second) {
372 if (use_empty(LiveIns[i].second)) {
378 LiveIns.erase(LiveIns.begin() + i);
383 TII.get(TargetOpcode::COPY), LiveIns[i].second)
384 .addReg(LiveIns[i].first);
387 EntryMBB->addLiveIn(LiveIns[i].first);
391 EntryMBB->addLiveIn(LiveIns[i].first);
MachineTraceMetrics.cpp 766 for (unsigned i = 0, e = TBI.LiveIns.size(); i != e; ++i) {
767 const LiveInReg &LIR = TBI.LiveIns[i];
    [all...]
MachineBasicBlock.cpp 335 std::find(LiveIns.begin(), LiveIns.end(), Reg);
336 if (I != LiveIns.end())
337 LiveIns.erase(I);
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineRegisterInfo.h 107 std::vector<std::pair<unsigned, unsigned> > LiveIns;
488 LiveIns.push_back(std::make_pair(Reg, vreg));
495 livein_iterator livein_begin() const { return LiveIns.begin(); }
496 livein_iterator livein_end() const { return LiveIns.end(); }
497 bool livein_empty() const { return LiveIns.empty(); }
MachineBasicBlock.h 81 /// LiveIns - Keep track of the physical registers that are livein of
83 std::vector<unsigned> LiveIns;
297 void addLiveIn(unsigned Reg) { LiveIns.push_back(Reg); }
315 livein_iterator livein_begin() const { return LiveIns.begin(); }
316 livein_iterator livein_end() const { return LiveIns.end(); }
317 bool livein_empty() const { return LiveIns.empty(); }
MachineTraceMetrics.h 215 SmallVector<LiveInReg, 4> LiveIns;

Completed in 146 milliseconds