Simplify the logic in ph_remove

This commit is contained in:
Amaury Séchet 2023-03-03 12:35:45 +00:00 committed by Qi Wang
parent be6da4f663
commit 5266152d79

View File

@ -369,9 +369,6 @@ ph_remove_first(ph_t *ph, size_t offset, ph_cmp_t cmp) {
JEMALLOC_ALWAYS_INLINE void JEMALLOC_ALWAYS_INLINE void
ph_remove(ph_t *ph, void *phn, size_t offset, ph_cmp_t cmp) { ph_remove(ph_t *ph, void *phn, size_t offset, ph_cmp_t cmp) {
void *replace;
void *parent;
if (ph->root == phn) { if (ph->root == phn) {
/* /*
* We can delete from aux list without merging it, but we need * We can delete from aux list without merging it, but we need
@ -389,50 +386,29 @@ ph_remove(ph_t *ph, void *phn, size_t offset, ph_cmp_t cmp) {
} }
} }
/* Get parent (if phn is leftmost child) before mutating. */ void* prev = phn_prev_get(phn, offset);
if ((parent = phn_prev_get(phn, offset)) != NULL) { void* next = phn_next_get(phn, offset);
if (phn_lchild_get(parent, offset) != phn) {
parent = NULL; /* If we have children, then we integrate them back in the heap. */
} void* replace = ph_merge_children(phn, offset, cmp);
}
/* Find a possible replacement node, and link to parent. */
replace = ph_merge_children(phn, offset, cmp);
/* Set next/prev for sibling linked list. */
if (replace != NULL) { if (replace != NULL) {
if (parent != NULL) { phn_next_set(replace, next, offset);
phn_prev_set(replace, parent, offset); if (next != NULL) {
phn_lchild_set(parent, replace, offset); phn_prev_set(next, replace, offset);
} else {
phn_prev_set(replace, phn_prev_get(phn, offset),
offset);
if (phn_prev_get(phn, offset) != NULL) {
phn_next_set(phn_prev_get(phn, offset), replace,
offset);
}
}
phn_next_set(replace, phn_next_get(phn, offset), offset);
if (phn_next_get(phn, offset) != NULL) {
phn_prev_set(phn_next_get(phn, offset), replace,
offset);
} }
next = replace;
}
if (next != NULL) {
phn_prev_set(next, prev, offset);
}
assert(prev != NULL);
if (phn_lchild_get(prev, offset) == phn) {
phn_lchild_set(prev, next, offset);
} else { } else {
if (parent != NULL) { phn_next_set(prev, next, offset);
void *next = phn_next_get(phn, offset);
phn_lchild_set(parent, next, offset);
if (next != NULL) {
phn_prev_set(next, parent, offset);
}
} else {
assert(phn_prev_get(phn, offset) != NULL);
phn_next_set(
phn_prev_get(phn, offset),
phn_next_get(phn, offset), offset);
}
if (phn_next_get(phn, offset) != NULL) {
phn_prev_set(
phn_next_get(phn, offset),
phn_prev_get(phn, offset), offset);
}
} }
} }