| 636 | |
| 637 | |
| 638 | uint32_t GetNumberOfRegs(uint16_t regList) |
| 639 | { |
| 640 | uint32_t nregs = 0; |
| 641 | for (uint32_t i = 0; i < 16; i++) |
| 642 | { |
| 643 | if (((regList >> i) & 1) == 1) |
| 644 | nregs++; |
| 645 | } |
| 646 | return nregs; |
| 647 | } |
| 648 | |
| 649 | |
| 650 | void ConditionExecute(size_t addrSize, Condition cond, Instruction& instr, LowLevelILFunction& il, |
no outgoing calls
no test coverage detected