| 115 | }; |
| 116 | |
| 117 | std::string_view ctx_gpr_prefix(int reg) { |
| 118 | if (reg != 0) { |
| 119 | return "r"; |
| 120 | } |
| 121 | return ""; |
| 122 | } |
| 123 | |
| 124 | uint32_t expected_c0_reg_value(int cop0_reg) { |
| 125 | switch (static_cast<Cop0Reg>(cop0_reg)) { |
no outgoing calls
no test coverage detected