From 3aaaa21055ab73562b8da7968ac4fa5fe9d44695 Mon Sep 17 00:00:00 2001 From: David Srbecky Date: Mon, 30 Jul 2018 16:46:53 +0100 Subject: Encode frame info using varints. This saves 0.3% of oat file size. Test: test-art-host-gtest-stack_map_test Change-Id: I85003946a9579f03cb1ed2b5e9b2c62b3efe6734 --- compiler/optimizing/stack_map_stream.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'compiler/optimizing/stack_map_stream.h') diff --git a/compiler/optimizing/stack_map_stream.h b/compiler/optimizing/stack_map_stream.h index de79f4921e..a5f7ff3a49 100644 --- a/compiler/optimizing/stack_map_stream.h +++ b/compiler/optimizing/stack_map_stream.h @@ -98,7 +98,7 @@ class StackMapStream : public ValueObject { void CreateDexRegisterMap(); const InstructionSet instruction_set_; - uint32_t frame_size_in_bytes_ = 0; + uint32_t packed_frame_size_ = 0; uint32_t core_spill_mask_ = 0; uint32_t fp_spill_mask_ = 0; uint32_t num_dex_registers_ = 0; -- cgit v1.2.3-59-g8ed1b