diff options
author | 2015-11-25 14:33:36 +0000 | |
---|---|---|
committer | 2015-11-30 18:19:44 +0000 | |
commit | 10c13565474de2786aad7c2e79757ea250747a15 (patch) | |
tree | 759bdf7aab97ab45e1a3e09f5d627e568f6e7084 /compiler/driver/compiler_driver.h | |
parent | e928dc587718d00d234768f76d1efb2ffe74e885 (diff) |
Refactor oat file writing to give Dex2Oat more control.
This is the first step towards writing dex files to oat file
and mapping them from there for the actual AOT compilation.
Change-Id: Icb0d27487eaf6ba3a66c157e695f9bdc5bb9cf9a
Diffstat (limited to 'compiler/driver/compiler_driver.h')
-rw-r--r-- | compiler/driver/compiler_driver.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/compiler/driver/compiler_driver.h b/compiler/driver/compiler_driver.h index d90d6100b9..1347b37fa0 100644 --- a/compiler/driver/compiler_driver.h +++ b/compiler/driver/compiler_driver.h @@ -59,7 +59,6 @@ class DexCompilationUnit; class DexFileToMethodInlinerMap; struct InlineIGetIPutData; class InstructionSetFeatures; -class OatWriter; class ParallelCompilationManager; class ScopedObjectAccess; template <class Allocator> class SrcMap; @@ -398,12 +397,6 @@ class CompilerDriver { support_boot_image_fixup_ = support_boot_image_fixup; } - bool WriteElf(const std::string& android_root, - bool is_host, - const std::vector<const DexFile*>& dex_files, - OatWriter* oat_writer, - File* file); - void SetCompilerContext(void* compiler_context) { compiler_context_ = compiler_context; } |