summaryrefslogtreecommitdiff
path: root/compiler/optimizing/stack_map_stream.h
diff options
context:
space:
mode:
authorDavid Srbecky <dsrbecky@google.com>2019-02-25 18:11:53 +0000
committerDavid Srbecky <dsrbecky@google.com>2019-02-27 23:20:07 +0000
commite35ac04a1a9a22b1c4386b27f3a30cd840aa17b1 (patch)
tree951fc00e6ef2a8576c9f6c0a6d7601cd93283199 /compiler/optimizing/stack_map_stream.h
parent8834699a05deb680a36dd3075afb85aee9208f37 (diff)
Don't pack code size in CodeInfo.
The unpacking is tricky for host tooling as we need to propagate ISA. This adds 0.05% to oat file size. Bug: 123510633 Change-Id: I5618db5e5dbe83d8a2bb89aef61cb0b10e336f40
Diffstat (limited to 'compiler/optimizing/stack_map_stream.h')
-rw-r--r--compiler/optimizing/stack_map_stream.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/optimizing/stack_map_stream.h b/compiler/optimizing/stack_map_stream.h
index 164e9021b2..1fea3ef250 100644
--- a/compiler/optimizing/stack_map_stream.h
+++ b/compiler/optimizing/stack_map_stream.h
@@ -99,7 +99,7 @@ class StackMapStream : public DeletableArenaObject<kArenaAllocStackMapStream> {
ScopedArenaAllocator* allocator_;
const InstructionSet instruction_set_;
- uint32_t packed_code_size_ = 0;
+ uint32_t code_size_ = 0;
uint32_t packed_frame_size_ = 0;
uint32_t core_spill_mask_ = 0;
uint32_t fp_spill_mask_ = 0;