ART: Add UNLIKELY in verifier

INVOKE_POLYMORPHIC is unlikely, at this point. Perf shows compiler
optimizations assuming the branch is taken.

Bug: 10921004
Test: m test-art-host
Change-Id: I161327d5c0399de75ff3fc79fa4d762cadbffe20
diff --git a/runtime/verifier/method_verifier.cc b/runtime/verifier/method_verifier.cc
index bbea474..81bf293 100644
--- a/runtime/verifier/method_verifier.cc
+++ b/runtime/verifier/method_verifier.cc
@@ -4347,7 +4347,7 @@
     }
   }
 
-  if (method_type == METHOD_POLYMORPHIC) {
+  if (UNLIKELY(method_type == METHOD_POLYMORPHIC)) {
     // Process the signature of the calling site that is invoking the method handle.
     DexFileParameterIterator it(*dex_file_, dex_file_->GetProtoId(inst->VRegH()));
     return VerifyInvocationArgsFromIterator(&it, inst, method_type, is_range, res_method);