turned all modifications to the first 32 integer bits in a closure into

Mon Aug  1 23:00:42 2005  Tim Janik  <timj@imendio.com>

        * gclosure.c: turned all modifications to the first 32 integer bits in a
        closure into atomic accesses. wrapped write accesses into special macros
        to keep the atomic modification logic in a single place. comment cleanups.

        * gclosure.h: made all atomicly accessed closure fields volatile.

        * gobject.h: made ref_count field volatile.
This commit is contained in:
Tim Janik 2005-08-01 21:17:50 +00:00 committed by Tim Janik
parent 7787e71d8b
commit 834ddd1920
5 changed files with 127 additions and 58 deletions

View File

@ -1,3 +1,13 @@
Mon Aug 1 23:00:42 2005 Tim Janik <timj@imendio.com>
* gclosure.c: turned all modifications to the first 32 integer bits in a
closure into atomic accesses. wrapped write accesses into special macros
to keep the atomic modification logic in a single place. comment cleanups.
* gclosure.h: made all atomicly accessed closure fields volatile.
* gobject.h: made ref_count field volatile.
Sun Jul 31 02:04:23 2005 Tim Janik <timj@gtk.org> Sun Jul 31 02:04:23 2005 Tim Janik <timj@gtk.org>
* gobject.c: use g_datalist_set_flags() and g_datalist_unset_flags() to * gobject.c: use g_datalist_set_flags() and g_datalist_unset_flags() to

View File

