summaryrefslogtreecommitdiff
path: root/src/util/ralloc.h
diff options
context:
space:
mode:
authorKenneth Graunke <kenneth@whitecape.org>2015-03-27 19:24:33 -0700
committerKenneth Graunke <kenneth@whitecape.org>2015-04-02 14:19:41 -0700
commit33f0f68d590a460f84a0df0de10f29c4a582d7e7 (patch)
treec9a0c4a69f1cc18bae2815d3c6f77e2f1f692b3e /src/util/ralloc.h
parentca3b4d6d17a0f95b287e87888c9d893be94f0301 (diff)
ralloc: Implement a new ralloc_adopt() API.
ralloc_adopt() reparents all children from one context to another. Conceptually, ralloc_adopt(new_ctx, old_ctx) behaves like this pseudocode: foreach child of old_ctx: ralloc_steal(new_ctx, child) However, ralloc provides no way to iterate over a memory context's children, and ralloc_adopt does this task more efficiently anyway. One potential use of this is to implement a memory-sweeper pass: first, steal all of a context's memory to a temporary context. Then, walk over anything that should be kept, and ralloc_steal it back to the original context. Finally, free the temporary context. This works when the context is something that can't be freed (i.e. an important structure). Signed-off-by: Kenneth Graunke <kenneth@whitecape.org> Reviewed-by: Jason Ekstrand <jason.ekstrand@intel.com>
Diffstat (limited to 'src/util/ralloc.h')
-rw-r--r--src/util/ralloc.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/util/ralloc.h b/src/util/ralloc.h
index f088a36274..01f102ba24 100644
--- a/src/util/ralloc.h
+++ b/src/util/ralloc.h
@@ -235,6 +235,13 @@ void ralloc_free(void *ptr);
void ralloc_steal(const void *new_ctx, void *ptr);
/**
+ * Reparent all children from one context to another.
+ *
+ * This effectively calls ralloc_steal(new_ctx, child) for all children of \p old_ctx.
+ */
+void ralloc_adopt(const void *new_ctx, void *old_ctx);
+
+/**
* Return the given pointer's ralloc context.
*/
void *ralloc_parent(const void *ptr);