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 312 for (unsigned i = 0, e = LiveIns.size(); i != e; ++i)
313 if (LiveIns[i].second) {
314 if (use_empty(LiveIns[i].second)) {
320 LiveIns.erase(LiveIns.begin() + i);
325 TII.get(TargetOpcode::COPY), LiveIns[i].second)
326 .addReg(LiveIns[i].first);
329 EntryMBB->addLiveIn(LiveIns[i].first);
333 EntryMBB->addLiveIn(LiveIns[i].first);
MachineTraceMetrics.cpp 673 for (unsigned i = 0, e = TBI.LiveIns.size(); i != e; ++i) {
674 const LiveInReg &LIR = TBI.LiveIns[i];
    [all...]
MachineBasicBlock.cpp 330 std::find(LiveIns.begin(), LiveIns.end(), Reg);
331 if (I != LiveIns.end())
332 LiveIns.erase(I);
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineRegisterInfo.h 106 std::vector<std::pair<unsigned, unsigned> > LiveIns;
473 LiveIns.push_back(std::make_pair(Reg, vreg));
480 livein_iterator livein_begin() const { return LiveIns.begin(); }
481 livein_iterator livein_end() const { return LiveIns.end(); }
482 bool livein_empty() const { return LiveIns.empty(); }
MachineBasicBlock.h 82 /// LiveIns - Keep track of the physical registers that are livein of
84 std::vector<unsigned> LiveIns;
294 void addLiveIn(unsigned Reg) { LiveIns.push_back(Reg); }
307 livein_iterator livein_begin() const { return LiveIns.begin(); }
308 livein_iterator livein_end() const { return LiveIns.end(); }
309 bool livein_empty() const { return LiveIns.empty(); }
MachineTraceMetrics.h 208 SmallVector<LiveInReg, 4> LiveIns;

Completed in 79 milliseconds