@ -1,5 +1,6 @@
/* GObject - GLib Type, Object, Parameter and Signal Library /* GObject - GLib Type, Object, Parameter and Signal Library
* Copyright (C) 2000-2001 Red Hat, Inc. * Copyright (C) 2000-2001 Red Hat, Inc.
* Copyright (C) 2005 Imendio AB
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public * modify it under the terms of the GNU Lesser General Public
@ -18,14 +19,15 @@
*/ */
#include "gclosure.h" #include "gclosure.h"
/*
* MT safe with regards to reference counting.
*/
#include "gvalue.h" #include "gvalue.h"
#include "gobjectalias.h" #include "gobjectalias.h"
#include <string.h> #include <string.h>
/* FIXME: need caching allocators
*/
#define CLOSURE_MAX_REF_COUNT ((1 << 15) - 1) #define CLOSURE_MAX_REF_COUNT ((1 << 15) - 1)
#define CLOSURE_MAX_N_GUARDS ((1 << 1) - 1) #define CLOSURE_MAX_N_GUARDS ((1 << 1) - 1)
#define CLOSURE_MAX_N_FNOTIFIERS ((1 << 2) - 1) #define CLOSURE_MAX_N_FNOTIFIERS ((1 << 2) - 1)
@ -36,6 +38,45 @@
#define CLOSURE_N_NOTIFIERS(cl) (CLOSURE_N_MFUNCS (cl) + \ #define CLOSURE_N_NOTIFIERS(cl) (CLOSURE_N_MFUNCS (cl) + \
(cl)->n_fnotifiers + \ (cl)->n_fnotifiers + \
(cl)->n_inotifiers) (cl)->n_inotifiers)
typedef union {
GClosure closure;
gint vint;
} ClosureInt;
#define CHANGE_FIELD(_closure, _field, _OP, _value, _must_set, _SET_OLD, _SET_NEW) \
G_STMT_START { \
ClosureInt *cunion = (ClosureInt*) _closure; \
gint new_int, old_int, success; \
do \
{ \
ClosureInt tmp; \
tmp.vint = old_int = cunion->vint; \
_SET_OLD tmp.closure._field; \
tmp.closure._field _OP _value; \
_SET_NEW tmp.closure._field; \
new_int = tmp.vint; \
success = g_atomic_int_compare_and_exchange (&cunion->vint, old_int, new_int); \
} \
while (!success && _must_set); \
} G_STMT_END
#define SWAP(_closure, _field, _value, _oldv) CHANGE_FIELD (_closure, _field, =, _value, TRUE, *(_oldv) =, (void) )
#define SET(_closure, _field, _value) CHANGE_FIELD (_closure, _field, =, _value, TRUE, (void), (void) )
#define INC(_closure, _field) CHANGE_FIELD (_closure, _field, +=, 1, TRUE, (void), (void) )
#define INC_ASSIGN(_closure, _field, _newv) CHANGE_FIELD (_closure, _field, +=, 1, TRUE, (void), *(_newv) = )
#define DEC(_closure, _field) CHANGE_FIELD (_closure, _field, -=, 1, TRUE, (void), (void) )
#define DEC_ASSIGN(_closure, _field, _newv) CHANGE_FIELD (_closure, _field, -=, 1, TRUE, (void), *(_newv) = )
#if 0 // for non-thread-safe closures
#define SWAP(cl,f,v,o) (void) (*(o) = cl->f, cl->f = v)
#define SET(cl,f,v) (void) (cl->f = v)
#define INC(cl,f) (void) (cl->f += 1)
#define INC_ASSIGN(cl,f,n) (void) (cl->f += 1, *(n) = cl->f)
#define DEC(cl,f) (void) (cl->f -= 1)
#define DEC_ASSIGN(cl,f,n) (void) (cl->f -= 1, *(n) = cl->f)
#endif
enum { enum {
FNOTIFY, FNOTIFY,
INOTIFY, INOTIFY,
@ -53,17 +94,17 @@ g_closure_new_simple (guint sizeof_closure,
g_return_val_if_fail (sizeof_closure >= sizeof (GClosure), NULL); g_return_val_if_fail (sizeof_closure >= sizeof (GClosure), NULL);
closure = g_malloc (sizeof_closure); closure = g_malloc0 (sizeof_closure);
closure->ref_count = 1; SET (closure, ref_count, 1);
closure->meta_marshal = 0; SET (closure, meta_marshal, 0);
closure->n_guards = 0; SET (closure, n_guards, 0);
closure->n_fnotifiers = 0; SET (closure, n_fnotifiers, 0);
closure->n_inotifiers = 0; SET (closure, n_inotifiers, 0);
closure->in_inotify = FALSE; SET (closure, in_inotify, FALSE);
closure->floating = TRUE; SET (closure, floating, TRUE);
closure->derivative_flag = 0; SET (closure, derivative_flag, 0);
closure->in_marshal = FALSE; SET (closure, in_marshal, FALSE);
closure->is_invalid = FALSE; SET (closure, is_invalid, FALSE);
closure->marshal = NULL; closure->marshal = NULL;
closure->data = data; closure->data = data;
closure->notifiers = NULL; closure->notifiers = NULL;
@ -87,8 +128,8 @@ closure_invoke_notifiers (GClosure *closure,
* - closure->notifiers may be reloacted during callback * - closure->notifiers may be reloacted during callback
* - closure->n_fnotifiers and closure->n_inotifiers may change during callback * - closure->n_fnotifiers and closure->n_inotifiers may change during callback
* - i.e. callbacks can be removed/added during invocation * - i.e. callbacks can be removed/added during invocation
* - have to prepare for callback removal during invocation (->marshal & ->data) * - must prepare for callback removal during FNOTIFY and INOTIFY (done via ->marshal= & ->data=)
* - have to distinguish (->marshal & ->data) for INOTIFY/FNOTIFY (->in_inotify) * - must distinguish (->marshal= & ->data=) for INOTIFY vs. FNOTIFY (via ->in_inotify)
* + closure->n_guards is const during PRE_NOTIFY & POST_NOTIFY * + closure->n_guards is const during PRE_NOTIFY & POST_NOTIFY
* + closure->meta_marshal is const for all cases * + closure->meta_marshal is const for all cases
* + none of the callbacks can cause recursion * + none of the callbacks can cause recursion
@ -101,7 +142,8 @@ closure_invoke_notifiers (GClosure *closure,
case FNOTIFY: case FNOTIFY:
while (closure->n_fnotifiers) while (closure->n_fnotifiers)
{ {
register guint n = --closure->n_fnotifiers; guint n;
DEC_ASSIGN (closure, n_fnotifiers, &n);
ndata = closure->notifiers + CLOSURE_N_MFUNCS (closure) + n; ndata = closure->notifiers + CLOSURE_N_MFUNCS (closure) + n;
closure->marshal = (GClosureMarshal) ndata->notify; closure->marshal = (GClosureMarshal) ndata->notify;
@ -112,10 +154,11 @@ closure_invoke_notifiers (GClosure *closure,
closure->data = NULL; closure->data = NULL;
break; break;
case INOTIFY: case INOTIFY:
closure->in_inotify = TRUE; SET (closure, in_inotify, TRUE);
while (closure->n_inotifiers) while (closure->n_inotifiers)
{ {
register guint n = --closure->n_inotifiers; guint n;
DEC_ASSIGN (closure, n_inotifiers, &n);
ndata = closure->notifiers + CLOSURE_N_MFUNCS (closure) + closure->n_fnotifiers + n; ndata = closure->notifiers + CLOSURE_N_MFUNCS (closure) + closure->n_fnotifiers + n;
closure->marshal = (GClosureMarshal) ndata->notify; closure->marshal = (GClosureMarshal) ndata->notify;
@ -124,7 +167,7 @@ closure_invoke_notifiers (GClosure *closure,
} }
closure->marshal = NULL; closure->marshal = NULL;
closure->data = NULL; closure->data = NULL;
closure->in_inotify = FALSE; SET (closure, in_inotify, FALSE);
break; break;
case PRE_NOTIFY: case PRE_NOTIFY:
i = closure->n_guards; i = closure->n_guards;
@ -174,7 +217,7 @@ g_closure_set_meta_marshal (GClosure *closure,
} }
closure->notifiers[0].data = marshal_data; closure->notifiers[0].data = marshal_data;
closure->notifiers[0].notify = (GClosureNotify) meta_marshal; closure->notifiers[0].notify = (GClosureNotify) meta_marshal;
closure->meta_marshal = 1; SET (closure, meta_marshal, 1);
} }
void void
@ -214,11 +257,12 @@ g_closure_add_marshal_guards (GClosure *closure,
closure->notifiers[(closure->meta_marshal + closure->notifiers[(closure->meta_marshal +
closure->n_guards + closure->n_guards +
closure->n_guards + 1)] = closure->notifiers[closure->meta_marshal + closure->n_guards]; closure->n_guards + 1)] = closure->notifiers[closure->meta_marshal + closure->n_guards];
i = closure->n_guards++; i = closure->n_guards;
closure->notifiers[closure->meta_marshal + i].data = pre_marshal_data; closure->notifiers[closure->meta_marshal + i].data = pre_marshal_data;
closure->notifiers[closure->meta_marshal + i].notify = pre_marshal_notify; closure->notifiers[closure->meta_marshal + i].notify = pre_marshal_notify;
closure->notifiers[closure->meta_marshal + i + 1].data = post_marshal_data; closure->notifiers[closure->meta_marshal + i + 1].data = post_marshal_data;
closure->notifiers[closure->meta_marshal + i + 1].notify = post_marshal_notify; closure->notifiers[closure->meta_marshal + i + 1].notify = post_marshal_notify;
INC (closure, n_guards);
} }
void void
@ -238,9 +282,10 @@ g_closure_add_finalize_notifier (GClosure *closure,
closure->n_fnotifiers + closure->n_fnotifiers +
closure->n_inotifiers)] = closure->notifiers[(CLOSURE_N_MFUNCS (closure) + closure->n_inotifiers)] = closure->notifiers[(CLOSURE_N_MFUNCS (closure) +
closure->n_fnotifiers + 0)]; closure->n_fnotifiers + 0)];
i = CLOSURE_N_MFUNCS (closure) + closure->n_fnotifiers++; i = CLOSURE_N_MFUNCS (closure) + closure->n_fnotifiers;
closure->notifiers[i].data = notify_data; closure->notifiers[i].data = notify_data;
closure->notifiers[i].notify = notify_func; closure->notifiers[i].notify = notify_func;
INC (closure, n_fnotifiers);
} }
void void
@ -256,9 +301,10 @@ g_closure_add_invalidate_notifier (GClosure *closure,
g_return_if_fail (closure->n_inotifiers < CLOSURE_MAX_N_INOTIFIERS); g_return_if_fail (closure->n_inotifiers < CLOSURE_MAX_N_INOTIFIERS);
closure->notifiers = g_renew (GClosureNotifyData, closure->notifiers, CLOSURE_N_NOTIFIERS (closure) + 1); closure->notifiers = g_renew (GClosureNotifyData, closure->notifiers, CLOSURE_N_NOTIFIERS (closure) + 1);
i = CLOSURE_N_MFUNCS (closure) + closure->n_fnotifiers + closure->n_inotifiers++; i = CLOSURE_N_MFUNCS (closure) + closure->n_fnotifiers + closure->n_inotifiers;
closure->notifiers[i].data = notify_data; closure->notifiers[i].data = notify_data;
closure->notifiers[i].notify = notify_func; closure->notifiers[i].notify = notify_func;
INC (closure, n_inotifiers);
} }
static inline gboolean static inline gboolean
@ -272,7 +318,7 @@ closure_try_remove_inotify (GClosure *closure,
for (ndata = nlast + 1 - closure->n_inotifiers; ndata <= nlast; ndata++) for (ndata = nlast + 1 - closure->n_inotifiers; ndata <= nlast; ndata++)
if (ndata->notify == notify_func && ndata->data == notify_data) if (ndata->notify == notify_func && ndata->data == notify_data)
{ {
closure->n_inotifiers -= 1; DEC (closure, n_inotifiers);
if (ndata < nlast) if (ndata < nlast)
*ndata = *nlast; *ndata = *nlast;
@ -292,7 +338,7 @@ closure_try_remove_fnotify (GClosure *closure,
for (ndata = nlast + 1 - closure->n_fnotifiers; ndata <= nlast; ndata++) for (ndata = nlast + 1 - closure->n_fnotifiers; ndata <= nlast; ndata++)
if (ndata->notify == notify_func && ndata->data == notify_data) if (ndata->notify == notify_func && ndata->data == notify_data)
{ {
closure->n_fnotifiers -= 1; DEC (closure, n_fnotifiers);
if (ndata < nlast) if (ndata < nlast)
*ndata = *nlast; *ndata = *nlast;
if (closure->n_inotifiers) if (closure->n_inotifiers)
@ -308,11 +354,13 @@ closure_try_remove_fnotify (GClosure *closure,
GClosure* GClosure*
g_closure_ref (GClosure *closure) g_closure_ref (GClosure *closure)
{ {
guint new_ref_count;
g_return_val_if_fail (closure != NULL, NULL); g_return_val_if_fail (closure != NULL, NULL);
g_return_val_if_fail (closure->ref_count > 0, NULL); g_return_val_if_fail (closure->ref_count > 0, NULL);
g_return_val_if_fail (closure->ref_count < CLOSURE_MAX_REF_COUNT, NULL); g_return_val_if_fail (closure->ref_count < CLOSURE_MAX_REF_COUNT, NULL);
closure->ref_count += 1; INC_ASSIGN (closure, ref_count, &new_ref_count);
g_return_val_if_fail (new_ref_count > 1, NULL);
return closure; return closure;
} }
@ -324,9 +372,12 @@ g_closure_invalidate (GClosure *closure)
if (!closure->is_invalid) if (!closure->is_invalid)
{ {
closure->ref_count += 1; /* preserve floating flag */ gboolean was_invalid;
closure->is_invalid = TRUE; g_closure_ref (closure); /* preserve floating flag */
closure_invoke_notifiers (closure, INOTIFY); SWAP (closure, is_invalid, TRUE, &was_invalid);
/* invalidate only once */
if (!was_invalid)
closure_invoke_notifiers (closure, INOTIFY);
g_closure_unref (closure); g_closure_unref (closure);
} }
} }
@ -334,15 +385,17 @@ g_closure_invalidate (GClosure *closure)
void void
g_closure_unref (GClosure *closure) g_closure_unref (GClosure *closure)
{ {
guint new_ref_count;
g_return_if_fail (closure != NULL); g_return_if_fail (closure != NULL);
g_return_if_fail (closure->ref_count > 0); g_return_if_fail (closure->ref_count > 0);
if (closure->ref_count == 1) /* last unref, invalidate first */ if (closure->ref_count == 1) /* last unref, invalidate first */
g_closure_invalidate (closure); g_closure_invalidate (closure);
closure->ref_count -= 1; DEC_ASSIGN (closure, ref_count, &new_ref_count);
if (closure->ref_count == 0) if (new_ref_count == 0)
{ {
closure_invoke_notifiers (closure, FNOTIFY); closure_invoke_notifiers (closure, FNOTIFY);
g_free (closure->notifiers); g_free (closure->notifiers);
@ -363,11 +416,11 @@ g_closure_sink (GClosure *closure)
*/ */
if (closure->floating) if (closure->floating)
{ {
closure->floating = FALSE; gboolean was_floating;
if (closure->ref_count > 1) SWAP (closure, floating, FALSE, &was_floating);
closure->ref_count -= 1; /* unref floating flag only once */
else if (was_floating)
g_closure_unref (closure); g_closure_unref (closure);
} }
} }
@ -380,7 +433,8 @@ g_closure_remove_invalidate_notifier (GClosure *closure,
g_return_if_fail (notify_func != NULL); g_return_if_fail (notify_func != NULL);
if (closure->is_invalid && closure->in_inotify && /* account removal of notify_func() while its called */ if (closure->is_invalid && closure->in_inotify && /* account removal of notify_func() while its called */
((gpointer) closure->marshal) == ((gpointer) notify_func) && closure->data == notify_data) ((gpointer) closure->marshal) == ((gpointer) notify_func) &&
closure->data == notify_data)
closure->marshal = NULL; closure->marshal = NULL;
else if (!closure_try_remove_inotify (closure, notify_data, notify_func)) else if (!closure_try_remove_inotify (closure, notify_data, notify_func))
g_warning (G_STRLOC ": unable to remove uninstalled invalidation notifier: %p (%p)", g_warning (G_STRLOC ": unable to remove uninstalled invalidation notifier: %p (%p)",
@ -396,7 +450,8 @@ g_closure_remove_finalize_notifier (GClosure *closure,
g_return_if_fail (notify_func != NULL); g_return_if_fail (notify_func != NULL);
if (closure->is_invalid && !closure->in_inotify && /* account removal of notify_func() while its called */ if (closure->is_invalid && !closure->in_inotify && /* account removal of notify_func() while its called */
((gpointer) closure->marshal) == ((gpointer) notify_func) && closure->data == notify_data) ((gpointer) closure->marshal) == ((gpointer) notify_func) &&
closure->data == notify_data)
closure->marshal = NULL; closure->marshal = NULL;
else if (!closure_try_remove_fnotify (closure, notify_data, notify_func)) else if (!closure_try_remove_fnotify (closure, notify_data, notify_func))
g_warning (G_STRLOC ": unable to remove uninstalled finalization notifier: %p (%p)", g_warning (G_STRLOC ": unable to remove uninstalled finalization notifier: %p (%p)",
@ -412,6 +467,7 @@ g_closure_invoke (GClosure *closure,
{ {
g_return_if_fail (closure != NULL); g_return_if_fail (closure != NULL);
g_closure_ref (closure); /* preserve floating flag */
if (!closure->is_invalid) if (!closure->is_invalid)
{ {
GClosureMarshal marshal; GClosureMarshal marshal;
@ -420,8 +476,7 @@ g_closure_invoke (GClosure *closure,
g_return_if_fail (closure->marshal || closure->meta_marshal); g_return_if_fail (closure->marshal || closure->meta_marshal);
closure->ref_count += 1; /* preserve floating flag */ SET (closure, in_marshal, TRUE);
closure->in_marshal = TRUE;
if (closure->meta_marshal) if (closure->meta_marshal)
{ {
marshal_data = closure->notifiers[0].data; marshal_data = closure->notifiers[0].data;
@ -441,9 +496,9 @@ g_closure_invoke (GClosure *closure,
marshal_data); marshal_data);
if (!in_marshal) if (!in_marshal)
closure_invoke_notifiers (closure, POST_NOTIFY); closure_invoke_notifiers (closure, POST_NOTIFY);
closure->in_marshal = in_marshal; SET (closure, in_marshal, in_marshal);
g_closure_unref (closure);
} }
g_closure_unref (closure);
} }
void void
@ -490,7 +545,7 @@ g_cclosure_new_swap (GCallback callback_func,
if (destroy_data) if (destroy_data)
g_closure_add_finalize_notifier (closure, user_data, destroy_data); g_closure_add_finalize_notifier (closure, user_data, destroy_data);
((GCClosure*) closure)->callback = (gpointer) callback_func; ((GCClosure*) closure)->callback = (gpointer) callback_func;
closure->derivative_flag = TRUE; SET (closure, derivative_flag, TRUE);
return closure; return closure;
} }

View File

@ -1,5 +1,6 @@
/* GObject - GLib Type, Object, Parameter and Signal Library /* GObject - GLib Type, Object, Parameter and Signal Library
* Copyright (C) 2000-2001 Red Hat, Inc. * Copyright (C) 2000-2001 Red Hat, Inc.
* Copyright (C) 2005 Imendio AB
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public * modify it under the terms of the GNU Lesser General Public
@ -58,16 +59,19 @@ struct _GClosureNotifyData
}; };
struct _GClosure struct _GClosure
{ {
/*< private >*/ guint ref_count : 15; /*< private >*/
/*< private >*/ guint meta_marshal : 1; volatile guint ref_count : 15;
/*< private >*/ guint n_guards : 1; volatile guint meta_marshal : 1;
/*< private >*/ guint n_fnotifiers : 2; /* finalization notifiers */ volatile guint n_guards : 1;
/*< private >*/ guint n_inotifiers : 8; /* invalidation notifiers */ volatile guint n_fnotifiers : 2; /* finalization notifiers */
/*< private >*/ guint in_inotify : 1; volatile guint n_inotifiers : 8; /* invalidation notifiers */
/*< private >*/ guint floating : 1; volatile guint in_inotify : 1;
/*< protected >*/ guint derivative_flag : 1; volatile guint floating : 1;
/*< public >*/ guint in_marshal : 1; /*< protected >*/
/*< public >*/ guint is_invalid : 1; volatile guint derivative_flag : 1;
/*< public >*/
volatile guint in_marshal : 1;
volatile guint is_invalid : 1;
/*< private >*/ void (*marshal) (GClosure *closure, /*< private >*/ void (*marshal) (GClosure *closure,
GValue /*out*/ *return_value, GValue /*out*/ *return_value,

View File

@ -21,7 +21,7 @@
#include <glib/gdatasetprivate.h> #include <glib/gdatasetprivate.h>
/* /*
* MT safe * MT safe with regards to reference counting.
*/ */
#include "gvaluecollector.h" #include "gvaluecollector.h"

View File

@ -62,11 +62,11 @@ typedef void (*GWeakNotify) (gpointer data,
GObject *where_the_object_was); GObject *where_the_object_was);
struct _GObject struct _GObject
{ {
GTypeInstance g_type_instance; GTypeInstance g_type_instance;
/*< private >*/ /*< private >*/
guint ref_count; volatile guint ref_count;
GData *qdata; GData *qdata;
}; };
struct _GObjectClass struct _GObjectClass
{ {