Home | History | Annotate | Download | only in mips

Lines Matching refs:rhs

30 std::ostream& operator<<(std::ostream& os, const Register& rhs) {
31 if (rhs >= ZERO && rhs <= RA) {
32 os << kRegisterNames[rhs];
34 os << "Register[" << static_cast<int>(rhs) << "]";
39 std::ostream& operator<<(std::ostream& os, const FRegister& rhs) {
40 if (rhs >= F0 && rhs < kNumberOfFRegisters) {
41 os << "f" << static_cast<int>(rhs);
43 os << "FRegister[" << static_cast<int>(rhs) << "]";
48 std::ostream& operator<<(std::ostream& os, const VectorRegister& rhs) {
49 if (rhs >= W0 && rhs < kNumberOfVectorRegisters) {
50 os << "w" << static_cast<int>(rhs);
52 os << "VectorRegister[" << static_cast<int>(rhs) << "]";