This patch includes:
- Emulation of prologue/epilogue and branch instructions for microMIPS.
- Setting up alternate disassembler (to be used for microMIPS).
So there will be two disassembler instances, one for microMIPS and other for MIPS.
Appropriate disassembler will be used based on the address class of instruction address.
- Some of the branch instructions does not have fixed sized delay slot, that means delay slot instruction can be of 2-byte or 4-byte.
For this "m_next_inst_size" has been introduced which stores the size of next instruction (i.e size of delay slot instruction in case of branch).
This can be used wherever the size of next instruction is required.
- A minor change to use mips32 register names instead of mips64 names.
(nit): "if (m_use_alt_disaasm)"