Bug 1301449 - Fix assertions in MapAlignedPages to make it more intuitive. r=terrence CLOSED TREE

--HG--
extra : source : e140b4ed15b062f6b0a435204161311417e633df
extra : amend_source : 5ae1f4464e31534bde951c117550c8f7c6b5ec5e
This commit is contained in:
Emanuel Hoogeveen 2016-09-08 15:46:54 -07:00
Родитель f410d126b3
Коммит 4a5470e722
1 изменённых файлов: 14 добавлений и 4 удалений

Просмотреть файл

@ -121,9 +121,11 @@ void*
MapAlignedPages(size_t size, size_t alignment)
{
MOZ_ASSERT(size >= alignment);
MOZ_ASSERT(size >= allocGranularity);
MOZ_ASSERT(size % alignment == 0);
MOZ_ASSERT(size % pageSize == 0);
MOZ_ASSERT(alignment % allocGranularity == 0);
MOZ_ASSERT_IF(alignment < allocGranularity, allocGranularity % alignment == 0);
MOZ_ASSERT_IF(alignment > allocGranularity, alignment % allocGranularity == 0);
void* p = MapMemory(size, MEM_COMMIT | MEM_RESERVE);
@ -287,6 +289,7 @@ AllocateMappedContent(int fd, size_t offset, size_t length, size_t alignment)
// The allocation granularity and the requested offset
// must both be divisible by the requested alignment.
// Alignments larger than the allocation granularity are not supported.
if (allocGranularity % alignment != 0 || offset % alignment != 0)
return nullptr;
@ -345,9 +348,11 @@ void*
MapAlignedPages(size_t size, size_t alignment)
{
MOZ_ASSERT(size >= alignment);
MOZ_ASSERT(size >= allocGranularity);
MOZ_ASSERT(size % alignment == 0);
MOZ_ASSERT(size % pageSize == 0);
MOZ_ASSERT(alignment % allocGranularity == 0);
MOZ_ASSERT_IF(alignment < allocGranularity, allocGranularity % alignment == 0);
MOZ_ASSERT_IF(alignment > allocGranularity, alignment % allocGranularity == 0);
void* p = _aligned_malloc(size, alignment);
@ -420,9 +425,11 @@ void*
MapAlignedPages(size_t size, size_t alignment)
{
MOZ_ASSERT(size >= alignment);
MOZ_ASSERT(size >= allocGranularity);
MOZ_ASSERT(size % alignment == 0);
MOZ_ASSERT(size % pageSize == 0);
MOZ_ASSERT(alignment % allocGranularity == 0);
MOZ_ASSERT_IF(alignment < allocGranularity, allocGranularity % alignment == 0);
MOZ_ASSERT_IF(alignment > allocGranularity, alignment % allocGranularity == 0);
int prot = PROT_READ | PROT_WRITE;
int flags = MAP_PRIVATE | MAP_ANON | MAP_ALIGN | MAP_NOSYNC;
@ -591,9 +598,11 @@ void*
MapAlignedPages(size_t size, size_t alignment)
{
MOZ_ASSERT(size >= alignment);
MOZ_ASSERT(size >= allocGranularity);
MOZ_ASSERT(size % alignment == 0);
MOZ_ASSERT(size % pageSize == 0);
MOZ_ASSERT(alignment % allocGranularity == 0);
MOZ_ASSERT_IF(alignment < allocGranularity, allocGranularity % alignment == 0);
MOZ_ASSERT_IF(alignment > allocGranularity, alignment % allocGranularity == 0);
void* p = MapMemory(size);
@ -784,6 +793,7 @@ AllocateMappedContent(int fd, size_t offset, size_t length, size_t alignment)
// The allocation granularity and the requested offset
// must both be divisible by the requested alignment.
// Alignments larger than the allocation granularity are not supported.
if (allocGranularity % alignment != 0 || offset % alignment != 0)
return nullptr;