summaryrefslogtreecommitdiff
path: root/src/compiler.h
diff options
context:
space:
mode:
author Logan Chien <loganchien@google.com> 2012-05-01 15:47:55 +0800
committer Shih-wei Liao <sliao@google.com> 2012-06-27 03:47:58 -0700
commit971bf3f9184010d68b9a3ad30b396fa401af91a3 (patch)
tree493e80309ce41fd21359da8093fbebfd21b7936c /src/compiler.h
parent468a7b1fcb2114ec973e31b5276daea0be62c198 (diff)
Compile method one-by-one.
Change-Id: Ic56fb397f3bd6dee32372eb875261a3383eaf30c
Diffstat (limited to 'src/compiler.h')
-rw-r--r--src/compiler.h29
1 files changed, 0 insertions, 29 deletions
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<ElfImage> 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<ElfImage> GetElfImages() const {
- return std::vector<ElfImage>();
- }
-#endif
-
void SetCompilerContext(void* compiler_context) {
compiler_context_ = compiler_context;
}