Revert "Inline ClassLinker::ResolveMethod"

This reverts commit 25d88ba906b18ce2ca4ec1d9b7c23980b63a33ad.

Reason for revert: Too much inlining makes ASAN unhappy.

We have originally inlined it for performance of invokes,
however, we have added thread local resolution cache since,
so this method should no longer be on the hot path.

Change-Id: Id016882511f4b7698bf8d34f19239c8baff5cc44
diff --git a/build/art.go b/build/art.go
index 0df46b1..f3cd3ca 100644
--- a/build/art.go
+++ b/build/art.go
@@ -154,8 +154,7 @@
 	if len(ctx.AConfig().SanitizeHost()) > 0 {
 		// art/test/137-cfi/cfi.cc
 		// error: stack frame size of 1944 bytes in function 'Java_Main_unwindInProcess'
-		// error: stack frame size of 6520 bytes in function 'art::interpreter::ExecuteSwitchImplCpp'
-		hostFrameSizeLimit = 7400
+		hostFrameSizeLimit = 6400
 	}
 	cflags = append(cflags,
 		fmt.Sprintf("-Wframe-larger-than=%d", hostFrameSizeLimit),