| 150 | |
| 151 | |
| 152 | static void PrintRegister(LowLevelILFunction* func, uint32_t reg) |
| 153 | { |
| 154 | if (LLIL_REG_IS_TEMP(reg)) |
| 155 | printf("temp%d", LLIL_GET_TEMP_REG_INDEX(reg)); |
| 156 | else |
| 157 | { |
| 158 | string name = func->GetArchitecture()->GetRegisterName(reg); |
| 159 | if (name.size() == 0) |
| 160 | printf("<no name>"); |
| 161 | else |
| 162 | printf("%s", name.c_str()); |
| 163 | } |
| 164 | } |
| 165 | |
| 166 | |
| 167 | static void PrintFlag(LowLevelILFunction* func, uint32_t flag) |
no test coverage detected