diff options
author | Nicolas Geoffray <ngeoffray@google.com> | 2020-06-17 14:31:56 +0100 |
---|---|---|
committer | Nicolas Geoffray <ngeoffray@google.com> | 2020-06-18 08:37:10 +0000 |
commit | 0d60a2b1eaa2cd2ec3481e49578b77405353efa1 (patch) | |
tree | 91f16b9321ef7631aff731b10da2024c6c9d2029 /compiler/compiler.h | |
parent | 289bd1cccdb3aa37e2d129980f5c151f52f84897 (diff) |
Introduce an enum for the compilation kind.
Test: test.py
Change-Id: I5329e50a6b4521933b6b171c8c0fbc618c3f67cd
Diffstat (limited to 'compiler/compiler.h')
-rw-r--r-- | compiler/compiler.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/compiler.h b/compiler/compiler.h index e363e707dd..afa0dbab60 100644 --- a/compiler/compiler.h +++ b/compiler/compiler.h @@ -19,6 +19,7 @@ #include "base/mutex.h" #include "base/os.h" +#include "compilation_kind.h" #include "dex/invoke_type.h" namespace art { @@ -75,8 +76,7 @@ class Compiler { jit::JitCodeCache* code_cache ATTRIBUTE_UNUSED, jit::JitMemoryRegion* region ATTRIBUTE_UNUSED, ArtMethod* method ATTRIBUTE_UNUSED, - bool baseline ATTRIBUTE_UNUSED, - bool osr ATTRIBUTE_UNUSED, + CompilationKind compilation_kind ATTRIBUTE_UNUSED, jit::JitLogger* jit_logger ATTRIBUTE_UNUSED) REQUIRES_SHARED(Locks::mutator_lock_) { return false; |