blob: c1e666e6bf9280ff88fa2471b46076983756ba57 [file] [log] [blame]
buzbeec143c552011-08-20 17:38:58 -07001// Copyright 2011 Google Inc. All Rights Reserved.
2
Elliott Hughes90a33692011-08-30 13:27:07 -07003#include "compiler.h"
4
5#include <stdint.h>
6#include <stdio.h>
7
8#include "UniquePtr.h"
buzbeec143c552011-08-20 17:38:58 -07009#include "class_linker.h"
10#include "common_test.h"
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -070011#include "dex_cache.h"
buzbeec143c552011-08-20 17:38:58 -070012#include "dex_file.h"
13#include "heap.h"
14#include "object.h"
buzbeec143c552011-08-20 17:38:58 -070015
16namespace art {
17
18class CompilerTest : public CommonTest {
Brian Carlstrombffb1552011-08-25 12:23:53 -070019 protected:
Brian Carlstrom8a487412011-08-29 20:08:52 -070020
Elliott Hughes7957d542011-09-09 17:16:01 -070021 void AssertStaticIntMethod(jint expected, const ClassLoader* class_loader,
Elliott Hughes1240dad2011-09-09 16:24:50 -070022 const char* class_name, const char* method, const char* signature,
Elliott Hughes7957d542011-09-09 17:16:01 -070023 ...) {
Shih-wei Liao303b01e2011-09-14 00:46:13 -070024 EnsureCompiled(class_loader, class_name, method, signature, false);
Elliott Hughesd3a72972011-09-07 15:31:59 -070025#if defined(__arm__)
Brian Carlstrombffb1552011-08-25 12:23:53 -070026 va_list args;
Elliott Hughes7957d542011-09-09 17:16:01 -070027 va_start(args, signature);
Elliott Hughes1240dad2011-09-09 16:24:50 -070028 jint result = env_->CallStaticIntMethodV(class_, mid_, args);
Brian Carlstrombffb1552011-08-25 12:23:53 -070029 va_end(args);
Elliott Hughes1240dad2011-09-09 16:24:50 -070030 LOG(INFO) << class_name << "." << method << "(...) result is " << result;
Brian Carlstrombffb1552011-08-25 12:23:53 -070031 EXPECT_EQ(expected, result);
32#endif // __arm__
33 }
Elliott Hughes1240dad2011-09-09 16:24:50 -070034
Elliott Hughes7957d542011-09-09 17:16:01 -070035 void AssertStaticLongMethod(jlong expected, const ClassLoader* class_loader,
Elliott Hughes1240dad2011-09-09 16:24:50 -070036 const char* class_name, const char* method, const char* signature,
Elliott Hughes7957d542011-09-09 17:16:01 -070037 ...) {
Shih-wei Liao303b01e2011-09-14 00:46:13 -070038 EnsureCompiled(class_loader, class_name, method, signature, false);
Elliott Hughesd3a72972011-09-07 15:31:59 -070039#if defined(__arm__)
buzbeebafc3422011-08-25 15:22:55 -070040 va_list args;
Elliott Hughes7957d542011-09-09 17:16:01 -070041 va_start(args, signature);
Elliott Hughes1240dad2011-09-09 16:24:50 -070042 jlong result = env_->CallStaticLongMethodV(class_, mid_, args);
buzbeebafc3422011-08-25 15:22:55 -070043 va_end(args);
Elliott Hughes1240dad2011-09-09 16:24:50 -070044 LOG(INFO) << class_name << "." << method << "(...) result is " << result;
buzbeebafc3422011-08-25 15:22:55 -070045 EXPECT_EQ(expected, result);
46#endif // __arm__
47 }
Elliott Hughes1240dad2011-09-09 16:24:50 -070048
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,
Shih-wei Liao303b01e2011-09-14 00:46:13 -070055 const char* class_name, const char* method, const char* signature, bool is_virtual) {
Elliott Hughes1240dad2011-09-09 16:24:50 -070056 CompileAll(class_loader);
57 env_ = Thread::Current()->GetJniEnv();
58 class_ = env_->FindClass(class_name);
59 CHECK(class_ != NULL) << "Class not found: " << class_name;
Shih-wei Liao303b01e2011-09-14 00:46:13 -070060 if (is_virtual) {
61 mid_ = env_->GetMethodID(class_, method, signature);
62 } else {
63 mid_ = env_->GetStaticMethodID(class_, method, signature);
64 }
Elliott Hughes1240dad2011-09-09 16:24:50 -070065 CHECK(mid_ != NULL) << "Method not found: " << class_name << "." << method << signature;
66 }
67
68 void MakeAllExecutable(const ClassLoader* class_loader) {
69 const std::vector<const DexFile*>& class_path = ClassLoader::GetClassPath(class_loader);
70 for (size_t i = 0; i != class_path.size(); ++i) {
71 const DexFile* dex_file = class_path[i];
72 CHECK(dex_file != NULL);
73 MakeDexFileExecutable(class_loader, *dex_file);
74 }
75 }
76
77 void MakeDexFileExecutable(const ClassLoader* class_loader, const DexFile& dex_file) {
78 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
79 for (size_t i = 0; i < dex_file.NumClassDefs(); i++) {
80 const DexFile::ClassDef& class_def = dex_file.GetClassDef(i);
81 const char* descriptor = dex_file.GetClassDescriptor(class_def);
82 Class* c = class_linker->FindClass(descriptor, class_loader);
83 CHECK(c != NULL);
84 for (size_t i = 0; i < c->NumDirectMethods(); i++) {
85 MakeMethodExecutable(c->GetDirectMethod(i));
86 }
87 for (size_t i = 0; i < c->NumVirtualMethods(); i++) {
88 MakeMethodExecutable(c->GetVirtualMethod(i));
89 }
90 }
91 }
92
93 void MakeMethodExecutable(Method* m) {
94 if (m->GetCodeArray() != NULL) {
95 MakeExecutable(m->GetCodeArray());
96 } else {
97 LOG(WARNING) << "no code for " << PrettyMethod(m);
98 }
99 if (m->GetInvokeStubArray() != NULL) {
100 MakeExecutable(m->GetInvokeStubArray());
101 } else {
102 LOG(WARNING) << "no invoke stub for " << PrettyMethod(m);
103 }
104 }
105
106 JNIEnv* env_;
107 jclass class_;
108 jmethodID mid_;
buzbeec143c552011-08-20 17:38:58 -0700109};
110
Brian Carlstrom7540ff42011-09-04 16:38:46 -0700111// Disabled due to 10 second runtime on host
Elliott Hughes1240dad2011-09-09 16:24:50 -0700112TEST_F(CompilerTest, DISABLED_LARGE_CompileDexLibCore) {
113 CompileAll(NULL);
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700114
115 // All libcore references should resolve
116 const DexFile* dex = java_lang_dex_file_.get();
117 DexCache* dex_cache = class_linker_->FindDexCache(*dex);
118 EXPECT_EQ(dex->NumStringIds(), dex_cache->NumStrings());
119 for (size_t i = 0; i < dex_cache->NumStrings(); i++) {
Elliott Hughescf4c6c42011-09-01 15:16:42 -0700120 const String* string = dex_cache->GetResolvedString(i);
Brian Carlstrom7540ff42011-09-04 16:38:46 -0700121 EXPECT_TRUE(string != NULL) << "string_idx=" << i;
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700122 }
Brian Carlstrom1caa2c22011-08-28 13:02:33 -0700123 EXPECT_EQ(dex->NumTypeIds(), dex_cache->NumResolvedTypes());
124 for (size_t i = 0; i < dex_cache->NumResolvedTypes(); i++) {
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700125 Class* type = dex_cache->GetResolvedType(i);
Brian Carlstrom7540ff42011-09-04 16:38:46 -0700126 EXPECT_TRUE(type != NULL) << "type_idx=" << i
127 << " " << dex->GetTypeDescriptor(dex->GetTypeId(i));
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700128 }
Brian Carlstrom1caa2c22011-08-28 13:02:33 -0700129 EXPECT_EQ(dex->NumMethodIds(), dex_cache->NumResolvedMethods());
130 for (size_t i = 0; i < dex_cache->NumResolvedMethods(); i++) {
Brian Carlstrom20cfffa2011-08-26 02:31:27 -0700131 Method* method = dex_cache->GetResolvedMethod(i);
Brian Carlstrom7540ff42011-09-04 16:38:46 -0700132 EXPECT_TRUE(method != NULL) << "method_idx=" << i
133 << " " << dex->GetMethodClassDescriptor(dex->GetMethodId(i))
134 << " " << dex->GetMethodName(dex->GetMethodId(i));
Shih-wei Liaoc486c112011-09-13 16:43:52 -0700135 EXPECT_TRUE(method->GetCode() != NULL) << "method_idx=" << i
136 << " "
137 << dex->GetMethodClassDescriptor(dex->GetMethodId(i))
138 << " " << dex->GetMethodName(dex->GetMethodId(i));
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700139 }
Brian Carlstrom1caa2c22011-08-28 13:02:33 -0700140 EXPECT_EQ(dex->NumFieldIds(), dex_cache->NumResolvedFields());
141 for (size_t i = 0; i < dex_cache->NumResolvedFields(); i++) {
Brian Carlstrom20cfffa2011-08-26 02:31:27 -0700142 Field* field = dex_cache->GetResolvedField(i);
Brian Carlstrom7540ff42011-09-04 16:38:46 -0700143 EXPECT_TRUE(field != NULL) << "field_idx=" << i
144 << " " << dex->GetFieldClassDescriptor(dex->GetFieldId(i))
145 << " " << dex->GetFieldName(dex->GetFieldId(i));
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700146 }
147
Brian Carlstrom83db7722011-08-26 17:32:56 -0700148 // TODO check Class::IsVerified for all classes
149
150 // TODO: check that all Method::GetCode() values are non-null
151
Brian Carlstrom9cc262e2011-08-28 12:45:30 -0700152 EXPECT_EQ(dex->NumMethodIds(), dex_cache->NumCodeAndDirectMethods());
153 CodeAndDirectMethods* code_and_direct_methods = dex_cache->GetCodeAndDirectMethods();
154 for (size_t i = 0; i < dex_cache->NumCodeAndDirectMethods(); i++) {
Brian Carlstrom83db7722011-08-26 17:32:56 -0700155 Method* method = dex_cache->GetResolvedMethod(i);
Brian Carlstrom7540ff42011-09-04 16:38:46 -0700156 if (method->IsDirect()) {
157 EXPECT_EQ(method->GetCode(), code_and_direct_methods->GetResolvedCode(i));
158 EXPECT_EQ(method, code_and_direct_methods->GetResolvedMethod(i));
159 } else {
160 EXPECT_EQ(0U, code_and_direct_methods->GetResolvedCode(i));
161 EXPECT_TRUE(code_and_direct_methods->GetResolvedMethod(i) == NULL);
162 }
Brian Carlstrom83db7722011-08-26 17:32:56 -0700163 }
Brian Carlstrom9ea1cb12011-08-24 23:18:18 -0700164}
165
buzbee43a36422011-09-14 14:00:13 -0700166TEST_F(CompilerTest, NullCheckElimination1) {
167 CompileDirectMethod(NULL, "java.lang.Object", "<init>", "()V");
168 AssertStaticIntMethod(2054, LoadDex("ExceptionTest"), "ExceptionTest", "nullCheckTestNoThrow", "(I)I", 1976);
169}
170
171TEST_F(CompilerTest, DISABLED_NullCheckElimination2) {
172 CompileDirectMethod(NULL, "java.lang.Object", "<init>", "()V");
173 AssertStaticIntMethod(2057, LoadDex("ExceptionTest"), "ExceptionTest", "nullCheckTestThrow", "(I)I", 1976);
174}
175
buzbeef0cde542011-09-13 14:55:02 -0700176TEST_F(CompilerTest, ByBillion) {
177 CompileDirectMethod(NULL, "java.lang.Object", "<init>", "()V");
178 AssertStaticLongMethod(123, LoadDex("IntMath"), "IntMath", "divideLongByBillion", "(J)J", 123000000000LL);
179}
180
buzbeec143c552011-08-20 17:38:58 -0700181TEST_F(CompilerTest, BasicCodegen) {
Elliott Hughes7957d542011-09-09 17:16:01 -0700182 AssertStaticIntMethod(55, LoadDex("Fibonacci"), "Fibonacci", "fibonacci", "(I)I", 10);
buzbeec143c552011-08-20 17:38:58 -0700183}
buzbee3ea4ec52011-08-22 17:37:19 -0700184
Shih-wei Liao303b01e2011-09-14 00:46:13 -0700185TEST_F(CompilerTest, DISABLED_AbstractMethodErrorStub) {
186 const ClassLoader* class_loader = LoadDex("AbstractMethod");
187 EnsureCompiled(class_loader, "AbstractMethod", "callme", "()V", true);
188
189 // Create a jobj_ of class "B", NOT class "AbstractMethod".
190 jclass b_class = env_->FindClass("B");
191 jmethodID constructor = env_->GetMethodID(b_class, "<init>", "()V");
192 jobject jobj_ = env_->NewObject(b_class, constructor);
193 ASSERT_TRUE(jobj_ != NULL);
194
195#if defined(__arm__)
196 // Will throw AbstractMethodError exception.
197 env_->CallNonvirtualVoidMethod(jobj_, class_, mid_);
198#endif // __arm__
199}
200
buzbee2a475e72011-09-07 17:19:17 -0700201// TODO: need stub for InstanceofNonTrivialFromCode
202TEST_F(CompilerTest, InstanceTest) {
203 CompileDirectMethod(NULL, "java.lang.Object", "<init>", "()V");
Elliott Hughes7957d542011-09-09 17:16:01 -0700204 AssertStaticIntMethod(1352, LoadDex("IntMath"), "IntMath", "instanceTest", "(I)I", 10);
buzbee2a475e72011-09-07 17:19:17 -0700205}
206
207// TODO: need check-cast test (when stub complete & we can throw/catch
208
buzbee4a3164f2011-09-03 11:25:10 -0700209// TODO: Need invoke-interface test
210
211TEST_F(CompilerTest, SuperTest) {
212 CompileDirectMethod(NULL, "java.lang.Object", "<init>", "()V");
Elliott Hughes7957d542011-09-09 17:16:01 -0700213 AssertStaticIntMethod(4175, LoadDex("IntMath"), "IntMath", "superTest", "(I)I", 4141);
buzbee4a3164f2011-09-03 11:25:10 -0700214}
215
buzbee1b4c8592011-08-31 10:43:51 -0700216TEST_F(CompilerTest, ConstStringTest) {
buzbee2a475e72011-09-07 17:19:17 -0700217 CompileDirectMethod(NULL, "java.lang.String", "<clinit>", "()V");
218 CompileDirectMethod(NULL, "java.lang.String", "<init>", "(II[C)V");
219 CompileDirectMethod(NULL, "java.lang.String", "<init>", "([CII)V");
220 CompileVirtualMethod(NULL, "java.lang.String", "_getChars", "(II[CI)V");
221 CompileVirtualMethod(NULL, "java.lang.String", "charAt", "(I)C");
222 CompileVirtualMethod(NULL, "java.lang.String", "length", "()I");
Elliott Hughes7957d542011-09-09 17:16:01 -0700223 AssertStaticIntMethod(1246, LoadDex("IntMath"), "IntMath", "constStringTest", "(I)I", 1234);
buzbee1b4c8592011-08-31 10:43:51 -0700224}
225
buzbee561227c2011-09-02 15:28:19 -0700226TEST_F(CompilerTest, ConstClassTest) {
Elliott Hughes7957d542011-09-09 17:16:01 -0700227 AssertStaticIntMethod(2222, LoadDex("IntMath"), "IntMath", "constClassTest", "(I)I", 1111);
buzbee561227c2011-09-02 15:28:19 -0700228}
229
Ian Rogersbdb03912011-09-14 00:55:44 -0700230TEST_F(CompilerTest, CatchTest) {
buzbee1b4c8592011-08-31 10:43:51 -0700231 CompileDirectMethod(NULL, "java.lang.Object", "<init>", "()V");
232 CompileDirectMethod(NULL, "java.lang.NullPointerException", "<init>", "()V");
buzbee2a475e72011-09-07 17:19:17 -0700233 CompileDirectMethod(NULL, "java.lang.RuntimeException", "<init>", "()V");
234 CompileDirectMethod(NULL, "java.lang.Exception", "<init>", "()V");
235 CompileDirectMethod(NULL, "java.lang.Throwable","<init>", "()V");
236 CompileDirectMethod(NULL, "java.util.ArrayList","<init>","()V");
237 CompileDirectMethod(NULL, "java.util.AbstractList","<init>","()V");
238 CompileDirectMethod(NULL, "java.util.AbstractCollection","<init>","()V");
239 CompileVirtualMethod(NULL, "java.lang.Throwable","fillInStackTrace","()Ljava/lang/Throwable;");
240 CompileDirectMethod(NULL, "java.lang.Throwable","nativeFillInStackTrace","()Ljava/lang/Object;");
Elliott Hughes7957d542011-09-09 17:16:01 -0700241 AssertStaticIntMethod(1579, LoadDex("IntMath"), "IntMath", "catchBlock", "(I)I", 1000);
Ian Rogers93dd9662011-09-17 23:21:22 -0700242 AssertStaticIntMethod(7777, LoadDex("IntMath"), "IntMath", "catchBlock", "(I)I", 7000);
buzbee1b4c8592011-08-31 10:43:51 -0700243}
244
buzbeee9a72f62011-09-04 17:59:07 -0700245TEST_F(CompilerTest, CatchTestNoThrow) {
Elliott Hughes7957d542011-09-09 17:16:01 -0700246 AssertStaticIntMethod(1123, LoadDex("IntMath"), "IntMath", "catchBlockNoThrow", "(I)I", 1000);
buzbeee9a72f62011-09-04 17:59:07 -0700247}
248
buzbeee1931742011-08-28 21:15:53 -0700249TEST_F(CompilerTest, StaticFieldTest) {
Elliott Hughes7957d542011-09-09 17:16:01 -0700250 AssertStaticIntMethod(1404, LoadDex("IntMath"), "IntMath", "staticFieldTest", "(I)I", 404);
buzbeee1931742011-08-28 21:15:53 -0700251}
252
buzbee3ea4ec52011-08-22 17:37:19 -0700253TEST_F(CompilerTest, UnopTest) {
Elliott Hughes7957d542011-09-09 17:16:01 -0700254 AssertStaticIntMethod(37, LoadDex("IntMath"), "IntMath", "unopTest", "(I)I", 38);
buzbee3ea4ec52011-08-22 17:37:19 -0700255}
256
buzbee3ea4ec52011-08-22 17:37:19 -0700257TEST_F(CompilerTest, ShiftTest1) {
Elliott Hughes7957d542011-09-09 17:16:01 -0700258 AssertStaticIntMethod(0, LoadDex("IntMath"), "IntMath", "shiftTest1", "()I");
buzbee3ea4ec52011-08-22 17:37:19 -0700259}
buzbeec143c552011-08-20 17:38:58 -0700260
buzbee3ea4ec52011-08-22 17:37:19 -0700261TEST_F(CompilerTest, ShiftTest2) {
Elliott Hughes7957d542011-09-09 17:16:01 -0700262 AssertStaticIntMethod(0, LoadDex("IntMath"), "IntMath", "shiftTest2", "()I");
buzbee3ea4ec52011-08-22 17:37:19 -0700263}
buzbee3ea4ec52011-08-22 17:37:19 -0700264
265TEST_F(CompilerTest, UnsignedShiftTest) {
Elliott Hughes7957d542011-09-09 17:16:01 -0700266 AssertStaticIntMethod(0, LoadDex("IntMath"), "IntMath", "unsignedShiftTest", "()I");
buzbee3ea4ec52011-08-22 17:37:19 -0700267}
268
buzbee3ea4ec52011-08-22 17:37:19 -0700269TEST_F(CompilerTest, ConvTest) {
Elliott Hughes7957d542011-09-09 17:16:01 -0700270 AssertStaticIntMethod(0, LoadDex("IntMath"), "IntMath", "convTest", "()I");
buzbee3ea4ec52011-08-22 17:37:19 -0700271}
buzbee3ea4ec52011-08-22 17:37:19 -0700272
273TEST_F(CompilerTest, CharSubTest) {
Elliott Hughes7957d542011-09-09 17:16:01 -0700274 AssertStaticIntMethod(0, LoadDex("IntMath"), "IntMath", "charSubTest", "()I");
buzbee3ea4ec52011-08-22 17:37:19 -0700275}
276
buzbee3ea4ec52011-08-22 17:37:19 -0700277TEST_F(CompilerTest, IntOperTest) {
Elliott Hughes7957d542011-09-09 17:16:01 -0700278 AssertStaticIntMethod(0, LoadDex("IntMath"), "IntMath", "intOperTest", "(II)I", 70000, -3);
buzbee3ea4ec52011-08-22 17:37:19 -0700279}
buzbee3ea4ec52011-08-22 17:37:19 -0700280
buzbee3ea4ec52011-08-22 17:37:19 -0700281TEST_F(CompilerTest, Lit16Test) {
Elliott Hughes7957d542011-09-09 17:16:01 -0700282 AssertStaticIntMethod(0, LoadDex("IntMath"), "IntMath", "lit16Test", "(I)I", 77777);
buzbee3ea4ec52011-08-22 17:37:19 -0700283}
buzbee3ea4ec52011-08-22 17:37:19 -0700284
buzbee3ea4ec52011-08-22 17:37:19 -0700285TEST_F(CompilerTest, Lit8Test) {
Elliott Hughes7957d542011-09-09 17:16:01 -0700286 AssertStaticIntMethod(0, LoadDex("IntMath"), "IntMath", "lit8Test", "(I)I", -55555);
buzbee3ea4ec52011-08-22 17:37:19 -0700287}
buzbee3ea4ec52011-08-22 17:37:19 -0700288
buzbee3ea4ec52011-08-22 17:37:19 -0700289TEST_F(CompilerTest, IntShiftTest) {
Elliott Hughes7957d542011-09-09 17:16:01 -0700290 AssertStaticIntMethod(0, LoadDex("IntMath"), "IntMath", "intShiftTest", "(II)I", 0xff00aa01, 8);
buzbee3ea4ec52011-08-22 17:37:19 -0700291}
buzbee3ea4ec52011-08-22 17:37:19 -0700292
buzbee3ea4ec52011-08-22 17:37:19 -0700293TEST_F(CompilerTest, LongOperTest) {
Elliott Hughes7957d542011-09-09 17:16:01 -0700294 AssertStaticIntMethod(0, LoadDex("IntMath"), "IntMath", "longOperTest", "(JJ)I",
buzbee439c4fa2011-08-27 15:59:07 -0700295 70000000000LL, -3LL);
buzbee3ea4ec52011-08-22 17:37:19 -0700296}
buzbee3ea4ec52011-08-22 17:37:19 -0700297
buzbee3ea4ec52011-08-22 17:37:19 -0700298TEST_F(CompilerTest, LongShiftTest) {
Elliott Hughes7957d542011-09-09 17:16:01 -0700299 AssertStaticLongMethod(0x96deff00aa010000LL,
300 LoadDex("IntMath"), "IntMath", "longShiftTest", "(JI)J", 0xd5aa96deff00aa01LL, 16);
buzbee3ea4ec52011-08-22 17:37:19 -0700301}
buzbee3ea4ec52011-08-22 17:37:19 -0700302
buzbee9e0f9b02011-08-24 15:32:46 -0700303TEST_F(CompilerTest, SwitchTest1) {
Elliott Hughes7957d542011-09-09 17:16:01 -0700304 AssertStaticIntMethod(1234, LoadDex("IntMath"), "IntMath", "switchTest", "(I)I", 1);
buzbee9e0f9b02011-08-24 15:32:46 -0700305}
306
307TEST_F(CompilerTest, IntCompare) {
Elliott Hughes7957d542011-09-09 17:16:01 -0700308 AssertStaticIntMethod(1111, LoadDex("IntMath"), "IntMath", "testIntCompare", "(IIII)I",
Brian Carlstrombffb1552011-08-25 12:23:53 -0700309 -5, 4, 4, 0);
buzbee9e0f9b02011-08-24 15:32:46 -0700310}
311
312TEST_F(CompilerTest, LongCompare) {
Elliott Hughes7957d542011-09-09 17:16:01 -0700313 AssertStaticIntMethod(2222, LoadDex("IntMath"), "IntMath", "testLongCompare", "(JJJJ)I",
Brian Carlstrombffb1552011-08-25 12:23:53 -0700314 -5LL, -4294967287LL, 4LL, 8LL);
buzbee9e0f9b02011-08-24 15:32:46 -0700315}
316
317TEST_F(CompilerTest, FloatCompare) {
Elliott Hughes7957d542011-09-09 17:16:01 -0700318 AssertStaticIntMethod(3333, LoadDex("IntMath"), "IntMath", "testFloatCompare", "(FFFF)I",
Brian Carlstrombffb1552011-08-25 12:23:53 -0700319 -5.0f, 4.0f, 4.0f,
320 (1.0f/0.0f) / (1.0f/0.0f));
buzbee9e0f9b02011-08-24 15:32:46 -0700321}
322
323TEST_F(CompilerTest, DoubleCompare) {
Elliott Hughes7957d542011-09-09 17:16:01 -0700324 AssertStaticIntMethod(4444, LoadDex("IntMath"), "IntMath", "testDoubleCompare", "(DDDD)I",
Brian Carlstrombffb1552011-08-25 12:23:53 -0700325 -5.0, 4.0, 4.0,
326 (1.0/0.0) / (1.0/0.0));
buzbee9e0f9b02011-08-24 15:32:46 -0700327}
328
buzbeec5ef0462011-08-25 18:44:49 -0700329TEST_F(CompilerTest, RecursiveFibonacci) {
Elliott Hughes7957d542011-09-09 17:16:01 -0700330 AssertStaticIntMethod(55, LoadDex("IntMath"), "IntMath", "fibonacci", "(I)I", 10);
buzbeec5ef0462011-08-25 18:44:49 -0700331}
buzbeec5ef0462011-08-25 18:44:49 -0700332
buzbee7b1b86d2011-08-26 18:59:10 -0700333#if 0 // Need to complete try/catch block handling
334TEST_F(CompilerTest, ThrowAndCatch) {
Elliott Hughes7957d542011-09-09 17:16:01 -0700335 AssertStaticIntMethod(4, LoadDex("IntMath"), "IntMath", "throwAndCatch", "()I");
buzbee7b1b86d2011-08-26 18:59:10 -0700336}
337#endif
338
339TEST_F(CompilerTest, ManyArgs) {
Elliott Hughes7957d542011-09-09 17:16:01 -0700340 AssertStaticIntMethod(-1, LoadDex("IntMath"), "IntMath", "manyArgs",
341 "(IJIJIJIIDFDSICIIBZIIJJIIIII)I",
buzbee7b1b86d2011-08-26 18:59:10 -0700342 0, 1LL, 2, 3LL, 4, 5LL, 6, 7, 8.0, 9.0f, 10.0,
343 (short)11, 12, (char)13, 14, 15, (int8_t)-16, true, 18,
344 19, 20LL, 21LL, 22, 23, 24, 25, 26);
345}
346
buzbee7b1b86d2011-08-26 18:59:10 -0700347TEST_F(CompilerTest, VirtualCall) {
Brian Carlstrom8a487412011-08-29 20:08:52 -0700348 CompileDirectMethod(NULL, "java.lang.Object", "<init>", "()V");
Elliott Hughes7957d542011-09-09 17:16:01 -0700349 AssertStaticIntMethod(6, LoadDex("IntMath"), "IntMath", "staticCall", "(I)I", 3);
buzbee7b1b86d2011-08-26 18:59:10 -0700350}
buzbee7b1b86d2011-08-26 18:59:10 -0700351
buzbeedd3efae2011-08-28 14:39:07 -0700352TEST_F(CompilerTest, TestIGetPut) {
Brian Carlstrom8a487412011-08-29 20:08:52 -0700353 CompileDirectMethod(NULL, "java.lang.Object", "<init>", "()V");
Elliott Hughes7957d542011-09-09 17:16:01 -0700354 AssertStaticIntMethod(333, LoadDex("IntMath"), "IntMath", "testIGetPut", "(I)I", 111);
buzbeedd3efae2011-08-28 14:39:07 -0700355}
356
buzbee109bd6a2011-09-06 13:58:41 -0700357TEST_F(CompilerTest, InvokeTest) {
358 CompileDirectMethod(NULL, "java.lang.Object", "<init>", "()V");
Elliott Hughes7957d542011-09-09 17:16:01 -0700359 AssertStaticIntMethod(20664, LoadDex("Invoke"), "Invoke", "test0", "(I)I", 912);
buzbee109bd6a2011-09-06 13:58:41 -0700360}
361
buzbeec143c552011-08-20 17:38:58 -0700362} // namespace art