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/jit/jit_compiler.h | 2 -- 1 file changed, 2 deletions(-) (limited to 'compiler/jit/jit_compiler.h') diff --git a/compiler/jit/jit_compiler.h b/compiler/jit/jit_compiler.h index 18e3155040..ea2747c085 100644 --- a/compiler/jit/jit_compiler.h +++ b/compiler/jit/jit_compiler.h @@ -19,7 +19,6 @@ #include "base/mutex.h" #include "compiled_method.h" -#include "dex/quick/dex_file_to_method_inliner_map.h" #include "driver/compiler_driver.h" #include "driver/compiler_options.h" @@ -49,7 +48,6 @@ class JitCompiler { private: std::unique_ptr compiler_options_; std::unique_ptr cumulative_logger_; - std::unique_ptr method_inliner_map_; std::unique_ptr compiler_driver_; std::unique_ptr instruction_set_features_; std::unique_ptr perf_file_; -- cgit v1.2.3-59-g8ed1b