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

  /external/llvm/include/llvm/CodeGen/
MachineTraceMetrics.h 208 SmallVector<LiveInReg, 4> LiveIns;
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(); }

Completed in 605 milliseconds