[Python-checkins] CVS: python/dist/src/Include descrobject.h,2.5,2.6

Guido van Rossum gvanrossum@users.sourceforge.net
Wed, 03 Oct 2001 05:09:32 -0700


Update of /cvsroot/python/python/dist/src/Include
In directory usw-pr-cvs1:/tmp/cvs-serv24226/Include

Modified Files:
	descrobject.h 
Log Message:
*EXPERIMENTAL* speedup of slot_sq_item.  This sped up the following
test dramatically:

    class T(tuple): __dynamic__ = 1
    t = T(range(1000))
    for i in range(1000): tt = tuple(t)

The speedup was about 5x compared to the previous state of CVS (1.7
vs. 8.8, in arbitrary time units).  But it's still more than twice as
slow as as the same test with __dynamic__ = 0 (0.8).

I'm not sure that I really want to go through the trouble of this kind
of speedup for every slot.  Even doing it just for the most popular
slots will be a major effort (the new slot_sq_item is 40+ lines, while
the old one was one line with a powerful macro -- unfortunately the
speedup comes from expanding the macro and doing things in a way
specific to the slot signature).

An alternative that I'm currently considering is sketched in PLAN.txt:
trap setattr on type objects.  But this will require keeping track of
all derived types using weak references.



Index: descrobject.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Include/descrobject.h,v
retrieving revision 2.5
retrieving revision 2.6
diff -C2 -d -r2.5 -r2.6
*** descrobject.h	2001/09/20 21:45:26	2.5
--- descrobject.h	2001/10/03 12:09:29	2.6
***************
*** 21,24 ****
--- 21,58 ----
  };
  
+ /* Various kinds of descriptor objects */
+ 
+ #define PyDescr_COMMON \
+ 	PyObject_HEAD \
+ 	PyTypeObject *d_type; \
+ 	PyObject *d_name
+ 
+ typedef struct {
+ 	PyDescr_COMMON;
+ } PyDescrObject;
+ 
+ typedef struct {
+ 	PyDescr_COMMON;
+ 	PyMethodDef *d_method;
+ } PyMethodDescrObject;
+ 
+ typedef struct {
+ 	PyDescr_COMMON;
+ 	struct PyMemberDef *d_member;
+ } PyMemberDescrObject;
+ 
+ typedef struct {
+ 	PyDescr_COMMON;
+ 	PyGetSetDef *d_getset;
+ } PyGetSetDescrObject;
+ 
+ typedef struct {
+ 	PyDescr_COMMON;
+ 	struct wrapperbase *d_base;
+ 	void *d_wrapped; /* This can be any function pointer */
+ } PyWrapperDescrObject;
+ 
+ extern DL_IMPORT(PyTypeObject) PyWrapperDescr_Type;
+ 
  extern DL_IMPORT(PyObject *) PyDescr_NewMethod(PyTypeObject *, PyMethodDef *);
  extern DL_IMPORT(PyObject *) PyDescr_NewMember(PyTypeObject *,