blob: 6a2f81e130d16e8a8763ec901561aacf8d2ba0aa [file] [log] [blame]
// Copyright 2011 Google Inc. All Rights Reserved.
#include "class_linker.h"
#include "common_test.h"
#include "compiler.h"
#include "compiler_test.h"
#include "dex_cache.h"
#include "dex_file.h"
#include "heap.h"
#include "object.h"
#include "scoped_ptr.h"
#include <stdint.h>
#include <stdio.h>
namespace art {
class CompilerTest : public CommonTest {
protected:
void CompileDex(const char* base64_dex, const char* base64_name) {
dex_file_.reset(OpenDexFileBase64(base64_dex, base64_name));
class_linker_->RegisterDexFile(*dex_file_.get());
std::vector<const DexFile*> class_path;
class_path.push_back(dex_file_.get());
Compiler compiler;
const ClassLoader* class_loader = compiler.Compile(class_path);
Thread::Current()->SetClassLoaderOverride(class_loader);
}
void AssertStaticIntMethod(const char* klass, const char* method, const char* signature,
jint expected, ...) {
JNIEnv* env = Thread::Current()->GetJniEnv();
jclass c = env->FindClass(klass);
CHECK(c != NULL);
jmethodID m = env->GetStaticMethodID(c, method, signature);
CHECK(m != NULL);
#if defined(__arm__)
va_list args;
va_start(args, expected);
jint result = env->CallStaticIntMethodV(c, m, args);
va_end(args);
LOG(INFO) << klass << "." << method << "(...) result is " << result;
EXPECT_EQ(expected, result);
#endif // __arm__
}
void AssertStaticLongMethod(const char* klass, const char* method,
const char* signature, jlong expected, ...) {
JNIEnv* env = Thread::Current()->GetJniEnv();
jclass c = env->FindClass(klass);
CHECK(c != NULL);
jmethodID m = env->GetStaticMethodID(c, method, signature);
CHECK(m != NULL);
#if defined(__arm__)
va_list args;
va_start(args, expected);
jlong result = env->CallStaticLongMethodV(c, m, args);
va_end(args);
LOG(INFO) << klass << "." << method << "(...) result is " << result;
EXPECT_EQ(expected, result);
#endif // __arm__
}
private:
scoped_ptr<DexFile> dex_file_;
};
TEST_F(CompilerTest, CompileDexLibCore) {
// TODO renenable when compiler can handle libcore
if (true) {
return;
}
Compiler compiler;
compiler.Compile(boot_class_path_);
// All libcore references should resolve
const DexFile* dex = java_lang_dex_file_.get();
DexCache* dex_cache = class_linker_->FindDexCache(*dex);
EXPECT_EQ(dex->NumStringIds(), dex_cache->NumStrings());
for (size_t i = 0; i < dex_cache->NumStrings(); i++) {
String* string = dex_cache->GetResolvedString(i);
EXPECT_TRUE(string != NULL);
}
EXPECT_EQ(dex->NumTypeIds(), dex_cache->NumTypes());
for (size_t i = 0; i < dex_cache->NumTypes(); i++) {
Class* type = dex_cache->GetResolvedType(i);
EXPECT_TRUE(type != NULL);
}
EXPECT_EQ(dex->NumMethodIds(), dex_cache->NumMethods());
for (size_t i = 0; i < dex_cache->NumMethods(); i++) {
Method* method = dex_cache->GetResolvedMethod(i);
EXPECT_TRUE(method != NULL);
}
EXPECT_EQ(dex->NumFieldIds(), dex_cache->NumFields());
for (size_t i = 0; i < dex_cache->NumFields(); i++) {
Field* field = dex_cache->GetResolvedField(i);
EXPECT_TRUE(field != NULL);
}
// TODO check Class::IsVerified for all classes
// TODO: check that all Method::GetCode() values are non-null
EXPECT_EQ(dex->NumMethodIds(), dex_cache->NumCodeAndMethods());
CodeAndMethods* code_and_methods = dex_cache->GetCodeAndMethods();
for (size_t i = 0; i < dex_cache->NumCodeAndMethods(); i++) {
Method* method = dex_cache->GetResolvedMethod(i);
EXPECT_EQ(method->GetCode(), code_and_methods->GetResolvedCode(i));
EXPECT_EQ(method, code_and_methods->GetResolvedMethod(i));
}
}
TEST_F(CompilerTest, BasicCodegen) {
CompileDex(kFibonacciDex, "kFibonacciDex");
AssertStaticIntMethod("Fibonacci", "fibonacci", "(I)I", 55,
10);
}
TEST_F(CompilerTest, UnopTest) {
CompileDex(kIntMathDex, "kIntMathDex");
AssertStaticIntMethod("IntMath", "unopTest", "(I)I", 37,
38);
}
TEST_F(CompilerTest, ShiftTest1) {
CompileDex(kIntMathDex, "kIntMathDex");
AssertStaticIntMethod("IntMath", "shiftTest1", "()I", 0);
}
TEST_F(CompilerTest, ShiftTest2) {
CompileDex(kIntMathDex, "kIntMathDex");
AssertStaticIntMethod("IntMath", "shiftTest2", "()I", 0);
}
TEST_F(CompilerTest, UnsignedShiftTest) {
CompileDex(kIntMathDex, "kIntMathDex");
AssertStaticIntMethod("IntMath", "unsignedShiftTest", "()I", 0);
}
TEST_F(CompilerTest, ConvTest) {
CompileDex(kIntMathDex, "kIntMathDex");
AssertStaticIntMethod("IntMath", "convTest", "()I", 0);
}
TEST_F(CompilerTest, CharSubTest) {
CompileDex(kIntMathDex, "kIntMathDex");
AssertStaticIntMethod("IntMath", "charSubTest", "()I", 0);
}
TEST_F(CompilerTest, IntOperTest) {
CompileDex(kIntMathDex, "kIntMathDex");
AssertStaticIntMethod("IntMath", "intOperTest", "(II)I", 0,
70000, -3);
}
TEST_F(CompilerTest, Lit16Test) {
CompileDex(kIntMathDex, "kIntMathDex");
AssertStaticIntMethod("IntMath", "lit16Test", "(I)I", 0,
77777);
}
TEST_F(CompilerTest, Lit8Test) {
CompileDex(kIntMathDex, "kIntMathDex");
AssertStaticIntMethod("IntMath", "lit8Test", "(I)I", 0,
-55555);
}
TEST_F(CompilerTest, IntShiftTest) {
CompileDex(kIntMathDex, "kIntMathDex");
AssertStaticIntMethod("IntMath", "intShiftTest", "(II)I", 0,
0xff00aa01, 8);
}
TEST_F(CompilerTest, LongOperTest) {
CompileDex(kIntMathDex, "kIntMathDex");
AssertStaticIntMethod("IntMath", "longOperTest", "(JJ)I", 0,
70000000000LL, -3LL);
}
TEST_F(CompilerTest, LongShiftTest) {
CompileDex(kIntMathDex, "kIntMathDex");
AssertStaticLongMethod("IntMath", "longShiftTest", "(JI)J",
0x96deff00aa010000LL, 0xd5aa96deff00aa01LL, 16);
}
TEST_F(CompilerTest, SwitchTest1) {
CompileDex(kIntMathDex, "kIntMathDex");
AssertStaticIntMethod("IntMath", "switchTest", "(I)I", 1234,
1);
}
TEST_F(CompilerTest, IntCompare) {
CompileDex(kIntMathDex, "kIntMathDex");
AssertStaticIntMethod("IntMath", "testIntCompare", "(IIII)I", 1111,
-5, 4, 4, 0);
}
TEST_F(CompilerTest, LongCompare) {
CompileDex(kIntMathDex, "kIntMathDex");
AssertStaticIntMethod("IntMath", "testLongCompare", "(JJJJ)I", 2222,
-5LL, -4294967287LL, 4LL, 8LL);
}
TEST_F(CompilerTest, FloatCompare) {
CompileDex(kIntMathDex, "kIntMathDex");
AssertStaticIntMethod("IntMath", "testFloatCompare", "(FFFF)I", 3333,
-5.0f, 4.0f, 4.0f,
(1.0f/0.0f) / (1.0f/0.0f));
}
TEST_F(CompilerTest, DoubleCompare) {
CompileDex(kIntMathDex, "kIntMathDex");
AssertStaticIntMethod("IntMath", "testDoubleCompare", "(DDDD)I", 4444,
-5.0, 4.0, 4.0,
(1.0/0.0) / (1.0/0.0));
}
TEST_F(CompilerTest, RecursiveFibonacci) {
CompileDex(kIntMathDex, "kIntMathDex");
AssertStaticIntMethod("IntMath", "fibonacci", "(I)I", 55,
10);
}
#if 0 // Need to complete try/catch block handling
TEST_F(CompilerTest, ThrowAndCatch) {
CompileDex(kIntMathDex, "kIntMathDex");
AssertStaticIntMethod("IntMath", "throwAndCatch", "()I", 4);
}
#endif
TEST_F(CompilerTest, ManyArgs) {
CompileDex(kIntMathDex, "kIntMathDex");
AssertStaticIntMethod("IntMath", "manyArgs",
"(IJIJIJIIDFDSICIIBZIIJJIIIII)I", -1,
0, 1LL, 2, 3LL, 4, 5LL, 6, 7, 8.0, 9.0f, 10.0,
(short)11, 12, (char)13, 14, 15, (int8_t)-16, true, 18,
19, 20LL, 21LL, 22, 23, 24, 25, 26);
}
#if 0 // Need bdc's new Alloc(Method*, type_idx, [length])
TEST_F(CompilerTest, VirtualCall) {
CompileDex(kIntMathDex, "kIntMathDex");
AssertStaticIntMethod("IntMath", "staticCall", "(I)I", 6,
3);
}
#endif
} // namespace art