There is a crash in the ARM backend when attempting to decode a "tsb
csync" instruction using llvm-objdump --triple=armv8.4a -d. The crash
was in ARMMCInstrAnalysis::evaluateBranch where the number of operands
in the decoded instruction (0) did not match the number of operands in
the instruction description (1).
This is becuase tsb csync looks like it has an operand during
assembly, but there is only one valid operand (csync), so there is no
encoding space in the instruction for the operand, so the decoder never
has a field to decode that represents csync.
The fix is to add a custom decode method, which ensures that this
instruction does have the right number of operands after decoding. This
method merely adds the only available operand value, ARM_TSB::CSYNC.