Fixes to allow the verifier to process frameworks.

I've disabled the access checks for class and method, which need some
fixing, but nothing in frameworks should be failing in the verifier
anymore.

Change-Id: Ic16a8627b6a5b74b385a1f30dbc937c2ced910a4
diff --git a/src/dex_verifier.h b/src/dex_verifier.h
index 8b1f450..96349a3 100644
--- a/src/dex_verifier.h
+++ b/src/dex_verifier.h
@@ -1696,6 +1696,11 @@
       const Instruction::DecodedInstruction* dec_insn, MethodType method_type,
       bool is_range, bool is_super, VerifyError* failure);
 
+  /* Dump the register types for the specifed address to the log file. */
+  static void DumpRegTypes(const VerifierData* vdata,
+      const RegisterLine* register_line, int addr, const char* addr_name,
+      const UninitInstanceMap* uninit_map);
+
   DISALLOW_COPY_AND_ASSIGN(DexVerifier);
 };