From 762869dee6e0eadab5be1c606792d6693bbabf4e Mon Sep 17 00:00:00 2001 From: Nicolas Geoffray Date: Fri, 15 Jul 2016 15:28:35 +0100 Subject: 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 --- compiler/dex/quick_compiler_callbacks.h | 5 ----- 1 file changed, 5 deletions(-) (limited to 'compiler/dex/quick_compiler_callbacks.h') diff --git a/compiler/dex/quick_compiler_callbacks.h b/compiler/dex/quick_compiler_callbacks.h index 824194c7bd..34fd88b498 100644 --- a/compiler/dex/quick_compiler_callbacks.h +++ b/compiler/dex/quick_compiler_callbacks.h @@ -22,19 +22,15 @@ namespace art { class VerificationResults; -class DexFileToMethodInlinerMap; class QuickCompilerCallbacks FINAL : public CompilerCallbacks { public: QuickCompilerCallbacks(VerificationResults* verification_results, - DexFileToMethodInlinerMap* method_inliner_map, CompilerCallbacks::CallbackMode mode) : CompilerCallbacks(mode), verification_results_(verification_results), - method_inliner_map_(method_inliner_map), verifier_deps_(nullptr) { CHECK(verification_results != nullptr); - CHECK(method_inliner_map != nullptr); } ~QuickCompilerCallbacks() { } @@ -59,7 +55,6 @@ class QuickCompilerCallbacks FINAL : public CompilerCallbacks { private: VerificationResults* const verification_results_; - DexFileToMethodInlinerMap* const method_inliner_map_; verifier::VerifierDeps* verifier_deps_; }; -- cgit v1.2.3-59-g8ed1b