From df57614aa99801a50202e284ee8e8497d8e92621 Mon Sep 17 00:00:00 2001 From: Logan Chien Date: Tue, 20 Mar 2012 17:36:32 +0800 Subject: Add GetElfImages() method to CompilerLLVM. (cherry picked from commit 950fc6e6a6b568f0cf511c092bee3d31547dc857) Change-Id: I1ded5909bae4d87ed05b2c192fcb2362eaa37461 --- src/compiler_llvm/compiler_llvm.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/compiler_llvm/compiler_llvm.h') diff --git a/src/compiler_llvm/compiler_llvm.h b/src/compiler_llvm/compiler_llvm.h index f5a282a845..90537ff2ee 100644 --- a/src/compiler_llvm/compiler_llvm.h +++ b/src/compiler_llvm/compiler_llvm.h @@ -17,6 +17,7 @@ #ifndef ART_SRC_COMPILER_LLVM_COMPILER_LLVM_H_ #define ART_SRC_COMPILER_LLVM_COMPILER_LLVM_H_ +#include "compiler.h" #include "constants.h" #include "dex_file.h" #include "elf_image.h" @@ -26,6 +27,8 @@ #include #include +#include +#include namespace art { class ClassLoader; @@ -101,6 +104,8 @@ class CompilerLLVM { const CompiledInvokeStub* cm, const Method* method) const; + std::vector GetElfImages() const; + CompiledMethod* CompileDexMethod(OatCompilationUnit* oat_compilation_unit); CompiledMethod* CompileNativeMethod(OatCompilationUnit* oat_compilation_unit); -- cgit v1.2.3-59-g8ed1b