buzbee | c143c55 | 2011-08-20 17:38:58 -0700 | [diff] [blame] | 1 | // Copyright 2011 Google Inc. All Rights Reserved. |
| 2 | |
Elliott Hughes | 90a3369 | 2011-08-30 13:27:07 -0700 | [diff] [blame] | 3 | #include "compiler.h" |
| 4 | |
| 5 | #include <stdint.h> |
| 6 | #include <stdio.h> |
| 7 | |
| 8 | #include "UniquePtr.h" |
buzbee | c143c55 | 2011-08-20 17:38:58 -0700 | [diff] [blame] | 9 | #include "class_linker.h" |
| 10 | #include "common_test.h" |
Brian Carlstrom | 9ea1cb1 | 2011-08-24 23:18:18 -0700 | [diff] [blame] | 11 | #include "dex_cache.h" |
buzbee | c143c55 | 2011-08-20 17:38:58 -0700 | [diff] [blame] | 12 | #include "dex_file.h" |
| 13 | #include "heap.h" |
| 14 | #include "object.h" |
buzbee | c143c55 | 2011-08-20 17:38:58 -0700 | [diff] [blame] | 15 | |
| 16 | namespace art { |
| 17 | |
| 18 | class CompilerTest : public CommonTest { |
Brian Carlstrom | bffb155 | 2011-08-25 12:23:53 -0700 | [diff] [blame] | 19 | protected: |
Brian Carlstrom | 8a48741 | 2011-08-29 20:08:52 -0700 | [diff] [blame] | 20 | |
Elliott Hughes | 7957d54 | 2011-09-09 17:16:01 -0700 | [diff] [blame] | 21 | void AssertStaticIntMethod(jint expected, const ClassLoader* class_loader, |
Elliott Hughes | 1240dad | 2011-09-09 16:24:50 -0700 | [diff] [blame] | 22 | const char* class_name, const char* method, const char* signature, |
Elliott Hughes | 7957d54 | 2011-09-09 17:16:01 -0700 | [diff] [blame] | 23 | ...) { |
Elliott Hughes | 1240dad | 2011-09-09 16:24:50 -0700 | [diff] [blame] | 24 | EnsureCompiled(class_loader, class_name, method, signature); |
Elliott Hughes | d3a7297 | 2011-09-07 15:31:59 -0700 | [diff] [blame] | 25 | #if defined(__arm__) |
Brian Carlstrom | bffb155 | 2011-08-25 12:23:53 -0700 | [diff] [blame] | 26 | va_list args; |
Elliott Hughes | 7957d54 | 2011-09-09 17:16:01 -0700 | [diff] [blame] | 27 | va_start(args, signature); |
Elliott Hughes | 1240dad | 2011-09-09 16:24:50 -0700 | [diff] [blame] | 28 | jint result = env_->CallStaticIntMethodV(class_, mid_, args); |
Brian Carlstrom | bffb155 | 2011-08-25 12:23:53 -0700 | [diff] [blame] | 29 | va_end(args); |
Elliott Hughes | 1240dad | 2011-09-09 16:24:50 -0700 | [diff] [blame] | 30 | LOG(INFO) << class_name << "." << method << "(...) result is " << result; |
Brian Carlstrom | bffb155 | 2011-08-25 12:23:53 -0700 | [diff] [blame] | 31 | EXPECT_EQ(expected, result); |
| 32 | #endif // __arm__ |
| 33 | } |
Elliott Hughes | 1240dad | 2011-09-09 16:24:50 -0700 | [diff] [blame] | 34 | |
Elliott Hughes | 7957d54 | 2011-09-09 17:16:01 -0700 | [diff] [blame] | 35 | void AssertStaticLongMethod(jlong expected, const ClassLoader* class_loader, |
Elliott Hughes | 1240dad | 2011-09-09 16:24:50 -0700 | [diff] [blame] | 36 | const char* class_name, const char* method, const char* signature, |
Elliott Hughes | 7957d54 | 2011-09-09 17:16:01 -0700 | [diff] [blame] | 37 | ...) { |
Elliott Hughes | 1240dad | 2011-09-09 16:24:50 -0700 | [diff] [blame] | 38 | EnsureCompiled(class_loader, class_name, method, signature); |
Elliott Hughes | d3a7297 | 2011-09-07 15:31:59 -0700 | [diff] [blame] | 39 | #if defined(__arm__) |
buzbee | bafc342 | 2011-08-25 15:22:55 -0700 | [diff] [blame] | 40 | va_list args; |
Elliott Hughes | 7957d54 | 2011-09-09 17:16:01 -0700 | [diff] [blame] | 41 | va_start(args, signature); |
Elliott Hughes | 1240dad | 2011-09-09 16:24:50 -0700 | [diff] [blame] | 42 | jlong result = env_->CallStaticLongMethodV(class_, mid_, args); |
buzbee | bafc342 | 2011-08-25 15:22:55 -0700 | [diff] [blame] | 43 | va_end(args); |
Elliott Hughes | 1240dad | 2011-09-09 16:24:50 -0700 | [diff] [blame] | 44 | LOG(INFO) << class_name << "." << method << "(...) result is " << result; |
buzbee | bafc342 | 2011-08-25 15:22:55 -0700 | [diff] [blame] | 45 | EXPECT_EQ(expected, result); |
| 46 | #endif // __arm__ |
| 47 | } |
Elliott Hughes | 1240dad | 2011-09-09 16:24:50 -0700 | [diff] [blame] | 48 | |
| 49 | void CompileAll(const ClassLoader* class_loader) { |
| 50 | compiler_->CompileAll(class_loader); |
| 51 | MakeAllExecutable(class_loader); |
| 52 | } |
| 53 | |
| 54 | void EnsureCompiled(const ClassLoader* class_loader, |
| 55 | const char* class_name, const char* method, const char* signature) { |
| 56 | CompileAll(class_loader); |
| 57 | env_ = Thread::Current()->GetJniEnv(); |
| 58 | class_ = env_->FindClass(class_name); |
| 59 | CHECK(class_ != NULL) << "Class not found: " << class_name; |
| 60 | mid_ = env_->GetStaticMethodID(class_, method, signature); |
| 61 | CHECK(mid_ != NULL) << "Method not found: " << class_name << "." << method << signature; |
| 62 | } |
| 63 | |
| 64 | void MakeAllExecutable(const ClassLoader* class_loader) { |
| 65 | const std::vector<const DexFile*>& class_path = ClassLoader::GetClassPath(class_loader); |
| 66 | for (size_t i = 0; i != class_path.size(); ++i) { |
| 67 | const DexFile* dex_file = class_path[i]; |
| 68 | CHECK(dex_file != NULL); |
| 69 | MakeDexFileExecutable(class_loader, *dex_file); |
| 70 | } |
| 71 | } |
| 72 | |
| 73 | void MakeDexFileExecutable(const ClassLoader* class_loader, const DexFile& dex_file) { |
| 74 | ClassLinker* class_linker = Runtime::Current()->GetClassLinker(); |
| 75 | for (size_t i = 0; i < dex_file.NumClassDefs(); i++) { |
| 76 | const DexFile::ClassDef& class_def = dex_file.GetClassDef(i); |
| 77 | const char* descriptor = dex_file.GetClassDescriptor(class_def); |
| 78 | Class* c = class_linker->FindClass(descriptor, class_loader); |
| 79 | CHECK(c != NULL); |
| 80 | for (size_t i = 0; i < c->NumDirectMethods(); i++) { |
| 81 | MakeMethodExecutable(c->GetDirectMethod(i)); |
| 82 | } |
| 83 | for (size_t i = 0; i < c->NumVirtualMethods(); i++) { |
| 84 | MakeMethodExecutable(c->GetVirtualMethod(i)); |
| 85 | } |
| 86 | } |
| 87 | } |
| 88 | |
| 89 | void MakeMethodExecutable(Method* m) { |
| 90 | if (m->GetCodeArray() != NULL) { |
| 91 | MakeExecutable(m->GetCodeArray()); |
| 92 | } else { |
| 93 | LOG(WARNING) << "no code for " << PrettyMethod(m); |
| 94 | } |
| 95 | if (m->GetInvokeStubArray() != NULL) { |
| 96 | MakeExecutable(m->GetInvokeStubArray()); |
| 97 | } else { |
| 98 | LOG(WARNING) << "no invoke stub for " << PrettyMethod(m); |
| 99 | } |
| 100 | } |
| 101 | |
| 102 | JNIEnv* env_; |
| 103 | jclass class_; |
| 104 | jmethodID mid_; |
buzbee | c143c55 | 2011-08-20 17:38:58 -0700 | [diff] [blame] | 105 | }; |
| 106 | |
Brian Carlstrom | 7540ff4 | 2011-09-04 16:38:46 -0700 | [diff] [blame] | 107 | // Disabled due to 10 second runtime on host |
Elliott Hughes | 1240dad | 2011-09-09 16:24:50 -0700 | [diff] [blame] | 108 | TEST_F(CompilerTest, DISABLED_LARGE_CompileDexLibCore) { |
| 109 | CompileAll(NULL); |
Brian Carlstrom | 9ea1cb1 | 2011-08-24 23:18:18 -0700 | [diff] [blame] | 110 | |
| 111 | // All libcore references should resolve |
| 112 | const DexFile* dex = java_lang_dex_file_.get(); |
| 113 | DexCache* dex_cache = class_linker_->FindDexCache(*dex); |
| 114 | EXPECT_EQ(dex->NumStringIds(), dex_cache->NumStrings()); |
| 115 | for (size_t i = 0; i < dex_cache->NumStrings(); i++) { |
Elliott Hughes | cf4c6c4 | 2011-09-01 15:16:42 -0700 | [diff] [blame] | 116 | const String* string = dex_cache->GetResolvedString(i); |
Brian Carlstrom | 7540ff4 | 2011-09-04 16:38:46 -0700 | [diff] [blame] | 117 | EXPECT_TRUE(string != NULL) << "string_idx=" << i; |
Brian Carlstrom | 9ea1cb1 | 2011-08-24 23:18:18 -0700 | [diff] [blame] | 118 | } |
Brian Carlstrom | 1caa2c2 | 2011-08-28 13:02:33 -0700 | [diff] [blame] | 119 | EXPECT_EQ(dex->NumTypeIds(), dex_cache->NumResolvedTypes()); |
| 120 | for (size_t i = 0; i < dex_cache->NumResolvedTypes(); i++) { |
Brian Carlstrom | 9ea1cb1 | 2011-08-24 23:18:18 -0700 | [diff] [blame] | 121 | Class* type = dex_cache->GetResolvedType(i); |
Brian Carlstrom | 7540ff4 | 2011-09-04 16:38:46 -0700 | [diff] [blame] | 122 | EXPECT_TRUE(type != NULL) << "type_idx=" << i |
| 123 | << " " << dex->GetTypeDescriptor(dex->GetTypeId(i)); |
Brian Carlstrom | 9ea1cb1 | 2011-08-24 23:18:18 -0700 | [diff] [blame] | 124 | } |
Brian Carlstrom | 1caa2c2 | 2011-08-28 13:02:33 -0700 | [diff] [blame] | 125 | EXPECT_EQ(dex->NumMethodIds(), dex_cache->NumResolvedMethods()); |
| 126 | for (size_t i = 0; i < dex_cache->NumResolvedMethods(); i++) { |
Brian Carlstrom | 20cfffa | 2011-08-26 02:31:27 -0700 | [diff] [blame] | 127 | Method* method = dex_cache->GetResolvedMethod(i); |
Brian Carlstrom | 7540ff4 | 2011-09-04 16:38:46 -0700 | [diff] [blame] | 128 | EXPECT_TRUE(method != NULL) << "method_idx=" << i |
| 129 | << " " << dex->GetMethodClassDescriptor(dex->GetMethodId(i)) |
| 130 | << " " << dex->GetMethodName(dex->GetMethodId(i)); |
Brian Carlstrom | 9ea1cb1 | 2011-08-24 23:18:18 -0700 | [diff] [blame] | 131 | } |
Brian Carlstrom | 1caa2c2 | 2011-08-28 13:02:33 -0700 | [diff] [blame] | 132 | EXPECT_EQ(dex->NumFieldIds(), dex_cache->NumResolvedFields()); |
| 133 | for (size_t i = 0; i < dex_cache->NumResolvedFields(); i++) { |
Brian Carlstrom | 20cfffa | 2011-08-26 02:31:27 -0700 | [diff] [blame] | 134 | Field* field = dex_cache->GetResolvedField(i); |
Brian Carlstrom | 7540ff4 | 2011-09-04 16:38:46 -0700 | [diff] [blame] | 135 | EXPECT_TRUE(field != NULL) << "field_idx=" << i |
| 136 | << " " << dex->GetFieldClassDescriptor(dex->GetFieldId(i)) |
| 137 | << " " << dex->GetFieldName(dex->GetFieldId(i)); |
Brian Carlstrom | 9ea1cb1 | 2011-08-24 23:18:18 -0700 | [diff] [blame] | 138 | } |
| 139 | |
Brian Carlstrom | 83db772 | 2011-08-26 17:32:56 -0700 | [diff] [blame] | 140 | // TODO check Class::IsVerified for all classes |
| 141 | |
| 142 | // TODO: check that all Method::GetCode() values are non-null |
| 143 | |
Brian Carlstrom | 9cc262e | 2011-08-28 12:45:30 -0700 | [diff] [blame] | 144 | EXPECT_EQ(dex->NumMethodIds(), dex_cache->NumCodeAndDirectMethods()); |
| 145 | CodeAndDirectMethods* code_and_direct_methods = dex_cache->GetCodeAndDirectMethods(); |
| 146 | for (size_t i = 0; i < dex_cache->NumCodeAndDirectMethods(); i++) { |
Brian Carlstrom | 83db772 | 2011-08-26 17:32:56 -0700 | [diff] [blame] | 147 | Method* method = dex_cache->GetResolvedMethod(i); |
Brian Carlstrom | 7540ff4 | 2011-09-04 16:38:46 -0700 | [diff] [blame] | 148 | if (method->IsDirect()) { |
| 149 | EXPECT_EQ(method->GetCode(), code_and_direct_methods->GetResolvedCode(i)); |
| 150 | EXPECT_EQ(method, code_and_direct_methods->GetResolvedMethod(i)); |
| 151 | } else { |
| 152 | EXPECT_EQ(0U, code_and_direct_methods->GetResolvedCode(i)); |
| 153 | EXPECT_TRUE(code_and_direct_methods->GetResolvedMethod(i) == NULL); |
| 154 | } |
Brian Carlstrom | 83db772 | 2011-08-26 17:32:56 -0700 | [diff] [blame] | 155 | } |
Brian Carlstrom | 9ea1cb1 | 2011-08-24 23:18:18 -0700 | [diff] [blame] | 156 | } |
| 157 | |
buzbee | c143c55 | 2011-08-20 17:38:58 -0700 | [diff] [blame] | 158 | TEST_F(CompilerTest, BasicCodegen) { |
Elliott Hughes | 7957d54 | 2011-09-09 17:16:01 -0700 | [diff] [blame] | 159 | AssertStaticIntMethod(55, LoadDex("Fibonacci"), "Fibonacci", "fibonacci", "(I)I", 10); |
buzbee | c143c55 | 2011-08-20 17:38:58 -0700 | [diff] [blame] | 160 | } |
buzbee | 3ea4ec5 | 2011-08-22 17:37:19 -0700 | [diff] [blame] | 161 | |
buzbee | 2a475e7 | 2011-09-07 17:19:17 -0700 | [diff] [blame] | 162 | // TODO: need stub for InstanceofNonTrivialFromCode |
| 163 | TEST_F(CompilerTest, InstanceTest) { |
| 164 | CompileDirectMethod(NULL, "java.lang.Object", "<init>", "()V"); |
Elliott Hughes | 7957d54 | 2011-09-09 17:16:01 -0700 | [diff] [blame] | 165 | AssertStaticIntMethod(1352, LoadDex("IntMath"), "IntMath", "instanceTest", "(I)I", 10); |
buzbee | 2a475e7 | 2011-09-07 17:19:17 -0700 | [diff] [blame] | 166 | } |
| 167 | |
| 168 | // TODO: need check-cast test (when stub complete & we can throw/catch |
| 169 | |
buzbee | 4a3164f | 2011-09-03 11:25:10 -0700 | [diff] [blame] | 170 | // TODO: Need invoke-interface test |
| 171 | |
| 172 | TEST_F(CompilerTest, SuperTest) { |
| 173 | CompileDirectMethod(NULL, "java.lang.Object", "<init>", "()V"); |
Elliott Hughes | 7957d54 | 2011-09-09 17:16:01 -0700 | [diff] [blame] | 174 | AssertStaticIntMethod(4175, LoadDex("IntMath"), "IntMath", "superTest", "(I)I", 4141); |
buzbee | 4a3164f | 2011-09-03 11:25:10 -0700 | [diff] [blame] | 175 | } |
| 176 | |
buzbee | 1b4c859 | 2011-08-31 10:43:51 -0700 | [diff] [blame] | 177 | TEST_F(CompilerTest, ConstStringTest) { |
buzbee | 2a475e7 | 2011-09-07 17:19:17 -0700 | [diff] [blame] | 178 | CompileDirectMethod(NULL, "java.lang.String", "<clinit>", "()V"); |
| 179 | CompileDirectMethod(NULL, "java.lang.String", "<init>", "(II[C)V"); |
| 180 | CompileDirectMethod(NULL, "java.lang.String", "<init>", "([CII)V"); |
| 181 | CompileVirtualMethod(NULL, "java.lang.String", "_getChars", "(II[CI)V"); |
| 182 | CompileVirtualMethod(NULL, "java.lang.String", "charAt", "(I)C"); |
| 183 | CompileVirtualMethod(NULL, "java.lang.String", "length", "()I"); |
Elliott Hughes | 7957d54 | 2011-09-09 17:16:01 -0700 | [diff] [blame] | 184 | AssertStaticIntMethod(1246, LoadDex("IntMath"), "IntMath", "constStringTest", "(I)I", 1234); |
buzbee | 1b4c859 | 2011-08-31 10:43:51 -0700 | [diff] [blame] | 185 | } |
| 186 | |
buzbee | 561227c | 2011-09-02 15:28:19 -0700 | [diff] [blame] | 187 | TEST_F(CompilerTest, ConstClassTest) { |
Elliott Hughes | 7957d54 | 2011-09-09 17:16:01 -0700 | [diff] [blame] | 188 | AssertStaticIntMethod(2222, LoadDex("IntMath"), "IntMath", "constClassTest", "(I)I", 1111); |
buzbee | 561227c | 2011-09-02 15:28:19 -0700 | [diff] [blame] | 189 | } |
| 190 | |
buzbee | 2a475e7 | 2011-09-07 17:19:17 -0700 | [diff] [blame] | 191 | // TODO: Need native nativeFillInStackTrace() |
buzbee | 1b4c859 | 2011-08-31 10:43:51 -0700 | [diff] [blame] | 192 | TEST_F(CompilerTest, DISABLED_CatchTest) { |
| 193 | CompileDirectMethod(NULL, "java.lang.Object", "<init>", "()V"); |
| 194 | CompileDirectMethod(NULL, "java.lang.NullPointerException", "<init>", "()V"); |
buzbee | 2a475e7 | 2011-09-07 17:19:17 -0700 | [diff] [blame] | 195 | CompileDirectMethod(NULL, "java.lang.RuntimeException", "<init>", "()V"); |
| 196 | CompileDirectMethod(NULL, "java.lang.Exception", "<init>", "()V"); |
| 197 | CompileDirectMethod(NULL, "java.lang.Throwable","<init>", "()V"); |
| 198 | CompileDirectMethod(NULL, "java.util.ArrayList","<init>","()V"); |
| 199 | CompileDirectMethod(NULL, "java.util.AbstractList","<init>","()V"); |
| 200 | CompileDirectMethod(NULL, "java.util.AbstractCollection","<init>","()V"); |
| 201 | CompileVirtualMethod(NULL, "java.lang.Throwable","fillInStackTrace","()Ljava/lang/Throwable;"); |
| 202 | CompileDirectMethod(NULL, "java.lang.Throwable","nativeFillInStackTrace","()Ljava/lang/Object;"); |
Elliott Hughes | 7957d54 | 2011-09-09 17:16:01 -0700 | [diff] [blame] | 203 | AssertStaticIntMethod(1579, LoadDex("IntMath"), "IntMath", "catchBlock", "(I)I", 1000); |
buzbee | 1b4c859 | 2011-08-31 10:43:51 -0700 | [diff] [blame] | 204 | } |
| 205 | |
buzbee | e9a72f6 | 2011-09-04 17:59:07 -0700 | [diff] [blame] | 206 | TEST_F(CompilerTest, CatchTestNoThrow) { |
Elliott Hughes | 7957d54 | 2011-09-09 17:16:01 -0700 | [diff] [blame] | 207 | AssertStaticIntMethod(1123, LoadDex("IntMath"), "IntMath", "catchBlockNoThrow", "(I)I", 1000); |
buzbee | e9a72f6 | 2011-09-04 17:59:07 -0700 | [diff] [blame] | 208 | } |
| 209 | |
buzbee | e193174 | 2011-08-28 21:15:53 -0700 | [diff] [blame] | 210 | TEST_F(CompilerTest, StaticFieldTest) { |
Elliott Hughes | 7957d54 | 2011-09-09 17:16:01 -0700 | [diff] [blame] | 211 | AssertStaticIntMethod(1404, LoadDex("IntMath"), "IntMath", "staticFieldTest", "(I)I", 404); |
buzbee | e193174 | 2011-08-28 21:15:53 -0700 | [diff] [blame] | 212 | } |
| 213 | |
buzbee | 3ea4ec5 | 2011-08-22 17:37:19 -0700 | [diff] [blame] | 214 | TEST_F(CompilerTest, UnopTest) { |
Elliott Hughes | 7957d54 | 2011-09-09 17:16:01 -0700 | [diff] [blame] | 215 | AssertStaticIntMethod(37, LoadDex("IntMath"), "IntMath", "unopTest", "(I)I", 38); |
buzbee | 3ea4ec5 | 2011-08-22 17:37:19 -0700 | [diff] [blame] | 216 | } |
| 217 | |
buzbee | 3ea4ec5 | 2011-08-22 17:37:19 -0700 | [diff] [blame] | 218 | TEST_F(CompilerTest, ShiftTest1) { |
Elliott Hughes | 7957d54 | 2011-09-09 17:16:01 -0700 | [diff] [blame] | 219 | AssertStaticIntMethod(0, LoadDex("IntMath"), "IntMath", "shiftTest1", "()I"); |
buzbee | 3ea4ec5 | 2011-08-22 17:37:19 -0700 | [diff] [blame] | 220 | } |
buzbee | c143c55 | 2011-08-20 17:38:58 -0700 | [diff] [blame] | 221 | |
buzbee | 3ea4ec5 | 2011-08-22 17:37:19 -0700 | [diff] [blame] | 222 | TEST_F(CompilerTest, ShiftTest2) { |
Elliott Hughes | 7957d54 | 2011-09-09 17:16:01 -0700 | [diff] [blame] | 223 | AssertStaticIntMethod(0, LoadDex("IntMath"), "IntMath", "shiftTest2", "()I"); |
buzbee | 3ea4ec5 | 2011-08-22 17:37:19 -0700 | [diff] [blame] | 224 | } |
buzbee | 3ea4ec5 | 2011-08-22 17:37:19 -0700 | [diff] [blame] | 225 | |
| 226 | TEST_F(CompilerTest, UnsignedShiftTest) { |
Elliott Hughes | 7957d54 | 2011-09-09 17:16:01 -0700 | [diff] [blame] | 227 | AssertStaticIntMethod(0, LoadDex("IntMath"), "IntMath", "unsignedShiftTest", "()I"); |
buzbee | 3ea4ec5 | 2011-08-22 17:37:19 -0700 | [diff] [blame] | 228 | } |
| 229 | |
buzbee | 3ea4ec5 | 2011-08-22 17:37:19 -0700 | [diff] [blame] | 230 | TEST_F(CompilerTest, ConvTest) { |
Elliott Hughes | 7957d54 | 2011-09-09 17:16:01 -0700 | [diff] [blame] | 231 | AssertStaticIntMethod(0, LoadDex("IntMath"), "IntMath", "convTest", "()I"); |
buzbee | 3ea4ec5 | 2011-08-22 17:37:19 -0700 | [diff] [blame] | 232 | } |
buzbee | 3ea4ec5 | 2011-08-22 17:37:19 -0700 | [diff] [blame] | 233 | |
| 234 | TEST_F(CompilerTest, CharSubTest) { |
Elliott Hughes | 7957d54 | 2011-09-09 17:16:01 -0700 | [diff] [blame] | 235 | AssertStaticIntMethod(0, LoadDex("IntMath"), "IntMath", "charSubTest", "()I"); |
buzbee | 3ea4ec5 | 2011-08-22 17:37:19 -0700 | [diff] [blame] | 236 | } |
| 237 | |
buzbee | 3ea4ec5 | 2011-08-22 17:37:19 -0700 | [diff] [blame] | 238 | TEST_F(CompilerTest, IntOperTest) { |
Elliott Hughes | 7957d54 | 2011-09-09 17:16:01 -0700 | [diff] [blame] | 239 | AssertStaticIntMethod(0, LoadDex("IntMath"), "IntMath", "intOperTest", "(II)I", 70000, -3); |
buzbee | 3ea4ec5 | 2011-08-22 17:37:19 -0700 | [diff] [blame] | 240 | } |
buzbee | 3ea4ec5 | 2011-08-22 17:37:19 -0700 | [diff] [blame] | 241 | |
buzbee | 3ea4ec5 | 2011-08-22 17:37:19 -0700 | [diff] [blame] | 242 | TEST_F(CompilerTest, Lit16Test) { |
Elliott Hughes | 7957d54 | 2011-09-09 17:16:01 -0700 | [diff] [blame] | 243 | AssertStaticIntMethod(0, LoadDex("IntMath"), "IntMath", "lit16Test", "(I)I", 77777); |
buzbee | 3ea4ec5 | 2011-08-22 17:37:19 -0700 | [diff] [blame] | 244 | } |
buzbee | 3ea4ec5 | 2011-08-22 17:37:19 -0700 | [diff] [blame] | 245 | |
buzbee | 3ea4ec5 | 2011-08-22 17:37:19 -0700 | [diff] [blame] | 246 | TEST_F(CompilerTest, Lit8Test) { |
Elliott Hughes | 7957d54 | 2011-09-09 17:16:01 -0700 | [diff] [blame] | 247 | AssertStaticIntMethod(0, LoadDex("IntMath"), "IntMath", "lit8Test", "(I)I", -55555); |
buzbee | 3ea4ec5 | 2011-08-22 17:37:19 -0700 | [diff] [blame] | 248 | } |
buzbee | 3ea4ec5 | 2011-08-22 17:37:19 -0700 | [diff] [blame] | 249 | |
buzbee | 3ea4ec5 | 2011-08-22 17:37:19 -0700 | [diff] [blame] | 250 | TEST_F(CompilerTest, IntShiftTest) { |
Elliott Hughes | 7957d54 | 2011-09-09 17:16:01 -0700 | [diff] [blame] | 251 | AssertStaticIntMethod(0, LoadDex("IntMath"), "IntMath", "intShiftTest", "(II)I", 0xff00aa01, 8); |
buzbee | 3ea4ec5 | 2011-08-22 17:37:19 -0700 | [diff] [blame] | 252 | } |
buzbee | 3ea4ec5 | 2011-08-22 17:37:19 -0700 | [diff] [blame] | 253 | |
buzbee | 3ea4ec5 | 2011-08-22 17:37:19 -0700 | [diff] [blame] | 254 | TEST_F(CompilerTest, LongOperTest) { |
Elliott Hughes | 7957d54 | 2011-09-09 17:16:01 -0700 | [diff] [blame] | 255 | AssertStaticIntMethod(0, LoadDex("IntMath"), "IntMath", "longOperTest", "(JJ)I", |
buzbee | 439c4fa | 2011-08-27 15:59:07 -0700 | [diff] [blame] | 256 | 70000000000LL, -3LL); |
buzbee | 3ea4ec5 | 2011-08-22 17:37:19 -0700 | [diff] [blame] | 257 | } |
buzbee | 3ea4ec5 | 2011-08-22 17:37:19 -0700 | [diff] [blame] | 258 | |
buzbee | 3ea4ec5 | 2011-08-22 17:37:19 -0700 | [diff] [blame] | 259 | TEST_F(CompilerTest, LongShiftTest) { |
Elliott Hughes | 7957d54 | 2011-09-09 17:16:01 -0700 | [diff] [blame] | 260 | AssertStaticLongMethod(0x96deff00aa010000LL, |
| 261 | LoadDex("IntMath"), "IntMath", "longShiftTest", "(JI)J", 0xd5aa96deff00aa01LL, 16); |
buzbee | 3ea4ec5 | 2011-08-22 17:37:19 -0700 | [diff] [blame] | 262 | } |
buzbee | 3ea4ec5 | 2011-08-22 17:37:19 -0700 | [diff] [blame] | 263 | |
buzbee | 9e0f9b0 | 2011-08-24 15:32:46 -0700 | [diff] [blame] | 264 | TEST_F(CompilerTest, SwitchTest1) { |
Elliott Hughes | 7957d54 | 2011-09-09 17:16:01 -0700 | [diff] [blame] | 265 | AssertStaticIntMethod(1234, LoadDex("IntMath"), "IntMath", "switchTest", "(I)I", 1); |
buzbee | 9e0f9b0 | 2011-08-24 15:32:46 -0700 | [diff] [blame] | 266 | } |
| 267 | |
| 268 | TEST_F(CompilerTest, IntCompare) { |
Elliott Hughes | 7957d54 | 2011-09-09 17:16:01 -0700 | [diff] [blame] | 269 | AssertStaticIntMethod(1111, LoadDex("IntMath"), "IntMath", "testIntCompare", "(IIII)I", |
Brian Carlstrom | bffb155 | 2011-08-25 12:23:53 -0700 | [diff] [blame] | 270 | -5, 4, 4, 0); |
buzbee | 9e0f9b0 | 2011-08-24 15:32:46 -0700 | [diff] [blame] | 271 | } |
| 272 | |
| 273 | TEST_F(CompilerTest, LongCompare) { |
Elliott Hughes | 7957d54 | 2011-09-09 17:16:01 -0700 | [diff] [blame] | 274 | AssertStaticIntMethod(2222, LoadDex("IntMath"), "IntMath", "testLongCompare", "(JJJJ)I", |
Brian Carlstrom | bffb155 | 2011-08-25 12:23:53 -0700 | [diff] [blame] | 275 | -5LL, -4294967287LL, 4LL, 8LL); |
buzbee | 9e0f9b0 | 2011-08-24 15:32:46 -0700 | [diff] [blame] | 276 | } |
| 277 | |
| 278 | TEST_F(CompilerTest, FloatCompare) { |
Elliott Hughes | 7957d54 | 2011-09-09 17:16:01 -0700 | [diff] [blame] | 279 | AssertStaticIntMethod(3333, LoadDex("IntMath"), "IntMath", "testFloatCompare", "(FFFF)I", |
Brian Carlstrom | bffb155 | 2011-08-25 12:23:53 -0700 | [diff] [blame] | 280 | -5.0f, 4.0f, 4.0f, |
| 281 | (1.0f/0.0f) / (1.0f/0.0f)); |
buzbee | 9e0f9b0 | 2011-08-24 15:32:46 -0700 | [diff] [blame] | 282 | } |
| 283 | |
| 284 | TEST_F(CompilerTest, DoubleCompare) { |
Elliott Hughes | 7957d54 | 2011-09-09 17:16:01 -0700 | [diff] [blame] | 285 | AssertStaticIntMethod(4444, LoadDex("IntMath"), "IntMath", "testDoubleCompare", "(DDDD)I", |
Brian Carlstrom | bffb155 | 2011-08-25 12:23:53 -0700 | [diff] [blame] | 286 | -5.0, 4.0, 4.0, |
| 287 | (1.0/0.0) / (1.0/0.0)); |
buzbee | 9e0f9b0 | 2011-08-24 15:32:46 -0700 | [diff] [blame] | 288 | } |
| 289 | |
buzbee | c5ef046 | 2011-08-25 18:44:49 -0700 | [diff] [blame] | 290 | TEST_F(CompilerTest, RecursiveFibonacci) { |
Elliott Hughes | 7957d54 | 2011-09-09 17:16:01 -0700 | [diff] [blame] | 291 | AssertStaticIntMethod(55, LoadDex("IntMath"), "IntMath", "fibonacci", "(I)I", 10); |
buzbee | c5ef046 | 2011-08-25 18:44:49 -0700 | [diff] [blame] | 292 | } |
buzbee | c5ef046 | 2011-08-25 18:44:49 -0700 | [diff] [blame] | 293 | |
buzbee | 7b1b86d | 2011-08-26 18:59:10 -0700 | [diff] [blame] | 294 | #if 0 // Need to complete try/catch block handling |
| 295 | TEST_F(CompilerTest, ThrowAndCatch) { |
Elliott Hughes | 7957d54 | 2011-09-09 17:16:01 -0700 | [diff] [blame] | 296 | AssertStaticIntMethod(4, LoadDex("IntMath"), "IntMath", "throwAndCatch", "()I"); |
buzbee | 7b1b86d | 2011-08-26 18:59:10 -0700 | [diff] [blame] | 297 | } |
| 298 | #endif |
| 299 | |
| 300 | TEST_F(CompilerTest, ManyArgs) { |
Elliott Hughes | 7957d54 | 2011-09-09 17:16:01 -0700 | [diff] [blame] | 301 | AssertStaticIntMethod(-1, LoadDex("IntMath"), "IntMath", "manyArgs", |
| 302 | "(IJIJIJIIDFDSICIIBZIIJJIIIII)I", |
buzbee | 7b1b86d | 2011-08-26 18:59:10 -0700 | [diff] [blame] | 303 | 0, 1LL, 2, 3LL, 4, 5LL, 6, 7, 8.0, 9.0f, 10.0, |
| 304 | (short)11, 12, (char)13, 14, 15, (int8_t)-16, true, 18, |
| 305 | 19, 20LL, 21LL, 22, 23, 24, 25, 26); |
| 306 | } |
| 307 | |
buzbee | 7b1b86d | 2011-08-26 18:59:10 -0700 | [diff] [blame] | 308 | TEST_F(CompilerTest, VirtualCall) { |
Brian Carlstrom | 8a48741 | 2011-08-29 20:08:52 -0700 | [diff] [blame] | 309 | CompileDirectMethod(NULL, "java.lang.Object", "<init>", "()V"); |
Elliott Hughes | 7957d54 | 2011-09-09 17:16:01 -0700 | [diff] [blame] | 310 | AssertStaticIntMethod(6, LoadDex("IntMath"), "IntMath", "staticCall", "(I)I", 3); |
buzbee | 7b1b86d | 2011-08-26 18:59:10 -0700 | [diff] [blame] | 311 | } |
buzbee | 7b1b86d | 2011-08-26 18:59:10 -0700 | [diff] [blame] | 312 | |
buzbee | dd3efae | 2011-08-28 14:39:07 -0700 | [diff] [blame] | 313 | TEST_F(CompilerTest, TestIGetPut) { |
Brian Carlstrom | 8a48741 | 2011-08-29 20:08:52 -0700 | [diff] [blame] | 314 | CompileDirectMethod(NULL, "java.lang.Object", "<init>", "()V"); |
Elliott Hughes | 7957d54 | 2011-09-09 17:16:01 -0700 | [diff] [blame] | 315 | AssertStaticIntMethod(333, LoadDex("IntMath"), "IntMath", "testIGetPut", "(I)I", 111); |
buzbee | dd3efae | 2011-08-28 14:39:07 -0700 | [diff] [blame] | 316 | } |
| 317 | |
buzbee | 109bd6a | 2011-09-06 13:58:41 -0700 | [diff] [blame] | 318 | TEST_F(CompilerTest, InvokeTest) { |
| 319 | CompileDirectMethod(NULL, "java.lang.Object", "<init>", "()V"); |
Elliott Hughes | 7957d54 | 2011-09-09 17:16:01 -0700 | [diff] [blame] | 320 | AssertStaticIntMethod(20664, LoadDex("Invoke"), "Invoke", "test0", "(I)I", 912); |
buzbee | 109bd6a | 2011-09-06 13:58:41 -0700 | [diff] [blame] | 321 | } |
| 322 | |
Elliott Hughes | 1240dad | 2011-09-09 16:24:50 -0700 | [diff] [blame] | 323 | TEST_F(CompilerTest, DISABLED_LARGE_SystemMethodsTest) { |
| 324 | CompileAll(NULL); // This test calls a bunch of stuff from libcore. |
Elliott Hughes | 7957d54 | 2011-09-09 17:16:01 -0700 | [diff] [blame] | 325 | AssertStaticIntMethod(123, LoadDex("SystemMethods"), "SystemMethods", "test5", "()I"); |
Elliott Hughes | 0f4c41d | 2011-09-04 14:58:03 -0700 | [diff] [blame] | 326 | } |
| 327 | |
buzbee | c143c55 | 2011-08-20 17:38:58 -0700 | [diff] [blame] | 328 | } // namespace art |