From acc56ac6a33a23abbf4a9a62528e352ea28c5407 Mon Sep 17 00:00:00 2001 From: Nicolas Geoffray Date: Tue, 9 Oct 2018 08:45:24 +0100 Subject: Introduce a 'baseline' variant for the compiler. Implemented as a stripped down version of the optimizing compiler, not running any optimization. Adjust code to still work with expectations in code generators. bug: 111397239 Test: test.py --baseline Change-Id: I4328283825f9a890616e7496ed4c1e77d6bcc5dd --- compiler/compiler.h | 1 + 1 file changed, 1 insertion(+) (limited to 'compiler/compiler.h') diff --git a/compiler/compiler.h b/compiler/compiler.h index ef3d87f02b..8c07773f4c 100644 --- a/compiler/compiler.h +++ b/compiler/compiler.h @@ -71,6 +71,7 @@ class Compiler { virtual bool JitCompile(Thread* self ATTRIBUTE_UNUSED, jit::JitCodeCache* code_cache ATTRIBUTE_UNUSED, ArtMethod* method ATTRIBUTE_UNUSED, + bool baseline ATTRIBUTE_UNUSED, bool osr ATTRIBUTE_UNUSED, jit::JitLogger* jit_logger ATTRIBUTE_UNUSED) REQUIRES_SHARED(Locks::mutator_lock_) { -- cgit v1.2.3-59-g8ed1b