Add disassembly support for the following shifted register instructions:
- mvn
- orn
- orr
- and
- ands
- bic
- bics
- eon
- eor
- tst
According to Arm64 documenation, operational pseuducode of shifted
register instruction must return UNDEFINED if shift type is RESERVED
('11'). Hence, removed "rsv" from shift_2 array and added "ror".
In case of shift type is 4 and this type is RESERVED,
we will return undefined.