From d108d9eaae26df9e4480cf46d26e8c75f142bd6a Mon Sep 17 00:00:00 2001 From: Vladimir Marko Date: Wed, 11 Oct 2017 10:29:19 +0000 Subject: Revert "Ensure Proxy frames work with JVMTI stack frame functions" Reason for revert: gcstress 1914-get-local-instance failures, object-inl.h:163] Check failed: GetClass() != nullptr Bug: 66903662 This reverts commit a03a9eeb9d1b2ebca17cc326f52c84a5abca6707. Change-Id: I5c68616d61566dd4ade713c4dad5e462b76d9af7 --- openjdkjvmti/ti_stack.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'openjdkjvmti/ti_stack.cc') diff --git a/openjdkjvmti/ti_stack.cc b/openjdkjvmti/ti_stack.cc index e0c139954d..d4cc42ae70 100644 --- a/openjdkjvmti/ti_stack.cc +++ b/openjdkjvmti/ti_stack.cc @@ -789,7 +789,7 @@ jvmtiError StackUtil::GetFrameLocation(jvmtiEnv* env ATTRIBUTE_UNUSED, } *method_ptr = art::jni::EncodeArtMethod(closure.method); - if (closure.method->IsNative() || closure.method->IsProxyMethod()) { + if (closure.method->IsNative()) { *location_ptr = -1; } else { if (closure.dex_pc == art::dex::kDexNoIndex) { -- cgit v1.2.3-59-g8ed1b