From 971bf3f9184010d68b9a3ad30b396fa401af91a3 Mon Sep 17 00:00:00 2001 From: Logan Chien Date: Tue, 1 May 2012 15:47:55 +0800 Subject: Compile method one-by-one. Change-Id: Ic56fb397f3bd6dee32372eb875261a3383eaf30c --- src/compiler.h | 29 ----------------------------- 1 file changed, 29 deletions(-) (limited to 'src/compiler.h') diff --git a/src/compiler.h b/src/compiler.h index 5202967323..46d3647ac2 100644 --- a/src/compiler.h +++ b/src/compiler.h @@ -25,7 +25,6 @@ #include "compiled_method.h" #include "dex_cache.h" #include "dex_file.h" -#include "elf_image.h" #include "instruction_set.h" #include "invoke_type.h" #include "oat_file.h" @@ -146,34 +145,6 @@ class Compiler { void SetBitcodeFileName(std::string const& filename); #endif -#if defined(ART_USE_LLVM_COMPILER) - void EnableAutoElfLoading(); - - const void* GetMethodCodeAddr(const CompiledMethod* cm, - const Method* method) const; - - const Method::InvokeStub* GetMethodInvokeStubAddr(const CompiledInvokeStub* cm, - const Method* method) const; - - std::vector GetElfImages() const; -#else - void EnableAutoElfLoader() { } - - const void* GetMethodCodeAddr(const CompiledMethod*, - const Method*) const { - return NULL; - } - - const Method::InvokeStub* GetMethodInvokeStubAddr(const CompiledInvokeStub*, - const Method*) const { - return NULL; - } - - std::vector GetElfImages() const { - return std::vector(); - } -#endif - void SetCompilerContext(void* compiler_context) { compiler_context_ = compiler_context; } -- cgit v1.2.3-59-g8ed1b