summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Nicolas Geoffray <ngeoffray@google.com> 2016-04-28 13:56:04 +0100
committer Nicolas Geoffray <ngeoffray@google.com> 2016-04-28 13:56:04 +0100
commit5a62dd962c831a73c75c0ad5bf1184129eaa942c (patch)
treea1d1fc3f3d0dc86f36edc02bf203f4420843b729
parentd1a2b026f8379f47151b3bba147c11dc10d77a4d (diff)
Decrease transition weight.
bug:27865109 Change-Id: I551040e61f36fc675c0f5d1c3907c690112a84be
-rw-r--r--runtime/jit/jit.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/jit/jit.h b/runtime/jit/jit.h
index 3455972b70..f3a6240e80 100644
--- a/runtime/jit/jit.h
+++ b/runtime/jit/jit.h
@@ -44,7 +44,7 @@ class Jit {
static constexpr bool kStressMode = kIsDebugBuild;
static constexpr size_t kDefaultCompileThreshold = kStressMode ? 2 : 10000;
static constexpr size_t kDefaultPriorityThreadWeightRatio = 1000;
- static constexpr size_t kDefaultInvokeTransitionWeightRatio = 100;
+ static constexpr size_t kDefaultInvokeTransitionWeightRatio = 500;
virtual ~Jit();
static Jit* Create(JitOptions* options, std::string* error_msg);