blob: 7eac4126811245feef1eb757062022ee6c38291d [file] [log] [blame]
Alex Light9dcc4572014-08-14 14:16:26 -07001/*
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
23namespace art {
24
25class NoPatchoatTest {
26 public:
Igor Murashkin96e83932014-10-29 19:45:42 -070027 static const OatFile::OatDexFile* getOatDexFile(jclass cls) {
Alex Light9dcc4572014-08-14 14:16:26 -070028 ScopedObjectAccess soa(Thread::Current());
29 mirror::Class* klass = soa.Decode<mirror::Class*>(cls);
30 const DexFile& dex_file = klass->GetDexFile();
Richard Uhler07b3c232015-03-31 15:57:54 -070031 return dex_file.GetOatDexFile();
Igor Murashkin96e83932014-10-29 19:45:42 -070032 }
33
34 static bool hasExecutableOat(jclass cls) {
35 const OatFile::OatDexFile* oat_dex_file = getOatDexFile(cls);
36
Vladimir Markoaa4497d2014-09-05 14:01:17 +010037 return oat_dex_file != nullptr && oat_dex_file->GetOatFile()->IsExecutable();
Alex Light9dcc4572014-08-14 14:16:26 -070038 }
Igor Murashkin96e83932014-10-29 19:45:42 -070039
40 static bool isPic(jclass cls) {
41 const OatFile::OatDexFile* oat_dex_file = getOatDexFile(cls);
42
43 if (oat_dex_file == nullptr) {
44 return false;
45 }
46
47 const OatFile* oat_file = oat_dex_file->GetOatFile();
48 return oat_file->IsPic();
49 }
Alex Light9dcc4572014-08-14 14:16:26 -070050};
51
52extern "C" JNIEXPORT jboolean JNICALL Java_Main_hasExecutableOat(JNIEnv*, jclass cls) {
53 return NoPatchoatTest::hasExecutableOat(cls);
54}
55
Igor Murashkin96e83932014-10-29 19:45:42 -070056extern "C" JNIEXPORT jboolean JNICALL Java_Main_isPic(JNIEnv*, jclass cls) {
57 return NoPatchoatTest::isPic(cls);
58}
59
Alex Light9dcc4572014-08-14 14:16:26 -070060} // namespace art