summaryrefslogtreecommitdiff
path: root/compiler/driver/compiler_driver.h
diff options
context:
space:
mode:
author Treehugger Robot <treehugger-gerrit@google.com> 2018-02-05 19:41:14 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2018-02-05 19:41:14 +0000
commit199f72b1b502a7e72cf745efe21679d03d3660dd (patch)
tree60e8ce93f92ef16f0f27cc3cff2589661a2fa49b /compiler/driver/compiler_driver.h
parente0d8bd4b7ffdd60d430f1637e20c5fc1ce5a5d86 (diff)
parent3c060ad0ff25d8231d5a93ac17ec0f30150034dd (diff)
Merge "ART: Refactor dex2dex compilation"
Diffstat (limited to 'compiler/driver/compiler_driver.h')
-rw-r--r--compiler/driver/compiler_driver.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/compiler/driver/compiler_driver.h b/compiler/driver/compiler_driver.h
index b51e0debbb..e32b5c4fd3 100644
--- a/compiler/driver/compiler_driver.h
+++ b/compiler/driver/compiler_driver.h
@@ -374,10 +374,6 @@ class CompilerDriver {
|| android::base::EndsWith(boot_image_filename, "core-optimizing.art");
}
- bool GetCompilingDexToDex() const {
- return compiling_dex_to_dex_;
- }
-
optimizer::DexToDexCompiler& GetDexToDexCompiler() {
return dex_to_dex_compiler_;
}
@@ -449,13 +445,6 @@ class CompilerDriver {
void Compile(jobject class_loader,
const std::vector<const DexFile*>& dex_files,
TimingLogger* timings);
- void CompileDexFile(jobject class_loader,
- const DexFile& dex_file,
- const std::vector<const DexFile*>& dex_files,
- ThreadPool* thread_pool,
- size_t thread_count,
- TimingLogger* timings)
- REQUIRES(!Locks::mutator_lock_);
bool MayInlineInternal(const DexFile* inlined_from, const DexFile* inlined_into) const;
@@ -541,7 +530,6 @@ class CompilerDriver {
size_t max_arena_alloc_;
// Compiler for dex to dex (quickening).
- bool compiling_dex_to_dex_;
optimizer::DexToDexCompiler dex_to_dex_compiler_;
friend class CompileClassVisitor;