From 2c76257e4bfcd6f522b0cd3487ba7d9900043243 Mon Sep 17 00:00:00 2001 From: David Srbecky Date: Wed, 27 Jun 2018 10:09:11 +0100 Subject: Remove unused InvokeInfo from stack maps and the runtime. Test: test-art-host-gtest Change-Id: I5ce28973042f9241e72ceb52fc5db472ca571563 --- compiler/optimizing/stack_map_stream.h | 4 ---- 1 file changed, 4 deletions(-) (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 ed865b12f7..203c2cdf84 100644 --- a/compiler/optimizing/stack_map_stream.h +++ b/compiler/optimizing/stack_map_stream.h @@ -42,7 +42,6 @@ class StackMapStream : public ValueObject { stack_maps_(allocator), register_masks_(allocator), stack_masks_(allocator), - invoke_infos_(allocator), inline_infos_(allocator), dex_register_masks_(allocator), dex_register_maps_(allocator), @@ -76,8 +75,6 @@ class StackMapStream : public ValueObject { current_dex_registers_.push_back(DexRegisterLocation(kind, value)); } - void AddInvoke(InvokeType type, uint32_t dex_method_index); - void BeginInlineInfoEntry(ArtMethod* method, uint32_t dex_pc, uint32_t num_dex_registers, @@ -112,7 +109,6 @@ class StackMapStream : public ValueObject { BitTableBuilder stack_maps_; BitTableBuilder register_masks_; BitmapTableBuilder stack_masks_; - BitTableBuilder invoke_infos_; BitTableBuilder inline_infos_; BitmapTableBuilder dex_register_masks_; BitTableBuilder dex_register_maps_; -- cgit v1.2.3-59-g8ed1b