diff options
| author | 2015-04-10 16:47:48 +0000 | |
|---|---|---|
| committer | 2015-04-10 16:47:49 +0000 | |
| commit | 6977899440206c7b0a9a3e38650338fd052666f9 (patch) | |
| tree | f8275a45d82630449b0c9450853efe21d2026075 /compiler/compiler.h | |
| parent | 8e5fc53bd2f9ab5a46547959a176eba176ee115f (diff) | |
| parent | 3773cd046b1c34569f4711666788bf8a389c7857 (diff) | |
Merge "ART: Remove WriteElf from Compiler"
Diffstat (limited to 'compiler/compiler.h')
| -rw-r--r-- | compiler/compiler.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/compiler/compiler.h b/compiler/compiler.h index a04641e3fa..94b0fe33db 100644 --- a/compiler/compiler.h +++ b/compiler/compiler.h @@ -63,13 +63,6 @@ class Compiler { virtual uintptr_t GetEntryPointOf(mirror::ArtMethod* method) const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) = 0; - virtual bool WriteElf(art::File* file, - OatWriter* oat_writer, - const std::vector<const art::DexFile*>& dex_files, - const std::string& android_root, - bool is_host) const - SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) = 0; - uint64_t GetMaximumCompilationTimeBeforeWarning() const { return maximum_compilation_time_before_warning_; } @@ -107,9 +100,6 @@ class Compiler { return driver_; } - // Whether to produce 64-bit ELF files for 64-bit targets. Leave this off for now. - static constexpr bool kProduce64BitELFFiles = false; - private: CompilerDriver* const driver_; const uint64_t maximum_compilation_time_before_warning_; |