diff options
author | 2016-07-15 15:28:35 +0100 | |
---|---|---|
committer | 2016-09-30 10:44:31 +0100 | |
commit | 762869dee6e0eadab5be1c606792d6693bbabf4e (patch) | |
tree | 8c986c621e8a5f3cf4e4e3b2cc13b400401ad89b /compiler/oat_test.cc | |
parent | b4cf427734c6839b46d0d6037e3189a5e8aa1bdb (diff) |
Simplify our intrinsic recognizer.
- Use the modifiers for storing the intrinsic kind.
- Delete dex_file_method_inliner and its associated map.
This work was also motivated by the fact that the inline
method analyzer leaks intrinsic tables, and even worse, might re-use
a table from one dex file to another unrelated dex file in the presence
of class unloading and the unlikely event of the dex files getting
the same address.
test: m test-art-host m test-art-target
Change-Id: Ia653d2c72df13889dc85dd8c84997582c034ea4b
Diffstat (limited to 'compiler/oat_test.cc')
-rw-r--r-- | compiler/oat_test.cc | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/compiler/oat_test.cc b/compiler/oat_test.cc index c392dc504d..e8bc67d967 100644 --- a/compiler/oat_test.cc +++ b/compiler/oat_test.cc @@ -23,7 +23,6 @@ #include "compiled_method.h" #include "compiler.h" #include "debug/method_debug_info.h" -#include "dex/quick/dex_file_to_method_inliner_map.h" #include "dex/quick_compiler_callbacks.h" #include "dex/verification_results.h" #include "driver/compiler_driver.h" @@ -100,15 +99,12 @@ class OatTest : public CommonCompilerTest { compiler_options_->ParseCompilerOption(option, Usage); } verification_results_.reset(new VerificationResults(compiler_options_.get())); - method_inliner_map_.reset(new DexFileToMethodInlinerMap); callbacks_.reset(new QuickCompilerCallbacks(verification_results_.get(), - method_inliner_map_.get(), CompilerCallbacks::CallbackMode::kCompileApp)); Runtime::Current()->SetCompilerCallbacks(callbacks_.get()); timer_.reset(new CumulativeLogger("Compilation times")); compiler_driver_.reset(new CompilerDriver(compiler_options_.get(), verification_results_.get(), - method_inliner_map_.get(), compiler_kind, insn_set, insn_features_.get(), |