diff options
author | David Srbecky <dsrbecky@google.com> | 2018-06-27 10:09:11 +0100 |
---|---|---|
committer | David Srbecky <dsrbecky@google.com> | 2018-07-13 16:32:11 +0100 |
commit | 2c76257e4bfcd6f522b0cd3487ba7d9900043243 (patch) | |
tree | ab1098cffcb3e13087e770d26fef9f4d6f06a550 /compiler/optimizing/stack_map_stream.h | |
parent | 0b4a439f808f4602c7b97364e49c5546f5100d51 (diff) |
Remove unused InvokeInfo from stack maps and the runtime.
Test: test-art-host-gtest
Change-Id: I5ce28973042f9241e72ceb52fc5db472ca571563
Diffstat (limited to 'compiler/optimizing/stack_map_stream.h')
-rw-r--r-- | compiler/optimizing/stack_map_stream.h | 4 |
1 files changed, 0 insertions, 4 deletions
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<StackMap> stack_maps_; BitTableBuilder<RegisterMask> register_masks_; BitmapTableBuilder stack_masks_; - BitTableBuilder<InvokeInfo> invoke_infos_; BitTableBuilder<InlineInfo> inline_infos_; BitmapTableBuilder dex_register_masks_; BitTableBuilder<MaskInfo> dex_register_maps_; |