diff options
author | 2016-05-13 14:46:28 -0700 | |
---|---|---|
committer | 2016-05-13 16:23:59 -0700 | |
commit | 12c08f03f65acc1c308491fc7ab6c57f682e2f24 (patch) | |
tree | 8d07990c270180be291c3dd42d173dd67ddd23ef /test/148-multithread-gc-annotations/gc_coverage.cc | |
parent | 6cb4ccbd0dfabb9261aca911749be0603adecfe5 (diff) |
Make quick frames of proxy methods visited if they're constructors.
Also adds a test case for getting annotations during moving GC.
Bug: 28510922
Change-Id: Ic9b849cd16321da3a3a609182dcdea08782496f9
Diffstat (limited to 'test/148-multithread-gc-annotations/gc_coverage.cc')
-rw-r--r-- | test/148-multithread-gc-annotations/gc_coverage.cc | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/test/148-multithread-gc-annotations/gc_coverage.cc b/test/148-multithread-gc-annotations/gc_coverage.cc new file mode 100644 index 0000000000..263eefd3ab --- /dev/null +++ b/test/148-multithread-gc-annotations/gc_coverage.cc @@ -0,0 +1,42 @@ +/* + * Copyright (C) 2015 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#include "gc/heap.h" +#include "jni.h" +#include "runtime.h" +#include "scoped_thread_state_change.h" +#include "thread-inl.h" + +namespace art { +namespace { + +extern "C" JNIEXPORT jboolean JNICALL Java_MovingGCThread_performHomogeneousSpaceCompact(JNIEnv*, jclass) { + return Runtime::Current()->GetHeap()->PerformHomogeneousSpaceCompact() == gc::kSuccess ? + JNI_TRUE : JNI_FALSE; +} + +extern "C" JNIEXPORT jboolean JNICALL Java_MovingGCThread_supportHomogeneousSpaceCompact(JNIEnv*, jclass) { + return Runtime::Current()->GetHeap()->SupportHomogeneousSpaceCompactAndCollectorTransitions() ? + JNI_TRUE : JNI_FALSE; +} + +extern "C" JNIEXPORT jlong JNICALL Java_MovingGCThread_objectAddress(JNIEnv* env, jclass, jobject object) { + ScopedObjectAccess soa(env); + return reinterpret_cast<jlong>(soa.Decode<mirror::Object*>(object)); +} + +} // namespace +} // namespace art |