summaryrefslogtreecommitdiff
path: root/runtime/jit/jit.h
diff options
context:
space:
mode:
author Nicolas Geoffray <ngeoffray@google.com> 2020-08-05 16:47:26 +0000
committer Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> 2020-08-05 16:47:26 +0000
commita26b2586ba85b3982a04839ff36e6e1bf2ae0623 (patch)
tree3fc0c44044e05e23beee712189f6deff8759753e /runtime/jit/jit.h
parentef78aa262af911af98c6ba171640f9584aa0caa0 (diff)
parentb96d6f3846103659249ad58fc905fc5a14dafc47 (diff)
Remove tiered jit option. am: b96d6f3846
Original change: https://android-review.googlesource.com/c/platform/art/+/1391217 Change-Id: I0f3ebc8b3a57f011b5b3e9da60859b905c027fa7
Diffstat (limited to 'runtime/jit/jit.h')
-rw-r--r--runtime/jit/jit.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/runtime/jit/jit.h b/runtime/jit/jit.h
index 5aa53ff8fe..0a5e7d3a08 100644
--- a/runtime/jit/jit.h
+++ b/runtime/jit/jit.h
@@ -117,10 +117,6 @@ class JitOptions {
return use_jit_compilation_;
}
- bool UseTieredJitCompilation() const {
- return use_tiered_jit_compilation_;
- }
-
void SetUseJitCompilation(bool b) {
use_jit_compilation_ = b;
}
@@ -152,7 +148,6 @@ class JitOptions {
static uint32_t RoundUpThreshold(uint32_t threshold);
bool use_jit_compilation_;
- bool use_tiered_jit_compilation_;
bool use_baseline_compiler_;
size_t code_cache_initial_capacity_;
size_t code_cache_max_capacity_;
@@ -167,7 +162,6 @@ class JitOptions {
JitOptions()
: use_jit_compilation_(false),
- use_tiered_jit_compilation_(false),
use_baseline_compiler_(false),
code_cache_initial_capacity_(0),
code_cache_max_capacity_(0),