Reduce use of DecodedInstruction in verifier.

This CL reduces the use of DecodedInstruction in verifier. It continues work
started in https://googleplex-android-review.googlesource.com/#/c/311171.

We cannot remove it completely from verifier because of method
MethodVerifier::VerifyInstruction. It is based on instruction flags rather than
instruction opcode. So we can't rely on instruction format. We may need to add
VRegA, VRegB and VRegC methods for this case. This should also be required for
the compiler itself. Let's delay this change to another CL.

Change-Id: I9d34df8b5bdb3db74e4959364c3cde90ef15585d
diff --git a/src/dex_instruction-inl.h b/src/dex_instruction-inl.h
index 99dab12..519b3cf 100644
--- a/src/dex_instruction-inl.h
+++ b/src/dex_instruction-inl.h
@@ -36,6 +36,11 @@
   return static_cast<int8_t>(InstAA());
 }
 
+inline uint8_t Instruction::VRegA_10x() const {
+  DCHECK_EQ(FormatOf(Opcode()), k10x);
+  return InstAA();
+}
+
 inline uint4_t Instruction::VRegA_11n() const {
   DCHECK_EQ(FormatOf(Opcode()), k11n);
   return InstA();