summaryrefslogtreecommitdiff
path: root/runtime/oat.h
diff options
context:
space:
mode:
author David Srbecky <dsrbecky@google.com> 2018-06-23 22:05:49 +0100
committer David Srbecky <dsrbecky@google.com> 2018-06-26 16:51:15 +0100
commitf6ba5b316b51d0fb9f91cb51a42e51dfeee62ee4 (patch)
treeac3b776ae3c20fc957949d06dd878ef3ffa6ffb5 /runtime/oat.h
parentcca7cb9ffa56d8ab8fd0c5997c8bfd965d7426c1 (diff)
Add method frame info to CodeInfo.
The stored information will be used in follow-up CLs. This temporarily increases .oat file size by 0.7%. Test: test-art-host-gtest Change-Id: Ie7d898b06398ae44287bb1e8153861ab112a216c
Diffstat (limited to 'runtime/oat.h')
-rw-r--r--runtime/oat.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/oat.h b/runtime/oat.h
index 22c6a39e09..02fad46a0d 100644
--- a/runtime/oat.h
+++ b/runtime/oat.h
@@ -32,8 +32,8 @@ class InstructionSetFeatures;
class PACKED(4) OatHeader {
public:
static constexpr uint8_t kOatMagic[] = { 'o', 'a', 't', '\n' };
- // Last oat version changed reason: Add Kind column to stack maps.
- static constexpr uint8_t kOatVersion[] = { '1', '4', '9', '\0' };
+ // Last oat version changed reason: Add method frame info to CodeInfo.
+ static constexpr uint8_t kOatVersion[] = { '1', '5', '0', '\0' };
static constexpr const char* kImageLocationKey = "image-location";
static constexpr const char* kDex2OatCmdLineKey = "dex2oat-cmdline";