Browse Source

change mem_cfg_t to accept cases when (base + size) is at 64-bit address space border

pull/1223/head
Parshintsev Anatoly 4 years ago
committed by Andrew Waterman
parent
commit
28eb7aa8be
  1. 6
      riscv/cfg.cc

6
riscv/cfg.cc

@ -17,7 +17,11 @@ bool mem_cfg_t::check_if_supported(reg_t base, reg_t size)
// ask that the page size is a multiple of the minimum page size, that the
// page is aligned to the minimum page size, that the page is non-empty and
// that the top address is still representable in a reg_t.
//
// Note: (base + size == 0) part of the assertion is to handle cases like
// { base = 0xffff_ffff_ffff_f000, size: 0x1000 }
return (size % PGSIZE == 0) &&
(base % PGSIZE == 0) &&
(base + size > base);
(size > 0) &&
((base + size > base) || (base + size == 0));
}

Loading…
Cancel
Save