Searched defs:MIRef (Results 1 – 2 of 2) sorted by relevance
56 struct MIRef { struct57 MachineInstr *MI = nullptr;58 MachineBasicBlock *MBB = nullptr;60 size_t Pos = 0;62 MIRef(MachineBasicBlock *MBB) : MBB(MBB) { in MIRef() argument67 MIRef(MachineInstr *MI) in MIRef() argument70 MIRef(MachineInstr *MI, MachineBasicBlock *MBB) in MIRef() function73 MIRef(MachineInstr *MI, MachineBasicBlock *MBB, size_t Pos) in MIRef() function75 operator bool() const { return MBB != nullptr; } in operator bool()76 bool operator==(const MIRef &RHS) const { in operator ==()[all …]
1869 MachineInstr &MIRef = const_cast<MachineInstr &>(MI); in shouldAddToPacket() local