Alex Light | 9dcc457 | 2014-08-14 14:16:26 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2014 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 "class_linker.h" |
| 18 | #include "dex_file-inl.h" |
| 19 | #include "mirror/class-inl.h" |
| 20 | #include "scoped_thread_state_change.h" |
| 21 | #include "thread.h" |
| 22 | |
| 23 | namespace art { |
| 24 | |
| 25 | class NoPatchoatTest { |
| 26 | public: |
Igor Murashkin | 96e8393 | 2014-10-29 19:45:42 -0700 | [diff] [blame] | 27 | static const OatFile::OatDexFile* getOatDexFile(jclass cls) { |
Alex Light | 9dcc457 | 2014-08-14 14:16:26 -0700 | [diff] [blame] | 28 | ScopedObjectAccess soa(Thread::Current()); |
| 29 | mirror::Class* klass = soa.Decode<mirror::Class*>(cls); |
| 30 | const DexFile& dex_file = klass->GetDexFile(); |
Igor Murashkin | 96e8393 | 2014-10-29 19:45:42 -0700 | [diff] [blame] | 31 | |
Vladimir Marko | aa4497d | 2014-09-05 14:01:17 +0100 | [diff] [blame] | 32 | const OatFile::OatDexFile* oat_dex_file = |
| 33 | Runtime::Current()->GetClassLinker()->FindOpenedOatDexFileForDexFile(dex_file); |
Igor Murashkin | 96e8393 | 2014-10-29 19:45:42 -0700 | [diff] [blame] | 34 | |
| 35 | return oat_dex_file; |
| 36 | } |
| 37 | |
| 38 | static bool hasExecutableOat(jclass cls) { |
| 39 | const OatFile::OatDexFile* oat_dex_file = getOatDexFile(cls); |
| 40 | |
Vladimir Marko | aa4497d | 2014-09-05 14:01:17 +0100 | [diff] [blame] | 41 | return oat_dex_file != nullptr && oat_dex_file->GetOatFile()->IsExecutable(); |
Alex Light | 9dcc457 | 2014-08-14 14:16:26 -0700 | [diff] [blame] | 42 | } |
Igor Murashkin | 96e8393 | 2014-10-29 19:45:42 -0700 | [diff] [blame] | 43 | |
| 44 | static bool isPic(jclass cls) { |
| 45 | const OatFile::OatDexFile* oat_dex_file = getOatDexFile(cls); |
| 46 | |
| 47 | if (oat_dex_file == nullptr) { |
| 48 | return false; |
| 49 | } |
| 50 | |
| 51 | const OatFile* oat_file = oat_dex_file->GetOatFile(); |
| 52 | return oat_file->IsPic(); |
| 53 | } |
Alex Light | 9dcc457 | 2014-08-14 14:16:26 -0700 | [diff] [blame] | 54 | }; |
| 55 | |
| 56 | extern "C" JNIEXPORT jboolean JNICALL Java_Main_hasExecutableOat(JNIEnv*, jclass cls) { |
| 57 | return NoPatchoatTest::hasExecutableOat(cls); |
| 58 | } |
| 59 | |
Igor Murashkin | 96e8393 | 2014-10-29 19:45:42 -0700 | [diff] [blame] | 60 | extern "C" JNIEXPORT jboolean JNICALL Java_Main_isPic(JNIEnv*, jclass cls) { |
| 61 | return NoPatchoatTest::isPic(cls); |
| 62 | } |
| 63 | |
Alex Light | 9dcc457 | 2014-08-14 14:16:26 -0700 | [diff] [blame] | 64 | } // namespace art |