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/driver/compiler_driver.h | 7 ------- 1 file changed, 7 deletions(-) (limited to 'compiler/driver/compiler_driver.h') diff --git a/compiler/driver/compiler_driver.h b/compiler/driver/compiler_driver.h index 41f0d36c79..52a04cc46b 100644 --- a/compiler/driver/compiler_driver.h +++ b/compiler/driver/compiler_driver.h @@ -57,7 +57,6 @@ class CompiledClass; class CompiledMethod; class CompilerOptions; class DexCompilationUnit; -class DexFileToMethodInlinerMap; struct InlineIGetIPutData; class InstructionSetFeatures; class ParallelCompilationManager; @@ -88,7 +87,6 @@ class CompilerDriver { // classes. CompilerDriver(const CompilerOptions* compiler_options, VerificationResults* verification_results, - DexFileToMethodInlinerMap* method_inliner_map, Compiler::Kind compiler_kind, InstructionSet instruction_set, const InstructionSetFeatures* instruction_set_features, @@ -133,10 +131,6 @@ class CompilerDriver { return verification_results_; } - DexFileToMethodInlinerMap* GetMethodInlinerMap() const { - return method_inliner_map_; - } - InstructionSet GetInstructionSet() const { return instruction_set_; } @@ -603,7 +597,6 @@ class CompilerDriver { const CompilerOptions* const compiler_options_; VerificationResults* const verification_results_; - DexFileToMethodInlinerMap* const method_inliner_map_; std::unique_ptr compiler_; Compiler::Kind compiler_kind_; -- cgit v1.2.3-59-g8ed1b