blob: bfc93b3c8f9d81d0b8b974cf88afcbf3bfb9fd07 [file] [log] [blame]
Brian Carlstrom7940e442013-07-12 13:46:57 -07001/*
2 * Copyright (C) 2011 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 "driver/compiler_driver.h"
18
19#include <stdint.h>
20#include <stdio.h>
21
22#include "UniquePtr.h"
23#include "class_linker.h"
24#include "common_test.h"
25#include "dex_file.h"
26#include "gc/heap.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070027#include "mirror/art_method-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070028#include "mirror/class.h"
29#include "mirror/class-inl.h"
30#include "mirror/dex_cache-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070031#include "mirror/object_array-inl.h"
32#include "mirror/object-inl.h"
33
34namespace art {
35
36class CompilerDriverTest : public CommonTest {
37 protected:
38 void CompileAll(jobject class_loader) LOCKS_EXCLUDED(Locks::mutator_lock_) {
Anwar Ghuloum6f28d912013-07-24 15:02:53 -070039 base::TimingLogger timings("CompilerDriverTest::CompileAll", false, false);
Ian Rogersbd2c19f2013-07-25 17:43:46 -070040 timings.StartSplit("CompileAll");
Brian Carlstrom45602482013-07-21 22:07:55 -070041 compiler_driver_->CompileAll(class_loader,
42 Runtime::Current()->GetCompileTimeClassPath(class_loader),
43 timings);
Brian Carlstrom7940e442013-07-12 13:46:57 -070044 MakeAllExecutable(class_loader);
45 }
46
47 void EnsureCompiled(jobject class_loader, const char* class_name, const char* method,
48 const char* signature, bool is_virtual)
49 LOCKS_EXCLUDED(Locks::mutator_lock_) {
50 CompileAll(class_loader);
51 Thread::Current()->TransitionFromSuspendedToRunnable();
52 bool started = runtime_->Start();
53 CHECK(started);
54 env_ = Thread::Current()->GetJniEnv();
55 class_ = env_->FindClass(class_name);
56 CHECK(class_ != NULL) << "Class not found: " << class_name;
57 if (is_virtual) {
58 mid_ = env_->GetMethodID(class_, method, signature);
59 } else {
60 mid_ = env_->GetStaticMethodID(class_, method, signature);
61 }
62 CHECK(mid_ != NULL) << "Method not found: " << class_name << "." << method << signature;
63 }
64
65 void MakeAllExecutable(jobject class_loader) {
66 const std::vector<const DexFile*>& class_path
67 = Runtime::Current()->GetCompileTimeClassPath(class_loader);
68 for (size_t i = 0; i != class_path.size(); ++i) {
69 const DexFile* dex_file = class_path[i];
70 CHECK(dex_file != NULL);
71 MakeDexFileExecutable(class_loader, *dex_file);
72 }
73 }
74
75 void MakeDexFileExecutable(jobject class_loader, const DexFile& dex_file) {
76 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
77 for (size_t i = 0; i < dex_file.NumClassDefs(); i++) {
78 const DexFile::ClassDef& class_def = dex_file.GetClassDef(i);
79 const char* descriptor = dex_file.GetClassDescriptor(class_def);
80 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartier590fee92013-09-13 13:46:47 -070081 Thread* self = Thread::Current();
82 SirtRef<mirror::ClassLoader> loader(self, soa.Decode<mirror::ClassLoader*>(class_loader));
83 mirror::Class* c = class_linker->FindClass(descriptor, loader);
Brian Carlstrom7940e442013-07-12 13:46:57 -070084 CHECK(c != NULL);
85 for (size_t i = 0; i < c->NumDirectMethods(); i++) {
86 MakeExecutable(c->GetDirectMethod(i));
87 }
88 for (size_t i = 0; i < c->NumVirtualMethods(); i++) {
89 MakeExecutable(c->GetVirtualMethod(i));
90 }
91 }
92 }
93
94 JNIEnv* env_;
95 jclass class_;
96 jmethodID mid_;
97};
98
99// Disabled due to 10 second runtime on host
100TEST_F(CompilerDriverTest, DISABLED_LARGE_CompileDexLibCore) {
101 CompileAll(NULL);
102
103 // All libcore references should resolve
104 ScopedObjectAccess soa(Thread::Current());
105 const DexFile* dex = java_lang_dex_file_;
106 mirror::DexCache* dex_cache = class_linker_->FindDexCache(*dex);
107 EXPECT_EQ(dex->NumStringIds(), dex_cache->NumStrings());
108 for (size_t i = 0; i < dex_cache->NumStrings(); i++) {
109 const mirror::String* string = dex_cache->GetResolvedString(i);
110 EXPECT_TRUE(string != NULL) << "string_idx=" << i;
111 }
112 EXPECT_EQ(dex->NumTypeIds(), dex_cache->NumResolvedTypes());
113 for (size_t i = 0; i < dex_cache->NumResolvedTypes(); i++) {
114 mirror::Class* type = dex_cache->GetResolvedType(i);
115 EXPECT_TRUE(type != NULL) << "type_idx=" << i
116 << " " << dex->GetTypeDescriptor(dex->GetTypeId(i));
117 }
118 EXPECT_EQ(dex->NumMethodIds(), dex_cache->NumResolvedMethods());
119 for (size_t i = 0; i < dex_cache->NumResolvedMethods(); i++) {
Brian Carlstromea46f952013-07-30 01:26:50 -0700120 mirror::ArtMethod* method = dex_cache->GetResolvedMethod(i);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700121 EXPECT_TRUE(method != NULL) << "method_idx=" << i
122 << " " << dex->GetMethodDeclaringClassDescriptor(dex->GetMethodId(i))
123 << " " << dex->GetMethodName(dex->GetMethodId(i));
124 EXPECT_TRUE(method->GetEntryPointFromCompiledCode() != NULL) << "method_idx=" << i
125 << " "
126 << dex->GetMethodDeclaringClassDescriptor(dex->GetMethodId(i))
127 << " " << dex->GetMethodName(dex->GetMethodId(i));
128 }
129 EXPECT_EQ(dex->NumFieldIds(), dex_cache->NumResolvedFields());
130 for (size_t i = 0; i < dex_cache->NumResolvedFields(); i++) {
Brian Carlstromea46f952013-07-30 01:26:50 -0700131 mirror::ArtField* field = dex_cache->GetResolvedField(i);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700132 EXPECT_TRUE(field != NULL) << "field_idx=" << i
133 << " " << dex->GetFieldDeclaringClassDescriptor(dex->GetFieldId(i))
134 << " " << dex->GetFieldName(dex->GetFieldId(i));
135 }
136
137 // TODO check Class::IsVerified for all classes
138
139 // TODO: check that all Method::GetCode() values are non-null
140}
141
142TEST_F(CompilerDriverTest, AbstractMethodErrorStub) {
143 TEST_DISABLED_FOR_PORTABLE();
144 jobject class_loader;
145 {
146 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartier590fee92013-09-13 13:46:47 -0700147 SirtRef<mirror::ClassLoader> null_loader(soa.Self(), nullptr);
148 CompileVirtualMethod(null_loader, "java.lang.Class", "isFinalizable", "()Z");
149 CompileDirectMethod(null_loader, "java.lang.Object", "<init>", "()V");
Brian Carlstrom7940e442013-07-12 13:46:57 -0700150 class_loader = LoadDex("AbstractMethod");
151 }
152 ASSERT_TRUE(class_loader != NULL);
153 EnsureCompiled(class_loader, "AbstractClass", "foo", "()V", true);
154
155 // Create a jobj_ of ConcreteClass, NOT AbstractClass.
156 jclass c_class = env_->FindClass("ConcreteClass");
157 jmethodID constructor = env_->GetMethodID(c_class, "<init>", "()V");
158 jobject jobj_ = env_->NewObject(c_class, constructor);
159 ASSERT_TRUE(jobj_ != NULL);
160
161 // Force non-virtual call to AbstractClass foo, will throw AbstractMethodError exception.
162 env_->CallNonvirtualVoidMethod(jobj_, class_, mid_);
163 EXPECT_EQ(env_->ExceptionCheck(), JNI_TRUE);
164 jthrowable exception = env_->ExceptionOccurred();
165 env_->ExceptionClear();
166 jclass jlame = env_->FindClass("java/lang/AbstractMethodError");
167 EXPECT_TRUE(env_->IsInstanceOf(exception, jlame));
168 Thread::Current()->ClearException();
169}
170
171// TODO: need check-cast test (when stub complete & we can throw/catch
172
173} // namespace art