| 958 | } |
| 959 | |
| 960 | virtual string GetRegisterName(uint32_t regId) override |
| 961 | { |
| 962 | const char *result = powerpc_reg_to_str(regId, cs_mode_local); |
| 963 | |
| 964 | if(result == NULL) |
| 965 | result = ""; |
| 966 | |
| 967 | //MYLOG("%s(%d) returns %s\n", __func__, regId, result); |
| 968 | return result; |
| 969 | } |
| 970 | |
| 971 | /*************************************************************************/ |
| 972 | /* FLAGS API |
nothing calls this directly
no test coverage detected