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
This commit is contained in:
Alexey Frunze 2017-03-18 18:23:31 -07:00
parent 3250879667
commit 6e5dfaaeb1

View file

@ -439,7 +439,7 @@ func (c *config) LibartImgDeviceBaseAddress() string {
default: default:
return "0x70000000" return "0x70000000"
case Mips, Mips64: case Mips, Mips64:
return "0x30000000" return "0x64000000"
} }
} }