123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189 |
- /*
- * Copyright (c) 2010, 2011 Richard Braun.
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
- * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
- * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
- * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
- * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
- * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
- #ifndef _KERN_RBTREE_I_H
- #define _KERN_RBTREE_I_H
- #include <assert.h>
- /** @file */
- /**
- * Red-black node structure.
- *
- * To reduce the number of branches and the instruction cache footprint,
- * the left and right child pointers are stored in an array, and the symmetry
- * of most tree operations is exploited by using left/right variables when
- * referring to children.
- *
- * In addition, this implementation assumes that all nodes are 4-byte aligned,
- * so that the least significant bit of the parent member can be used to store
- * the color of the node. This is true for all modern 32 and 64 bits
- * architectures, as long as the nodes aren't embedded in structures with
- * special alignment constraints such as member packing.
- */
- struct starpu_rbtree_node {
- uintptr_t parent;
- struct starpu_rbtree_node *children[2];
- };
- /**
- * Red-black tree structure.
- */
- struct starpu_rbtree {
- struct starpu_rbtree_node *root;
- };
- /**
- * Masks applied on the parent member of a node to obtain either the
- * color or the parent address.
- */
- #define STARPU_RBTREE_COLOR_MASK ((uintptr_t) 0x1)
- #define STARPU_RBTREE_PARENT_MASK (~((uintptr_t) 0x3))
- /**
- * Node colors.
- */
- #define STARPU_RBTREE_COLOR_RED 0
- #define STARPU_RBTREE_COLOR_BLACK 1
- /**
- * Masks applied on slots to obtain either the child index or the parent
- * address.
- */
- #define STARPU_RBTREE_SLOT_INDEX_MASK ((uintptr_t) 0x1)
- #define STARPU_RBTREE_SLOT_PARENT_MASK (~STARPU_RBTREE_SLOT_INDEX_MASK)
- /**
- * Return true if the given pointer is suitably aligned.
- */
- static inline int starpu_rbtree_check_alignment(const struct starpu_rbtree_node *node)
- {
- return ((uintptr_t)node & (~STARPU_RBTREE_PARENT_MASK)) == 0;
- }
- /**
- * Return true if the given index is a valid child index.
- */
- static inline int starpu_rbtree_check_index(int index)
- {
- return index == (index & 1);
- }
- /**
- * Convert the result of a comparison into an index in the children array
- * (0 or 1).
- *
- * This function is mostly used when looking up a node.
- */
- static inline int starpu_rbtree_d2i(int diff)
- {
- return !(diff <= 0);
- }
- /**
- * Return the parent of a node.
- */
- static inline struct starpu_rbtree_node * starpu_rbtree_parent(const struct starpu_rbtree_node *node)
- {
- return (struct starpu_rbtree_node *)(node->parent & STARPU_RBTREE_PARENT_MASK);
- }
- /**
- * Translate an insertion point into a slot.
- */
- static inline uintptr_t starpu_rbtree_slot(struct starpu_rbtree_node *parent, int index)
- {
- assert(starpu_rbtree_check_alignment(parent));
- assert(starpu_rbtree_check_index(index));
- return (uintptr_t)parent | index;
- }
- /**
- * Extract the parent address from a slot.
- */
- static inline struct starpu_rbtree_node * starpu_rbtree_slot_parent(uintptr_t slot)
- {
- return (struct starpu_rbtree_node *)(slot & STARPU_RBTREE_SLOT_PARENT_MASK);
- }
- /**
- * Extract the index from a slot.
- */
- static inline int starpu_rbtree_slot_index(uintptr_t slot)
- {
- return slot & STARPU_RBTREE_SLOT_INDEX_MASK;
- }
- /**
- * Insert a node in a tree, rebalancing it if necessary.
- *
- * The index parameter is the index in the children array of the parent where
- * the new node is to be inserted. It is ignored if the parent is null.
- *
- * This function is intended to be used by the starpu_rbtree_insert() macro only.
- */
- void starpu_rbtree_insert_rebalance(struct starpu_rbtree *tree, struct starpu_rbtree_node *parent,
- int index, struct starpu_rbtree_node *node);
- /**
- * Return the previous or next node relative to a location in a tree.
- *
- * The parent and index parameters define the location, which can be empty.
- * The direction parameter is either STARPU_RBTREE_LEFT (to obtain the previous
- * node) or STARPU_RBTREE_RIGHT (to obtain the next one).
- */
- struct starpu_rbtree_node * starpu_rbtree_nearest(struct starpu_rbtree_node *parent, int index,
- int direction);
- /**
- * Return the first or last node of a tree.
- *
- * The direction parameter is either STARPU_RBTREE_LEFT (to obtain the first node)
- * or STARPU_RBTREE_RIGHT (to obtain the last one).
- */
- struct starpu_rbtree_node * starpu_rbtree_firstlast(const struct starpu_rbtree *tree, int direction);
- /**
- * Return the node next to, or previous to the given node.
- *
- * The direction parameter is either STARPU_RBTREE_LEFT (to obtain the previous node)
- * or STARPU_RBTREE_RIGHT (to obtain the next one).
- */
- struct starpu_rbtree_node * starpu_rbtree_walk(struct starpu_rbtree_node *node, int direction);
- /**
- * Return the left-most deepest node of a tree, which is the starting point of
- * the postorder traversal performed by starpu_rbtree_for_each_remove().
- */
- struct starpu_rbtree_node * starpu_rbtree_postwalk_deepest(const struct starpu_rbtree *tree);
- /**
- * Unlink a node from its tree and return the next (right) node in postorder.
- */
- struct starpu_rbtree_node * starpu_rbtree_postwalk_unlink(struct starpu_rbtree_node *node);
- #endif /* _KERN_RBTREE_I_H */
|