From 5816ed48bc339c983b40dc493e96b97821ce7966 Mon Sep 17 00:00:00 2001 From: Vladimir Marko Date: Wed, 27 Nov 2013 17:04:20 +0000 Subject: Detect special methods at the end of verification. This moves special method handling to method inliner and prepares for eventual inlining of these methods. Change-Id: I51c51b940fb7bc714e33135cd61be69467861352 --- compiler/driver/compiler_driver.cc | 2 ++ 1 file changed, 2 insertions(+) (limited to 'compiler/driver/compiler_driver.cc') diff --git a/compiler/driver/compiler_driver.cc b/compiler/driver/compiler_driver.cc index dbebd26db8..11245419f7 100644 --- a/compiler/driver/compiler_driver.cc +++ b/compiler/driver/compiler_driver.cc @@ -337,11 +337,13 @@ extern "C" void compilerLLVMSetBitcodeFileName(art::CompilerDriver& driver, std::string const& filename); CompilerDriver::CompilerDriver(VerifiedMethodsData* verified_methods_data, + DexFileToMethodInlinerMap* method_inliner_map, CompilerBackend compiler_backend, InstructionSet instruction_set, InstructionSetFeatures instruction_set_features, bool image, DescriptorSet* image_classes, size_t thread_count, bool dump_stats) : verified_methods_data_(verified_methods_data), + method_inliner_map_(method_inliner_map), compiler_backend_(compiler_backend), instruction_set_(instruction_set), instruction_set_features_(instruction_set_features), -- cgit v1.2.3-59-g8ed1b