[glib/gobject-performance] Move ref_count from TypeNode->data to TypeNode
- From: Benjamin Otte <otte src gnome org>
- To: svn-commits-list gnome org
- Cc:
- Subject: [glib/gobject-performance] Move ref_count from TypeNode->data to TypeNode
- Date: Thu, 24 Sep 2009 11:30:14 +0000 (UTC)
commit 56a450f1343dbb7734e4f27944d18fab0800688b
Author: Edward Hervey <bilboed bilboed com>
Date: Thu Sep 24 10:03:14 2009 +0200
Move ref_count from TypeNode->data to TypeNode
https://bugzilla.gnome.org/show_bug.cgi?id=585375
gobject/gtype.c | 48 ++++++++++++++++++++++++------------------------
1 files changed, 24 insertions(+), 24 deletions(-)
---
diff --git a/gobject/gtype.c b/gobject/gtype.c
index b62d575..32cd03a 100644
--- a/gobject/gtype.c
+++ b/gobject/gtype.c
@@ -224,6 +224,7 @@ typedef enum
/* --- structures --- */
struct _TypeNode
{
+ guint volatile ref_count;
GTypePlugin *plugin;
guint n_children : 12;
guint n_supers : 8;
@@ -291,7 +292,6 @@ struct _IFaceEntries {
struct _CommonData
{
- guint ref_count;
GTypeValueTable *value_table;
};
@@ -1125,7 +1125,7 @@ type_data_make_W (TypeNode *node,
}
node->data = data;
- node->data->common.ref_count = 1;
+ node->ref_count = 1;
if (vtable_size)
{
@@ -1193,9 +1193,9 @@ type_data_ref_Wm (TypeNode *node)
}
else
{
- g_assert (node->data->common.ref_count > 0);
+ g_assert (node->ref_count > 0);
- node->data->common.ref_count += 1;
+ node->ref_count += 1;
}
}
@@ -1203,9 +1203,9 @@ static inline void
type_data_unref_WmREC (TypeNode *node,
gboolean uncached)
{
- g_assert (node->data && node->data->common.ref_count);
- if (node->data->common.ref_count > 1)
- node->data->common.ref_count -= 1;
+ g_assert (node->data && node->ref_count);
+ if (node->ref_count > 1)
+ node->ref_count -= 1;
else
{
GType node_type = NODE_TYPE (node);
@@ -2220,7 +2220,7 @@ type_data_finalize_class_ifaces_Wm (TypeNode *node)
guint i;
IFaceEntries *entries;
- g_assert (node->is_instantiatable && node->data && node->data->class.class && node->data->common.ref_count == 0);
+ g_assert (node->is_instantiatable && node->data && node->data->class.class && node->ref_count == 0);
reiterate:
entries = CLASSED_NODE_IFACES_ENTRIES_LOCKED (node);
@@ -2253,7 +2253,7 @@ type_data_finalize_class_U (TypeNode *node,
GTypeClass *class = cdata->class;
TypeNode *bnode;
- g_assert (cdata->class && cdata->common.ref_count == 0);
+ g_assert (cdata->class && node->ref_count == 0);
if (cdata->class_finalize)
cdata->class_finalize (class, (gpointer) cdata->class_data);
@@ -2277,7 +2277,7 @@ type_data_last_unref_Wm (GType type,
g_return_if_fail (node != NULL && node->plugin != NULL);
- if (!node->data || node->data->common.ref_count == 0)
+ if (!node->data || node->ref_count == 0)
{
g_warning ("cannot drop last reference to unreferenced type `%s'",
type_descriptive_name_I (type));
@@ -2300,7 +2300,7 @@ type_data_last_unref_Wm (GType type,
G_READ_UNLOCK (&type_rw_lock);
need_break = cache_func (cache_data, node->data->class.class);
G_READ_LOCK (&type_rw_lock);
- if (!node->data || node->data->common.ref_count == 0)
+ if (!node->data || node->ref_count == 0)
INVALID_RECURSION ("GType class cache function ", cache_func, NODE_NAME (node));
if (need_break)
break;
@@ -2309,14 +2309,14 @@ type_data_last_unref_Wm (GType type,
G_WRITE_LOCK (&type_rw_lock);
}
- if (node->data->common.ref_count > 1) /* may have been re-referenced meanwhile */
- node->data->common.ref_count -= 1;
+ if (node->ref_count > 1) /* may have been re-referenced meanwhile */
+ node->ref_count -= 1;
else
{
GType ptype = NODE_PARENT_TYPE (node);
TypeData *tdata;
- node->data->common.ref_count = 0;
+ node->ref_count = 0;
if (node->is_instantiatable)
{
@@ -2825,7 +2825,7 @@ g_type_class_ref (GType type)
return node->data->class.class;
}
if (!node || !node->is_classed ||
- (node->data && node->data->common.ref_count < 1))
+ (node->data && node->ref_count < 1))
{
G_WRITE_UNLOCK (&type_rw_lock);
g_warning ("cannot retrieve class for invalid (unclassed) type `%s'",
@@ -2877,7 +2877,7 @@ g_type_class_unref (gpointer g_class)
node = lookup_type_node_I (class->g_type);
G_WRITE_LOCK (&type_rw_lock);
if (node && node->is_classed && node->data &&
- node->data->class.class == class && node->data->common.ref_count > 0)
+ node->data->class.class == class && node->ref_count > 0)
type_data_unref_WmREC (node, FALSE);
else
g_warning ("cannot unreference class of invalid (unclassed) type `%s'",
@@ -2905,7 +2905,7 @@ g_type_class_unref_uncached (gpointer g_class)
G_WRITE_LOCK (&type_rw_lock);
node = lookup_type_node_I (class->g_type);
if (node && node->is_classed && node->data &&
- node->data->class.class == class && node->data->common.ref_count > 0)
+ node->data->class.class == class && node->ref_count > 0)
type_data_unref_WmREC (node, TRUE);
else
g_warning ("cannot unreference class of invalid (unclassed) type `%s'",
@@ -2933,7 +2933,7 @@ g_type_class_peek (GType type)
node = lookup_type_node_I (type);
G_READ_LOCK (&type_rw_lock);
- if (node && node->is_classed && node->data && node->data->class.class) /* common.ref_count _may_ be 0 */
+ if (node && node->is_classed && node->data && node->data->class.class) /* ref_count _may_ be 0 */
class = node->data->class.class;
else
class = NULL;
@@ -2963,7 +2963,7 @@ g_type_class_peek_static (GType type)
G_READ_LOCK (&type_rw_lock);
if (node && node->is_classed && node->data &&
/* peek only static types: */ node->plugin == NULL &&
- node->data->class.class) /* common.ref_count _may_ be 0 */
+ node->data->class.class) /* ref_count _may_ be 0 */
class = node->data->class.class;
else
class = NULL;
@@ -3112,7 +3112,7 @@ g_type_default_interface_ref (GType g_type)
node = lookup_type_node_I (g_type);
if (!node || !NODE_IS_IFACE (node) ||
- (node->data && node->data->common.ref_count < 1))
+ (node->data && node->ref_count < 1))
{
G_WRITE_UNLOCK (&type_rw_lock);
g_warning ("cannot retrieve default vtable for invalid or non-interface type '%s'",
@@ -3194,7 +3194,7 @@ g_type_default_interface_unref (gpointer g_iface)
G_WRITE_LOCK (&type_rw_lock);
if (node && NODE_IS_IFACE (node) &&
node->data->iface.dflt_vtable == g_iface &&
- node->data->common.ref_count > 0)
+ node->ref_count > 0)
type_data_unref_WmREC (node, FALSE);
else
g_warning ("cannot unreference invalid interface default vtable for '%s'",
@@ -4025,7 +4025,7 @@ type_check_is_value_type_U (GType type)
restart_check:
if (node)
{
- if (node->data && node->data->common.ref_count > 0 &&
+ if (node->data && node->ref_count > 0 &&
node->data->common.value_table->value_init)
tflags = GPOINTER_TO_UINT (type_get_qdata_L (node, static_quark_type_flags));
else if (NODE_IS_IFACE (node))
@@ -4100,7 +4100,7 @@ g_type_value_table_peek (GType type)
G_READ_LOCK (&type_rw_lock);
restart_table_peek:
- has_refed_data = node && node->data && node->data->common.ref_count;
+ has_refed_data = node && node->data && node->ref_count;
has_table = has_refed_data && node->data->common.value_table->value_init;
if (has_refed_data)
{
@@ -4411,7 +4411,7 @@ g_type_instance_get_private (GTypeInstance *instance,
if (NODE_PARENT_TYPE (private_node))
{
parent_node = lookup_type_node_I (NODE_PARENT_TYPE (private_node));
- g_assert (parent_node->data && parent_node->data->common.ref_count);
+ g_assert (parent_node->data && parent_node->ref_count);
if (G_UNLIKELY (private_node->data->instance.private_size == parent_node->data->instance.private_size))
{
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]