summaryrefslogtreecommitdiff
path: root/runtime/jit/jit_code_cache.cc
diff options
context:
space:
mode:
author Nicolas Geoffray <ngeoffray@google.com> 2015-10-28 17:39:47 +0000
committer Nicolas Geoffray <ngeoffray@google.com> 2015-10-28 17:51:53 +0000
commit4e915fbc2be5fc43c782389bbbb7306cd76a523a (patch)
treec85e0ab3b80393a46dbc98e217678337567e26ce /runtime/jit/jit_code_cache.cc
parent28b48026f0686f93b31b9cad47671c18837acc56 (diff)
Tune heuristics a bit.
First version. Seems to be more in line with what we're seeing. Change-Id: I5117352c13cb2e95d16f0c9b05b1faf37c05d710
Diffstat (limited to 'runtime/jit/jit_code_cache.cc')
-rw-r--r--runtime/jit/jit_code_cache.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/jit/jit_code_cache.cc b/runtime/jit/jit_code_cache.cc
index 2596dd974d..60568b2f77 100644
--- a/runtime/jit/jit_code_cache.cc
+++ b/runtime/jit/jit_code_cache.cc
@@ -57,9 +57,9 @@ JitCodeCache* JitCodeCache::Create(size_t capacity, std::string* error_msg) {
return nullptr;
}
- // Data cache is 1 / 4 of the map.
+ // Data cache is 1 / 2 of the map.
// TODO: Make this variable?
- size_t data_size = RoundUp(data_map->Size() / 4, kPageSize);
+ size_t data_size = RoundUp(data_map->Size() / 2, kPageSize);
size_t code_size = data_map->Size() - data_size;
uint8_t* divider = data_map->Begin() + data_size;