summaryrefslogtreecommitdiff
path: root/compiler/optimizing/stack_map_stream.h
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 /compiler/optimizing/stack_map_stream.h
parente24c69db699cf92b9ee4182442be3066ce1be762 (diff)
parent2c76257e4bfcd6f522b0cd3487ba7d9900043243 (diff)
Merge "Remove unused InvokeInfo from stack maps and the runtime."
Diffstat (limited to 'compiler/optimizing/stack_map_stream.h')
-rw-r--r--compiler/optimizing/stack_map_stream.h4
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_;