HomeSort by relevance Sort by last modified time
    Searched defs:LiveIns (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
66 std::vector<std::pair<unsigned, unsigned> > LiveIns;
310 LiveIns.push_back(std::make_pair(Reg, vreg));
319 livein_iterator livein_begin() const { return LiveIns.begin(); }
320 livein_iterator livein_end() const { return LiveIns.end(); }
321 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;
204 void addLiveIn(unsigned Reg) { LiveIns.push_back(Reg); }
217 livein_iterator livein_begin() const { return LiveIns.begin(); }
218 livein_iterator livein_end() const { return LiveIns.end(); }
219 bool livein_empty() const { return LiveIns.empty(); }

Completed in 18 milliseconds