diff options
Diffstat (limited to 'compiler/oat_writer.h')
| -rw-r--r-- | compiler/oat_writer.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/compiler/oat_writer.h b/compiler/oat_writer.h index f2fe048174..7027434cca 100644 --- a/compiler/oat_writer.h +++ b/compiler/oat_writer.h @@ -93,6 +93,7 @@ class OatWriter { int32_t image_patch_delta, const CompilerDriver* compiler, ImageWriter* image_writer, + bool compiling_boot_image, TimingLogger* timings, SafeMap<std::string, std::string>* key_value_store); @@ -103,6 +104,10 @@ class OatWriter { return image_writer_ != nullptr; } + bool HasBootImage() const { + return compiling_boot_image_; + } + const OatHeader& GetOatHeader() const { return *oat_header_; } @@ -279,6 +284,7 @@ class OatWriter { const CompilerDriver* const compiler_driver_; ImageWriter* const image_writer_; + const bool compiling_boot_image_; // note OatFile does not take ownership of the DexFiles const std::vector<const DexFile*>* dex_files_; |