diff options
author | Mathieu Chartier <mathieuc@google.com> | 2013-08-29 22:56:21 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2013-08-29 22:56:21 +0000 |
commit | 01e9779ad3860a44bc356d4734957bbbd6b77e48 (patch) | |
tree | 538153ce2f96145735afab38e0413028e6a22e8f /oatdump | |
parent | 4bf1c8d4f2127caf769573d7c762a5d460a2781f (diff) | |
parent | 31e8925781c2302f1d1a9b39e216ba415bfe0d7e (diff) | |
download | art-01e9779ad3860a44bc356d4734957bbbd6b77e48.zip art-01e9779ad3860a44bc356d4734957bbbd6b77e48.tar.gz art-01e9779ad3860a44bc356d4734957bbbd6b77e48.tar.bz2 |
Merge "Write out image bitmap inside of image file." into klp-dev
Diffstat (limited to 'oatdump')
-rw-r--r-- | oatdump/oatdump.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/oatdump/oatdump.cc b/oatdump/oatdump.cc index 0227381..d683c8e 100644 --- a/oatdump/oatdump.cc +++ b/oatdump/oatdump.cc @@ -675,6 +675,9 @@ class ImageDumper { os << "IMAGE BEGIN: " << reinterpret_cast<void*>(image_header_.GetImageBegin()) << "\n\n"; + os << "IMAGE BITMAP OFFSET: " << reinterpret_cast<void*>(image_header_.GetImageBitmapOffset()) + << " SIZE: " << reinterpret_cast<void*>(image_header_.GetImageBitmapSize()) << "\n\n"; + os << "OAT CHECKSUM: " << StringPrintf("0x%08x\n\n", image_header_.GetOatChecksum()); os << "OAT FILE BEGIN:" << reinterpret_cast<void*>(image_header_.GetOatFileBegin()) << "\n\n"; |