buzbee | c143c55 | 2011-08-20 17:38:58 -0700 | [diff] [blame] | 1 | // Copyright 2011 Google Inc. All Rights Reserved. |
| 2 | |
| 3 | #include "class_linker.h" |
| 4 | #include "common_test.h" |
Brian Carlstrom | 9ea1cb1 | 2011-08-24 23:18:18 -0700 | [diff] [blame] | 5 | #include "compiler.h" |
buzbee | 9e0f9b0 | 2011-08-24 15:32:46 -0700 | [diff] [blame] | 6 | #include "compiler_test.h" |
Brian Carlstrom | 9ea1cb1 | 2011-08-24 23:18:18 -0700 | [diff] [blame] | 7 | #include "dex_cache.h" |
buzbee | c143c55 | 2011-08-20 17:38:58 -0700 | [diff] [blame] | 8 | #include "dex_file.h" |
| 9 | #include "heap.h" |
| 10 | #include "object.h" |
| 11 | #include "scoped_ptr.h" |
| 12 | |
| 13 | #include <stdint.h> |
| 14 | #include <stdio.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: |
| 20 | void CompileDex(const char* base64_dex, const char* base64_name) { |
| 21 | dex_file_.reset(OpenDexFileBase64(base64_dex, base64_name)); |
| 22 | class_linker_->RegisterDexFile(*dex_file_.get()); |
| 23 | std::vector<const DexFile*> class_path; |
| 24 | class_path.push_back(dex_file_.get()); |
| 25 | Compiler compiler; |
| 26 | const ClassLoader* class_loader = compiler.Compile(class_path); |
| 27 | Thread::Current()->SetClassLoaderOverride(class_loader); |
| 28 | } |
| 29 | |
| 30 | void AssertStaticIntMethod(const char* klass, const char* method, const char* signature, |
| 31 | jint expected, ...) { |
| 32 | JNIEnv* env = Thread::Current()->GetJniEnv(); |
| 33 | jclass c = env->FindClass(klass); |
| 34 | CHECK(c != NULL); |
| 35 | jmethodID m = env->GetStaticMethodID(c, method, signature); |
| 36 | CHECK(m != NULL); |
| 37 | #if defined(__arm__) |
| 38 | va_list args; |
| 39 | va_start(args, expected); |
| 40 | jint result = env->CallStaticIntMethodV(c, m, args); |
| 41 | va_end(args); |
| 42 | LOG(INFO) << klass << "." << method << "(...) result is " << result; |
| 43 | EXPECT_EQ(expected, result); |
| 44 | #endif // __arm__ |
| 45 | } |
buzbee | bafc342 | 2011-08-25 15:22:55 -0700 | [diff] [blame] | 46 | void AssertStaticLongMethod(const char* klass, const char* method, |
| 47 | const char* signature, jlong expected, ...) { |
| 48 | JNIEnv* env = Thread::Current()->GetJniEnv(); |
| 49 | jclass c = env->FindClass(klass); |
| 50 | CHECK(c != NULL); |
| 51 | jmethodID m = env->GetStaticMethodID(c, method, signature); |
| 52 | CHECK(m != NULL); |
| 53 | #if defined(__arm__) |
| 54 | va_list args; |
| 55 | va_start(args, expected); |
buzbee | c5ef046 | 2011-08-25 18:44:49 -0700 | [diff] [blame] | 56 | jlong result = env->CallStaticLongMethodV(c, m, args); |
buzbee | bafc342 | 2011-08-25 15:22:55 -0700 | [diff] [blame] | 57 | va_end(args); |
| 58 | LOG(INFO) << klass << "." << method << "(...) result is " << result; |
| 59 | EXPECT_EQ(expected, result); |
| 60 | #endif // __arm__ |
| 61 | } |
Brian Carlstrom | bffb155 | 2011-08-25 12:23:53 -0700 | [diff] [blame] | 62 | private: |
| 63 | scoped_ptr<DexFile> dex_file_; |
buzbee | c143c55 | 2011-08-20 17:38:58 -0700 | [diff] [blame] | 64 | }; |
| 65 | |
Brian Carlstrom | bffb155 | 2011-08-25 12:23:53 -0700 | [diff] [blame] | 66 | TEST_F(CompilerTest, CompileDexLibCore) { |
| 67 | // TODO renenable when compiler can handle libcore |
| 68 | if (true) { |
| 69 | return; |
| 70 | } |
Brian Carlstrom | 9ea1cb1 | 2011-08-24 23:18:18 -0700 | [diff] [blame] | 71 | Compiler compiler; |
| 72 | compiler.Compile(boot_class_path_); |
| 73 | |
| 74 | // All libcore references should resolve |
| 75 | const DexFile* dex = java_lang_dex_file_.get(); |
| 76 | DexCache* dex_cache = class_linker_->FindDexCache(*dex); |
| 77 | EXPECT_EQ(dex->NumStringIds(), dex_cache->NumStrings()); |
| 78 | for (size_t i = 0; i < dex_cache->NumStrings(); i++) { |
| 79 | String* string = dex_cache->GetResolvedString(i); |
| 80 | EXPECT_TRUE(string != NULL); |
| 81 | } |
| 82 | EXPECT_EQ(dex->NumTypeIds(), dex_cache->NumTypes()); |
| 83 | for (size_t i = 0; i < dex_cache->NumTypes(); i++) { |
| 84 | Class* type = dex_cache->GetResolvedType(i); |
| 85 | EXPECT_TRUE(type != NULL); |
| 86 | } |
| 87 | EXPECT_EQ(dex->NumMethodIds(), dex_cache->NumMethods()); |
| 88 | for (size_t i = 0; i < dex_cache->NumMethods(); i++) { |
Brian Carlstrom | 20cfffa | 2011-08-26 02:31:27 -0700 | [diff] [blame] | 89 | Method* method = dex_cache->GetResolvedMethod(i); |
| 90 | EXPECT_TRUE(method != NULL); |
Brian Carlstrom | 9ea1cb1 | 2011-08-24 23:18:18 -0700 | [diff] [blame] | 91 | } |
| 92 | EXPECT_EQ(dex->NumFieldIds(), dex_cache->NumFields()); |
| 93 | for (size_t i = 0; i < dex_cache->NumFields(); i++) { |
Brian Carlstrom | 20cfffa | 2011-08-26 02:31:27 -0700 | [diff] [blame] | 94 | Field* field = dex_cache->GetResolvedField(i); |
| 95 | EXPECT_TRUE(field != NULL); |
Brian Carlstrom | 9ea1cb1 | 2011-08-24 23:18:18 -0700 | [diff] [blame] | 96 | } |
| 97 | |
Brian Carlstrom | 83db772 | 2011-08-26 17:32:56 -0700 | [diff] [blame] | 98 | // TODO check Class::IsVerified for all classes |
| 99 | |
| 100 | // TODO: check that all Method::GetCode() values are non-null |
| 101 | |
| 102 | EXPECT_EQ(dex->NumMethodIds(), dex_cache->NumCodeAndMethods()); |
| 103 | CodeAndMethods* code_and_methods = dex_cache->GetCodeAndMethods(); |
| 104 | for (size_t i = 0; i < dex_cache->NumCodeAndMethods(); i++) { |
| 105 | Method* method = dex_cache->GetResolvedMethod(i); |
| 106 | EXPECT_EQ(method->GetCode(), code_and_methods->GetResolvedCode(i)); |
| 107 | EXPECT_EQ(method, code_and_methods->GetResolvedMethod(i)); |
| 108 | } |
Brian Carlstrom | 9ea1cb1 | 2011-08-24 23:18:18 -0700 | [diff] [blame] | 109 | } |
| 110 | |
buzbee | c143c55 | 2011-08-20 17:38:58 -0700 | [diff] [blame] | 111 | TEST_F(CompilerTest, BasicCodegen) { |
Brian Carlstrom | bffb155 | 2011-08-25 12:23:53 -0700 | [diff] [blame] | 112 | CompileDex(kFibonacciDex, "kFibonacciDex"); |
| 113 | AssertStaticIntMethod("Fibonacci", "fibonacci", "(I)I", 55, |
| 114 | 10); |
buzbee | c143c55 | 2011-08-20 17:38:58 -0700 | [diff] [blame] | 115 | } |
buzbee | 3ea4ec5 | 2011-08-22 17:37:19 -0700 | [diff] [blame] | 116 | |
| 117 | TEST_F(CompilerTest, UnopTest) { |
Brian Carlstrom | bffb155 | 2011-08-25 12:23:53 -0700 | [diff] [blame] | 118 | CompileDex(kIntMathDex, "kIntMathDex"); |
| 119 | AssertStaticIntMethod("IntMath", "unopTest", "(I)I", 37, |
| 120 | 38); |
buzbee | 3ea4ec5 | 2011-08-22 17:37:19 -0700 | [diff] [blame] | 121 | } |
| 122 | |
buzbee | 7b1b86d | 2011-08-26 18:59:10 -0700 | [diff] [blame^] | 123 | #if 0 // Needs artFillArrayDataNoThrow() helper function |
buzbee | 3ea4ec5 | 2011-08-22 17:37:19 -0700 | [diff] [blame] | 124 | TEST_F(CompilerTest, ShiftTest1) { |
Brian Carlstrom | bffb155 | 2011-08-25 12:23:53 -0700 | [diff] [blame] | 125 | CompileDex(kIntMathDex, "kIntMathDex"); |
| 126 | AssertStaticIntMethod("IntMath", "shiftTest1", "()I", 0); |
buzbee | 3ea4ec5 | 2011-08-22 17:37:19 -0700 | [diff] [blame] | 127 | } |
buzbee | 7b1b86d | 2011-08-26 18:59:10 -0700 | [diff] [blame^] | 128 | #endif |
buzbee | c143c55 | 2011-08-20 17:38:58 -0700 | [diff] [blame] | 129 | |
buzbee | 3ea4ec5 | 2011-08-22 17:37:19 -0700 | [diff] [blame] | 130 | TEST_F(CompilerTest, ShiftTest2) { |
Brian Carlstrom | bffb155 | 2011-08-25 12:23:53 -0700 | [diff] [blame] | 131 | CompileDex(kIntMathDex, "kIntMathDex"); |
| 132 | AssertStaticIntMethod("IntMath", "shiftTest2", "()I", 0); |
buzbee | 3ea4ec5 | 2011-08-22 17:37:19 -0700 | [diff] [blame] | 133 | } |
buzbee | 3ea4ec5 | 2011-08-22 17:37:19 -0700 | [diff] [blame] | 134 | |
| 135 | TEST_F(CompilerTest, UnsignedShiftTest) { |
Brian Carlstrom | bffb155 | 2011-08-25 12:23:53 -0700 | [diff] [blame] | 136 | CompileDex(kIntMathDex, "kIntMathDex"); |
| 137 | AssertStaticIntMethod("IntMath", "unsignedShiftTest", "()I", 0); |
buzbee | 3ea4ec5 | 2011-08-22 17:37:19 -0700 | [diff] [blame] | 138 | } |
| 139 | |
buzbee | 3ea4ec5 | 2011-08-22 17:37:19 -0700 | [diff] [blame] | 140 | TEST_F(CompilerTest, ConvTest) { |
Brian Carlstrom | bffb155 | 2011-08-25 12:23:53 -0700 | [diff] [blame] | 141 | CompileDex(kIntMathDex, "kIntMathDex"); |
| 142 | AssertStaticIntMethod("IntMath", "convTest", "()I", 0); |
buzbee | 3ea4ec5 | 2011-08-22 17:37:19 -0700 | [diff] [blame] | 143 | } |
buzbee | 3ea4ec5 | 2011-08-22 17:37:19 -0700 | [diff] [blame] | 144 | |
| 145 | TEST_F(CompilerTest, CharSubTest) { |
Brian Carlstrom | bffb155 | 2011-08-25 12:23:53 -0700 | [diff] [blame] | 146 | CompileDex(kIntMathDex, "kIntMathDex"); |
| 147 | AssertStaticIntMethod("IntMath", "charSubTest", "()I", 0); |
buzbee | 3ea4ec5 | 2011-08-22 17:37:19 -0700 | [diff] [blame] | 148 | } |
| 149 | |
buzbee | 3ea4ec5 | 2011-08-22 17:37:19 -0700 | [diff] [blame] | 150 | TEST_F(CompilerTest, IntOperTest) { |
Brian Carlstrom | bffb155 | 2011-08-25 12:23:53 -0700 | [diff] [blame] | 151 | CompileDex(kIntMathDex, "kIntMathDex"); |
| 152 | AssertStaticIntMethod("IntMath", "intOperTest", "(II)I", 0, |
| 153 | 70000, -3); |
buzbee | 3ea4ec5 | 2011-08-22 17:37:19 -0700 | [diff] [blame] | 154 | } |
buzbee | 3ea4ec5 | 2011-08-22 17:37:19 -0700 | [diff] [blame] | 155 | |
buzbee | 3ea4ec5 | 2011-08-22 17:37:19 -0700 | [diff] [blame] | 156 | TEST_F(CompilerTest, Lit16Test) { |
Brian Carlstrom | bffb155 | 2011-08-25 12:23:53 -0700 | [diff] [blame] | 157 | CompileDex(kIntMathDex, "kIntMathDex"); |
| 158 | AssertStaticIntMethod("IntMath", "lit16Test", "(I)I", 0, |
| 159 | 77777); |
buzbee | 3ea4ec5 | 2011-08-22 17:37:19 -0700 | [diff] [blame] | 160 | } |
buzbee | 3ea4ec5 | 2011-08-22 17:37:19 -0700 | [diff] [blame] | 161 | |
buzbee | 3ea4ec5 | 2011-08-22 17:37:19 -0700 | [diff] [blame] | 162 | TEST_F(CompilerTest, Lit8Test) { |
Brian Carlstrom | bffb155 | 2011-08-25 12:23:53 -0700 | [diff] [blame] | 163 | CompileDex(kIntMathDex, "kIntMathDex"); |
| 164 | AssertStaticIntMethod("IntMath", "lit8Test", "(I)I", 0, |
| 165 | -55555); |
buzbee | 3ea4ec5 | 2011-08-22 17:37:19 -0700 | [diff] [blame] | 166 | } |
buzbee | 3ea4ec5 | 2011-08-22 17:37:19 -0700 | [diff] [blame] | 167 | |
buzbee | 3ea4ec5 | 2011-08-22 17:37:19 -0700 | [diff] [blame] | 168 | TEST_F(CompilerTest, IntShiftTest) { |
Brian Carlstrom | bffb155 | 2011-08-25 12:23:53 -0700 | [diff] [blame] | 169 | CompileDex(kIntMathDex, "kIntMathDex"); |
| 170 | AssertStaticIntMethod("IntMath", "intShiftTest", "(II)I", 0, |
| 171 | 0xff00aa01, 8); |
buzbee | 3ea4ec5 | 2011-08-22 17:37:19 -0700 | [diff] [blame] | 172 | } |
buzbee | 3ea4ec5 | 2011-08-22 17:37:19 -0700 | [diff] [blame] | 173 | |
buzbee | 3ea4ec5 | 2011-08-22 17:37:19 -0700 | [diff] [blame] | 174 | TEST_F(CompilerTest, LongOperTest) { |
Brian Carlstrom | bffb155 | 2011-08-25 12:23:53 -0700 | [diff] [blame] | 175 | CompileDex(kIntMathDex, "kIntMathDex"); |
| 176 | AssertStaticIntMethod("IntMath", "longOperTest", "(JJ)I", 0, |
| 177 | 70000000000LL, 3); |
buzbee | 3ea4ec5 | 2011-08-22 17:37:19 -0700 | [diff] [blame] | 178 | } |
buzbee | 3ea4ec5 | 2011-08-22 17:37:19 -0700 | [diff] [blame] | 179 | |
buzbee | 3ea4ec5 | 2011-08-22 17:37:19 -0700 | [diff] [blame] | 180 | TEST_F(CompilerTest, LongShiftTest) { |
Brian Carlstrom | bffb155 | 2011-08-25 12:23:53 -0700 | [diff] [blame] | 181 | CompileDex(kIntMathDex, "kIntMathDex"); |
buzbee | 7b1b86d | 2011-08-26 18:59:10 -0700 | [diff] [blame^] | 182 | AssertStaticLongMethod("IntMath", "longShiftTest", "(JI)J", |
| 183 | 0x96deff00aa010000LL, 0xd5aa96deff00aa01LL, 16); |
buzbee | 3ea4ec5 | 2011-08-22 17:37:19 -0700 | [diff] [blame] | 184 | } |
buzbee | 3ea4ec5 | 2011-08-22 17:37:19 -0700 | [diff] [blame] | 185 | |
buzbee | 9e0f9b0 | 2011-08-24 15:32:46 -0700 | [diff] [blame] | 186 | TEST_F(CompilerTest, SwitchTest1) { |
Brian Carlstrom | bffb155 | 2011-08-25 12:23:53 -0700 | [diff] [blame] | 187 | CompileDex(kIntMathDex, "kIntMathDex"); |
| 188 | AssertStaticIntMethod("IntMath", "switchTest", "(I)I", 1234, |
| 189 | 1); |
buzbee | 9e0f9b0 | 2011-08-24 15:32:46 -0700 | [diff] [blame] | 190 | } |
| 191 | |
| 192 | TEST_F(CompilerTest, IntCompare) { |
Brian Carlstrom | bffb155 | 2011-08-25 12:23:53 -0700 | [diff] [blame] | 193 | CompileDex(kIntMathDex, "kIntMathDex"); |
| 194 | AssertStaticIntMethod("IntMath", "testIntCompare", "(IIII)I", 1111, |
| 195 | -5, 4, 4, 0); |
buzbee | 9e0f9b0 | 2011-08-24 15:32:46 -0700 | [diff] [blame] | 196 | } |
| 197 | |
| 198 | TEST_F(CompilerTest, LongCompare) { |
Brian Carlstrom | bffb155 | 2011-08-25 12:23:53 -0700 | [diff] [blame] | 199 | CompileDex(kIntMathDex, "kIntMathDex"); |
| 200 | AssertStaticIntMethod("IntMath", "testLongCompare", "(JJJJ)I", 2222, |
| 201 | -5LL, -4294967287LL, 4LL, 8LL); |
buzbee | 9e0f9b0 | 2011-08-24 15:32:46 -0700 | [diff] [blame] | 202 | } |
| 203 | |
buzbee | 7b1b86d | 2011-08-26 18:59:10 -0700 | [diff] [blame^] | 204 | #if 0 // Weird NaN failure. Needs investigation |
buzbee | 9e0f9b0 | 2011-08-24 15:32:46 -0700 | [diff] [blame] | 205 | TEST_F(CompilerTest, FloatCompare) { |
Brian Carlstrom | bffb155 | 2011-08-25 12:23:53 -0700 | [diff] [blame] | 206 | CompileDex(kIntMathDex, "kIntMathDex"); |
| 207 | AssertStaticIntMethod("IntMath", "testFloatCompare", "(FFFF)I", 3333 |
| 208 | -5.0f, 4.0f, 4.0f, |
| 209 | (1.0f/0.0f) / (1.0f/0.0f)); |
buzbee | 9e0f9b0 | 2011-08-24 15:32:46 -0700 | [diff] [blame] | 210 | } |
Brian Carlstrom | bffb155 | 2011-08-25 12:23:53 -0700 | [diff] [blame] | 211 | #endif |
buzbee | 9e0f9b0 | 2011-08-24 15:32:46 -0700 | [diff] [blame] | 212 | |
| 213 | TEST_F(CompilerTest, DoubleCompare) { |
Brian Carlstrom | bffb155 | 2011-08-25 12:23:53 -0700 | [diff] [blame] | 214 | CompileDex(kIntMathDex, "kIntMathDex"); |
| 215 | AssertStaticIntMethod("IntMath", "testDoubleCompare", "(DDDD)I", 4444, |
| 216 | -5.0, 4.0, 4.0, |
| 217 | (1.0/0.0) / (1.0/0.0)); |
buzbee | 9e0f9b0 | 2011-08-24 15:32:46 -0700 | [diff] [blame] | 218 | } |
| 219 | |
buzbee | c5ef046 | 2011-08-25 18:44:49 -0700 | [diff] [blame] | 220 | TEST_F(CompilerTest, RecursiveFibonacci) { |
| 221 | CompileDex(kIntMathDex, "kIntMathDex"); |
| 222 | AssertStaticIntMethod("IntMath", "fibonacci", "(I)I", 55, |
| 223 | 10); |
| 224 | } |
buzbee | c5ef046 | 2011-08-25 18:44:49 -0700 | [diff] [blame] | 225 | |
buzbee | 7b1b86d | 2011-08-26 18:59:10 -0700 | [diff] [blame^] | 226 | #if 0 // Need to complete try/catch block handling |
| 227 | TEST_F(CompilerTest, ThrowAndCatch) { |
| 228 | CompileDex(kIntMathDex, "kIntMathDex"); |
| 229 | AssertStaticIntMethod("IntMath", "throwAndCatch", "()I", 4); |
| 230 | } |
| 231 | #endif |
| 232 | |
| 233 | TEST_F(CompilerTest, ManyArgs) { |
| 234 | CompileDex(kIntMathDex, "kIntMathDex"); |
| 235 | AssertStaticIntMethod("IntMath", "manyArgs", |
| 236 | "(IJIJIJIIDFDSICIIBZIIJJIIIII)I", -1, |
| 237 | 0, 1LL, 2, 3LL, 4, 5LL, 6, 7, 8.0, 9.0f, 10.0, |
| 238 | (short)11, 12, (char)13, 14, 15, (int8_t)-16, true, 18, |
| 239 | 19, 20LL, 21LL, 22, 23, 24, 25, 26); |
| 240 | } |
| 241 | |
| 242 | #if 0 // White-list needs some work, must allow some virtual methods through |
| 243 | TEST_F(CompilerTest, VirtualCall) { |
| 244 | CompileDex(kIntMathDex, "kIntMathDex"); |
| 245 | AssertStaticIntMethod("IntMath", "staticCall", "(I)I", 6, |
| 246 | 3); |
| 247 | } |
| 248 | #endif |
| 249 | |
buzbee | c143c55 | 2011-08-20 17:38:58 -0700 | [diff] [blame] | 250 | } // namespace art |