blob: 564d58d25100f7eab5366e1e1657e6f458501743 [file] [log] [blame]
Nicolas Geoffray4fcdc942014-07-22 10:48:00 +01001/*
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 NoDex2OatTest {
26 public:
27 static bool hasOat(jclass cls) {
28 ScopedObjectAccess soa(Thread::Current());
29 mirror::Class* klass = soa.Decode<mirror::Class*>(cls);
30 const DexFile& dex_file = klass->GetDexFile();
Vladimir Markoaa4497d2014-09-05 14:01:17 +010031 const OatFile::OatDexFile* oat_dex_file =
32 Runtime::Current()->GetClassLinker()->FindOpenedOatDexFileForDexFile(dex_file);
33 return oat_dex_file != nullptr;
Nicolas Geoffray4fcdc942014-07-22 10:48:00 +010034 }
35};
36
37extern "C" JNIEXPORT jboolean JNICALL Java_Main_hasOat(JNIEnv*, jclass cls) {
38 return NoDex2OatTest::hasOat(cls);
39}
40
Ian Rogers6a3c1fc2014-10-31 00:33:20 -070041extern "C" JNIEXPORT jboolean JNICALL Java_Main_isDex2OatEnabled(JNIEnv*, jclass) {
Nicolas Geoffray4fcdc942014-07-22 10:48:00 +010042 return Runtime::Current()->IsDex2OatEnabled();
43}
44
45} // namespace art