From 695348f4b0541f4373b46eac5830cdd87f71c076 Mon Sep 17 00:00:00 2001 From: Vladimir Marko Date: Tue, 19 May 2020 14:42:02 +0100 Subject: Add compiler type to CompilerOptions. Let CompilerOptions hold the information whether it is AOT or JIT compilation, or Zygote JIT for shared code. Test: m test-art-host-gtest Test: testrunner.py --host --optimizing --jit Test: aosp_taimen-userdebug boots. Change-Id: Id9200572406f8e43d99b8b61ef0e3edf43b52fff --- compiler/driver/compiler_options.cc | 1 + 1 file changed, 1 insertion(+) (limited to 'compiler/driver/compiler_options.cc') diff --git a/compiler/driver/compiler_options.cc b/compiler/driver/compiler_options.cc index 05500751f8..a5805f953b 100644 --- a/compiler/driver/compiler_options.cc +++ b/compiler/driver/compiler_options.cc @@ -50,6 +50,7 @@ CompilerOptions::CompilerOptions() dex_files_for_oat_file_(), image_classes_(), verification_results_(nullptr), + compiler_type_(CompilerType::kAotCompiler), image_type_(ImageType::kNone), compile_art_test_(false), baseline_(false), -- cgit v1.2.3-59-g8ed1b