reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
927 LiveIns.push_back(std::make_pair(Reg, vreg)); 934 livein_iterator livein_begin() const { return LiveIns.begin(); } 935 livein_iterator livein_end() const { return LiveIns.end(); } 936 bool livein_empty() const { return LiveIns.empty(); } 939 return LiveIns;lib/CodeGen/MachineRegisterInfo.cpp
213 for (auto &I : LiveIns) 474 for (unsigned i = 0, e = LiveIns.size(); i != e; ++i) 475 if (LiveIns[i].second) { 476 if (use_nodbg_empty(LiveIns[i].second)) { 482 LiveIns.erase(LiveIns.begin() + i); 482 LiveIns.erase(LiveIns.begin() + i); 487 TII.get(TargetOpcode::COPY), LiveIns[i].second) 488 .addReg(LiveIns[i].first); 491 EntryMBB->addLiveIn(LiveIns[i].first); 495 EntryMBB->addLiveIn(LiveIns[i].first);