diff options
author | 2018-06-27 10:09:11 +0100 | |
---|---|---|
committer | 2018-07-13 16:32:11 +0100 | |
commit | 2c76257e4bfcd6f522b0cd3487ba7d9900043243 (patch) | |
tree | ab1098cffcb3e13087e770d26fef9f4d6f06a550 /runtime/stack_map.cc | |
parent | 0b4a439f808f4602c7b97364e49c5546f5100d51 (diff) |
Remove unused InvokeInfo from stack maps and the runtime.
Test: test-art-host-gtest
Change-Id: I5ce28973042f9241e72ceb52fc5db472ca571563
Diffstat (limited to 'runtime/stack_map.cc')
-rw-r--r-- | runtime/stack_map.cc | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/runtime/stack_map.cc b/runtime/stack_map.cc index 7e46eb7e47..9fa9d84993 100644 --- a/runtime/stack_map.cc +++ b/runtime/stack_map.cc @@ -41,7 +41,6 @@ void CodeInfo::Decode(const uint8_t* data) { stack_maps_.Decode(reader); register_masks_.Decode(reader); stack_masks_.Decode(reader); - invoke_infos_.Decode(reader); inline_infos_.Decode(reader); dex_register_masks_.Decode(reader); dex_register_maps_.Decode(reader); @@ -155,7 +154,6 @@ void CodeInfo::AddSizeStats(/*out*/ Stats* parent) const { AddTableSizeStats<StackMap>("StackMaps", stack_maps_, stats); AddTableSizeStats<RegisterMask>("RegisterMasks", register_masks_, stats); AddTableSizeStats<MaskInfo>("StackMasks", stack_masks_, stats); - AddTableSizeStats<InvokeInfo>("InvokeInfos", invoke_infos_, stats); AddTableSizeStats<InlineInfo>("InlineInfos", inline_infos_, stats); AddTableSizeStats<MaskInfo>("DexRegisterMasks", dex_register_masks_, stats); AddTableSizeStats<DexRegisterMapInfo>("DexRegisterMaps", dex_register_maps_, stats); @@ -224,7 +222,6 @@ void CodeInfo::Dump(VariableIndentationOutputStream* vios, DumpTable<StackMap>(vios, "StackMaps", stack_maps_, verbose); DumpTable<RegisterMask>(vios, "RegisterMasks", register_masks_, verbose); DumpTable<MaskInfo>(vios, "StackMasks", stack_masks_, verbose, true /* is_mask */); - DumpTable<InvokeInfo>(vios, "InvokeInfos", invoke_infos_, verbose); DumpTable<InlineInfo>(vios, "InlineInfos", inline_infos_, verbose); DumpTable<MaskInfo>(vios, "DexRegisterMasks", dex_register_masks_, verbose, true /* is_mask */); DumpTable<DexRegisterMapInfo>(vios, "DexRegisterMaps", dex_register_maps_, verbose); |