final VmArchitecture arch = VmUtils.getVm().getArch();
helper.bootArchitecture(true);
final Address bootImgStart = helper.getBootImageStart();
final Address bootImgEnd = helper.getBootImageEnd();
final int bootImgSize = bootImgEnd.sub(bootImgStart.toWord()).toInt();
LazyMmapper.boot(bootImgStart, bootImgSize);
final Extent heapSize = helper.getHeapSize();
HeapGrowthManager.boot(heapSize, heapSize);
bootPlan();