Lines Matching refs:os
76 void MipsManagedRegister::Print(std::ostream& os) const { in Print()
78 os << "No Register"; in Print()
80 os << "Core: " << static_cast<int>(AsCoreRegister()); in Print()
82 os << "Pair: " << AsRegisterPairLow() << ", " << AsRegisterPairHigh(); in Print()
84 os << "FRegister: " << static_cast<int>(AsFRegister()); in Print()
86 os << "DRegister: " << static_cast<int>(AsDRegister()); in Print()
88 os << "??: " << RegId(); in Print()
92 std::ostream& operator<<(std::ostream& os, const MipsManagedRegister& reg) { in operator <<() argument
93 reg.Print(os); in operator <<()
94 return os; in operator <<()
97 std::ostream& operator<<(std::ostream& os, const RegisterPair& reg) { in operator <<() argument
98 os << MipsManagedRegister::FromRegisterPair(reg); in operator <<()
99 return os; in operator <<()