Alex Light | e77b48b | 2017-02-22 11:08:06 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2017 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | #include "non_debuggable_classes.h" |
| 18 | |
Andreas Gampe | 88dbad3 | 2018-06-26 19:54:12 -0700 | [diff] [blame] | 19 | #include "jni/jni_env_ext.h" |
Vladimir Marko | a3ad0cd | 2018-05-04 10:06:38 +0100 | [diff] [blame] | 20 | #include "jni/jni_internal.h" |
Alex Light | e77b48b | 2017-02-22 11:08:06 -0800 | [diff] [blame] | 21 | #include "mirror/class-inl.h" |
Andreas Gampe | 373a9b5 | 2017-10-18 09:01:57 -0700 | [diff] [blame] | 22 | #include "nativehelper/scoped_local_ref.h" |
Alex Light | e77b48b | 2017-02-22 11:08:06 -0800 | [diff] [blame] | 23 | #include "obj_ptr-inl.h" |
Andreas Gampe | b486a98 | 2017-06-01 13:45:54 -0700 | [diff] [blame] | 24 | #include "thread-current-inl.h" |
Alex Light | e77b48b | 2017-02-22 11:08:06 -0800 | [diff] [blame] | 25 | |
| 26 | namespace art { |
| 27 | |
| 28 | std::vector<jclass> NonDebuggableClasses::non_debuggable_classes; |
| 29 | |
Alex Light | 8474026 | 2017-03-01 09:00:28 -0800 | [diff] [blame] | 30 | void NonDebuggableClasses::AddNonDebuggableClass(jclass klass) { |
Alex Light | e77b48b | 2017-02-22 11:08:06 -0800 | [diff] [blame] | 31 | Thread* self = Thread::Current(); |
| 32 | JNIEnvExt* env = self->GetJniEnv(); |
Alex Light | 8474026 | 2017-03-01 09:00:28 -0800 | [diff] [blame] | 33 | ObjPtr<mirror::Class> mirror_klass(self->DecodeJObject(klass)->AsClass()); |
Alex Light | e77b48b | 2017-02-22 11:08:06 -0800 | [diff] [blame] | 34 | for (jclass c : non_debuggable_classes) { |
Vladimir Marko | 179b7c6 | 2019-03-22 13:38:57 +0000 | [diff] [blame] | 35 | if (self->DecodeJObject(c)->AsClass() == mirror_klass) { |
Alex Light | e77b48b | 2017-02-22 11:08:06 -0800 | [diff] [blame] | 36 | return; |
| 37 | } |
| 38 | } |
Alex Light | 8474026 | 2017-03-01 09:00:28 -0800 | [diff] [blame] | 39 | non_debuggable_classes.push_back(reinterpret_cast<jclass>(env->NewGlobalRef(klass))); |
Alex Light | e77b48b | 2017-02-22 11:08:06 -0800 | [diff] [blame] | 40 | } |
| 41 | |
| 42 | } // namespace art |