Searched defs:MIRef (Results 1 – 2 of 2) sorted by relevance
49 struct MIRef { struct50 MachineInstr *MI = nullptr;51 MachineBasicBlock *MBB = nullptr;53 size_t Pos = 0;55 MIRef(MachineBasicBlock *MBB) : MBB(MBB) { in MIRef() argument60 MIRef(MachineInstr *MI) in MIRef() function63 MIRef(MachineInstr *MI, MachineBasicBlock *MBB) in MIRef() function66 MIRef(MachineInstr *MI, MachineBasicBlock *MBB, size_t Pos) in MIRef() function68 operator bool() const { return MBB != nullptr; } in operator bool()69 bool operator==(const MIRef &RHS) const { in operator ==()[all …]
1860 MachineInstr &MIRef = const_cast<MachineInstr &>(MI); in shouldAddToPacket() local