From 6e5dfaaeb133df47f8e2501dbbcaa52a6c8fabf4 Mon Sep 17 00:00:00 2001 From: Alexey Frunze Date: Sat, 18 Mar 2017 18:23:31 -0700 Subject: [PATCH] MIPS: Adjust LibartImgDeviceBaseAddress() for CC GC. The concurrent copying GC allocates large contiguous space at low addresses. This moves the image(s) out of the way to higher addresses. Test: booted MIPS32R2 in QEMU Test: booted MIPS64 (with 2nd arch MIPS32R2) in QEMU Change-Id: I1c54e6142844ab1ad7820765ae313650e9ab8875 --- android/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/config.go b/android/config.go index bc76f34c1..236192052 100644 --- a/android/config.go +++ b/android/config.go @@ -439,7 +439,7 @@ func (c *config) LibartImgDeviceBaseAddress() string { default: return "0x70000000" case Mips, Mips64: - return "0x30000000" + return "0x64000000" } }