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 368 for (unsigned i = 0, e = LiveIns.size(); i != e; ++i)
369 if (LiveIns[i].second) {
370 if (use_empty(LiveIns[i].second)) {
376 LiveIns.erase(LiveIns.begin() + i);
381 TII.get(TargetOpcode::COPY), LiveIns[i].second)
382 .addReg(LiveIns[i].first);
385 EntryMBB->addLiveIn(LiveIns[i].first);
389 EntryMBB->addLiveIn(LiveIns[i].first);
MachineTraceMetrics.cpp 765 for (unsigned i = 0, e = TBI.LiveIns.size(); i != e; ++i) {
766 const LiveInReg &LIR = TBI.LiveIns[i];
    [all...]
MachineBasicBlock.cpp 341 std::find(LiveIns.begin(), LiveIns.end(), Reg);
342 if (I != LiveIns.end())
343 LiveIns.erase(I);
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineBasicBlock.h 81 /// LiveIns - Keep track of the physical registers that are livein of
83 std::vector<unsigned> LiveIns;
320 void addLiveIn(unsigned Reg) { LiveIns.push_back(Reg); }
338 livein_iterator livein_begin() const { return LiveIns.begin(); }
339 livein_iterator livein_end() const { return LiveIns.end(); }
340 bool livein_empty() const { return LiveIns.empty(); }
MachineRegisterInfo.h 120 std::vector<std::pair<unsigned, unsigned> > LiveIns;
740 LiveIns.push_back(std::make_pair(Reg, vreg));
747 livein_iterator livein_begin() const { return LiveIns.begin(); }
748 livein_iterator livein_end() const { return LiveIns.end(); }
749 bool livein_empty() const { return LiveIns.empty(); }
    [all...]
MachineTraceMetrics.h 215 SmallVector<LiveInReg, 4> LiveIns;

Completed in 3383 milliseconds