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 215 SmallVector<LiveInReg, 4> LiveIns;
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...]

Completed in 204 milliseconds