Flattened out if blocks in trim_map
This commit is contained in:
26
src/memmap.c
26
src/memmap.c
@@ -68,61 +68,55 @@ static int trim_map(memory_map_t *map, int index)
|
|||||||
}
|
}
|
||||||
memory_region_t *left = &map->array[index];
|
memory_region_t *left = &map->array[index];
|
||||||
memory_region_t *right = &map->array[index + 1];
|
memory_region_t *right = &map->array[index + 1];
|
||||||
if(region_overlaps(left, right))
|
if(region_overlaps(left, right) && left->type == right->type)
|
||||||
{
|
|
||||||
if(left->type == right->type)
|
|
||||||
{
|
{
|
||||||
left->size = (right->location + right->size > left->location + left->size ? right->location + right->size : left->location + left->size) - left->location;
|
left->size = (right->location + right->size > left->location + left->size ? right->location + right->size : left->location + left->size) - left->location;
|
||||||
remove_map_entry(map, index + 1);
|
remove_map_entry(map, index + 1);
|
||||||
return index;
|
return index;
|
||||||
}
|
}
|
||||||
else if(left->type < right->type)
|
else if(region_overlaps(left, right) && left->type < right->type && region_contains(right, left))
|
||||||
{
|
|
||||||
if(region_contains(right, left))
|
|
||||||
{
|
{
|
||||||
remove_map_entry(map, index);
|
remove_map_entry(map, index);
|
||||||
return index;
|
return index;
|
||||||
}
|
}
|
||||||
else if(left->location + left->size <= right->location + right->size)
|
else if(region_overlaps(left, right) && left->type < right->type && left->location + left->size <= right->location + right->size)
|
||||||
{
|
{
|
||||||
left->size = (right->location > left->location) ? right->location - left->location : 0;
|
left->size = (right->location > left->location) ? right->location - left->location : 0;
|
||||||
return index + 1;
|
return index + 1;
|
||||||
}
|
}
|
||||||
else
|
else if(region_overlaps(left, right) && left->type < right->type)
|
||||||
{
|
{
|
||||||
memory_region_t new_right = {
|
memory_region_t new_right = {
|
||||||
.location = right->location + right->size,
|
.location = right->location + right->size,
|
||||||
.size = (left->location + left->size) - (right->location + right->size),
|
.size = (left->location + left->size) - (right->location + right->size),
|
||||||
.type = left->type};
|
.type = left->type};
|
||||||
left->size = (right->location > left->location) ? right->location - left->location : 0;
|
left->size = (right->location > left->location) ? right->location - left->location : 0;
|
||||||
if(left->size == 0)
|
if (left->size == 0)
|
||||||
remove_map_entry(map, index);
|
remove_map_entry(map, index);
|
||||||
insert_map_entry(map, new_right.location, new_right.size, new_right.type);
|
insert_map_entry(map, new_right.location, new_right.size, new_right.type);
|
||||||
return index + 2;
|
return index + 2;
|
||||||
}
|
}
|
||||||
}
|
else if(region_overlaps(left, right) && region_contains(left, right))
|
||||||
else
|
|
||||||
{
|
|
||||||
if(region_contains(left, right))
|
|
||||||
{
|
{
|
||||||
remove_map_entry(map, index + 1);
|
remove_map_entry(map, index + 1);
|
||||||
return index;
|
return index;
|
||||||
}
|
}
|
||||||
else
|
else if(region_overlaps(left, right))
|
||||||
{
|
{
|
||||||
right->size = (right->location + right->size) - (left->location + left->size);
|
right->size = (right->location + right->size) - (left->location + left->size);
|
||||||
right->location = left->location + left->size;
|
right->location = left->location + left->size;
|
||||||
return index + 1;
|
return index + 1;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
|
||||||
else if((left->location + left->size == right->location) && left->type == right->type)
|
else if((left->location + left->size == right->location) && left->type == right->type)
|
||||||
{
|
{
|
||||||
left->size = right->location + right->size - left->location;
|
left->size = right->location + right->size - left->location;
|
||||||
remove_map_entry(map, index + 1);
|
remove_map_entry(map, index + 1);
|
||||||
return index;
|
return index;
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
return index + 1;
|
return index + 1;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
int memmap_insert_region(memory_map_t *map, unsigned long location, unsigned long size, memory_type_t type)
|
int memmap_insert_region(memory_map_t *map, unsigned long location, unsigned long size, memory_type_t type)
|
||||||
|
|||||||
Reference in New Issue
Block a user