| 6 | |
| 7 | namespace N64Recomp { |
| 8 | struct InstructionContext { |
| 9 | int rd; |
| 10 | int rs; |
| 11 | int rt; |
| 12 | int sa; |
| 13 | |
| 14 | int fd; |
| 15 | int fs; |
| 16 | int ft; |
| 17 | |
| 18 | int cop1_cs; |
| 19 | |
| 20 | uint16_t imm16; |
| 21 | |
| 22 | bool reloc_tag_as_reference; |
| 23 | RelocType reloc_type; |
| 24 | uint32_t reloc_section_index; |
| 25 | uint32_t reloc_target_section_offset; |
| 26 | }; |
| 27 | |
| 28 | class Generator { |
| 29 | public: |
nothing calls this directly
no outgoing calls
no test coverage detected