summaryrefslogtreecommitdiff
path: root/runtime/stack_map.cc
diff options
context:
space:
mode:
author David Srbecky <dsrbecky@google.com> 2018-07-15 04:46:32 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2018-07-15 04:46:32 +0000
commit2449d6d006dcb685d3b386edcf624e67ef37e12c (patch)
tree044e224023c972e02340927acc3e5b9e518adbc8 /runtime/stack_map.cc
parente24c69db699cf92b9ee4182442be3066ce1be762 (diff)
parent2c76257e4bfcd6f522b0cd3487ba7d9900043243 (diff)
Merge "Remove unused InvokeInfo from stack maps and the runtime."
Diffstat (limited to 'runtime/stack_map.cc')
-rw-r--r--runtime/stack_map.cc3
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);