summaryrefslogtreecommitdiff
path: root/src/compiler.h
diff options
context:
space:
mode:
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;
}