blob: d1605a7ef3711a3d0bdca116bb47db1e5802560a [file] [log] [blame]
// Copyright 2011 Google Inc. All Rights Reserved.
#include "compiler.h"
#include "assembler.h"
#include "class_linker.h"
#include "dex_cache.h"
#include "jni_compiler.h"
extern bool oatCompileMethod(art::Method*, art::InstructionSet);
namespace art {
// TODO need to specify target
const ClassLoader* Compiler::Compile(std::vector<const DexFile*> class_path) {
const ClassLoader* class_loader = PathClassLoader::Alloc(class_path);
Resolve(class_loader);
// TODO add verification step
Compile(class_loader);
SetCodeAndMethod(class_loader);
return class_loader;
}
void Compiler::Resolve(const ClassLoader* class_loader) {
const std::vector<const DexFile*>& class_path = class_loader->GetClassPath();
for (size_t i = 0; i != class_path.size(); ++i) {
const DexFile* dex_file = class_path[i];
CHECK(dex_file != NULL);
ResolveDexFile(class_loader, *dex_file);
}
}
void Compiler::ResolveDexFile(const ClassLoader* class_loader, const DexFile& dex_file) {
ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
// Strings are easy, they always are simply resolved to literals in the same file
DexCache* dex_cache = class_linker->FindDexCache(dex_file);
for (size_t i = 0; i < dex_cache->NumStrings(); i++) {
class_linker->ResolveString(dex_file, i, dex_cache);
}
// Class derived values are more complicated, they require the linker and loader
for (size_t i = 0; i < dex_cache->NumTypes(); i++) {
class_linker->ResolveType(dex_file, i, dex_cache, class_loader);
}
for (size_t i = 0; i < dex_cache->NumMethods(); i++) {
// unknown if direct or virtual, try both
Method* method = class_linker->ResolveMethod(dex_file, i, dex_cache, class_loader, false);
if (method == NULL) {
class_linker->ResolveMethod(dex_file, i, dex_cache, class_loader, true);
}
}
for (size_t i = 0; i < dex_cache->NumFields(); i++) {
// unknown if instance or static, try both
Field* field = class_linker->ResolveField(dex_file, i, dex_cache, class_loader, false);
if (field == NULL) {
class_linker->ResolveField(dex_file, i, dex_cache, class_loader, true);
}
}
}
void Compiler::Compile(const ClassLoader* class_loader) {
const std::vector<const DexFile*>& class_path = class_loader->GetClassPath();
for (size_t i = 0; i != class_path.size(); ++i) {
const DexFile* dex_file = class_path[i];
CHECK(dex_file != NULL);
CompileDexFile(class_loader, *dex_file);
}
}
void Compiler::CompileDexFile(const ClassLoader* class_loader, const DexFile& dex_file) {
ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
for (size_t i = 0; i < dex_file.NumClassDefs(); i++) {
const DexFile::ClassDef& class_def = dex_file.GetClassDef(i);
const char* descriptor = dex_file.GetClassDescriptor(class_def);
Class* klass = class_linker->FindClass(descriptor, class_loader);
CHECK(klass != NULL);
CompileClass(klass);
}
}
void Compiler::CompileClass(Class* klass) {
for (size_t i = 0; i < klass->NumDirectMethods(); i++) {
CompileMethod(klass->GetDirectMethod(i));
}
for (size_t i = 0; i < klass->NumVirtualMethods(); i++) {
CompileMethod(klass->GetVirtualMethod(i));
}
}
void Compiler::CompileMethod(Method* method) {
if (method->IsNative()) {
// TODO note code will be unmapped when JniCompiler goes out of scope
Assembler jni_asm;
JniCompiler jni_compiler;
jni_compiler.Compile(&jni_asm, method);
} else if (method->IsAbstract()) {
// TODO: This might be also noted in the ClassLinker.
// Probably makes more sense to do here?
UNIMPLEMENTED(FATAL) << "compile stub to throw AbstractMethodError";
} else {
oatCompileMethod(method, kThumb2);
}
// CHECK(method->HasCode()); // TODO: enable this check ASAP
}
void Compiler::SetCodeAndMethod(const ClassLoader* class_loader) {
const std::vector<const DexFile*>& class_path = class_loader->GetClassPath();
for (size_t i = 0; i != class_path.size(); ++i) {
const DexFile* dex_file = class_path[i];
CHECK(dex_file != NULL);
SetCodeAndMethodDexFile(class_loader, *dex_file);
}
}
void Compiler::SetCodeAndMethodDexFile(const ClassLoader* class_loader, const DexFile& dex_file) {
ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
DexCache* dex_cache = class_linker->FindDexCache(dex_file);
CodeAndMethods* code_and_methods = dex_cache->GetCodeAndMethods();
for (size_t i = 0; i < dex_cache->NumMethods(); i++) {
Method* method = dex_cache->GetResolvedMethod(i);
if (method != NULL) {
code_and_methods->SetResolvedMethod(i, method);
}
}
}
} // namespace art