| 25 | } |
| 26 | |
| 27 | static uint32_t RegisterSizeFromPrefix(const char* prefix = "") |
| 28 | { |
| 29 | if (strcmp(prefix, "s") == 0) |
| 30 | return 4; |
| 31 | if (strcmp(prefix, "d") == 0) |
| 32 | return 8; |
| 33 | if (strcmp(prefix, "q") == 0) |
| 34 | return 16; |
| 35 | return 4; |
| 36 | } |
| 37 | |
| 38 | static ExprId ReadRegister(LowLevelILFunction& il, decomp_result* instr, uint32_t reg, size_t size = 4, const char* prefix = "") |
| 39 | { |
no outgoing calls
no test coverage detected