diff options
author | 2018-01-24 18:17:55 -0800 | |
---|---|---|
committer | 2018-02-05 13:38:20 -0800 | |
commit | 279e3a3499d208daf467a1690b111dfb06f3e96e (patch) | |
tree | 74c7d6d860bea25aabae47dc0ca95bafb0571f8e /compiler/compiled_method.cc | |
parent | ca6f1c0cb7655e90237583c1b6b771d3c8aae95d (diff) |
Enable code item deduping
Dedupe code items if they have the same contents, this is safe
because of the fixed quickening logic.
Removed duplicate code items in ManyMethods that caused the startup
methods section to be empty in dex2oat_test.
To avoid errors related to quickening and compilation of shared code
items, quickening is currently disabled for shared code items.
Bug: 63756964
Test: test-art-host
Change-Id: I7c62eb746785d787c5269effd396f7be4859d3a6
Diffstat (limited to 'compiler/compiled_method.cc')
-rw-r--r-- | compiler/compiled_method.cc | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/compiler/compiled_method.cc b/compiler/compiled_method.cc index 0f69dbab94..e41371855d 100644 --- a/compiler/compiled_method.cc +++ b/compiler/compiled_method.cc @@ -159,10 +159,4 @@ CompiledMethod::~CompiledMethod() { storage->ReleaseMethodInfo(method_info_); } -void CompiledMethod::ReleaseVMapTable() { - CompiledMethodStorage* storage = GetCompilerDriver()->GetCompiledMethodStorage(); - storage->ReleaseVMapTable(vmap_table_); - vmap_table_ = nullptr; -} - } // namespace art |