Behavior.st
author Claus Gittinger <cg@exept.de>
Mon, 16 Jun 2003 11:22:20 +0200
changeset 7358 7df7aa75e77a
parent 7331 cd0f1492d540
child 7435 c5afb1b0fd1b
permissions -rw-r--r--
reading short floats fixed
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
     1
"
5
67342904af11 *** empty log message ***
claus
parents: 3
diff changeset
     2
 COPYRIGHT (c) 1988 by Claus Gittinger
154
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
     3
	      All Rights Reserved
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
     4
a27a279701f8 Initial revision
claus
parents:
diff changeset
     5
 This software is furnished under a license and may be used
a27a279701f8 Initial revision
claus
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
a27a279701f8 Initial revision
claus
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
a27a279701f8 Initial revision
claus
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
a27a279701f8 Initial revision
claus
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
a27a279701f8 Initial revision
claus
parents:
diff changeset
    10
 hereby transferred.
a27a279701f8 Initial revision
claus
parents:
diff changeset
    11
"
a27a279701f8 Initial revision
claus
parents:
diff changeset
    12
5368
192acdc335e6 added #allSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 5327
diff changeset
    13
"{ Package: 'stx:libbasic' }"
192acdc335e6 added #allSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 5327
diff changeset
    14
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    15
Object subclass:#Behavior
7331
cd0f1492d540 code motion from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7269
diff changeset
    16
	instanceVariableNames:'superclass flags methodDictionary instSize'
1494
dab70fc90ebc Remove old methodArray and selectorArray stuff (use MethodDictionary only).
Stefan Vogel <sv@exept.de>
parents: 1461
diff changeset
    17
	classVariableNames:'SubclassInfo'
1088
989f0e510a32 nicer message
Claus Gittinger <cg@exept.de>
parents: 983
diff changeset
    18
	poolDictionaries:''
989f0e510a32 nicer message
Claus Gittinger <cg@exept.de>
parents: 983
diff changeset
    19
	category:'Kernel-Classes'
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    20
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
    21
1760
e7254ff682fd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
    22
!Behavior class methodsFor:'documentation'!
47
93f17a1b452c *** empty log message ***
claus
parents: 45
diff changeset
    23
88
81dacba7a63a *** empty log message ***
claus
parents: 82
diff changeset
    24
copyright
81dacba7a63a *** empty log message ***
claus
parents: 82
diff changeset
    25
"
81dacba7a63a *** empty log message ***
claus
parents: 82
diff changeset
    26
 COPYRIGHT (c) 1988 by Claus Gittinger
154
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
    27
	      All Rights Reserved
88
81dacba7a63a *** empty log message ***
claus
parents: 82
diff changeset
    28
81dacba7a63a *** empty log message ***
claus
parents: 82
diff changeset
    29
 This software is furnished under a license and may be used
81dacba7a63a *** empty log message ***
claus
parents: 82
diff changeset
    30
 only in accordance with the terms of that license and with the
81dacba7a63a *** empty log message ***
claus
parents: 82
diff changeset
    31
 inclusion of the above copyright notice.   This software may not
81dacba7a63a *** empty log message ***
claus
parents: 82
diff changeset
    32
 be provided or otherwise made available to, or used by, any
81dacba7a63a *** empty log message ***
claus
parents: 82
diff changeset
    33
 other person.  No title to or ownership of the software is
81dacba7a63a *** empty log message ***
claus
parents: 82
diff changeset
    34
 hereby transferred.
81dacba7a63a *** empty log message ***
claus
parents: 82
diff changeset
    35
"
81dacba7a63a *** empty log message ***
claus
parents: 82
diff changeset
    36
!
81dacba7a63a *** empty log message ***
claus
parents: 82
diff changeset
    37
47
93f17a1b452c *** empty log message ***
claus
parents: 45
diff changeset
    38
documentation
93f17a1b452c *** empty log message ***
claus
parents: 45
diff changeset
    39
"
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
    40
    Every class in the system inherits from Behavior (via Class, ClassDescription);
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
    41
    so here is where most of the class messages end up being implemented.
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
    42
    (to answer a FAQ: 'Point basicNew' will be done here :-)
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
    43
356
claus
parents: 345
diff changeset
    44
    Beginners should keep in mind, that all classes are instances (of subclasses)
91
b3971c7dc731 *** empty log message ***
claus
parents: 88
diff changeset
    45
    of Behavior, therefore you will find the above mentioned 'basicNew:' method 
b3971c7dc731 *** empty log message ***
claus
parents: 88
diff changeset
    46
    under the 'instance'-methods of Behavior - NOT under the class methods 
154
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
    47
    ('Behavior new' will create and return a new class, while sending 'new' to 
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
    48
    any instance of Behavior (i.e. any class) will return an instance of that class).
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
    49
2226
b59ec5725a9d commentary
Claus Gittinger <cg@exept.de>
parents: 2224
diff changeset
    50
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
    51
    Behavior provides minimum support for all classes - additional stuff is
77
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
    52
    found in ClassDescription and Class. Behaviors provides all mechanisms needed
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
    53
    to create instances, and send messages to those. However, Behavior does not provide 
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
    54
    all the (symbolic) information needed to compile methods for a class or to get
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
    55
    useful information in inspectors.
47
93f17a1b452c *** empty log message ***
claus
parents: 45
diff changeset
    56
2226
b59ec5725a9d commentary
Claus Gittinger <cg@exept.de>
parents: 2224
diff changeset
    57
    for experts:
b59ec5725a9d commentary
Claus Gittinger <cg@exept.de>
parents: 2224
diff changeset
    58
b59ec5725a9d commentary
Claus Gittinger <cg@exept.de>
parents: 2224
diff changeset
    59
    Since instances of Behavior provide all that is needed to interact with the VM's
b59ec5725a9d commentary
Claus Gittinger <cg@exept.de>
parents: 2224
diff changeset
    60
    message dispatch mechanism, these can be used as 'light weight' classes.
b59ec5725a9d commentary
Claus Gittinger <cg@exept.de>
parents: 2224
diff changeset
    61
    I.e. it is possible, to generate completely anonymous classes (and instances thereof)
b59ec5725a9d commentary
Claus Gittinger <cg@exept.de>
parents: 2224
diff changeset
    62
    on the fly - 'Behavior new new' is such a thingy.
b59ec5725a9d commentary
Claus Gittinger <cg@exept.de>
parents: 2224
diff changeset
    63
b59ec5725a9d commentary
Claus Gittinger <cg@exept.de>
parents: 2224
diff changeset
    64
    The selectors and Methods are organized in a MethodDictionary (which is not a true 
b59ec5725a9d commentary
Claus Gittinger <cg@exept.de>
parents: 2224
diff changeset
    65
    dictionary, but an Array with alternating selector/method entries).
1494
dab70fc90ebc Remove old methodArray and selectorArray stuff (use MethodDictionary only).
Stefan Vogel <sv@exept.de>
parents: 1461
diff changeset
    66
    This avoids the need for knowledge about Dictionaries in the runtime library (VM)
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
    67
    (lookup and search in these is seldom anyway, so the added benefit from using a 
1494
dab70fc90ebc Remove old methodArray and selectorArray stuff (use MethodDictionary only).
Stefan Vogel <sv@exept.de>
parents: 1461
diff changeset
    68
     hashed dictionary is almost void).
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    69
1285
7df250a95d7b commentary
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
    70
    [Instance variables:]
7df250a95d7b commentary
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
    71
2666
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
    72
	superclass        <Class>            the receivers superclass
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
    73
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
    74
	methodDictionary  <MethodDictionary> inst-selectors and methods
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
    75
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
    76
	instSize          <SmallInteger>     the number of instance variables
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
    77
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
    78
	flags             <SmallInteger>     special flag bits coded in a number
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
    79
					     not for application use
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    80
81
e02c66a7296f *** empty log message ***
claus
parents: 77
diff changeset
    81
    flag bits (see stc.h):
47
93f17a1b452c *** empty log message ***
claus
parents: 45
diff changeset
    82
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
    83
    NOTICE: layout known by compiler and runtime system; be careful when changing
1285
7df250a95d7b commentary
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
    84
1292
89497fff7f87 documentation
Claus Gittinger <cg@exept.de>
parents: 1285
diff changeset
    85
    [author:]
2666
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
    86
	Claus Gittinger
1292
89497fff7f87 documentation
Claus Gittinger <cg@exept.de>
parents: 1285
diff changeset
    87
1285
7df250a95d7b commentary
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
    88
    [see also:]
2666
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
    89
	Class ClassDescription Metaclass
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
    90
	Method MethodDictionary
47
93f17a1b452c *** empty log message ***
claus
parents: 45
diff changeset
    91
"
356
claus
parents: 345
diff changeset
    92
!
claus
parents: 345
diff changeset
    93
claus
parents: 345
diff changeset
    94
virtualMachineRelationship 
claus
parents: 345
diff changeset
    95
"
2230
b7a86880ab9c beahvior documentation updated
Claus Gittinger <cg@exept.de>
parents: 2228
diff changeset
    96
    Expert info follows:
b7a86880ab9c beahvior documentation updated
Claus Gittinger <cg@exept.de>
parents: 2228
diff changeset
    97
357
claus
parents: 356
diff changeset
    98
    NOTICE: 
2666
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
    99
	the stuff described below may not be available on other
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   100
	Smalltalk implementations; be aware that these error mechanisms
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   101
	are ST/X specials and applications using these (tricks) may
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   102
	not be portable to other systems.
357
claus
parents: 356
diff changeset
   103
claus
parents: 356
diff changeset
   104
    WARNING: 
2666
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   105
	do not try the examples below on (some) other smalltalk systems;
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   106
	it has been reported, that some crash badly when doing this .... ;-)
357
claus
parents: 356
diff changeset
   107
356
claus
parents: 345
diff changeset
   108
    Instances of Behavior and subclasses (i.e. in sloppy words: classes)
claus
parents: 345
diff changeset
   109
    play a special role w.r.t. the VM. Only objects whose class-slot is marked
claus
parents: 345
diff changeset
   110
    as being behaviorLike (in the flag-instvar) are considered to be classLike
claus
parents: 345
diff changeset
   111
    and a message lookup will be done for it in the well known way.
claus
parents: 345
diff changeset
   112
    Thus, if an object has a class for which its class does NOT have
362
claus
parents: 360
diff changeset
   113
    this flag bit set, the VM will trigger an error on a message send.
356
claus
parents: 345
diff changeset
   114
2230
b7a86880ab9c beahvior documentation updated
Claus Gittinger <cg@exept.de>
parents: 2228
diff changeset
   115
356
claus
parents: 345
diff changeset
   116
    Why is this so:
claus
parents: 345
diff changeset
   117
claus
parents: 345
diff changeset
   118
    the above lets every object play the role of a class,
claus
parents: 345
diff changeset
   119
    which has been flagged as behaviorLike in its class's flag.
claus
parents: 345
diff changeset
   120
    Thus, you can create arbitrary new classLike objects and have the VM 
claus
parents: 345
diff changeset
   121
    play with them.
claus
parents: 345
diff changeset
   122
    This may offer the flexibility to create a totally different object scheme
362
claus
parents: 360
diff changeset
   123
    on top of ST/X (for example: Self like objects) where any object can play
claus
parents: 360
diff changeset
   124
    a classRole for another object.
356
claus
parents: 345
diff changeset
   125
2148
f0a95dd96db5 comment
Claus Gittinger <cg@exept.de>
parents: 2128
diff changeset
   126
    [A concrete application of this is found in the Structure class,
f0a95dd96db5 comment
Claus Gittinger <cg@exept.de>
parents: 2128
diff changeset
   127
     which creates objects which are their own class !!
f0a95dd96db5 comment
Claus Gittinger <cg@exept.de>
parents: 2128
diff changeset
   128
     This may look to be of theoretical value at first sight, 
f0a95dd96db5 comment
Claus Gittinger <cg@exept.de>
parents: 2128
diff changeset
   129
     however, such a construct saves memory, by not requiring an extra 
f0a95dd96db5 comment
Claus Gittinger <cg@exept.de>
parents: 2128
diff changeset
   130
     class object per Structure object.]
f0a95dd96db5 comment
Claus Gittinger <cg@exept.de>
parents: 2128
diff changeset
   131
f0a95dd96db5 comment
Claus Gittinger <cg@exept.de>
parents: 2128
diff changeset
   132
    Be aware, that the VM trusts the isBehaviorLike flag - IF it is set for some
f0a95dd96db5 comment
Claus Gittinger <cg@exept.de>
parents: 2128
diff changeset
   133
    object, the VM EXPECTS the object selector and methodDictionaries to be found
362
claus
parents: 360
diff changeset
   134
    at the instance positions as defined here.
claus
parents: 360
diff changeset
   135
    (i.e. instanceVariables with contents and semantic corresponding to
2666
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   136
	superclass 
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   137
	flags 
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   138
	methodDictionary
362
claus
parents: 360
diff changeset
   139
     must be present and have the same instVar-index as here).
claus
parents: 360
diff changeset
   140
356
claus
parents: 345
diff changeset
   141
    The VM (and the system) may crash badly, if this is not the case.
362
claus
parents: 360
diff changeset
   142
356
claus
parents: 345
diff changeset
   143
    Since every class in the system derives from Behavior, the flag setting
357
claus
parents: 356
diff changeset
   144
    (and instance variable layout) is correct for all 'normal' classes.
claus
parents: 356
diff changeset
   145
    If you experiment by creating new behaviorLike objects, please take
claus
parents: 356
diff changeset
   146
    care of this flag. If you want to use the VM's lookup function, the
1494
dab70fc90ebc Remove old methodArray and selectorArray stuff (use MethodDictionary only).
Stefan Vogel <sv@exept.de>
parents: 1461
diff changeset
   147
    instVars  'superclass' and 'methodDictionary' are required
357
claus
parents: 356
diff changeset
   148
    and have to be at the same instVar index.
362
claus
parents: 360
diff changeset
   149
    (we suggest, you subclass Behavior, to make certain)
357
claus
parents: 356
diff changeset
   150
2230
b7a86880ab9c beahvior documentation updated
Claus Gittinger <cg@exept.de>
parents: 2228
diff changeset
   151
b7a86880ab9c beahvior documentation updated
Claus Gittinger <cg@exept.de>
parents: 2228
diff changeset
   152
    Vice versa, defining 'dump classes', which have the behaviorLike bit turned
b7a86880ab9c beahvior documentation updated
Claus Gittinger <cg@exept.de>
parents: 2228
diff changeset
   153
    of may be useful as well; if a message is sent to an instance of such
b7a86880ab9c beahvior documentation updated
Claus Gittinger <cg@exept.de>
parents: 2228
diff changeset
   154
    a thingy, the VM performs a recovery sequence, which is much like the
b7a86880ab9c beahvior documentation updated
Claus Gittinger <cg@exept.de>
parents: 2228
diff changeset
   155
    #doesNotUnderstand: mechanism - however, since the instance is no good
b7a86880ab9c beahvior documentation updated
Claus Gittinger <cg@exept.de>
parents: 2228
diff changeset
   156
    receiver of such a message, a #cannotSendMessage:to: is now sent to the
b7a86880ab9c beahvior documentation updated
Claus Gittinger <cg@exept.de>
parents: 2228
diff changeset
   157
    class (which is not a real class), passing the original message (selector
b7a86880ab9c beahvior documentation updated
Claus Gittinger <cg@exept.de>
parents: 2228
diff changeset
   158
    and arguments) along with the original receiver.
b7a86880ab9c beahvior documentation updated
Claus Gittinger <cg@exept.de>
parents: 2228
diff changeset
   159
    The default behavior for this message is to raise an internalError signal -
b7a86880ab9c beahvior documentation updated
Claus Gittinger <cg@exept.de>
parents: 2228
diff changeset
   160
    however, you may redefine this in your 'dum class' for recovery.
b7a86880ab9c beahvior documentation updated
Claus Gittinger <cg@exept.de>
parents: 2228
diff changeset
   161
    One possible use of this is to provide new message send algorithms - the
b7a86880ab9c beahvior documentation updated
Claus Gittinger <cg@exept.de>
parents: 2228
diff changeset
   162
    class may lookup a method and invoke it directly, via the #valueWithReceiver:
b7a86880ab9c beahvior documentation updated
Claus Gittinger <cg@exept.de>
parents: 2228
diff changeset
   163
    interface.
b7a86880ab9c beahvior documentation updated
Claus Gittinger <cg@exept.de>
parents: 2228
diff changeset
   164
b7a86880ab9c beahvior documentation updated
Claus Gittinger <cg@exept.de>
parents: 2228
diff changeset
   165
    All of the above is pure expert stuff 
b7a86880ab9c beahvior documentation updated
Claus Gittinger <cg@exept.de>
parents: 2228
diff changeset
   166
    - You do not have to care about the above details if you are a 'normal'
b7a86880ab9c beahvior documentation updated
Claus Gittinger <cg@exept.de>
parents: 2228
diff changeset
   167
    ST-programmer, though (and even most of those will never use these features).
357
claus
parents: 356
diff changeset
   168
356
claus
parents: 345
diff changeset
   169
759
908363ce8a32 interest is written with one 'r' (shame on me)
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
   170
    Examples (only of theoretical interest):
2666
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   171
	take away the behaviorLike-flag from a class.
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   172
	-> The instances will not understand any messages, since the VM will
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   173
	   not recognize its class as being a class ...
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   174
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   175
	|newMeta notRecognizedAsClass someInstance|
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   176
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   177
	newMeta := Metaclass new.
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   178
	newMeta flags:0.
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   179
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   180
	notRecognizedAsClass := newMeta new.
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   181
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   182
	someInstance := notRecognizedAsClass new.
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   183
	someInstance perform:#isNil
356
claus
parents: 345
diff changeset
   184
357
claus
parents: 356
diff changeset
   185
claus
parents: 356
diff changeset
   186
    Of course, this is an exception which can be handled ...:
claus
parents: 356
diff changeset
   187
    Example:
claus
parents: 356
diff changeset
   188
2666
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   189
	|newMeta notRecognizedAsClass someInstance|
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   190
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   191
	newMeta := Metaclass new.
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   192
	newMeta flags:0.
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   193
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   194
	notRecognizedAsClass := newMeta new.
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   195
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   196
	someInstance := notRecognizedAsClass new.
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   197
	Object errorSignal handle:[:ex |
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   198
	    ex return
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   199
	] do:[
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   200
	    someInstance perform:#isNil
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   201
	]
357
claus
parents: 356
diff changeset
   202
claus
parents: 356
diff changeset
   203
claus
parents: 356
diff changeset
   204
    likewise, a doesNotUnderstand-notUnderstood can be handled:
claus
parents: 356
diff changeset
   205
    Example:
claus
parents: 356
diff changeset
   206
2666
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   207
	|newMeta funnyClass someInstance|
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   208
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   209
	newMeta := Metaclass new.
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   210
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   211
	funnyClass := newMeta new.
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   212
	funnyClass setSuperclass:nil.
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   213
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   214
	someInstance := funnyClass new.
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   215
	Object errorSignal handle:[:ex |
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   216
	     ex return
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   217
	] do:[
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   218
	    someInstance perform:#isNil
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   219
	]
357
claus
parents: 356
diff changeset
   220
claus
parents: 356
diff changeset
   221
362
claus
parents: 360
diff changeset
   222
    more examples, which try to trick the VM ;-):
2666
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   223
	badly playing around with a classes internals ...
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   224
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   225
	|newClass someInstance|
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   226
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   227
	newClass := Class new.
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   228
	newClass setSuperclass:nil.
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   229
	someInstance := newClass new.
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   230
	someInstance inspect
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   231
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   232
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   233
	|newClass someInstance|
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   234
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   235
	newClass := Class new.
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   236
	newClass setSuperclass:newClass.
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   237
	someInstance := newClass new.
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   238
	someInstance inspect
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   239
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   240
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   241
	|newClass someInstance|
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   242
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   243
	newClass := Class new.
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   244
	newClass setSuperclass:1.
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   245
	someInstance := newClass new.
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   246
	someInstance inspect
357
claus
parents: 356
diff changeset
   247
claus
parents: 356
diff changeset
   248
356
claus
parents: 345
diff changeset
   249
    Example:
2666
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   250
	creating totally anonymous classes:
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   251
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   252
	|newClass someInstance|
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   253
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   254
	newClass := Class new.
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   255
	someInstance := newClass new.
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   256
	someInstance inspect
356
claus
parents: 345
diff changeset
   257
357
claus
parents: 356
diff changeset
   258
356
claus
parents: 345
diff changeset
   259
    Example:
2666
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   260
	creating totally anonymous metaclasses:
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   261
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   262
	|newMeta newClass someInstance|
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   263
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   264
	newMeta := Metaclass new.
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   265
	newClass := newMeta new.
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   266
	someInstance := newClass new.
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   267
	someInstance inspect
357
claus
parents: 356
diff changeset
   268
2230
b7a86880ab9c beahvior documentation updated
Claus Gittinger <cg@exept.de>
parents: 2228
diff changeset
   269
357
claus
parents: 356
diff changeset
   270
    PS: if you experiment with new behaviorLike objects, you may want 
2666
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   271
	to turn off the VM's debugPrintouts
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   272
	with: 
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   273
		'Smalltalk debugPrinting:false'
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   274
	and: 
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   275
		'Smalltalk infoPrinting:false'
356
claus
parents: 345
diff changeset
   276
"
47
93f17a1b452c *** empty log message ***
claus
parents: 45
diff changeset
   277
! !
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   278
1760
e7254ff682fd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
   279
!Behavior class methodsFor:'creating new classes'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   280
a27a279701f8 Initial revision
claus
parents:
diff changeset
   281
new
356
claus
parents: 345
diff changeset
   282
    "creates and return a new behavior (which is like a class,
claus
parents: 345
diff changeset
   283
     but without the symbolic & name information).
claus
parents: 345
diff changeset
   284
     Not for normal applications.
claus
parents: 345
diff changeset
   285
     Sending the returned behavior the #new message gives you
claus
parents: 345
diff changeset
   286
     an instance if it.
claus
parents: 345
diff changeset
   287
claus
parents: 345
diff changeset
   288
     Notice: the returned class is given a superclass of Object;
claus
parents: 345
diff changeset
   289
     this allows for its new instances to be inspected and the like."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   290
a27a279701f8 Initial revision
claus
parents:
diff changeset
   291
    |newClass|
a27a279701f8 Initial revision
claus
parents:
diff changeset
   292
a27a279701f8 Initial revision
claus
parents:
diff changeset
   293
    newClass := self basicNew.
5906
4fdd3f36bfff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5862
diff changeset
   294
    newClass 
4fdd3f36bfff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5862
diff changeset
   295
        setSuperclass:Object
4fdd3f36bfff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5862
diff changeset
   296
        methodDictionary:(MethodDictionary new)
4fdd3f36bfff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5862
diff changeset
   297
        instSize:0
4fdd3f36bfff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5862
diff changeset
   298
        flags:(self flagBehavior).
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   299
    ^ newClass
356
claus
parents: 345
diff changeset
   300
claus
parents: 345
diff changeset
   301
    "
claus
parents: 345
diff changeset
   302
     Behavior new               <- a new behavior
claus
parents: 345
diff changeset
   303
     Behavior new new           <- an instance of it
claus
parents: 345
diff changeset
   304
     ClassDescription new       <- a new classDescription
claus
parents: 345
diff changeset
   305
     ClassDescription new new   <- an instance of it
claus
parents: 345
diff changeset
   306
     Class new                  <- a new class
claus
parents: 345
diff changeset
   307
     Class new new              <- an instance of it
claus
parents: 345
diff changeset
   308
     Metaclass new              <- a new metaclass
claus
parents: 345
diff changeset
   309
     Metaclass new new          <- an instance (i.e. a class) of it
claus
parents: 345
diff changeset
   310
     Metaclass new new new      <- an instance of this new class
claus
parents: 345
diff changeset
   311
    "
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
   312
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
   313
    "Modified: 7.6.1996 / 15:38:58 / stefan"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   314
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
   315
1760
e7254ff682fd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
   316
!Behavior class methodsFor:'flag bit constants'!
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   317
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   318
flagBehavior
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   319
    "return the flag code which marks Behavior-like instances.
7190
2056416250a2 comments
Claus Gittinger <cg@exept.de>
parents: 7162
diff changeset
   320
     Inline C-code and the VM check this single bit in the flag value when
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   321
     checking for behaviors."
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   322
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   323
%{  /* NOCONTEXT */
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   324
    /* this is defined as a primitive to get defines from stc.h */
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   325
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1088
diff changeset
   326
    RETURN ( __MKSMALLINT(BEHAVIOR_INSTS) );
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   327
%}
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   328
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   329
    "consistency check:
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   330
     all class-entries must be behaviors;
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   331
     all behaviors must be flagged so (in its class's flags)
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   332
     (otherwise, VM will bark)
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   333
     all non-behaviors may not be flagged
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   334
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   335
     |bit|
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   336
     bit := Class flagBehavior.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   337
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   338
     ObjectMemory allObjectsDo:[:o|
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   339
       o isBehavior ifTrue:[
7190
2056416250a2 comments
Claus Gittinger <cg@exept.de>
parents: 7162
diff changeset
   340
         (o class flags bitTest:bit) ifFalse:[
2056416250a2 comments
Claus Gittinger <cg@exept.de>
parents: 7162
diff changeset
   341
             self halt
2056416250a2 comments
Claus Gittinger <cg@exept.de>
parents: 7162
diff changeset
   342
         ].
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   343
       ] ifFalse:[
7190
2056416250a2 comments
Claus Gittinger <cg@exept.de>
parents: 7162
diff changeset
   344
         (o class flags bitTest:bit) ifTrue:[
2056416250a2 comments
Claus Gittinger <cg@exept.de>
parents: 7162
diff changeset
   345
             self halt
2056416250a2 comments
Claus Gittinger <cg@exept.de>
parents: 7162
diff changeset
   346
         ].
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   347
       ].
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   348
       o class isBehavior ifFalse:[
7190
2056416250a2 comments
Claus Gittinger <cg@exept.de>
parents: 7162
diff changeset
   349
         self halt
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   350
       ] ifTrue:[
7190
2056416250a2 comments
Claus Gittinger <cg@exept.de>
parents: 7162
diff changeset
   351
         (o class class flags bitTest:bit) ifFalse:[
2056416250a2 comments
Claus Gittinger <cg@exept.de>
parents: 7162
diff changeset
   352
             self halt
2056416250a2 comments
Claus Gittinger <cg@exept.de>
parents: 7162
diff changeset
   353
         ]
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   354
       ]
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   355
     ]
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   356
    "
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   357
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   358
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   359
flagBlock
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   360
    "return the flag code which marks Block-like instances.
2236
ab40680bd690 flagBlock vs. flagBlockLike
Claus Gittinger <cg@exept.de>
parents: 2230
diff changeset
   361
     The VM checks for either this bit or the blockLike bit in the flag 
ab40680bd690 flagBlock vs. flagBlockLike
Claus Gittinger <cg@exept.de>
parents: 2230
diff changeset
   362
     value when checking for blocks to be evaluated from bytecodes.
ab40680bd690 flagBlock vs. flagBlockLike
Claus Gittinger <cg@exept.de>
parents: 2230
diff changeset
   363
     However, compiled code only checks for the block bit."
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   364
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   365
%{  /* NOCONTEXT */
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   366
    /* this is defined as a primitive to get defines from stc.h */
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   367
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1088
diff changeset
   368
    RETURN ( __MKSMALLINT(BLOCK_INSTS) );
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   369
%}
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   370
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   371
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   372
flagBlockContext
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   373
    "return the flag code which marks BlockContext-like instances.
2226
b59ec5725a9d commentary
Claus Gittinger <cg@exept.de>
parents: 2224
diff changeset
   374
     The VM checks this single bit in the flag value when
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   375
     checking for blockContexts."
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   376
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   377
%{  /* NOCONTEXT */
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   378
    /* this is defined as a primitive to get defines from stc.h */
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   379
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1088
diff changeset
   380
    RETURN ( __MKSMALLINT(BCONTEXT_INSTS) );
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   381
%}
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   382
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   383
2236
ab40680bd690 flagBlock vs. flagBlockLike
Claus Gittinger <cg@exept.de>
parents: 2230
diff changeset
   384
flagBlockLike
ab40680bd690 flagBlock vs. flagBlockLike
Claus Gittinger <cg@exept.de>
parents: 2230
diff changeset
   385
    "return the flag code which marks Block-like instances
ab40680bd690 flagBlock vs. flagBlockLike
Claus Gittinger <cg@exept.de>
parents: 2230
diff changeset
   386
     with respect to byteCode interpretation.
ab40680bd690 flagBlock vs. flagBlockLike
Claus Gittinger <cg@exept.de>
parents: 2230
diff changeset
   387
     The VM checks for either this bit or the block bit in the flag 
ab40680bd690 flagBlock vs. flagBlockLike
Claus Gittinger <cg@exept.de>
parents: 2230
diff changeset
   388
     value when checking for blocks to be evaluated from bytecodes.
ab40680bd690 flagBlock vs. flagBlockLike
Claus Gittinger <cg@exept.de>
parents: 2230
diff changeset
   389
     However, compiled code only checks for the block bit."
ab40680bd690 flagBlock vs. flagBlockLike
Claus Gittinger <cg@exept.de>
parents: 2230
diff changeset
   390
ab40680bd690 flagBlock vs. flagBlockLike
Claus Gittinger <cg@exept.de>
parents: 2230
diff changeset
   391
%{  /* NOCONTEXT */
ab40680bd690 flagBlock vs. flagBlockLike
Claus Gittinger <cg@exept.de>
parents: 2230
diff changeset
   392
    /* this is defined as a primitive to get defines from stc.h */
ab40680bd690 flagBlock vs. flagBlockLike
Claus Gittinger <cg@exept.de>
parents: 2230
diff changeset
   393
ab40680bd690 flagBlock vs. flagBlockLike
Claus Gittinger <cg@exept.de>
parents: 2230
diff changeset
   394
    RETURN ( __MKSMALLINT(BLOCKLIKE_INSTS) );
ab40680bd690 flagBlock vs. flagBlockLike
Claus Gittinger <cg@exept.de>
parents: 2230
diff changeset
   395
%}
ab40680bd690 flagBlock vs. flagBlockLike
Claus Gittinger <cg@exept.de>
parents: 2230
diff changeset
   396
!
ab40680bd690 flagBlock vs. flagBlockLike
Claus Gittinger <cg@exept.de>
parents: 2230
diff changeset
   397
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   398
flagBytes
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   399
    "return the flag code for byte-valued indexed instances.
2226
b59ec5725a9d commentary
Claus Gittinger <cg@exept.de>
parents: 2224
diff changeset
   400
     The VM masks the flag value with the indexMask (maskIndexType) 
b59ec5725a9d commentary
Claus Gittinger <cg@exept.de>
parents: 2224
diff changeset
   401
     and compares it to this flag value, when checking for byte valued
b59ec5725a9d commentary
Claus Gittinger <cg@exept.de>
parents: 2224
diff changeset
   402
     variable instances."
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   403
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   404
%{  /* NOCONTEXT */
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   405
    /* this is defined as a primitive to get defines from stc.h */
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   406
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1088
diff changeset
   407
    RETURN ( __MKSMALLINT(BYTEARRAY) );
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   408
%}
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   409
    "
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   410
     Behavior flagBytes    
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   411
    "
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   412
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   413
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   414
flagContext
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   415
    "return the flag code which marks Context-like instances.
2226
b59ec5725a9d commentary
Claus Gittinger <cg@exept.de>
parents: 2224
diff changeset
   416
     The VM checks this single bit in the flag value when
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   417
     checking for contexts."
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   418
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   419
%{  /* NOCONTEXT */
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   420
    /* this is defined as a primitive to get defines from stc.h */
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   421
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1088
diff changeset
   422
    RETURN ( __MKSMALLINT(CONTEXT_INSTS) );
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   423
%}
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   424
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   425
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   426
flagDoubles
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   427
    "return the flag code for double-valued indexed instances (i.e. 8-byte reals).
2226
b59ec5725a9d commentary
Claus Gittinger <cg@exept.de>
parents: 2224
diff changeset
   428
     The VM masks the flag value with the indexMask (maskIndexType) 
b59ec5725a9d commentary
Claus Gittinger <cg@exept.de>
parents: 2224
diff changeset
   429
     and compares it to this flag value, when checking for double valued
b59ec5725a9d commentary
Claus Gittinger <cg@exept.de>
parents: 2224
diff changeset
   430
     variable instances."
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   431
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   432
%{  /* NOCONTEXT */
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   433
    /* this is defined as a primitive to get defines from stc.h */
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   434
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1088
diff changeset
   435
    RETURN ( __MKSMALLINT(DOUBLEARRAY) );
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   436
%}
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   437
    "
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   438
     Behavior flagDoubles    
2226
b59ec5725a9d commentary
Claus Gittinger <cg@exept.de>
parents: 2224
diff changeset
   439
b59ec5725a9d commentary
Claus Gittinger <cg@exept.de>
parents: 2224
diff changeset
   440
     (ByteArray flags bitAnd:(Behavior maskIndexType)) == (Behavior flagDoubles)    
b59ec5725a9d commentary
Claus Gittinger <cg@exept.de>
parents: 2224
diff changeset
   441
     (DoubleArray flags bitAnd:(Behavior maskIndexType)) == (Behavior flagDoubles)    
b59ec5725a9d commentary
Claus Gittinger <cg@exept.de>
parents: 2224
diff changeset
   442
     (Object flags bitAnd:(Behavior maskIndexType)) == (Behavior flagDoubles)    
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   443
    "
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   444
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   445
7190
2056416250a2 comments
Claus Gittinger <cg@exept.de>
parents: 7162
diff changeset
   446
flagExternalBytes
2056416250a2 comments
Claus Gittinger <cg@exept.de>
parents: 7162
diff changeset
   447
    "return the flag code which marks ExternalBytes-like instances.
2056416250a2 comments
Claus Gittinger <cg@exept.de>
parents: 7162
diff changeset
   448
     Inline C-code and the VM check this single bit in the flag value when
2056416250a2 comments
Claus Gittinger <cg@exept.de>
parents: 7162
diff changeset
   449
     checking for an externalBytes-like objet."
2056416250a2 comments
Claus Gittinger <cg@exept.de>
parents: 7162
diff changeset
   450
2056416250a2 comments
Claus Gittinger <cg@exept.de>
parents: 7162
diff changeset
   451
%{  /* NOCONTEXT */
2056416250a2 comments
Claus Gittinger <cg@exept.de>
parents: 7162
diff changeset
   452
    /* this is defined as a primitive to get defines from stc.h */
2056416250a2 comments
Claus Gittinger <cg@exept.de>
parents: 7162
diff changeset
   453
2056416250a2 comments
Claus Gittinger <cg@exept.de>
parents: 7162
diff changeset
   454
    RETURN ( __MKSMALLINT(EXTERNALBYTES_INSTS) );
2056416250a2 comments
Claus Gittinger <cg@exept.de>
parents: 7162
diff changeset
   455
%}
2056416250a2 comments
Claus Gittinger <cg@exept.de>
parents: 7162
diff changeset
   456
!
2056416250a2 comments
Claus Gittinger <cg@exept.de>
parents: 7162
diff changeset
   457
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   458
flagFloat
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   459
    "return the flag code which marks Float-like instances.
7190
2056416250a2 comments
Claus Gittinger <cg@exept.de>
parents: 7162
diff changeset
   460
     Inline C-code and the VM check this single bit in the flag value when
2226
b59ec5725a9d commentary
Claus Gittinger <cg@exept.de>
parents: 2224
diff changeset
   461
     checking for a float."
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   462
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   463
%{  /* NOCONTEXT */
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   464
    /* this is defined as a primitive to get defines from stc.h */
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   465
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1088
diff changeset
   466
    RETURN ( __MKSMALLINT(FLOAT_INSTS) );
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   467
%}
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   468
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   469
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   470
flagFloats
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   471
    "return the flag code for float-valued indexed instances (i.e. 4-byte reals).
2226
b59ec5725a9d commentary
Claus Gittinger <cg@exept.de>
parents: 2224
diff changeset
   472
     The VM masks the flag value with the indexMask (maskIndexType) 
b59ec5725a9d commentary
Claus Gittinger <cg@exept.de>
parents: 2224
diff changeset
   473
     and compares it to this flag value, when checking for double valued
b59ec5725a9d commentary
Claus Gittinger <cg@exept.de>
parents: 2224
diff changeset
   474
     variable instances."
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   475
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   476
%{  /* NOCONTEXT */
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   477
    /* this is defined as a primitive to get defines from stc.h */
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   478
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1088
diff changeset
   479
    RETURN ( __MKSMALLINT(FLOATARRAY) );
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   480
%}
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   481
    "
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   482
     Behavior flagFloats    
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   483
    "
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   484
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   485
1634
9ce0afb7f089 commentary
Claus Gittinger <cg@exept.de>
parents: 1514
diff changeset
   486
flagForSymbolic:aSymbol
9ce0afb7f089 commentary
Claus Gittinger <cg@exept.de>
parents: 1514
diff changeset
   487
    "return the flag code for indexed instances with aSymbolic type.
9ce0afb7f089 commentary
Claus Gittinger <cg@exept.de>
parents: 1514
diff changeset
   488
     The argument may be one of #float, #double, #long, #word, #signedWord,
6104
c3466930ccd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6099
diff changeset
   489
     #signedLong or #byte.
c3466930ccd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6099
diff changeset
   490
     For VW compatibility, also accept:
c3466930ccd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6099
diff changeset
   491
        #objects, #bytes.
c3466930ccd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6099
diff changeset
   492
    "
1634
9ce0afb7f089 commentary
Claus Gittinger <cg@exept.de>
parents: 1514
diff changeset
   493
9ce0afb7f089 commentary
Claus Gittinger <cg@exept.de>
parents: 1514
diff changeset
   494
%{   /* NOCONTEXT */
9ce0afb7f089 commentary
Claus Gittinger <cg@exept.de>
parents: 1514
diff changeset
   495
    if (aSymbol == @symbol(float)) {
6104
c3466930ccd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6099
diff changeset
   496
        RETURN ( __MKSMALLINT(FLOATARRAY) );
1634
9ce0afb7f089 commentary
Claus Gittinger <cg@exept.de>
parents: 1514
diff changeset
   497
    }
9ce0afb7f089 commentary
Claus Gittinger <cg@exept.de>
parents: 1514
diff changeset
   498
    if (aSymbol == @symbol(double)) {
6104
c3466930ccd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6099
diff changeset
   499
        RETURN ( __MKSMALLINT(DOUBLEARRAY) );
1634
9ce0afb7f089 commentary
Claus Gittinger <cg@exept.de>
parents: 1514
diff changeset
   500
    }
9ce0afb7f089 commentary
Claus Gittinger <cg@exept.de>
parents: 1514
diff changeset
   501
    if (aSymbol == @symbol(long)) {
6104
c3466930ccd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6099
diff changeset
   502
        RETURN ( __MKSMALLINT(LONGARRAY) );
1634
9ce0afb7f089 commentary
Claus Gittinger <cg@exept.de>
parents: 1514
diff changeset
   503
    }
3920
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
   504
    if (aSymbol == @symbol(longLong)) {
6104
c3466930ccd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6099
diff changeset
   505
        RETURN ( __MKSMALLINT(LONGLONGARRAY) );
3920
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
   506
    }
1634
9ce0afb7f089 commentary
Claus Gittinger <cg@exept.de>
parents: 1514
diff changeset
   507
    if (aSymbol == @symbol(word)) {
6104
c3466930ccd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6099
diff changeset
   508
        RETURN ( __MKSMALLINT(WORDARRAY) );
1634
9ce0afb7f089 commentary
Claus Gittinger <cg@exept.de>
parents: 1514
diff changeset
   509
    }
9ce0afb7f089 commentary
Claus Gittinger <cg@exept.de>
parents: 1514
diff changeset
   510
    if (aSymbol == @symbol(signedWord)) {
6104
c3466930ccd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6099
diff changeset
   511
        RETURN ( __MKSMALLINT(SWORDARRAY) );
1634
9ce0afb7f089 commentary
Claus Gittinger <cg@exept.de>
parents: 1514
diff changeset
   512
    }
9ce0afb7f089 commentary
Claus Gittinger <cg@exept.de>
parents: 1514
diff changeset
   513
    if (aSymbol == @symbol(signedLong)) {
6104
c3466930ccd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6099
diff changeset
   514
        RETURN ( __MKSMALLINT(SLONGARRAY) );
1634
9ce0afb7f089 commentary
Claus Gittinger <cg@exept.de>
parents: 1514
diff changeset
   515
    }
3920
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
   516
    if (aSymbol == @symbol(signedLongLong)) {
6104
c3466930ccd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6099
diff changeset
   517
        RETURN ( __MKSMALLINT(SLONGLONGARRAY) );
c3466930ccd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6099
diff changeset
   518
    }
c3466930ccd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6099
diff changeset
   519
    if ((aSymbol == @symbol(byte)) || (aSymbol == @symbol(bytes))) {
c3466930ccd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6099
diff changeset
   520
        RETURN ( __MKSMALLINT(BYTEARRAY) );
3920
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
   521
    }
6104
c3466930ccd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6099
diff changeset
   522
    if (aSymbol == @symbol(objects)) {
c3466930ccd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6099
diff changeset
   523
        RETURN ( __MKSMALLINT(POINTERARRAY) );
c3466930ccd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6099
diff changeset
   524
    }
c3466930ccd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6099
diff changeset
   525
    if (aSymbol == @symbol(weakObjects)) {
c3466930ccd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6099
diff changeset
   526
        RETURN ( __MKSMALLINT(WKPOINTERARRAY) );
1634
9ce0afb7f089 commentary
Claus Gittinger <cg@exept.de>
parents: 1514
diff changeset
   527
    }
9ce0afb7f089 commentary
Claus Gittinger <cg@exept.de>
parents: 1514
diff changeset
   528
%}.
2666
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   529
    ^ 0         "/ not indexed
1634
9ce0afb7f089 commentary
Claus Gittinger <cg@exept.de>
parents: 1514
diff changeset
   530
!
9ce0afb7f089 commentary
Claus Gittinger <cg@exept.de>
parents: 1514
diff changeset
   531
3141
366ff03d9c8f javaFlag added
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
   532
flagJavaClass
366ff03d9c8f javaFlag added
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
   533
    "return the flag code which marks JavaClass-like instances.
366ff03d9c8f javaFlag added
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
   534
     The VM checks this single bit in the flag value when
366ff03d9c8f javaFlag added
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
   535
     checking for a javaClass."
366ff03d9c8f javaFlag added
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
   536
366ff03d9c8f javaFlag added
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
   537
%{  /* NOCONTEXT */
366ff03d9c8f javaFlag added
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
   538
    /* this is defined as a primitive to get defines from stc.h */
366ff03d9c8f javaFlag added
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
   539
366ff03d9c8f javaFlag added
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
   540
    RETURN ( __MKSMALLINT(JCLASS_INSTS) );
366ff03d9c8f javaFlag added
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
   541
%}
366ff03d9c8f javaFlag added
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
   542
!
366ff03d9c8f javaFlag added
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
   543
2801
195be5eb29f6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2713
diff changeset
   544
flagJavaMethod
195be5eb29f6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2713
diff changeset
   545
    "return the flag code which marks JavaMethod-like instances.
7190
2056416250a2 comments
Claus Gittinger <cg@exept.de>
parents: 7162
diff changeset
   546
     Inline C-code and the VM check this single bit in the flag value when
2801
195be5eb29f6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2713
diff changeset
   547
     checking for a method."
195be5eb29f6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2713
diff changeset
   548
195be5eb29f6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2713
diff changeset
   549
%{  /* NOCONTEXT */
195be5eb29f6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2713
diff changeset
   550
    /* this is defined as a primitive to get defines from stc.h */
195be5eb29f6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2713
diff changeset
   551
195be5eb29f6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2713
diff changeset
   552
    RETURN ( __MKSMALLINT(JMETHOD_INSTS) );
195be5eb29f6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2713
diff changeset
   553
%}
195be5eb29f6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2713
diff changeset
   554
!
195be5eb29f6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2713
diff changeset
   555
4307
29dd3e6c91ca better #includesSelector
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   556
flagLongLongs
29dd3e6c91ca better #includesSelector
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   557
    "return the flag code for longlong-valued indexed instances (i.e. 8-byte).
29dd3e6c91ca better #includesSelector
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   558
     The VM masks the flag value with the indexMask (maskIndexType) 
29dd3e6c91ca better #includesSelector
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   559
     and compares it to this flag value, when checking for 
29dd3e6c91ca better #includesSelector
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   560
     unsigned long valued variable instances."
29dd3e6c91ca better #includesSelector
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   561
29dd3e6c91ca better #includesSelector
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   562
%{  /* NOCONTEXT */
29dd3e6c91ca better #includesSelector
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   563
    /* this is defined as a primitive to get defines from stc.h */
29dd3e6c91ca better #includesSelector
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   564
29dd3e6c91ca better #includesSelector
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   565
    RETURN ( __MKSMALLINT(LONGLONGARRAY) );
29dd3e6c91ca better #includesSelector
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   566
%}
29dd3e6c91ca better #includesSelector
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   567
    "
29dd3e6c91ca better #includesSelector
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   568
     Behavior flagLongLongs    
29dd3e6c91ca better #includesSelector
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   569
    "
29dd3e6c91ca better #includesSelector
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   570
!
29dd3e6c91ca better #includesSelector
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   571
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   572
flagLongs
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   573
    "return the flag code for long-valued indexed instances (i.e. 4-byte).
2226
b59ec5725a9d commentary
Claus Gittinger <cg@exept.de>
parents: 2224
diff changeset
   574
     The VM masks the flag value with the indexMask (maskIndexType) 
b59ec5725a9d commentary
Claus Gittinger <cg@exept.de>
parents: 2224
diff changeset
   575
     and compares it to this flag value, when checking for 
b59ec5725a9d commentary
Claus Gittinger <cg@exept.de>
parents: 2224
diff changeset
   576
     unsigned long valued variable instances."
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   577
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   578
%{  /* NOCONTEXT */
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   579
    /* this is defined as a primitive to get defines from stc.h */
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   580
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1088
diff changeset
   581
    RETURN ( __MKSMALLINT(LONGARRAY) );
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   582
%}
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   583
    "
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   584
     Behavior flagLongs    
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   585
    "
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   586
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   587
5743
5332ba576615 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5727
diff changeset
   588
flagMetaMethod
5332ba576615 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5727
diff changeset
   589
    "return the flag code which marks MetaMethod-like instances.
7190
2056416250a2 comments
Claus Gittinger <cg@exept.de>
parents: 7162
diff changeset
   590
     Inline C-code and the VM check this single bit in the flag value when
5743
5332ba576615 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5727
diff changeset
   591
     about to evaluate a method."
5332ba576615 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5727
diff changeset
   592
5332ba576615 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5727
diff changeset
   593
%{  /* NOCONTEXT */
5332ba576615 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5727
diff changeset
   594
    /* this is defined as a primitive to get defines from stc.h */
5332ba576615 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5727
diff changeset
   595
5332ba576615 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5727
diff changeset
   596
    RETURN ( __MKSMALLINT(METAMETHOD_INSTS) );
5332ba576615 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5727
diff changeset
   597
%}
5332ba576615 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5727
diff changeset
   598
!
5332ba576615 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5727
diff changeset
   599
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   600
flagMethod
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   601
    "return the flag code which marks Method-like instances.
7190
2056416250a2 comments
Claus Gittinger <cg@exept.de>
parents: 7162
diff changeset
   602
     Inline C-code and the VM check this single bit in the flag value when
2226
b59ec5725a9d commentary
Claus Gittinger <cg@exept.de>
parents: 2224
diff changeset
   603
     checking for a method."
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   604
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   605
%{  /* NOCONTEXT */
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   606
    /* this is defined as a primitive to get defines from stc.h */
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   607
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1088
diff changeset
   608
    RETURN ( __MKSMALLINT(METHOD_INSTS) );
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   609
%}
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   610
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   611
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   612
flagNonObjectInst
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   613
    "return the flag code which marks instances which have a
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   614
     non-object instance variable (in slot 1).
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   615
     (these are ignored by the garbage collector)"
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   616
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   617
%{  /* NOCONTEXT */
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   618
    /* this is defined as a primitive to get defines from stc.h */
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   619
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1088
diff changeset
   620
    RETURN ( __MKSMALLINT(NONOBJECT_INSTS) );
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   621
%}
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   622
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   623
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   624
flagNotIndexed
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   625
    "return the flag code for non-indexed instances.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   626
     You have to mask the flag value with indexMask when comparing
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   627
     it with flagNotIndexed."
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   628
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   629
    ^ 0
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   630
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   631
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   632
flagPointers
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   633
    "return the flag code for pointer indexed instances (i.e. Array of object).
2226
b59ec5725a9d commentary
Claus Gittinger <cg@exept.de>
parents: 2224
diff changeset
   634
     The VM masks the flag value with the indexMask (maskIndexType) 
b59ec5725a9d commentary
Claus Gittinger <cg@exept.de>
parents: 2224
diff changeset
   635
     and compares it to this flag value, when checking for 
b59ec5725a9d commentary
Claus Gittinger <cg@exept.de>
parents: 2224
diff changeset
   636
     pointer variable instances."
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   637
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   638
%{  /* NOCONTEXT */
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   639
    /* this is defined as a primitive to get defines from stc.h */
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   640
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1088
diff changeset
   641
    RETURN ( __MKSMALLINT(POINTERARRAY) );
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   642
%}
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   643
    "
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   644
     Behavior flagPointers    
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   645
    "
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   646
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   647
1383
1033e3b396d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1340
diff changeset
   648
flagRegular
1033e3b396d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1340
diff changeset
   649
    "return the flag code which marks regular instances."
1033e3b396d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1340
diff changeset
   650
1033e3b396d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1340
diff changeset
   651
    ^ 0
1033e3b396d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1340
diff changeset
   652
1033e3b396d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1340
diff changeset
   653
    "Created: 12.5.1996 / 17:53:36 / cg"
1033e3b396d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1340
diff changeset
   654
!
1033e3b396d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1340
diff changeset
   655
4307
29dd3e6c91ca better #includesSelector
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   656
flagSignedLongLongs
29dd3e6c91ca better #includesSelector
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   657
    "return the flag code for signed longlong-valued indexed instances (i.e. 8-byte).
29dd3e6c91ca better #includesSelector
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   658
     The VM masks the flag value with the indexMask (maskIndexType) 
29dd3e6c91ca better #includesSelector
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   659
     and compares it to this flag value, when checking for 
29dd3e6c91ca better #includesSelector
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   660
     signed long valued variable instances."
29dd3e6c91ca better #includesSelector
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   661
29dd3e6c91ca better #includesSelector
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   662
%{  /* NOCONTEXT */
29dd3e6c91ca better #includesSelector
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   663
    /* this is defined as a primitive to get defines from stc.h */
29dd3e6c91ca better #includesSelector
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   664
29dd3e6c91ca better #includesSelector
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   665
    RETURN ( __MKSMALLINT(SLONGLONGARRAY) );
29dd3e6c91ca better #includesSelector
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   666
%}
29dd3e6c91ca better #includesSelector
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   667
    "
29dd3e6c91ca better #includesSelector
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   668
     Behavior flagSignedLongLongs
29dd3e6c91ca better #includesSelector
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   669
    "
29dd3e6c91ca better #includesSelector
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   670
!
29dd3e6c91ca better #includesSelector
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
   671
1634
9ce0afb7f089 commentary
Claus Gittinger <cg@exept.de>
parents: 1514
diff changeset
   672
flagSignedLongs
9ce0afb7f089 commentary
Claus Gittinger <cg@exept.de>
parents: 1514
diff changeset
   673
    "return the flag code for signed long-valued indexed instances (i.e. 4-byte).
2226
b59ec5725a9d commentary
Claus Gittinger <cg@exept.de>
parents: 2224
diff changeset
   674
     The VM masks the flag value with the indexMask (maskIndexType) 
b59ec5725a9d commentary
Claus Gittinger <cg@exept.de>
parents: 2224
diff changeset
   675
     and compares it to this flag value, when checking for 
b59ec5725a9d commentary
Claus Gittinger <cg@exept.de>
parents: 2224
diff changeset
   676
     signed long valued variable instances."
1634
9ce0afb7f089 commentary
Claus Gittinger <cg@exept.de>
parents: 1514
diff changeset
   677
9ce0afb7f089 commentary
Claus Gittinger <cg@exept.de>
parents: 1514
diff changeset
   678
%{  /* NOCONTEXT */
9ce0afb7f089 commentary
Claus Gittinger <cg@exept.de>
parents: 1514
diff changeset
   679
    /* this is defined as a primitive to get defines from stc.h */
9ce0afb7f089 commentary
Claus Gittinger <cg@exept.de>
parents: 1514
diff changeset
   680
9ce0afb7f089 commentary
Claus Gittinger <cg@exept.de>
parents: 1514
diff changeset
   681
    RETURN ( __MKSMALLINT(SLONGARRAY) );
9ce0afb7f089 commentary
Claus Gittinger <cg@exept.de>
parents: 1514
diff changeset
   682
%}
9ce0afb7f089 commentary
Claus Gittinger <cg@exept.de>
parents: 1514
diff changeset
   683
    "
9ce0afb7f089 commentary
Claus Gittinger <cg@exept.de>
parents: 1514
diff changeset
   684
     Behavior flagSignedLongs
9ce0afb7f089 commentary
Claus Gittinger <cg@exept.de>
parents: 1514
diff changeset
   685
    "
9ce0afb7f089 commentary
Claus Gittinger <cg@exept.de>
parents: 1514
diff changeset
   686
!
9ce0afb7f089 commentary
Claus Gittinger <cg@exept.de>
parents: 1514
diff changeset
   687
9ce0afb7f089 commentary
Claus Gittinger <cg@exept.de>
parents: 1514
diff changeset
   688
flagSignedWords
9ce0afb7f089 commentary
Claus Gittinger <cg@exept.de>
parents: 1514
diff changeset
   689
    "return the flag code for signed word-valued indexed instances (i.e. 2-byte).
2226
b59ec5725a9d commentary
Claus Gittinger <cg@exept.de>
parents: 2224
diff changeset
   690
     The VM masks the flag value with the indexMask (maskIndexType) 
b59ec5725a9d commentary
Claus Gittinger <cg@exept.de>
parents: 2224
diff changeset
   691
     and compares it to this flag value, when checking for 
b59ec5725a9d commentary
Claus Gittinger <cg@exept.de>
parents: 2224
diff changeset
   692
     signed word valued variable instances."
1634
9ce0afb7f089 commentary
Claus Gittinger <cg@exept.de>
parents: 1514
diff changeset
   693
9ce0afb7f089 commentary
Claus Gittinger <cg@exept.de>
parents: 1514
diff changeset
   694
%{  /* NOCONTEXT */
9ce0afb7f089 commentary
Claus Gittinger <cg@exept.de>
parents: 1514
diff changeset
   695
    /* this is defined as a primitive to get defines from stc.h */
9ce0afb7f089 commentary
Claus Gittinger <cg@exept.de>
parents: 1514
diff changeset
   696
9ce0afb7f089 commentary
Claus Gittinger <cg@exept.de>
parents: 1514
diff changeset
   697
    RETURN ( __MKSMALLINT(SWORDARRAY) );
9ce0afb7f089 commentary
Claus Gittinger <cg@exept.de>
parents: 1514
diff changeset
   698
%}
9ce0afb7f089 commentary
Claus Gittinger <cg@exept.de>
parents: 1514
diff changeset
   699
    "
9ce0afb7f089 commentary
Claus Gittinger <cg@exept.de>
parents: 1514
diff changeset
   700
     Behavior flagSignedWords
9ce0afb7f089 commentary
Claus Gittinger <cg@exept.de>
parents: 1514
diff changeset
   701
    "
9ce0afb7f089 commentary
Claus Gittinger <cg@exept.de>
parents: 1514
diff changeset
   702
!
9ce0afb7f089 commentary
Claus Gittinger <cg@exept.de>
parents: 1514
diff changeset
   703
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   704
flagSymbol
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   705
    "return the flag code which marks Symbol-like instances.
7190
2056416250a2 comments
Claus Gittinger <cg@exept.de>
parents: 7162
diff changeset
   706
     Inline C-code and the VM check this single bit in the flag value when
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   707
     checking for symbols."
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   708
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   709
%{  /* NOCONTEXT */
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   710
    /* this is defined as a primitive to get defines from stc.h */
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   711
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1088
diff changeset
   712
    RETURN ( __MKSMALLINT(SYMBOL_INSTS) );
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   713
%}
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   714
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   715
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   716
flagWeakPointers
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   717
    "return the flag code for weak pointer indexed instances (i.e. WeakArray).
2226
b59ec5725a9d commentary
Claus Gittinger <cg@exept.de>
parents: 2224
diff changeset
   718
     The VM masks the flag value with the indexMask (maskIndexType) 
b59ec5725a9d commentary
Claus Gittinger <cg@exept.de>
parents: 2224
diff changeset
   719
     and compares it to this flag value, when checking for weak pointers."
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   720
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   721
%{  /* NOCONTEXT */
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   722
    /* this is defined as a primitive to get defines from stc.h */
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   723
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1088
diff changeset
   724
    RETURN ( __MKSMALLINT(WKPOINTERARRAY) );
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   725
%}
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   726
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   727
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   728
flagWords
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   729
    "return the flag code for word-valued indexed instances (i.e. 2-byte).
2226
b59ec5725a9d commentary
Claus Gittinger <cg@exept.de>
parents: 2224
diff changeset
   730
     The VM masks the flag value with the indexMask (maskIndexType) 
b59ec5725a9d commentary
Claus Gittinger <cg@exept.de>
parents: 2224
diff changeset
   731
     and compares it to this flag value, when checking for 
b59ec5725a9d commentary
Claus Gittinger <cg@exept.de>
parents: 2224
diff changeset
   732
     unsigned word valued variable instances."
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   733
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   734
%{  /* NOCONTEXT */
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   735
    /* this is defined as a primitive to get defines from stc.h */
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   736
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1088
diff changeset
   737
    RETURN ( __MKSMALLINT(WORDARRAY) );
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   738
%}
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   739
    "
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   740
     Behavior flagWords    
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   741
    "
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   742
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   743
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   744
maskIndexType
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   745
    "return a mask to extract all index-type bits"
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   746
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   747
%{  /* NOCONTEXT */
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   748
    /* this is defined as a primitive to get defines from stc.h */
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   749
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1088
diff changeset
   750
    RETURN ( __MKSMALLINT(ARRAYMASK) );
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   751
%}
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   752
! !
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   753
4964
1169f19c9210 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4928
diff changeset
   754
!Behavior class methodsFor:'misc'!
1169f19c9210 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4928
diff changeset
   755
1169f19c9210 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4928
diff changeset
   756
autoload
1169f19c9210 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4928
diff changeset
   757
    "for compatibility with autoloaded classes - dummy here"
1169f19c9210 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4928
diff changeset
   758
1169f19c9210 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4928
diff changeset
   759
    ^ self
1169f19c9210 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4928
diff changeset
   760
1169f19c9210 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4928
diff changeset
   761
! !
1169f19c9210 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4928
diff changeset
   762
6099
d501d6a49a48 category included a space
Claus Gittinger <cg@exept.de>
parents: 6076
diff changeset
   763
!Behavior class methodsFor:'private'!
308
f04744ef7b5d *** empty log message ***
claus
parents: 295
diff changeset
   764
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   765
flushSubclassInfo
2224
7e49310cb7af commentary
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   766
    "throw away (forget) the cached subclass information, as created
7e49310cb7af commentary
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   767
     by #subclassInfo.
7e49310cb7af commentary
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   768
     This is private protocol"
7e49310cb7af commentary
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   769
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   770
    SubclassInfo := nil.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   771
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   772
    "
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   773
     Class flushSubclassInfo
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   774
    "
2224
7e49310cb7af commentary
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   775
7e49310cb7af commentary
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   776
    "Modified: 22.1.1997 / 18:39:36 / cg"
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   777
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   778
308
f04744ef7b5d *** empty log message ***
claus
parents: 295
diff changeset
   779
subclassInfo
2224
7e49310cb7af commentary
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   780
    "build & return a dictionary, containing the set of subclass
7e49310cb7af commentary
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   781
     for each class. This information is kept until explicitely flushed
7e49310cb7af commentary
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   782
     by #flushSubclassInfo.
7e49310cb7af commentary
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   783
     This cache is used internally, for enumerators like #allSubclasses
7e49310cb7af commentary
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   784
     or #allSubclassesDo:, to avoid repeated recursive walks over the class
7e49310cb7af commentary
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   785
     hierarchy.
7e49310cb7af commentary
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   786
     This is private protocol."
7e49310cb7af commentary
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   787
357
claus
parents: 356
diff changeset
   788
    |d|
308
f04744ef7b5d *** empty log message ***
claus
parents: 295
diff changeset
   789
f04744ef7b5d *** empty log message ***
claus
parents: 295
diff changeset
   790
    SubclassInfo notNil ifTrue:[^ SubclassInfo].
f04744ef7b5d *** empty log message ***
claus
parents: 295
diff changeset
   791
f04744ef7b5d *** empty log message ***
claus
parents: 295
diff changeset
   792
    d := IdentityDictionary new.
f04744ef7b5d *** empty log message ***
claus
parents: 295
diff changeset
   793
    Smalltalk allClassesDo:[:aClass |
7162
11fb649d8538 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7123
diff changeset
   794
        |superCls setToAddSubclass|
11fb649d8538 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7123
diff changeset
   795
11fb649d8538 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7123
diff changeset
   796
        aClass isMeta not ifTrue:[
11fb649d8538 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7123
diff changeset
   797
            superCls := aClass superclass.
11fb649d8538 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7123
diff changeset
   798
            superCls notNil ifTrue:[
11fb649d8538 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7123
diff changeset
   799
                setToAddSubclass := d at:superCls ifAbsent:nil.
11fb649d8538 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7123
diff changeset
   800
                setToAddSubclass isNil ifTrue:[
7223
bffb2e5e62c0 return a Set when asked for subclasses
penk
parents: 7190
diff changeset
   801
                    d at:superCls put:(Set with:aClass).
7162
11fb649d8538 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7123
diff changeset
   802
                ] ifFalse:[
11fb649d8538 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7123
diff changeset
   803
                    setToAddSubclass add:aClass
11fb649d8538 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7123
diff changeset
   804
                ]
11fb649d8538 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7123
diff changeset
   805
            ]
11fb649d8538 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7123
diff changeset
   806
        ].
308
f04744ef7b5d *** empty log message ***
claus
parents: 295
diff changeset
   807
    ].
f04744ef7b5d *** empty log message ***
claus
parents: 295
diff changeset
   808
    SubclassInfo := d.
f04744ef7b5d *** empty log message ***
claus
parents: 295
diff changeset
   809
    ^ d
f04744ef7b5d *** empty log message ***
claus
parents: 295
diff changeset
   810
f04744ef7b5d *** empty log message ***
claus
parents: 295
diff changeset
   811
    "
f04744ef7b5d *** empty log message ***
claus
parents: 295
diff changeset
   812
     Class subclassInfo
f04744ef7b5d *** empty log message ***
claus
parents: 295
diff changeset
   813
    "
2224
7e49310cb7af commentary
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   814
7e49310cb7af commentary
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
   815
    "Modified: 22.1.1997 / 18:44:59 / cg"
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   816
! !
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   817
1760
e7254ff682fd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
   818
!Behavior class methodsFor:'queries'!
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   819
4332
c672bf261fbd added query for class-def selectors.
Claus Gittinger <cg@exept.de>
parents: 4307
diff changeset
   820
definitionSelectorFirstParts
c672bf261fbd added query for class-def selectors.
Claus Gittinger <cg@exept.de>
parents: 4307
diff changeset
   821
    "return a collection of partial class-definition selectors"
c672bf261fbd added query for class-def selectors.
Claus Gittinger <cg@exept.de>
parents: 4307
diff changeset
   822
c672bf261fbd added query for class-def selectors.
Claus Gittinger <cg@exept.de>
parents: 4307
diff changeset
   823
    ^ #( #'subclass:'
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   824
	 #'variableSubclass:'
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   825
	 #'variableByteSubclass:'
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   826
	 #'variableWordSubclass:'
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   827
	 #'variableLongSubclass:'
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   828
	 #'variableSignedWordSubclass:'
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   829
	 #'variableSignedLongSubclass:'
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   830
	 #'variableLongLongSubclass:'
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   831
	 #'variableSignedLongLongSubclass:'
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   832
	 #'variableFloatSubclass:'
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   833
	 #'variableDoubleSubclass:'
4332
c672bf261fbd added query for class-def selectors.
Claus Gittinger <cg@exept.de>
parents: 4307
diff changeset
   834
      )  
c672bf261fbd added query for class-def selectors.
Claus Gittinger <cg@exept.de>
parents: 4307
diff changeset
   835
!
c672bf261fbd added query for class-def selectors.
Claus Gittinger <cg@exept.de>
parents: 4307
diff changeset
   836
4428
d612ee1f2b32 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4371
diff changeset
   837
definitionSelectors
d612ee1f2b32 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4371
diff changeset
   838
    "return a collection class-definition selectors"
d612ee1f2b32 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4371
diff changeset
   839
4579
848788d00ccf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
   840
    ^ #( 
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   841
	 #'subclass:instanceVariableNames:classVariableNames:poolDictionaries:category:'
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   842
	 #'variableSubclass:instanceVariableNames:classVariableNames:poolDictionaries:category:'
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   843
	 #'variableByteSubclass:instanceVariableNames:classVariableNames:poolDictionaries:category:'
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   844
	 #'variableWordSubclass:instanceVariableNames:classVariableNames:poolDictionaries:category:'
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   845
	 #'variableLongSubclass:instanceVariableNames:classVariableNames:poolDictionaries:category:'
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   846
	 #'variableSignedWordSubclass:instanceVariableNames:classVariableNames:poolDictionaries:category:'
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   847
	 #'variableSignedLongSubclass:instanceVariableNames:classVariableNames:poolDictionaries:category:'
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   848
	 #'variableLongLongSubclass:instanceVariableNames:classVariableNames:poolDictionaries:category:'
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   849
	 #'variableSignedLongLongSubclass:instanceVariableNames:classVariableNames:poolDictionaries:category:'
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   850
	 #'variableFloatSubclass:instanceVariableNames:classVariableNames:poolDictionaries:category:'
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   851
	 #'variableDoubleSubclass:instanceVariableNames:classVariableNames:poolDictionaries:category:'
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   852
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   853
	"/ ST/X private subclasses
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   854
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   855
	 #'subclass:instanceVariableNames:classVariableNames:poolDictionaries:privateIn:'
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   856
	 #'variableSubclass:instanceVariableNames:classVariableNames:poolDictionaries:privateIn:'
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   857
	 #'variableByteSubclass:instanceVariableNames:classVariableNames:poolDictionaries:privateIn:'
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   858
	 #'variableWordSubclass:instanceVariableNames:classVariableNames:poolDictionaries:privateIn:'
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   859
	 #'variableLongSubclass:instanceVariableNames:classVariableNames:poolDictionaries:privateIn:'
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   860
	 #'variableSignedWordSubclass:instanceVariableNames:classVariableNames:poolDictionaries:privateIn:'
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   861
	 #'variableSignedLongSubclass:instanceVariableNames:classVariableNames:poolDictionaries:privateIn:'
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   862
	 #'variableLongLongSubclass:instanceVariableNames:classVariableNames:poolDictionaries:privateIn:'
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   863
	 #'variableSignedLongLongSubclass:instanceVariableNames:classVariableNames:poolDictionaries:privateIn:'
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   864
	 #'variableFloatSubclass:instanceVariableNames:classVariableNames:poolDictionaries:privateIn:'
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   865
	 #'variableDoubleSubclass:instanceVariableNames:classVariableNames:poolDictionaries:privateIn:'
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   866
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   867
	"/ ST/V subclass messages
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   868
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   869
	 #'subclass:instanceVariableNames:classVariableNames:poolDictionaries:'
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   870
	 #'variableByteSubclass:classVariableNames:poolDictionaries:'
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   871
	 #'variableSubclass:instanceVariableNames:classVariableNames:poolDictionaries:'
4428
d612ee1f2b32 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4371
diff changeset
   872
      )  
d612ee1f2b32 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4371
diff changeset
   873
!
d612ee1f2b32 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4371
diff changeset
   874
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   875
isBuiltInClass
1266
cef9b3cd49df commentary
Claus Gittinger <cg@exept.de>
parents: 1259
diff changeset
   876
    "return true if this class is known by the run-time-system.
cef9b3cd49df commentary
Claus Gittinger <cg@exept.de>
parents: 1259
diff changeset
   877
     Here, true is returned for myself, false for subclasses."
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   878
1179
3e0f32177af4 allow subclasses of Class to be changed
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   879
    ^ (self == Behavior class) or:[self == Behavior]
3e0f32177af4 allow subclasses of Class to be changed
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   880
1266
cef9b3cd49df commentary
Claus Gittinger <cg@exept.de>
parents: 1259
diff changeset
   881
    "Modified: 23.4.1996 / 15:55:52 / cg"
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   882
! !
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   883
7358
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
   884
7269
f1e3ab435963 method category rename
Claus Gittinger <cg@exept.de>
parents: 7260
diff changeset
   885
!Behavior methodsFor:'Compatibility-Dolphin'!
6329
e6c32a251669 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6147
diff changeset
   886
e6c32a251669 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6147
diff changeset
   887
allSubinstances
6865
434e45411991 dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6754
diff changeset
   888
    ^ self allSubInstances
434e45411991 dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6754
diff changeset
   889
!
434e45411991 dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6754
diff changeset
   890
6889
7efa6d375ef7 +fromBinaryStoreBytes; +fromString.
Claus Gittinger <cg@exept.de>
parents: 6865
diff changeset
   891
fromString:aString
7efa6d375ef7 +fromBinaryStoreBytes; +fromString.
Claus Gittinger <cg@exept.de>
parents: 6865
diff changeset
   892
    ^ self readFrom:aString
7efa6d375ef7 +fromBinaryStoreBytes; +fromString.
Claus Gittinger <cg@exept.de>
parents: 6865
diff changeset
   893
!
7efa6d375ef7 +fromBinaryStoreBytes; +fromString.
Claus Gittinger <cg@exept.de>
parents: 6865
diff changeset
   894
6865
434e45411991 dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6754
diff changeset
   895
guid:aUUID
434e45411991 dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6754
diff changeset
   896
    ^ self
6329
e6c32a251669 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6147
diff changeset
   897
! !
e6c32a251669 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6147
diff changeset
   898
7269
f1e3ab435963 method category rename
Claus Gittinger <cg@exept.de>
parents: 7260
diff changeset
   899
!Behavior methodsFor:'Compatibility-Squeak'!
4889
aa8f6b9f7e28 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4851
diff changeset
   900
aa8f6b9f7e28 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4851
diff changeset
   901
defaultNameStemForInstances
aa8f6b9f7e28 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4851
diff changeset
   902
    "Answer a basis for names of default instances of the receiver"
aa8f6b9f7e28 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4851
diff changeset
   903
aa8f6b9f7e28 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4851
diff changeset
   904
    ^ self name
aa8f6b9f7e28 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4851
diff changeset
   905
5753
65cce9486ee9 added #lookupSelector: for Squeak compatibility
Claus Gittinger <cg@exept.de>
parents: 5743
diff changeset
   906
!
65cce9486ee9 added #lookupSelector: for Squeak compatibility
Claus Gittinger <cg@exept.de>
parents: 5743
diff changeset
   907
65cce9486ee9 added #lookupSelector: for Squeak compatibility
Claus Gittinger <cg@exept.de>
parents: 5743
diff changeset
   908
lookupSelector:aSelector
65cce9486ee9 added #lookupSelector: for Squeak compatibility
Claus Gittinger <cg@exept.de>
parents: 5743
diff changeset
   909
    "return the method for a selector - Squeak compatibility"
65cce9486ee9 added #lookupSelector: for Squeak compatibility
Claus Gittinger <cg@exept.de>
parents: 5743
diff changeset
   910
65cce9486ee9 added #lookupSelector: for Squeak compatibility
Claus Gittinger <cg@exept.de>
parents: 5743
diff changeset
   911
    ^ self lookupMethodFor:aSelector
6147
42cc230e5a9b selectorsWithArgs: (for squeak)
james
parents: 6140
diff changeset
   912
!
42cc230e5a9b selectorsWithArgs: (for squeak)
james
parents: 6140
diff changeset
   913
42cc230e5a9b selectorsWithArgs: (for squeak)
james
parents: 6140
diff changeset
   914
selectorsWithArgs:numberOfArgs 
42cc230e5a9b selectorsWithArgs: (for squeak)
james
parents: 6140
diff changeset
   915
    "Return all selectors defined in this class that take this number of arguments."
42cc230e5a9b selectorsWithArgs: (for squeak)
james
parents: 6140
diff changeset
   916
42cc230e5a9b selectorsWithArgs: (for squeak)
james
parents: 6140
diff changeset
   917
    ^ self selectors 
42cc230e5a9b selectorsWithArgs: (for squeak)
james
parents: 6140
diff changeset
   918
        select:[:sel | sel numArgs == numberOfArgs]
42cc230e5a9b selectorsWithArgs: (for squeak)
james
parents: 6140
diff changeset
   919
42cc230e5a9b selectorsWithArgs: (for squeak)
james
parents: 6140
diff changeset
   920
    "
42cc230e5a9b selectorsWithArgs: (for squeak)
james
parents: 6140
diff changeset
   921
     SmallInteger selectorsWithArgs:0  
42cc230e5a9b selectorsWithArgs: (for squeak)
james
parents: 6140
diff changeset
   922
     SmallInteger selectorsWithArgs:2  
42cc230e5a9b selectorsWithArgs: (for squeak)
james
parents: 6140
diff changeset
   923
     SmallInteger selectorsWithArgs:3
42cc230e5a9b selectorsWithArgs: (for squeak)
james
parents: 6140
diff changeset
   924
     SmallInteger selectorsWithArgs:4  
42cc230e5a9b selectorsWithArgs: (for squeak)
james
parents: 6140
diff changeset
   925
    "
4889
aa8f6b9f7e28 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4851
diff changeset
   926
! !
aa8f6b9f7e28 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4851
diff changeset
   927
7269
f1e3ab435963 method category rename
Claus Gittinger <cg@exept.de>
parents: 7260
diff changeset
   928
!Behavior methodsFor:'Compatibility-VW'!
5964
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5917
diff changeset
   929
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5917
diff changeset
   930
>> aSelector
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5917
diff changeset
   931
    "return the method stored under the given selector; nil if there is none"
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5917
diff changeset
   932
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5917
diff changeset
   933
    ^ self compiledMethodAt:aSelector
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5917
diff changeset
   934
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5917
diff changeset
   935
    "
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5917
diff changeset
   936
     self compiledMethodAt:#compiledMethodAt:
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5917
diff changeset
   937
     self >> #compiledMethodAt:
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5917
diff changeset
   938
    "
6115
b1af45aca054 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6104
diff changeset
   939
!
b1af45aca054 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6104
diff changeset
   940
b1af45aca054 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6104
diff changeset
   941
fixedFieldsMask
b1af45aca054 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6104
diff changeset
   942
    "Mask on the format word to indicate the number of fixed fields in instances
b1af45aca054 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6104
diff changeset
   943
     of a behavior.  If this is non-zero, the behavior must be pointer-type"
b1af45aca054 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6104
diff changeset
   944
b1af45aca054 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6104
diff changeset
   945
    ^ 255
b1af45aca054 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6104
diff changeset
   946
b1af45aca054 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6104
diff changeset
   947
!
b1af45aca054 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6104
diff changeset
   948
b1af45aca054 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6104
diff changeset
   949
format
b1af45aca054 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6104
diff changeset
   950
    "Answer an Integer that encodes the kinds and numbers of
b1af45aca054 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6104
diff changeset
   951
    variables of instances of the receiver.
b1af45aca054 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6104
diff changeset
   952
b1af45aca054 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6104
diff changeset
   953
    See instSize method for reference to the fixedFieldsMask bit mask of the format.
b1af45aca054 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6104
diff changeset
   954
    See isVariable method for reference to the indexableMask bit mask of the format.
b1af45aca054 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6104
diff changeset
   955
    See isBits method for reference to the pointersMask bit mask of the format.
b1af45aca054 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6104
diff changeset
   956
    All other bits of the format are unused and should be 0."
b1af45aca054 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6104
diff changeset
   957
b1af45aca054 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6104
diff changeset
   958
    "/ simulate a VW5i mask
b1af45aca054 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6104
diff changeset
   959
b1af45aca054 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6104
diff changeset
   960
    ^ (self instSize
b1af45aca054 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6104
diff changeset
   961
      bitOr:( self isPointers ifTrue:[16384] ifFalse:[0]))
b1af45aca054 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6104
diff changeset
   962
      bitOr:( self isVariable ifTrue:[ 4096] ifFalse:[0])
b1af45aca054 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6104
diff changeset
   963
b1af45aca054 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6104
diff changeset
   964
!
b1af45aca054 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6104
diff changeset
   965
b1af45aca054 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6104
diff changeset
   966
instanceBehavior
b1af45aca054 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6104
diff changeset
   967
    "Answer the instance behavior of the receiver. 
b1af45aca054 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6104
diff changeset
   968
     This is the receiver for non metaclasses. 
b1af45aca054 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6104
diff changeset
   969
     Metaclass overrides this to answer a Metaclass's sole instance.
b1af45aca054 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6104
diff changeset
   970
     Same as #theNonMetaclass - for VW compatibility
b1af45aca054 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6104
diff changeset
   971
    "
b1af45aca054 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6104
diff changeset
   972
b1af45aca054 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6104
diff changeset
   973
    ^ self theNonMetaclass
b1af45aca054 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6104
diff changeset
   974
6968
5eb367934349 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6931
diff changeset
   975
!
5eb367934349 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6931
diff changeset
   976
5eb367934349 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6931
diff changeset
   977
shortName
5eb367934349 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6931
diff changeset
   978
    ^ self nameWithoutPrefix
5964
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5917
diff changeset
   979
! !
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5917
diff changeset
   980
4851
ff6ecefce66f skip namespaces in #allSubclasses / #withAllSubclasses
ca
parents: 4738
diff changeset
   981
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   982
!Behavior methodsFor:'accessing'!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   983
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   984
addSelector:newSelector withLazyMethod:newMethod
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   985
    "add the method given by 2nd argument under the selector given by
734
a4378f483a86 pass original method as changeArg when doing method changes;
Claus Gittinger <cg@exept.de>
parents: 662
diff changeset
   986
     1st argument to the methodDictionary. 
a4378f483a86 pass original method as changeArg when doing method changes;
Claus Gittinger <cg@exept.de>
parents: 662
diff changeset
   987
     Since it does not normally flush any caches,
a4378f483a86 pass original method as changeArg when doing method changes;
Claus Gittinger <cg@exept.de>
parents: 662
diff changeset
   988
     this is only allowed for lazy methods (which are for a new class)."
a4378f483a86 pass original method as changeArg when doing method changes;
Claus Gittinger <cg@exept.de>
parents: 662
diff changeset
   989
a4378f483a86 pass original method as changeArg when doing method changes;
Claus Gittinger <cg@exept.de>
parents: 662
diff changeset
   990
    |oldMethod|
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   991
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   992
    newMethod isLazyMethod ifFalse:[
2666
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   993
	self error:'operation only allowed for lazy methods'.
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   994
	^ false
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   995
    ].
734
a4378f483a86 pass original method as changeArg when doing method changes;
Claus Gittinger <cg@exept.de>
parents: 662
diff changeset
   996
    oldMethod := self compiledMethodAt:newSelector.
a4378f483a86 pass original method as changeArg when doing method changes;
Claus Gittinger <cg@exept.de>
parents: 662
diff changeset
   997
    "/
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   998
    "/ oops: we must flush, if this method already exists ...
734
a4378f483a86 pass original method as changeArg when doing method changes;
Claus Gittinger <cg@exept.de>
parents: 662
diff changeset
   999
    "/ otherwise, the old method would still be executed out of the caches.
a4378f483a86 pass original method as changeArg when doing method changes;
Claus Gittinger <cg@exept.de>
parents: 662
diff changeset
  1000
    "/
a4378f483a86 pass original method as changeArg when doing method changes;
Claus Gittinger <cg@exept.de>
parents: 662
diff changeset
  1001
    oldMethod notNil ifTrue:[
2666
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
  1002
	newMethod privacy:(oldMethod privacy).
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
  1003
	newMethod restricted:(oldMethod isRestricted).
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
  1004
	ObjectMemory flushCaches
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1005
    ].
734
a4378f483a86 pass original method as changeArg when doing method changes;
Claus Gittinger <cg@exept.de>
parents: 662
diff changeset
  1006
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1007
    (self primAddSelector:newSelector withMethod:newMethod) ifTrue:[
2666
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
  1008
	"/
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
  1009
	"/ pass the selector AND the old method as changeArg
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
  1010
	"/ - this allows for watchers to find out if its a new method or a method-change
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
  1011
	"/
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
  1012
	self changed:#methodDictionary with:(Array with:newSelector with:oldMethod).
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
  1013
	"/
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
  1014
	"/ also notify a change of Smalltalk;
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
  1015
	"/ this allows a dependent of Smalltalk to watch all class
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
  1016
	"/ changes (no need for observing all classes)
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
  1017
	"/ - this allows for watchers to find out if its a new method or a method-change
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
  1018
	"/
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
  1019
	Smalltalk changed:#methodInClass with:(Array with:self with:newSelector with:oldMethod).
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
  1020
	^ true
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1021
    ].
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1022
    ^ false
734
a4378f483a86 pass original method as changeArg when doing method changes;
Claus Gittinger <cg@exept.de>
parents: 662
diff changeset
  1023
2095
fa85d9f387ac beside notifying a self-changed,
Claus Gittinger <cg@exept.de>
parents: 2054
diff changeset
  1024
    "Modified: 8.1.1997 / 23:02:10 / cg"
308
f04744ef7b5d *** empty log message ***
claus
parents: 295
diff changeset
  1025
!
f04744ef7b5d *** empty log message ***
claus
parents: 295
diff changeset
  1026
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1027
addSelector:newSelector withMethod:newMethod
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1028
    "add the method given by 2nd argument under the selector given by
734
a4378f483a86 pass original method as changeArg when doing method changes;
Claus Gittinger <cg@exept.de>
parents: 662
diff changeset
  1029
     1st argument to the methodDictionary. Flushes all caches."
a4378f483a86 pass original method as changeArg when doing method changes;
Claus Gittinger <cg@exept.de>
parents: 662
diff changeset
  1030
a4378f483a86 pass original method as changeArg when doing method changes;
Claus Gittinger <cg@exept.de>
parents: 662
diff changeset
  1031
    |nargs oldMethod|
a4378f483a86 pass original method as changeArg when doing method changes;
Claus Gittinger <cg@exept.de>
parents: 662
diff changeset
  1032
a4378f483a86 pass original method as changeArg when doing method changes;
Claus Gittinger <cg@exept.de>
parents: 662
diff changeset
  1033
    oldMethod := self compiledMethodAt:newSelector.
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1034
    (self primAddSelector:newSelector withMethod:newMethod) ifFalse:[^ false].
734
a4378f483a86 pass original method as changeArg when doing method changes;
Claus Gittinger <cg@exept.de>
parents: 662
diff changeset
  1035
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1036
    "
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1037
     if I have no subclasses, all we have to flush is cached
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1038
     data for myself ... (actually, in any case all that needs
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1039
     to be flushed is info for myself and all of my subclasses)
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1040
    "
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1041
"
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1042
    problem: this is slower; since looking for all subclasses is (currently)
2666
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
  1043
	     a bit slow :-(
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
  1044
	     We need the hasSubclasses-info bit in Behavior; now
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1045
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1046
    self withAllSubclassesDo:[:aClass |
2666
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
  1047
	ObjectMemory flushInlineCachesFor:aClass withArgs:nargs.
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
  1048
	ObjectMemory flushMethodCacheFor:aClass
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1049
    ].
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1050
"
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1051
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1052
    nargs := newSelector numArgs.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1053
734
a4378f483a86 pass original method as changeArg when doing method changes;
Claus Gittinger <cg@exept.de>
parents: 662
diff changeset
  1054
    ObjectMemory flushMethodCacheForSelector:newSelector.
a4378f483a86 pass original method as changeArg when doing method changes;
Claus Gittinger <cg@exept.de>
parents: 662
diff changeset
  1055
"/    ObjectMemory flushMethodCache.
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1056
    ObjectMemory flushInlineCachesWithArgs:nargs.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1057
3805
d525b3acc091 flush cache first in addMethod - then do a change notification
Claus Gittinger <cg@exept.de>
parents: 3641
diff changeset
  1058
    oldMethod notNil ifTrue:[
d525b3acc091 flush cache first in addMethod - then do a change notification
Claus Gittinger <cg@exept.de>
parents: 3641
diff changeset
  1059
	newMethod privacy:(oldMethod privacy).
d525b3acc091 flush cache first in addMethod - then do a change notification
Claus Gittinger <cg@exept.de>
parents: 3641
diff changeset
  1060
	newMethod restricted:(oldMethod isRestricted).
d525b3acc091 flush cache first in addMethod - then do a change notification
Claus Gittinger <cg@exept.de>
parents: 3641
diff changeset
  1061
    ].
d525b3acc091 flush cache first in addMethod - then do a change notification
Claus Gittinger <cg@exept.de>
parents: 3641
diff changeset
  1062
d525b3acc091 flush cache first in addMethod - then do a change notification
Claus Gittinger <cg@exept.de>
parents: 3641
diff changeset
  1063
    "/
d525b3acc091 flush cache first in addMethod - then do a change notification
Claus Gittinger <cg@exept.de>
parents: 3641
diff changeset
  1064
    "/ pass the selector AND the old method as changeArg
d525b3acc091 flush cache first in addMethod - then do a change notification
Claus Gittinger <cg@exept.de>
parents: 3641
diff changeset
  1065
    "/ - this allows for watchers to find out if its a new method or a method-change
d525b3acc091 flush cache first in addMethod - then do a change notification
Claus Gittinger <cg@exept.de>
parents: 3641
diff changeset
  1066
    "/
d525b3acc091 flush cache first in addMethod - then do a change notification
Claus Gittinger <cg@exept.de>
parents: 3641
diff changeset
  1067
    self changed:#methodDictionary with:(Array with:newSelector with:oldMethod).
d525b3acc091 flush cache first in addMethod - then do a change notification
Claus Gittinger <cg@exept.de>
parents: 3641
diff changeset
  1068
d525b3acc091 flush cache first in addMethod - then do a change notification
Claus Gittinger <cg@exept.de>
parents: 3641
diff changeset
  1069
    "/
d525b3acc091 flush cache first in addMethod - then do a change notification
Claus Gittinger <cg@exept.de>
parents: 3641
diff changeset
  1070
    "/ also notify a change of Smalltalk;
d525b3acc091 flush cache first in addMethod - then do a change notification
Claus Gittinger <cg@exept.de>
parents: 3641
diff changeset
  1071
    "/ this allows a dependent of Smalltalk to watch all class
d525b3acc091 flush cache first in addMethod - then do a change notification
Claus Gittinger <cg@exept.de>
parents: 3641
diff changeset
  1072
    "/ changes (no need for observing all classes)
d525b3acc091 flush cache first in addMethod - then do a change notification
Claus Gittinger <cg@exept.de>
parents: 3641
diff changeset
  1073
    "/ - this allows for watchers to find out if its a new method or a method-change
d525b3acc091 flush cache first in addMethod - then do a change notification
Claus Gittinger <cg@exept.de>
parents: 3641
diff changeset
  1074
    "/
d525b3acc091 flush cache first in addMethod - then do a change notification
Claus Gittinger <cg@exept.de>
parents: 3641
diff changeset
  1075
    Smalltalk changed:#methodInClass with:(Array with:self with:newSelector with:oldMethod).
d525b3acc091 flush cache first in addMethod - then do a change notification
Claus Gittinger <cg@exept.de>
parents: 3641
diff changeset
  1076
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1077
    ^ true
734
a4378f483a86 pass original method as changeArg when doing method changes;
Claus Gittinger <cg@exept.de>
parents: 662
diff changeset
  1078
a4378f483a86 pass original method as changeArg when doing method changes;
Claus Gittinger <cg@exept.de>
parents: 662
diff changeset
  1079
    "Created: 11.12.1995 / 13:59:37 / cg"
2095
fa85d9f387ac beside notifying a self-changed,
Claus Gittinger <cg@exept.de>
parents: 2054
diff changeset
  1080
    "Modified: 8.1.1997 / 22:43:13 / cg"
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1081
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1082
4598
7bfc7f7c4c07 classPool simulation
Claus Gittinger <cg@exept.de>
parents: 4579
diff changeset
  1083
classPool
7bfc7f7c4c07 classPool simulation
Claus Gittinger <cg@exept.de>
parents: 4579
diff changeset
  1084
    "return something which allows access to my classVariables via
7bfc7f7c4c07 classPool simulation
Claus Gittinger <cg@exept.de>
parents: 4579
diff changeset
  1085
     #at: and #at:put: messages."
7bfc7f7c4c07 classPool simulation
Claus Gittinger <cg@exept.de>
parents: 4579
diff changeset
  1086
7bfc7f7c4c07 classPool simulation
Claus Gittinger <cg@exept.de>
parents: 4579
diff changeset
  1087
    ^ SimulatedClassPool new setClass:self
7bfc7f7c4c07 classPool simulation
Claus Gittinger <cg@exept.de>
parents: 4579
diff changeset
  1088
7bfc7f7c4c07 classPool simulation
Claus Gittinger <cg@exept.de>
parents: 4579
diff changeset
  1089
    "
7bfc7f7c4c07 classPool simulation
Claus Gittinger <cg@exept.de>
parents: 4579
diff changeset
  1090
     Button classPool
7bfc7f7c4c07 classPool simulation
Claus Gittinger <cg@exept.de>
parents: 4579
diff changeset
  1091
    "
7bfc7f7c4c07 classPool simulation
Claus Gittinger <cg@exept.de>
parents: 4579
diff changeset
  1092
7bfc7f7c4c07 classPool simulation
Claus Gittinger <cg@exept.de>
parents: 4579
diff changeset
  1093
    "Modified: 17.10.1997 / 12:12:14 / cg"
7bfc7f7c4c07 classPool simulation
Claus Gittinger <cg@exept.de>
parents: 4579
diff changeset
  1094
!
7bfc7f7c4c07 classPool simulation
Claus Gittinger <cg@exept.de>
parents: 4579
diff changeset
  1095
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1096
displayString
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1097
    "although behaviors have no name, we return something
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1098
     useful here - there are many places (inspectors) where
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1099
     a classes name is asked for.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1100
     Implementing this message here allows instances of anonymous classes
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1101
     to show a reasonable name."
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1102
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1103
    ^ 'someBehavior'
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1104
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1105
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1106
flags
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1107
    "return the receivers flag bits"
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1108
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1109
    ^ flags
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1110
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1111
3327
5efc0a1f0e2c Add #getMethodDictionary (ST80)
Stefan Vogel <sv@exept.de>
parents: 3237
diff changeset
  1112
getMethodDictionary
5efc0a1f0e2c Add #getMethodDictionary (ST80)
Stefan Vogel <sv@exept.de>
parents: 3237
diff changeset
  1113
    "ST 80 compatibility: return the receivers method dictionary."
5efc0a1f0e2c Add #getMethodDictionary (ST80)
Stefan Vogel <sv@exept.de>
parents: 3237
diff changeset
  1114
6395
2ad7a8e870ab instance variables should only be accessed by getters/setters
Claus Gittinger <cg@exept.de>
parents: 6329
diff changeset
  1115
    ^ self methodDictionary
3327
5efc0a1f0e2c Add #getMethodDictionary (ST80)
Stefan Vogel <sv@exept.de>
parents: 3237
diff changeset
  1116
5efc0a1f0e2c Add #getMethodDictionary (ST80)
Stefan Vogel <sv@exept.de>
parents: 3237
diff changeset
  1117
    "Modified: / 6.3.1998 / 15:45:50 / stefan"
5efc0a1f0e2c Add #getMethodDictionary (ST80)
Stefan Vogel <sv@exept.de>
parents: 3237
diff changeset
  1118
!
5efc0a1f0e2c Add #getMethodDictionary (ST80)
Stefan Vogel <sv@exept.de>
parents: 3237
diff changeset
  1119
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1120
instSize
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1121
    "return the number of instance variables of the receiver.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1122
     This includes all superclass instance variables."
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1123
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1124
    ^ instSize
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1125
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1126
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1127
methodDictionary
1634
9ce0afb7f089 commentary
Claus Gittinger <cg@exept.de>
parents: 1514
diff changeset
  1128
    "return the receivers method dictionary."
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1129
1494
dab70fc90ebc Remove old methodArray and selectorArray stuff (use MethodDictionary only).
Stefan Vogel <sv@exept.de>
parents: 1461
diff changeset
  1130
    ^ methodDictionary
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  1131
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  1132
    "Modified: 12.6.1996 / 13:47:08 / stefan"
1634
9ce0afb7f089 commentary
Claus Gittinger <cg@exept.de>
parents: 1514
diff changeset
  1133
    "Modified: 16.8.1996 / 14:55:21 / cg"
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  1134
!
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  1135
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  1136
methodDictionary:dict
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  1137
    "set the receivers method dictionary and flush inline caches." 
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  1138
1814
fdaf647b5086 check for nil methodDict
Claus Gittinger <cg@exept.de>
parents: 1760
diff changeset
  1139
    dict isNil ifTrue:[
5484
7dbf2507f262 halt vs. error
Claus Gittinger <cg@exept.de>
parents: 5428
diff changeset
  1140
        self error:'attempt to set methodDictionary to nil.' mayProceed:true.
7dbf2507f262 halt vs. error
Claus Gittinger <cg@exept.de>
parents: 5428
diff changeset
  1141
        ^ self
1814
fdaf647b5086 check for nil methodDict
Claus Gittinger <cg@exept.de>
parents: 1760
diff changeset
  1142
    ].
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  1143
    self setMethodDictionary:dict.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  1144
    ObjectMemory flushCaches.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  1145
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  1146
    "Created: 5.6.1996 / 11:29:36 / stefan"
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  1147
    "Modified: 7.6.1996 / 08:39:51 / stefan"
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1148
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1149
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1150
removeSelector:aSelector
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1151
    "remove the selector, aSelector and its associated method 
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1152
     from the methodDictionary"
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1153
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  1154
    |dict newDict|
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  1155
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  1156
    dict := self methodDictionary.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  1157
    newDict := dict removeKeyAndCompress:aSelector.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  1158
    newDict isNil ifTrue:[ 
1494
dab70fc90ebc Remove old methodArray and selectorArray stuff (use MethodDictionary only).
Stefan Vogel <sv@exept.de>
parents: 1461
diff changeset
  1159
	^ false.
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  1160
    ].
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  1161
    self setMethodDictionary:newDict.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  1162
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1163
"
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1164
    [
1494
dab70fc90ebc Remove old methodArray and selectorArray stuff (use MethodDictionary only).
Stefan Vogel <sv@exept.de>
parents: 1461
diff changeset
  1165
	|nargs|
dab70fc90ebc Remove old methodArray and selectorArray stuff (use MethodDictionary only).
Stefan Vogel <sv@exept.de>
parents: 1461
diff changeset
  1166
	nargs := aSelector numArgs.
dab70fc90ebc Remove old methodArray and selectorArray stuff (use MethodDictionary only).
Stefan Vogel <sv@exept.de>
parents: 1461
diff changeset
  1167
	ObjectMemory flushMethodCache.
dab70fc90ebc Remove old methodArray and selectorArray stuff (use MethodDictionary only).
Stefan Vogel <sv@exept.de>
parents: 1461
diff changeset
  1168
	ObjectMemory flushInlineCachesWithArgs:nargs.
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1169
    ] value
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1170
"
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1171
    "
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1172
     actually, we would do better with less flushing ...
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1173
    "
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1174
    ObjectMemory flushCaches.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1175
    ^ true
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  1176
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  1177
    "Modified: 12.6.1996 / 11:54:29 / stefan"
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1178
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1179
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1180
selectors
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1181
    "return the receivers selector array as an orderedCollection.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1182
     Notice: this may not be compatible with ST-80.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1183
     (should we return a Set ?)"
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1184
1814
fdaf647b5086 check for nil methodDict
Claus Gittinger <cg@exept.de>
parents: 1760
diff changeset
  1185
    |md|
fdaf647b5086 check for nil methodDict
Claus Gittinger <cg@exept.de>
parents: 1760
diff changeset
  1186
1967
e8a6fb1e14ce oops - iNil instead of isNil
Claus Gittinger <cg@exept.de>
parents: 1918
diff changeset
  1187
    (md := self methodDictionary) isNil ifTrue:[
2666
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
  1188
	'oops - nil methodDictionary' errorPrintCR.
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
  1189
	^ #()
1814
fdaf647b5086 check for nil methodDict
Claus Gittinger <cg@exept.de>
parents: 1760
diff changeset
  1190
    ].
fdaf647b5086 check for nil methodDict
Claus Gittinger <cg@exept.de>
parents: 1760
diff changeset
  1191
    ^ md keys
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  1192
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  1193
    "Modified: 7.6.1996 / 15:33:18 / stefan"
1967
e8a6fb1e14ce oops - iNil instead of isNil
Claus Gittinger <cg@exept.de>
parents: 1918
diff changeset
  1194
    "Modified: 12.11.1996 / 11:31:51 / cg"
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1195
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1196
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1197
superclass
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1198
    "return the receivers superclass"
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1199
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1200
    ^ superclass
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1201
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1202
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1203
superclass:aClass
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1204
    "set the superclass - this actually creates a new class,
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1205
     recompiling all methods for the new one. The receiving class stays
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1206
     around anonymous to allow existing instances some life.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1207
     This may change in the future (adjusting existing instances)"
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1208
2054
1601ad49cf59 care for nameSpace and owning class when changing the superClass.
Claus Gittinger <cg@exept.de>
parents: 2053
diff changeset
  1209
    |owner ns name|
1601ad49cf59 care for nameSpace and owning class when changing the superClass.
Claus Gittinger <cg@exept.de>
parents: 2053
diff changeset
  1210
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1211
    SubclassInfo := nil.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1212
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1213
    "must flush caches since lookup chain changes"
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1214
    ObjectMemory flushCaches.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1215
2054
1601ad49cf59 care for nameSpace and owning class when changing the superClass.
Claus Gittinger <cg@exept.de>
parents: 2053
diff changeset
  1216
    "/ for correct recompilation, just create a new class ...
1601ad49cf59 care for nameSpace and owning class when changing the superClass.
Claus Gittinger <cg@exept.de>
parents: 2053
diff changeset
  1217
    "/ but care to avoid a nameSpace change, by giving my
1601ad49cf59 care for nameSpace and owning class when changing the superClass.
Claus Gittinger <cg@exept.de>
parents: 2053
diff changeset
  1218
    "/ full name and answering with Smalltalk to a nameSpace query.
1601ad49cf59 care for nameSpace and owning class when changing the superClass.
Claus Gittinger <cg@exept.de>
parents: 2053
diff changeset
  1219
1601ad49cf59 care for nameSpace and owning class when changing the superClass.
Claus Gittinger <cg@exept.de>
parents: 2053
diff changeset
  1220
    (owner := self owningClass) notNil ifTrue:[
3920
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  1221
	ns := owner.
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  1222
	name := self nameWithoutPrefix asSymbol
2054
1601ad49cf59 care for nameSpace and owning class when changing the superClass.
Claus Gittinger <cg@exept.de>
parents: 2053
diff changeset
  1223
    ] ifFalse:[
3920
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  1224
	ns := Smalltalk.
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  1225
	name := self name
2054
1601ad49cf59 care for nameSpace and owning class when changing the superClass.
Claus Gittinger <cg@exept.de>
parents: 2053
diff changeset
  1226
    ].
1601ad49cf59 care for nameSpace and owning class when changing the superClass.
Claus Gittinger <cg@exept.de>
parents: 2053
diff changeset
  1227
3628
5b58b3b8644a auto-keep package - when changing superclass
Claus Gittinger <cg@exept.de>
parents: 3623
diff changeset
  1228
    Class classRedefinitionSignal answer:#keep do:[
3920
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  1229
	Class nameSpaceQuerySignal answer:ns
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  1230
	do:[
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  1231
	    aClass 
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  1232
		perform:(self definitionSelector) 
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  1233
		withArguments:(Array with:name 
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  1234
			       with:(self instanceVariableString) 
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  1235
			       with:(self classVariableString)
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  1236
			       with:'' "/ pool 
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  1237
			       with:(self category)).
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  1238
	]
2054
1601ad49cf59 care for nameSpace and owning class when changing the superClass.
Claus Gittinger <cg@exept.de>
parents: 2053
diff changeset
  1239
    ]
2436
dbea519857e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
  1240
3628
5b58b3b8644a auto-keep package - when changing superclass
Claus Gittinger <cg@exept.de>
parents: 3623
diff changeset
  1241
    "Modified: / 20.6.1998 / 18:17:37 / cg"
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1242
! !
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1243
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1244
!Behavior methodsFor:'autoload check'!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1245
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1246
autoload
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1247
    "force autoloading - do nothing here; 
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1248
     redefined in Autoload; see comment there"
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1249
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1250
    ^ self
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1251
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1252
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1253
isLoaded
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1254
    "return true, if the class has been loaded; 
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1255
     redefined in Autoload; see comment there"
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1256
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1257
    ^ true
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  1258
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  1259
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  1260
wasAutoloaded
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  1261
    "return true, if this class came into the system via an
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  1262
     autoload; false otherwise.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  1263
     Returning false here. This allows different Behavior-like objects
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  1264
     (alien classes) to be handled by the browser as well."
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  1265
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  1266
    ^ false
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  1267
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  1268
    "Created: 16.4.1996 / 16:27:16 / cg"
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1269
! !
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1270
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1271
!Behavior methodsFor:'binary storage'!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1272
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1273
binaryDefinitionFrom:stream manager:manager
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1274
    "sent during a binary read by the input manager.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1275
     Read the definition on an empty instance (of my class) from stream.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1276
     All pointer instances are left nil, while all bits are read in here.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1277
     return the new object."
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1278
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1279
    |obj t
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1280
     basicSize "{ Class: SmallInteger }" |
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1281
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1282
    self isPointers ifTrue: [
7358
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1283
        "/
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1284
        "/ inst size not needed - if you uncomment the line below,
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1285
        "/ also uncomment the corresponding line in
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1286
        "/ Object>>storeBinaryDefinitionOn:manager:
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1287
        "/
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1288
        "/ stream next. "skip instSize"
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1289
        self isVariable ifTrue: [
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1290
            ^ self basicNew:(stream nextNumber:3)
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1291
        ].
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1292
        ^ self basicNew
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1293
    ].
308
f04744ef7b5d *** empty log message ***
claus
parents: 295
diff changeset
  1294
f04744ef7b5d *** empty log message ***
claus
parents: 295
diff changeset
  1295
    "
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1296
     an object with bit-valued instance variables.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1297
     These are read here.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1298
    "
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1299
    basicSize := stream nextNumber:4.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1300
    obj := self basicNew:basicSize.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1301
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1302
    self isBytes ifTrue: [
7358
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1303
        stream nextBytes:basicSize into:obj
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1304
    ] ifFalse: [
7358
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1305
        self isWords ifTrue: [
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1306
            1 to:basicSize do:[:i |
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1307
                obj basicAt:i put:(stream nextNumber:2)
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1308
            ]
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1309
        ] ifFalse:[
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1310
            self isLongs ifTrue: [
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1311
                1 to:basicSize do:[:i |
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1312
                    obj basicAt:i put:(stream nextNumber:4)
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1313
                ]
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1314
            ] ifFalse:[
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1315
                self isFloats ifTrue: [
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1316
                    "could do it in one big read on machines which use IEEE floats ..."
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1317
                    t := ShortFloat basicNew.
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1318
                    1 to:basicSize do:[:i |
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1319
                        ShortFloat readBinaryIEEESingleFrom:stream into:t.
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1320
                        obj basicAt:i put: t
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1321
                    ]
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1322
                ] ifFalse:[
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1323
                    self isDoubles ifTrue: [
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1324
                        "could do it in one big read on machines which use IEEE doubles ..."
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1325
                        t := Float basicNew.
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1326
                        1 to:basicSize do:[:i |
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1327
                            Float readBinaryIEEEDoubleFrom:stream into:t.
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1328
                            obj basicAt:i put: t
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1329
                        ]
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1330
                    ]
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1331
                ]
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1332
            ]
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1333
        ]
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1334
    ].
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1335
    ^obj
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1336
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1337
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1338
canCloneFrom:anObject 
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1339
    "return true, if this class can clone an obsolete object as retrieved
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1340
     by a binary load. Subclasses which do not want to have obsolete objects
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1341
     be converted, should redefine this method to return false.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1342
     (However, conversion is never done silently in a binary load; you
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1343
      have to have a handler for the binaryload errors and for the conversion
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1344
      request signal.)"
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1345
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1346
    ^ true
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1347
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1348
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1349
cloneFrom:aPrototype
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1350
    "return an instance of myself with variables initialized from
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1351
     a prototype. This is used when instances of obsolete classes are
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1352
     binary loaded and a conversion is done on the obsolete object. 
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1353
     UserClasses may redefine this for better conversions."
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1354
4738
fe2a0f7d585e Remove unused method vars.
Stefan Vogel <sv@exept.de>
parents: 4728
diff changeset
  1355
    |newInst indexed|
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1356
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1357
    indexed := false.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1358
    aPrototype class isVariable ifTrue:[
5321
c21a89ffdea4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5297
diff changeset
  1359
	self isVariable ifTrue:[
c21a89ffdea4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5297
diff changeset
  1360
	    indexed := true.
c21a89ffdea4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5297
diff changeset
  1361
	].
c21a89ffdea4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5297
diff changeset
  1362
	"otherwise, these are lost ..."
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1363
    ].
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1364
    indexed ifTrue:[
5321
c21a89ffdea4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5297
diff changeset
  1365
	newInst := self basicNew:aPrototype basicSize
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1366
    ] ifFalse:[
5321
c21a89ffdea4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5297
diff changeset
  1367
	newInst := self basicNew
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1368
    ].
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1369
4692
055edf6e95af Redefine #cloneFrom: using #cloneInstanceVariablesFrom:.
Stefan Vogel <sv@exept.de>
parents: 4682
diff changeset
  1370
    newInst cloneInstanceVariablesFrom:aPrototype.
055edf6e95af Redefine #cloneFrom: using #cloneInstanceVariablesFrom:.
Stefan Vogel <sv@exept.de>
parents: 4682
diff changeset
  1371
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1372
    ^ newInst
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1373
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1374
    "
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1375
     Class withoutUpdatingChangesDo:[
5321
c21a89ffdea4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5297
diff changeset
  1376
	 Point subclass:#Point3D
c21a89ffdea4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5297
diff changeset
  1377
	   instanceVariableNames:'z'
c21a89ffdea4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5297
diff changeset
  1378
	   classVariableNames:''
c21a89ffdea4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5297
diff changeset
  1379
	   poolDictionaries:''
c21a89ffdea4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5297
diff changeset
  1380
	   category:'testing'.
c21a89ffdea4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5297
diff changeset
  1381
	 (Point3D cloneFrom:1@2) inspect.
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1382
     ]
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1383
    "
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1384
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1385
    "
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1386
     Class withoutUpdatingChangesDo:[
5321
c21a89ffdea4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5297
diff changeset
  1387
	 Point variableSubclass:#Point3D
c21a89ffdea4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5297
diff changeset
  1388
	   instanceVariableNames:'z'
c21a89ffdea4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5297
diff changeset
  1389
	   classVariableNames:''
c21a89ffdea4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5297
diff changeset
  1390
	   poolDictionaries:''
c21a89ffdea4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5297
diff changeset
  1391
	   category:'testing'.
c21a89ffdea4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5297
diff changeset
  1392
	 (Point3D cloneFrom:#(1 2 3)) inspect.
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1393
     ]
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1394
    "
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1395
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1396
    "
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1397
     |someObject|
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1398
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1399
     Class withoutUpdatingChangesDo:[
5321
c21a89ffdea4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5297
diff changeset
  1400
	 Object subclass:#TestClass1 
c21a89ffdea4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5297
diff changeset
  1401
	   instanceVariableNames:'foo bar'
c21a89ffdea4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5297
diff changeset
  1402
	   classVariableNames:''
c21a89ffdea4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5297
diff changeset
  1403
	   poolDictionaries:''
c21a89ffdea4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5297
diff changeset
  1404
	   category:'testing'.
c21a89ffdea4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5297
diff changeset
  1405
	 someObject := TestClass1 new.
c21a89ffdea4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5297
diff changeset
  1406
	 someObject instVarAt:1 put:'foo'; instVarAt:2 put:'bar'.
c21a89ffdea4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5297
diff changeset
  1407
	 Object subclass:#TestClass2 
c21a89ffdea4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5297
diff changeset
  1408
	   instanceVariableNames:'bar foo'
c21a89ffdea4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5297
diff changeset
  1409
	   classVariableNames:''
c21a89ffdea4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5297
diff changeset
  1410
	   poolDictionaries:''
c21a89ffdea4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5297
diff changeset
  1411
	   category:'testing'.
c21a89ffdea4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5297
diff changeset
  1412
	 (TestClass2 cloneFrom:someObject) inspect.
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1413
     ]
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1414
    "
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1415
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1416
6889
7efa6d375ef7 +fromBinaryStoreBytes; +fromString.
Claus Gittinger <cg@exept.de>
parents: 6865
diff changeset
  1417
fromBinaryStoreBytes:bytes
7efa6d375ef7 +fromBinaryStoreBytes; +fromString.
Claus Gittinger <cg@exept.de>
parents: 6865
diff changeset
  1418
    ^ self readBinaryFrom:(bytes readStream)
7efa6d375ef7 +fromBinaryStoreBytes; +fromString.
Claus Gittinger <cg@exept.de>
parents: 6865
diff changeset
  1419
7efa6d375ef7 +fromBinaryStoreBytes; +fromString.
Claus Gittinger <cg@exept.de>
parents: 6865
diff changeset
  1420
    "
7efa6d375ef7 +fromBinaryStoreBytes; +fromString.
Claus Gittinger <cg@exept.de>
parents: 6865
diff changeset
  1421
     Object fromBinaryStoreBytes:
7efa6d375ef7 +fromBinaryStoreBytes; +fromString.
Claus Gittinger <cg@exept.de>
parents: 6865
diff changeset
  1422
        #[15 1 42 0 0 3 0 40 13 5 104 101 108 108 111 38 40 46 63 243 190 118 200 180 57 88]
7efa6d375ef7 +fromBinaryStoreBytes; +fromString.
Claus Gittinger <cg@exept.de>
parents: 6865
diff changeset
  1423
    "
7efa6d375ef7 +fromBinaryStoreBytes; +fromString.
Claus Gittinger <cg@exept.de>
parents: 6865
diff changeset
  1424
!
7efa6d375ef7 +fromBinaryStoreBytes; +fromString.
Claus Gittinger <cg@exept.de>
parents: 6865
diff changeset
  1425
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1426
readBinaryFrom:aStream
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1427
    "read an objects binary representation from the argument,
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1428
     aStream and return it. 
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1429
     The read object must be a kind of myself, otherwise an error is raised. 
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1430
     To get any object, use 'Object readBinaryFrom:...',
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1431
     To get any number, use 'Number readBinaryFrom:...' and so on.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1432
     This is the reverse operation to 'storeBinaryOn:'. "
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1433
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1434
    ^ self readBinaryFrom:aStream onError:[self error:('expected ' , self name)]
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1435
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1436
    "
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1437
     |s|
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1438
     s := WriteStream on:(ByteArray new).
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1439
     #(1 2 3 4) storeBinaryOn:s.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1440
     Object readBinaryFrom:(ReadStream on:s contents)  
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1441
    "
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1442
    "
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1443
     |s|
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1444
     s := 'testFile' asFilename writeStream binary.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1445
     #(1 2 3 4) storeBinaryOn:s.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1446
     'hello world' storeBinaryOn:s.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1447
     s close.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1448
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1449
     s := 'testFile' asFilename readStream binary.
1422
9a0b792f2953 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1383
diff changeset
  1450
     Transcript showCR:(Object readBinaryFrom:s).
9a0b792f2953 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1383
diff changeset
  1451
     Transcript showCR:(Object readBinaryFrom:s).
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1452
     s close.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1453
    "
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1454
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1455
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1456
readBinaryFrom:aStream onError:exceptionBlock
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1457
    "read an objects binary representation from the argument,
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1458
     aStream and return it. 
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1459
     The read object must be a kind of myself, otherwise the value of
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1460
     the exceptionBlock is returned.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1461
     To get any object, use 'Object readBinaryFrom:...',
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1462
     To get any number, use 'Number readBinaryFrom:...' and so on.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1463
     This is the reverse operation to 'storeBinaryOn:'. "
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1464
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1465
    |newObject|
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1466
3069
9a25834a3ef7 tuned binaryStorage
Claus Gittinger <cg@exept.de>
parents: 3053
diff changeset
  1467
    newObject := (BinaryInputManager new) readFrom:aStream.
1834
b46ca5e3f1ec allow readBinaryFrom ... to return a nonObject, if sent to
Claus Gittinger <cg@exept.de>
parents: 1832
diff changeset
  1468
    (self ~~ Object
b46ca5e3f1ec allow readBinaryFrom ... to return a nonObject, if sent to
Claus Gittinger <cg@exept.de>
parents: 1832
diff changeset
  1469
     and:[(newObject isKindOf:self) not]) ifTrue:[^ exceptionBlock value].
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1470
    ^ newObject
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1471
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1472
    "
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1473
     |s|
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1474
     s := WriteStream on:(ByteArray new).
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1475
     #(1 2 3 4) storeBinaryOn:s.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1476
     Object readBinaryFrom:(ReadStream on:s contents) onError:['oops'] 
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1477
    "
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1478
    "
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1479
     |s|
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1480
     s := WriteStream on:(ByteArray new).
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1481
     #[1 2 3 4] storeBinaryOn:s.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1482
     Array readBinaryFrom:(ReadStream on:s contents)  onError:['oops']  
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1483
    "
1834
b46ca5e3f1ec allow readBinaryFrom ... to return a nonObject, if sent to
Claus Gittinger <cg@exept.de>
parents: 1832
diff changeset
  1484
3069
9a25834a3ef7 tuned binaryStorage
Claus Gittinger <cg@exept.de>
parents: 3053
diff changeset
  1485
    "Modified: / 1.11.1997 / 16:53:36 / cg"
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1486
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1487
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1488
storeBinaryDefinitionOn: stream manager: manager
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1489
    "binary store of a classes definition.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1490
     Classes will store the name only and restore by looking for
1259
8c62958114ad commentary
Claus Gittinger <cg@exept.de>
parents: 1192
diff changeset
  1491
     that name in the Smalltalk dictionary.
2463
b0937b570306 save strings in one write (binary storage)
Claus Gittinger <cg@exept.de>
parents: 2455
diff changeset
  1492
     This is an internal interface for the binary storage mechanism."
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1493
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1494
    | myName |
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1495
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1496
    myName := self name.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1497
    stream nextNumber:4 put:self signature.
2463
b0937b570306 save strings in one write (binary storage)
Claus Gittinger <cg@exept.de>
parents: 2455
diff changeset
  1498
    stream nextNumber:2 put:0.              "/ no instVarNames string here
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1499
    stream nextNumber:2 put:myName size.
2463
b0937b570306 save strings in one write (binary storage)
Claus Gittinger <cg@exept.de>
parents: 2455
diff changeset
  1500
    stream nextPutBytes:(myName size) from:myName startingAt:1.
b0937b570306 save strings in one write (binary storage)
Claus Gittinger <cg@exept.de>
parents: 2455
diff changeset
  1501
"/    myName do:[:c| 
b0937b570306 save strings in one write (binary storage)
Claus Gittinger <cg@exept.de>
parents: 2455
diff changeset
  1502
"/        stream nextPut:c asciiValue
b0937b570306 save strings in one write (binary storage)
Claus Gittinger <cg@exept.de>
parents: 2455
diff changeset
  1503
"/    ]
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1504
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1505
    "
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1506
     |s|
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1507
     s := WriteStream on:ByteArray new.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1508
     #(1 2 3 4) storeBinaryOn:s.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1509
     Object readBinaryFrom:(ReadStream on:s contents)  
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1510
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1511
     |s|
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1512
     s := WriteStream on:ByteArray new.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1513
     Rectangle storeBinaryOn:s.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1514
     Object readBinaryFrom:(ReadStream on:s contents)  
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1515
    "
1259
8c62958114ad commentary
Claus Gittinger <cg@exept.de>
parents: 1192
diff changeset
  1516
2463
b0937b570306 save strings in one write (binary storage)
Claus Gittinger <cg@exept.de>
parents: 2455
diff changeset
  1517
    "Modified: 19.3.1997 / 19:49:59 / cg"
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1518
! !
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1519
7331
cd0f1492d540 code motion from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7269
diff changeset
  1520
!Behavior methodsFor:'compiler interface'!
cd0f1492d540 code motion from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7269
diff changeset
  1521
cd0f1492d540 code motion from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7269
diff changeset
  1522
evaluatorClass
cd0f1492d540 code motion from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7269
diff changeset
  1523
    "return the compiler to use for expression evaluation for this class - 
cd0f1492d540 code motion from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7269
diff changeset
  1524
     this can be redefined in special classes, to evaluate expressions with
cd0f1492d540 code motion from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7269
diff changeset
  1525
     Lisp, Prolog, ASN1, Basic :-) or whatever syntax."
cd0f1492d540 code motion from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7269
diff changeset
  1526
cd0f1492d540 code motion from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7269
diff changeset
  1527
    ^ self class evaluatorClass.
cd0f1492d540 code motion from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7269
diff changeset
  1528
! !
cd0f1492d540 code motion from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7269
diff changeset
  1529
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1530
!Behavior methodsFor:'copying'!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1531
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1532
deepCopyUsing:aDictionary
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1533
    "return a deep copy of the receiver
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1534
     - return the receiver here - time will show if this is ok"
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1535
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1536
    ^ self
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1537
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1538
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1539
simpleDeepCopy
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1540
    "return a deep copy of the receiver
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1541
     - return the receiver here - time will show if this is ok"
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1542
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1543
    ^ self
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1544
! !
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1545
1192
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  1546
!Behavior methodsFor:'dummy changes management'!
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  1547
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  1548
addChangeRecordForClassRemove:aClassName
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  1549
     "add a change record that some class has been removed.
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  1550
      Defined as dummy here, since Behavior does not know about change management.
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  1551
      (only Classes do). This allows different Behavior-like objects
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  1552
      (alien classes) to be handled by the browser as well."
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  1553
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  1554
    "Created: 16.4.1996 / 16:30:09 / cg"
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  1555
    "Modified: 16.4.1996 / 18:10:35 / cg"
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  1556
! !
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  1557
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  1558
!Behavior methodsFor:'dummy fileOut'!
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  1559
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  1560
fileOutDefinitionOn:aStream
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  1561
    "dummy fileOut defined here.
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  1562
     This allows different Behavior-like objects
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  1563
     (alien classes) to be handled by the browser as well."
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  1564
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  1565
    ^ self
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  1566
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  1567
    "Created: 16.4.1996 / 16:28:01 / cg"
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  1568
! !
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  1569
6596
76f5c57a8734 Encoding
Stefan Vogel <sv@exept.de>
parents: 6590
diff changeset
  1570
!Behavior methodsFor:'encoding'!
76f5c57a8734 Encoding
Stefan Vogel <sv@exept.de>
parents: 6590
diff changeset
  1571
76f5c57a8734 Encoding
Stefan Vogel <sv@exept.de>
parents: 6590
diff changeset
  1572
encodeOn:anEncoder with:aParameter
76f5c57a8734 Encoding
Stefan Vogel <sv@exept.de>
parents: 6590
diff changeset
  1573
76f5c57a8734 Encoding
Stefan Vogel <sv@exept.de>
parents: 6590
diff changeset
  1574
    anEncoder encodeBehavior:self with:aParameter
76f5c57a8734 Encoding
Stefan Vogel <sv@exept.de>
parents: 6590
diff changeset
  1575
! !
76f5c57a8734 Encoding
Stefan Vogel <sv@exept.de>
parents: 6590
diff changeset
  1576
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1577
!Behavior methodsFor:'enumerating'!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1578
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1579
allDerivedInstancesDo:aBlock
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1580
    "evaluate aBlock for all of my instances and all instances of subclasses.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1581
     This method is going to be removed for protocol compatibility with
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1582
     other STs; use allSubInstancesDo:"
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1583
5862
c0ca96f505d7 Use <resource:#obsolete>
Stefan Vogel <sv@exept.de>
parents: 5842
diff changeset
  1584
    <resource:#obsolete>
c0ca96f505d7 Use <resource:#obsolete>
Stefan Vogel <sv@exept.de>
parents: 5842
diff changeset
  1585
2823
eb6feef1dd12 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2809
diff changeset
  1586
    self obsoleteMethodWarning:'use #allSubInstancesDo:'.
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1587
    self allSubInstancesDo:aBlock
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1588
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1589
    "
1422
9a0b792f2953 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1383
diff changeset
  1590
     StandardSystemView allDerivedInstancesDo:[:v | Transcript showCR:(v name)]
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1591
    "
2823
eb6feef1dd12 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2809
diff changeset
  1592
eb6feef1dd12 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2809
diff changeset
  1593
    "Modified: 31.7.1997 / 23:05:04 / cg"
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1594
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1595
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1596
allInstancesDo:aBlock
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1597
    "evaluate aBlock for all of my instances"
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1598
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1599
    ObjectMemory allInstancesOf:self do:[:anObject |
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1600
	aBlock value:anObject
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1601
    ]
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1602
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1603
    "
1422
9a0b792f2953 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1383
diff changeset
  1604
     StandardSystemView allInstancesDo:[:v | Transcript showCR:(v name)]
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1605
    "
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1606
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1607
5368
192acdc335e6 added #allSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 5327
diff changeset
  1608
allSelectorsAndMethodsDo:aTwoArgBlock
192acdc335e6 added #allSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 5327
diff changeset
  1609
    "evaluate the argument, aBlock for all selectors of mySelf and my metaclass,
192acdc335e6 added #allSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 5327
diff changeset
  1610
     passing the corresponding method as second argument"
192acdc335e6 added #allSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 5327
diff changeset
  1611
6076
2f75076b5597 renamed: #allSelectorsAndMethodsDo: into: #instAndClassSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 6030
diff changeset
  1612
    self obsoleteMethodWarning:'use #instAndClassSelectorsAndMethodsDo:'.
2f75076b5597 renamed: #allSelectorsAndMethodsDo: into: #instAndClassSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 6030
diff changeset
  1613
6022
112a2f86608d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6015
diff changeset
  1614
    self selectorsAndMethodsDo:aTwoArgBlock.
112a2f86608d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6015
diff changeset
  1615
    self class selectorsAndMethodsDo:aTwoArgBlock.
5368
192acdc335e6 added #allSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 5327
diff changeset
  1616
!
192acdc335e6 added #allSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 5327
diff changeset
  1617
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1618
allSubInstancesDo:aBlock
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1619
    "evaluate aBlock for all of my instances and all instances of subclasses"
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1621
    ObjectMemory allObjectsDo:[:anObject |
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1622
	(anObject isKindOf:self) ifTrue:[
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1623
	    aBlock value:anObject
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1624
	]
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1625
    ]
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1626
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1627
    "
1422
9a0b792f2953 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1383
diff changeset
  1628
     StandardSystemView allSubInstancesDo:[:v | Transcript showCR:(v name)]
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1629
    "
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1630
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1631
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1632
allSubclassesDo:aBlock
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1633
    "evaluate aBlock for all of my subclasses.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1634
     There is no specific order, in which the entries are enumerated.
3053
d6aad366397f added #whichSelectorsReferTo: and #compiledMethodAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  1635
     Warning:
5581
7bef1c75fb06 allBehaviors vs. allClasses
Claus Gittinger <cg@exept.de>
parents: 5561
diff changeset
  1636
        This will only enumerate globally known classes - for anonymous
7bef1c75fb06 allBehaviors vs. allClasses
Claus Gittinger <cg@exept.de>
parents: 5561
diff changeset
  1637
        behaviors, you have to walk over all instances of Behavior."
3053
d6aad366397f added #whichSelectorsReferTo: and #compiledMethodAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  1638
6931
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1639
    self allSubclassesInOrderDo:aBlock
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1640
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1641
"/    self isMeta ifTrue:[
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1642
"/        "/ metaclasses are not found via Smalltalk allClassesDo:
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1643
"/        "/ here, walk over classes and enumerate corresponding metas.
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1644
"/        self soleInstance allSubclassesDo:[:aSubClass |
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1645
"/            aBlock value:(aSubClass class)
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1646
"/        ].
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1647
"/    ] ifFalse:[
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1648
"/        Smalltalk allClassesDo:[:aClass |
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1649
"/            (aClass isSubclassOf:self) ifTrue:[
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1650
"/                aBlock value:aClass
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1651
"/            ]
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1652
"/        ]
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1653
"/    ]
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1654
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1655
    "
1422
9a0b792f2953 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1383
diff changeset
  1656
     Collection allSubclassesDo:[:c | Transcript showCR:(c name)]
3053
d6aad366397f added #whichSelectorsReferTo: and #compiledMethodAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  1657
     Collection class allSubclassesDo:[:c | Transcript showCR:(c name)]
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1658
    "
3053
d6aad366397f added #whichSelectorsReferTo: and #compiledMethodAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  1659
d6aad366397f added #whichSelectorsReferTo: and #compiledMethodAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  1660
    "Modified: / 25.10.1997 / 21:17:13 / cg"
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1661
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1662
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1663
allSubclassesInOrderDo:aBlock
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1664
    "evaluate aBlock for all of my subclasses.
6931
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1665
     There is no specific order, in which the entries are enumerated.
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1666
     Warning:
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1667
        This will only enumerate globally known classes - for anonymous
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1668
        behaviors, you have to walk over all instances of Behavior."
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1669
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1670
    |meta toDo cls|
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1671
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1672
    meta := self isMeta.
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1673
        
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1674
    toDo := OrderedCollection new.
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1675
    toDo addAll:self theNonMetaclass subclasses.
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1676
    [toDo notEmpty] whileTrue:[
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1677
        cls := toDo removeFirst.
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1678
        toDo addAll:(cls subclasses).
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1679
        meta ifTrue:[
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1680
            aBlock value:cls class.
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1681
        ] ifFalse:[
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1682
            aBlock value:cls.
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1683
        ]
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1684
    ].
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1685
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1686
"/    self isMeta ifTrue:[
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1687
"/        "/ metaclasses are not found via Smalltalk allClassesDo:
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1688
"/        "/ here, walk over classes and enumerate corresponding metas.
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1689
"/        self soleInstance allSubclassesDo:[:aSubClass |
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1690
"/            aBlock value:(aSubClass class)
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1691
"/        ].
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1692
"/    ] ifFalse:[
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1693
"/        Smalltalk allClassesDo:[:aClass |
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1694
"/            (aClass isSubclassOf:self) ifTrue:[
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1695
"/                aBlock value:aClass
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1696
"/            ]
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1697
"/        ]
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1698
"/    ]
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1699
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1700
    "
6931
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1701
     Collection allSubclassesDo:[:c | Transcript showCR:(c name)]
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1702
     Collection class allSubclassesDo:[:c | Transcript showCR:(c name)]
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1703
    "
6931
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1704
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1705
    "Modified: / 25.10.1997 / 21:17:13 / cg"
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1706
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1707
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1708
allSuperclassesDo:aBlock
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1709
    "evaluate aBlock for all of my superclasses"
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1710
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1711
    |theClass|
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1712
6395
2ad7a8e870ab instance variables should only be accessed by getters/setters
Claus Gittinger <cg@exept.de>
parents: 6329
diff changeset
  1713
    theClass := self superclass.
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1714
    [theClass notNil] whileTrue:[
6395
2ad7a8e870ab instance variables should only be accessed by getters/setters
Claus Gittinger <cg@exept.de>
parents: 6329
diff changeset
  1715
        aBlock value:theClass.
2ad7a8e870ab instance variables should only be accessed by getters/setters
Claus Gittinger <cg@exept.de>
parents: 6329
diff changeset
  1716
        theClass := theClass superclass
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1717
    ]
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1718
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1719
    "
1422
9a0b792f2953 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1383
diff changeset
  1720
     String allSuperclassesDo:[:c | Transcript showCR:(c name)]
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1721
    "
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1722
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1723
6076
2f75076b5597 renamed: #allSelectorsAndMethodsDo: into: #instAndClassSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 6030
diff changeset
  1724
instAndClassMethodsDo:aOneArgBlock
2f75076b5597 renamed: #allSelectorsAndMethodsDo: into: #instAndClassSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 6030
diff changeset
  1725
    "evaluate the argument, aBlock for all methods of mySelf and my metaclass
2f75076b5597 renamed: #allSelectorsAndMethodsDo: into: #instAndClassSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 6030
diff changeset
  1726
     (i.e. for both instance- and class methods)"
2f75076b5597 renamed: #allSelectorsAndMethodsDo: into: #instAndClassSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 6030
diff changeset
  1727
6395
2ad7a8e870ab instance variables should only be accessed by getters/setters
Claus Gittinger <cg@exept.de>
parents: 6329
diff changeset
  1728
    self theNonMetaclass methodsDo:aOneArgBlock.
2ad7a8e870ab instance variables should only be accessed by getters/setters
Claus Gittinger <cg@exept.de>
parents: 6329
diff changeset
  1729
    self theMetaclass    methodsDo:aOneArgBlock.
6076
2f75076b5597 renamed: #allSelectorsAndMethodsDo: into: #instAndClassSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 6030
diff changeset
  1730
!
2f75076b5597 renamed: #allSelectorsAndMethodsDo: into: #instAndClassSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 6030
diff changeset
  1731
2f75076b5597 renamed: #allSelectorsAndMethodsDo: into: #instAndClassSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 6030
diff changeset
  1732
instAndClassSelectorsAndMethodsDo:aTwoArgBlock
2f75076b5597 renamed: #allSelectorsAndMethodsDo: into: #instAndClassSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 6030
diff changeset
  1733
    "evaluate the argument, aBlock for all selectors of mySelf and my metaclass,
2f75076b5597 renamed: #allSelectorsAndMethodsDo: into: #instAndClassSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 6030
diff changeset
  1734
     passing the corresponding method as second argument"
2f75076b5597 renamed: #allSelectorsAndMethodsDo: into: #instAndClassSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 6030
diff changeset
  1735
2f75076b5597 renamed: #allSelectorsAndMethodsDo: into: #instAndClassSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 6030
diff changeset
  1736
    self selectorsAndMethodsDo:aTwoArgBlock.
2f75076b5597 renamed: #allSelectorsAndMethodsDo: into: #instAndClassSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 6030
diff changeset
  1737
    self class selectorsAndMethodsDo:aTwoArgBlock.
2f75076b5597 renamed: #allSelectorsAndMethodsDo: into: #instAndClassSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 6030
diff changeset
  1738
!
2f75076b5597 renamed: #allSelectorsAndMethodsDo: into: #instAndClassSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 6030
diff changeset
  1739
2f75076b5597 renamed: #allSelectorsAndMethodsDo: into: #instAndClassSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 6030
diff changeset
  1740
methodsDo:aOneArgBlock
2f75076b5597 renamed: #allSelectorsAndMethodsDo: into: #instAndClassSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 6030
diff changeset
  1741
    "evaluate the argument, aBlock for all my methods"
2f75076b5597 renamed: #allSelectorsAndMethodsDo: into: #instAndClassSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 6030
diff changeset
  1742
6395
2ad7a8e870ab instance variables should only be accessed by getters/setters
Claus Gittinger <cg@exept.de>
parents: 6329
diff changeset
  1743
    self methodDictionary do:aOneArgBlock
6076
2f75076b5597 renamed: #allSelectorsAndMethodsDo: into: #instAndClassSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 6030
diff changeset
  1744
2f75076b5597 renamed: #allSelectorsAndMethodsDo: into: #instAndClassSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 6030
diff changeset
  1745
    "
2f75076b5597 renamed: #allSelectorsAndMethodsDo: into: #instAndClassSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 6030
diff changeset
  1746
     UndefinedObject methodsDo:[:m | Transcript showCR:m whoString]
2f75076b5597 renamed: #allSelectorsAndMethodsDo: into: #instAndClassSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 6030
diff changeset
  1747
     UndefinedObject selectorsDo:[:sym | Transcript showCR:sym]
2f75076b5597 renamed: #allSelectorsAndMethodsDo: into: #instAndClassSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 6030
diff changeset
  1748
    "
2f75076b5597 renamed: #allSelectorsAndMethodsDo: into: #instAndClassSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 6030
diff changeset
  1749
!
2f75076b5597 renamed: #allSelectorsAndMethodsDo: into: #instAndClassSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 6030
diff changeset
  1750
3053
d6aad366397f added #whichSelectorsReferTo: and #compiledMethodAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  1751
selectorsAndMethodsDo:aTwoArgBlock
5368
192acdc335e6 added #allSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 5327
diff changeset
  1752
    "evaluate the argument, aBlock for all my selectors,
3920
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  1753
     passing the corresponding method as second argument"
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  1754
6395
2ad7a8e870ab instance variables should only be accessed by getters/setters
Claus Gittinger <cg@exept.de>
parents: 6329
diff changeset
  1755
    self methodDictionary keysAndValuesDo:aTwoArgBlock
3053
d6aad366397f added #whichSelectorsReferTo: and #compiledMethodAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  1756
d6aad366397f added #whichSelectorsReferTo: and #compiledMethodAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  1757
    "Created: / 27.10.1997 / 14:09:27 / cg"
d6aad366397f added #whichSelectorsReferTo: and #compiledMethodAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  1758
!
d6aad366397f added #whichSelectorsReferTo: and #compiledMethodAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  1759
6076
2f75076b5597 renamed: #allSelectorsAndMethodsDo: into: #instAndClassSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 6030
diff changeset
  1760
selectorsDo:aOneArgBlock
2f75076b5597 renamed: #allSelectorsAndMethodsDo: into: #instAndClassSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 6030
diff changeset
  1761
    "evaluate the argument, aBlock for all my selectors"
2f75076b5597 renamed: #allSelectorsAndMethodsDo: into: #instAndClassSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 6030
diff changeset
  1762
6395
2ad7a8e870ab instance variables should only be accessed by getters/setters
Claus Gittinger <cg@exept.de>
parents: 6329
diff changeset
  1763
    self methodDictionary keysDo:aOneArgBlock
6076
2f75076b5597 renamed: #allSelectorsAndMethodsDo: into: #instAndClassSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 6030
diff changeset
  1764
!
2f75076b5597 renamed: #allSelectorsAndMethodsDo: into: #instAndClassSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 6030
diff changeset
  1765
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1766
subclassesDo:aBlock
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1767
    "evaluate the argument, aBlock for all immediate subclasses.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1768
     This will only enumerate globally known classes - for anonymous
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1769
     behaviors, you have to walk over all instances of Behavior."
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1770
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1771
    |coll|
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1772
5581
7bef1c75fb06 allBehaviors vs. allClasses
Claus Gittinger <cg@exept.de>
parents: 5561
diff changeset
  1773
    self isMeta ifTrue:[
7bef1c75fb06 allBehaviors vs. allClasses
Claus Gittinger <cg@exept.de>
parents: 5561
diff changeset
  1774
        "/ metaclasses are not found via Smalltalk allClassesDo:
7bef1c75fb06 allBehaviors vs. allClasses
Claus Gittinger <cg@exept.de>
parents: 5561
diff changeset
  1775
        "/ here, walk over classes and enumerate corresponding metas.
7bef1c75fb06 allBehaviors vs. allClasses
Claus Gittinger <cg@exept.de>
parents: 5561
diff changeset
  1776
        self soleInstance subclassesDo:[:aSubClass |
7bef1c75fb06 allBehaviors vs. allClasses
Claus Gittinger <cg@exept.de>
parents: 5561
diff changeset
  1777
            aBlock value:(aSubClass class)
7bef1c75fb06 allBehaviors vs. allClasses
Claus Gittinger <cg@exept.de>
parents: 5561
diff changeset
  1778
        ].
7bef1c75fb06 allBehaviors vs. allClasses
Claus Gittinger <cg@exept.de>
parents: 5561
diff changeset
  1779
        ^ self
7bef1c75fb06 allBehaviors vs. allClasses
Claus Gittinger <cg@exept.de>
parents: 5561
diff changeset
  1780
    ].
7bef1c75fb06 allBehaviors vs. allClasses
Claus Gittinger <cg@exept.de>
parents: 5561
diff changeset
  1781
2224
7e49310cb7af commentary
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
  1782
    "/ use cached information (avoid class hierarchy search)
7e49310cb7af commentary
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
  1783
    "/ if possible
7e49310cb7af commentary
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
  1784
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1785
    SubclassInfo isNil ifTrue:[
5581
7bef1c75fb06 allBehaviors vs. allClasses
Claus Gittinger <cg@exept.de>
parents: 5561
diff changeset
  1786
        Behavior subclassInfo
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1787
    ].
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1788
    SubclassInfo notNil ifTrue:[
5581
7bef1c75fb06 allBehaviors vs. allClasses
Claus Gittinger <cg@exept.de>
parents: 5561
diff changeset
  1789
        coll := SubclassInfo at:self ifAbsent:nil.
7bef1c75fb06 allBehaviors vs. allClasses
Claus Gittinger <cg@exept.de>
parents: 5561
diff changeset
  1790
        coll notNil ifTrue:[
7bef1c75fb06 allBehaviors vs. allClasses
Claus Gittinger <cg@exept.de>
parents: 5561
diff changeset
  1791
            coll do:aBlock.
7bef1c75fb06 allBehaviors vs. allClasses
Claus Gittinger <cg@exept.de>
parents: 5561
diff changeset
  1792
        ].
7bef1c75fb06 allBehaviors vs. allClasses
Claus Gittinger <cg@exept.de>
parents: 5561
diff changeset
  1793
        ^ self
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1794
    ].
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1795
5581
7bef1c75fb06 allBehaviors vs. allClasses
Claus Gittinger <cg@exept.de>
parents: 5561
diff changeset
  1796
    Smalltalk allClassesDo:[:aClass |
7bef1c75fb06 allBehaviors vs. allClasses
Claus Gittinger <cg@exept.de>
parents: 5561
diff changeset
  1797
        (aClass superclass == self) ifTrue:[
7bef1c75fb06 allBehaviors vs. allClasses
Claus Gittinger <cg@exept.de>
parents: 5561
diff changeset
  1798
            aBlock value:aClass
7bef1c75fb06 allBehaviors vs. allClasses
Claus Gittinger <cg@exept.de>
parents: 5561
diff changeset
  1799
        ]
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1800
    ]
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1801
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1802
    "
1422
9a0b792f2953 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1383
diff changeset
  1803
     Collection subclassesDo:[:c | Transcript showCR:(c name)]
308
f04744ef7b5d *** empty log message ***
claus
parents: 295
diff changeset
  1804
    "
2224
7e49310cb7af commentary
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
  1805
7e49310cb7af commentary
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
  1806
    "Modified: 22.1.1997 / 18:44:01 / cg"
5638
02e3fcf34e3a added #withAllSubclassesDo:
Claus Gittinger <cg@exept.de>
parents: 5636
diff changeset
  1807
!
02e3fcf34e3a added #withAllSubclassesDo:
Claus Gittinger <cg@exept.de>
parents: 5636
diff changeset
  1808
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  1809
whichClassSatisfies: aBlock 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  1810
    |superclass|
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  1811
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  1812
    (aBlock value: self) ifTrue: [^self].
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  1813
    superclass := self superclass.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  1814
    ^ superclass isNil 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  1815
                ifTrue: [nil]
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  1816
                ifFalse: [superclass whichClassSatisfies: aBlock]
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  1817
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  1818
5638
02e3fcf34e3a added #withAllSubclassesDo:
Claus Gittinger <cg@exept.de>
parents: 5636
diff changeset
  1819
withAllSubclassesDo:aBlock
02e3fcf34e3a added #withAllSubclassesDo:
Claus Gittinger <cg@exept.de>
parents: 5636
diff changeset
  1820
    "evaluate aBlock for mySelf and all of my subclasses.
02e3fcf34e3a added #withAllSubclassesDo:
Claus Gittinger <cg@exept.de>
parents: 5636
diff changeset
  1821
     There is no specific order, in which the entries are enumerated.
02e3fcf34e3a added #withAllSubclassesDo:
Claus Gittinger <cg@exept.de>
parents: 5636
diff changeset
  1822
     Warning:
02e3fcf34e3a added #withAllSubclassesDo:
Claus Gittinger <cg@exept.de>
parents: 5636
diff changeset
  1823
        This will only enumerate globally known classes - for anonymous
02e3fcf34e3a added #withAllSubclassesDo:
Claus Gittinger <cg@exept.de>
parents: 5636
diff changeset
  1824
        behaviors, you have to walk over all instances of Behavior."
02e3fcf34e3a added #withAllSubclassesDo:
Claus Gittinger <cg@exept.de>
parents: 5636
diff changeset
  1825
02e3fcf34e3a added #withAllSubclassesDo:
Claus Gittinger <cg@exept.de>
parents: 5636
diff changeset
  1826
    aBlock value:self.
02e3fcf34e3a added #withAllSubclassesDo:
Claus Gittinger <cg@exept.de>
parents: 5636
diff changeset
  1827
    self allSubclassesDo:aBlock
02e3fcf34e3a added #withAllSubclassesDo:
Claus Gittinger <cg@exept.de>
parents: 5636
diff changeset
  1828
02e3fcf34e3a added #withAllSubclassesDo:
Claus Gittinger <cg@exept.de>
parents: 5636
diff changeset
  1829
    "
02e3fcf34e3a added #withAllSubclassesDo:
Claus Gittinger <cg@exept.de>
parents: 5636
diff changeset
  1830
     Collection withAllSubclassesDo:[:c | Transcript showCR:(c name)]
02e3fcf34e3a added #withAllSubclassesDo:
Claus Gittinger <cg@exept.de>
parents: 5636
diff changeset
  1831
     Collection class withAllSubclassesDo:[:c | Transcript showCR:(c name)]
02e3fcf34e3a added #withAllSubclassesDo:
Claus Gittinger <cg@exept.de>
parents: 5636
diff changeset
  1832
    "
308
f04744ef7b5d *** empty log message ***
claus
parents: 295
diff changeset
  1833
! !
f04744ef7b5d *** empty log message ***
claus
parents: 295
diff changeset
  1834
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1835
!Behavior methodsFor:'initialization'!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1836
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1837
deinitialize
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1838
    "deinitialize is sent to a class before it is physically unloaded.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1839
     This is only done with classes which have been loaded in from a binary
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1840
     file. Classes may release any primitive memory or other stuff which is
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1841
     not visible to smalltalk (for example, release internal memory).
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1842
     The default action here is to do nothing."
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1843
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1844
    ^ self
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1845
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1846
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1847
initialize
442
65a11cda5e9e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 421
diff changeset
  1848
    "initialize is sent to a class either during startup,
65a11cda5e9e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 421
diff changeset
  1849
     (for all statically compiled-in classes) or after a class
65a11cda5e9e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 421
diff changeset
  1850
     has been loaded into the system (either bytecodes or machinecode).
65a11cda5e9e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 421
diff changeset
  1851
     The default action here is to do nothing."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1852
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1853
    ^ self
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1854
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1855
3442
d22afbb5864f added #initializeWithAllPrivateClasses
Claus Gittinger <cg@exept.de>
parents: 3411
diff changeset
  1856
initializeWithAllPrivateClasses
d22afbb5864f added #initializeWithAllPrivateClasses
Claus Gittinger <cg@exept.de>
parents: 3411
diff changeset
  1857
    "if implemented, send #initialize to myself and any private
d22afbb5864f added #initializeWithAllPrivateClasses
Claus Gittinger <cg@exept.de>
parents: 3411
diff changeset
  1858
     class which does so.
d22afbb5864f added #initializeWithAllPrivateClasses
Claus Gittinger <cg@exept.de>
parents: 3411
diff changeset
  1859
     This is sent to a class after it
d22afbb5864f added #initializeWithAllPrivateClasses
Claus Gittinger <cg@exept.de>
parents: 3411
diff changeset
  1860
     has been loaded into the system.
d22afbb5864f added #initializeWithAllPrivateClasses
Claus Gittinger <cg@exept.de>
parents: 3411
diff changeset
  1861
     Statically compiled classes are initialized by the VM"
d22afbb5864f added #initializeWithAllPrivateClasses
Claus Gittinger <cg@exept.de>
parents: 3411
diff changeset
  1862
6412
4d6aaac56707 implements -> includesSelector
Claus Gittinger <cg@exept.de>
parents: 6395
diff changeset
  1863
    (self class includesSelector:#initialize) ifTrue:[
4d6aaac56707 implements -> includesSelector
Claus Gittinger <cg@exept.de>
parents: 6395
diff changeset
  1864
        self initialize.
3442
d22afbb5864f added #initializeWithAllPrivateClasses
Claus Gittinger <cg@exept.de>
parents: 3411
diff changeset
  1865
    ].
d22afbb5864f added #initializeWithAllPrivateClasses
Claus Gittinger <cg@exept.de>
parents: 3411
diff changeset
  1866
    self privateClassesSorted do:[:aPrivateClass |
6412
4d6aaac56707 implements -> includesSelector
Claus Gittinger <cg@exept.de>
parents: 6395
diff changeset
  1867
        aPrivateClass initializeWithAllPrivateClasses.
3442
d22afbb5864f added #initializeWithAllPrivateClasses
Claus Gittinger <cg@exept.de>
parents: 3411
diff changeset
  1868
    ].
d22afbb5864f added #initializeWithAllPrivateClasses
Claus Gittinger <cg@exept.de>
parents: 3411
diff changeset
  1869
d22afbb5864f added #initializeWithAllPrivateClasses
Claus Gittinger <cg@exept.de>
parents: 3411
diff changeset
  1870
    "Created: / 13.5.1998 / 23:33:16 / cg"
d22afbb5864f added #initializeWithAllPrivateClasses
Claus Gittinger <cg@exept.de>
parents: 3411
diff changeset
  1871
    "Modified: / 13.5.1998 / 23:34:06 / cg"
d22afbb5864f added #initializeWithAllPrivateClasses
Claus Gittinger <cg@exept.de>
parents: 3411
diff changeset
  1872
!
d22afbb5864f added #initializeWithAllPrivateClasses
Claus Gittinger <cg@exept.de>
parents: 3411
diff changeset
  1873
328
claus
parents: 325
diff changeset
  1874
postAutoload
442
65a11cda5e9e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 421
diff changeset
  1875
    "postAutoload is sent to a class after it has been autoloaded.
65a11cda5e9e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 421
diff changeset
  1876
     This gives it a chance to arrange for automatic unloading to be done
65a11cda5e9e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 421
diff changeset
  1877
     after a while ...
65a11cda5e9e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 421
diff changeset
  1878
     This is NOT sent to statically compiled in or explicitely filedIn
65a11cda5e9e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 421
diff changeset
  1879
     classes.
65a11cda5e9e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 421
diff changeset
  1880
     The default action here is to do nothing."
328
claus
parents: 325
diff changeset
  1881
claus
parents: 325
diff changeset
  1882
    ^ self
claus
parents: 325
diff changeset
  1883
!
claus
parents: 325
diff changeset
  1884
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1885
reinitialize
442
65a11cda5e9e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 421
diff changeset
  1886
    "reinitialize is sent to a class when an image has been restarted.
65a11cda5e9e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 421
diff changeset
  1887
     I.e. when the system is restarted.
65a11cda5e9e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 421
diff changeset
  1888
     This gives classes a chance to flush any device dependent or otherwise
65a11cda5e9e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 421
diff changeset
  1889
     obsolete data which may be a leftover from the previous live.
65a11cda5e9e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 421
diff changeset
  1890
     The default action here is to do nothing."
65a11cda5e9e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 421
diff changeset
  1891
65a11cda5e9e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 421
diff changeset
  1892
    ^ self
11
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
  1893
! !
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
  1894
492
fa23b14f444b renamed instance creation category
Claus Gittinger <cg@exept.de>
parents: 457
diff changeset
  1895
!Behavior methodsFor:'instance creation'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1896
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1897
basicNew
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 47
diff changeset
  1898
    "return an instance of myself without indexed variables.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1899
     If the receiver-class has indexed instvars, the new object will have
91
b3971c7dc731 *** empty log message ***
claus
parents: 88
diff changeset
  1900
     a basicSize of zero - 
b3971c7dc731 *** empty log message ***
claus
parents: 88
diff changeset
  1901
     i.e. 'aClass basicNew' is equivalent to 'aClass basicNew:0'.
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 47
diff changeset
  1902
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1903
     ** Do not redefine this method in any class **"
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1904
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1905
%{  /* NOCONTEXT */
81
e02c66a7296f *** empty log message ***
claus
parents: 77
diff changeset
  1906
    REGISTER OBJ newobj;
e02c66a7296f *** empty log message ***
claus
parents: 77
diff changeset
  1907
    REGISTER char *nextPtr;
91
b3971c7dc731 *** empty log message ***
claus
parents: 88
diff changeset
  1908
    unsigned int instsize;
b3971c7dc731 *** empty log message ***
claus
parents: 88
diff changeset
  1909
    REGISTER unsigned int nInstVars;
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1910
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 47
diff changeset
  1911
    /*
369
claus
parents: 362
diff changeset
  1912
     * the following ugly code is nothing more than a __new() followed
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 47
diff changeset
  1913
     * by a nilling of the new instance.
91
b3971c7dc731 *** empty log message ***
claus
parents: 88
diff changeset
  1914
     * Unrolled for a bit more speed since this is one of the central object 
b3971c7dc731 *** empty log message ***
claus
parents: 88
diff changeset
  1915
     * allocation methods in the system
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 47
diff changeset
  1916
     */
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1088
diff changeset
  1917
    nInstVars = __intVal(__INST(instSize));
92
0c73b48551ac *** empty log message ***
claus
parents: 91
diff changeset
  1918
    instsize = OHDR_SIZE + __OBJS2BYTES__(nInstVars);
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 47
diff changeset
  1919
983
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  1920
    newobj = (OBJ) __newNextPtr;
81
e02c66a7296f *** empty log message ***
claus
parents: 77
diff changeset
  1921
    nextPtr = ((char *)newobj) + instsize;
e02c66a7296f *** empty log message ***
claus
parents: 77
diff changeset
  1922
e02c66a7296f *** empty log message ***
claus
parents: 77
diff changeset
  1923
    /*
e02c66a7296f *** empty log message ***
claus
parents: 77
diff changeset
  1924
     * dont argue about the goto and the arrangement below - it saves 
e02c66a7296f *** empty log message ***
claus
parents: 77
diff changeset
  1925
     * an extra nil-compare and branch in the common case ...
91
b3971c7dc731 *** empty log message ***
claus
parents: 88
diff changeset
  1926
     * (i.e. if no GC is needed, we fall through without a branch)
81
e02c66a7296f *** empty log message ***
claus
parents: 77
diff changeset
  1927
     */
983
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  1928
    if (nextPtr < __newEndPtr) {
154
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1929
	_objPtr(newobj)->o_size = instsize;
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1930
	/* o_allFlags(newobj) = 0;              */
983
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  1931
	/* _objPtr(newobj)->o_space = __newSpace; */
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  1932
	o_setAllFlags(newobj, __newSpace);
2894
344aec8ba014 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2879
diff changeset
  1933
#ifdef __HAS_ALIGN4__
344aec8ba014 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2879
diff changeset
  1934
	/*
344aec8ba014 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2879
diff changeset
  1935
	 * if the alignment is 4, we are already sat,
344aec8ba014 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2879
diff changeset
  1936
	 * since a non-indexed object always has a word-aligned size.
344aec8ba014 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2879
diff changeset
  1937
	 */
983
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  1938
	__newNextPtr = nextPtr;
91
b3971c7dc731 *** empty log message ***
claus
parents: 88
diff changeset
  1939
#else
2894
344aec8ba014 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2879
diff changeset
  1940
	if (instsize & (__ALIGN__-1)) {
344aec8ba014 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2879
diff changeset
  1941
	    __newNextPtr = (char *)newobj + (instsize & ~(__ALIGN__-1)) + __ALIGN__;
154
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1942
	} else {
983
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  1943
	    __newNextPtr = nextPtr;
154
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1944
	}
91
b3971c7dc731 *** empty log message ***
claus
parents: 88
diff changeset
  1945
#endif
82
0147b4f725ae *** empty log message ***
claus
parents: 81
diff changeset
  1946
0147b4f725ae *** empty log message ***
claus
parents: 81
diff changeset
  1947
ok:
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1088
diff changeset
  1948
	__InstPtr(newobj)->o_class = self;
369
claus
parents: 362
diff changeset
  1949
	__qSTORE(newobj, self);
82
0147b4f725ae *** empty log message ***
claus
parents: 81
diff changeset
  1950
154
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1951
	if (nInstVars) {
788
e80f1c42b87b dont use memset4 if its undefined
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  1952
#if defined(memset4) && defined(FAST_OBJECT_MEMSET4) || defined(FAST_MEMSET4)
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1088
diff changeset
  1953
	    memset4(__InstPtr(newobj)->i_instvars, nil, nInstVars);
82
0147b4f725ae *** empty log message ***
claus
parents: 81
diff changeset
  1954
#else
154
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1955
	    REGISTER OBJ *op;
82
0147b4f725ae *** empty log message ***
claus
parents: 81
diff changeset
  1956
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1088
diff changeset
  1957
	    op = __InstPtr(newobj)->i_instvars;
82
0147b4f725ae *** empty log message ***
claus
parents: 81
diff changeset
  1958
154
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1959
	    /*
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1960
	     * knowing that nil is 0
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1961
	     */
3920
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  1962
# if defined(FAST_OBJECT_MEMSET_DOUBLES_UNROLLED)
154
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1963
	    if (nInstVars > 8) {
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1964
		*op++ = nil;    /* for alignment */
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1965
		nInstVars--;
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1966
		while (nInstVars >= 8) {
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1967
		    *(double *)op = 0.0;
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1968
		    ((double *)op)[1] = 0.0;
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1969
		    ((double *)op)[2] = 0.0;
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1970
		    ((double *)op)[3] = 0.0;
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1971
		    op += 8;
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1972
		    nInstVars -= 8;
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1973
		}
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1974
	    }
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1975
	    while (nInstVars != 0) {
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1976
		*op++ = 0;
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1977
		nInstVars--;
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1978
	    }
3920
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  1979
# else
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  1980
#  if defined(FAST_OBJECT_MEMSET_LONGLONG_UNROLLED)
154
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1981
	    if (nInstVars > 8) {
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1982
		*op++ = nil;    /* for alignment */
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1983
		nInstVars--;
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1984
		while (nInstVars >= 8) {
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1985
		    *(long long *)op = 0;
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1986
		    ((long long *)op)[1] = 0;
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1987
		    ((long long *)op)[2] = 0;
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1988
		    ((long long *)op)[3] = 0;
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1989
		    op += 8;
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1990
		    nInstVars -= 8;
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1991
		}
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1992
	    }
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1993
	    while (nInstVars != 0) {
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1994
		*op++ = 0;
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1995
		nInstVars--;
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1996
	    }
91
b3971c7dc731 *** empty log message ***
claus
parents: 88
diff changeset
  1997
3920
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  1998
#  else
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  1999
#   if defined(FAST_OBJECT_MEMSET_WORDS_UNROLLED)
154
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  2000
	    while (nInstVars >= 8) {
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  2001
		*op = nil;
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  2002
		*(op+1) = nil;
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  2003
		*(op+2) = nil;
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  2004
		*(op+3) = nil;
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  2005
		*(op+4) = nil;
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  2006
		*(op+5) = nil;
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  2007
		*(op+6) = nil;
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  2008
		*(op+7) = nil;
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  2009
		op += 8;
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  2010
		nInstVars -= 8;
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  2011
	    }
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  2012
	    while (nInstVars != 0) {
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  2013
		*op++ = nil;
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  2014
		nInstVars--;
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  2015
	    }
3920
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2016
#   else
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2017
#    if defined(FAST_MEMSET)
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2018
	    memset(__InstPtr(newobj)->i_instvars, 0, instsize-OHDR_SIZE);
91
b3971c7dc731 *** empty log message ***
claus
parents: 88
diff changeset
  2019
#    else
154
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  2020
	    do {
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  2021
		*op++ = nil;
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  2022
		nInstVars--;
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  2023
	    } while (nInstVars != 0);
82
0147b4f725ae *** empty log message ***
claus
parents: 81
diff changeset
  2024
#    endif
0147b4f725ae *** empty log message ***
claus
parents: 81
diff changeset
  2025
#   endif
0147b4f725ae *** empty log message ***
claus
parents: 81
diff changeset
  2026
#  endif
0147b4f725ae *** empty log message ***
claus
parents: 81
diff changeset
  2027
# endif
0147b4f725ae *** empty log message ***
claus
parents: 81
diff changeset
  2028
#endif
154
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  2029
	}
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  2030
	RETURN ( newobj );
81
e02c66a7296f *** empty log message ***
claus
parents: 77
diff changeset
  2031
    }
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 47
diff changeset
  2032
92
0c73b48551ac *** empty log message ***
claus
parents: 91
diff changeset
  2033
    /*
0c73b48551ac *** empty log message ***
claus
parents: 91
diff changeset
  2034
     * the slow case - a GC will occur
0c73b48551ac *** empty log message ***
claus
parents: 91
diff changeset
  2035
     */
834
c68ed1088b42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
  2036
    __PROTECT_CONTEXT__
3980
8f9443e37693 renamed __new() to __STX___new()
Claus Gittinger <cg@exept.de>
parents: 3935
diff changeset
  2037
    newobj = __STX___new(instsize);
834
c68ed1088b42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
  2038
    __UNPROTECT_CONTEXT__
82
0147b4f725ae *** empty log message ***
claus
parents: 81
diff changeset
  2039
    if (newobj != nil) goto ok;
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2040
%}
2
claus
parents: 1
diff changeset
  2041
.
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2042
    "
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2043
     memory allocation failed.
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2044
     When we arrive here, there was no memory, even after
165
63341654cfb8 *** empty log message ***
claus
parents: 154
diff changeset
  2045
     a garbage collect. 
63341654cfb8 *** empty log message ***
claus
parents: 154
diff changeset
  2046
     This means, that the VM wanted to get some more memory from the 
63341654cfb8 *** empty log message ***
claus
parents: 154
diff changeset
  2047
     Operatingsystem, which was not kind enough to give it.
63341654cfb8 *** empty log message ***
claus
parents: 154
diff changeset
  2048
     Bad luck - you should increase the swap space on your machine.
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2049
    "
127
6625c77d890f added sizeOfInst:
claus
parents: 92
diff changeset
  2050
    ^ ObjectMemory allocationFailureSignal raise.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2051
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2052
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2053
basicNew:anInteger
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2054
    "return an instance of myself with anInteger indexed variables.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2055
     If the receiver-class has no indexed instvars, this is only allowed
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2056
     if the argument, anInteger is zero.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2057
     ** Do not redefine this method in any class **"
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2058
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2059
%{  /* NOCONTEXT */
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2060
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2061
    OBJ newobj;
154
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  2062
    unsigned INT instsize, nInstVars;
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  2063
    INT nindexedinstvars;
92
0c73b48551ac *** empty log message ***
claus
parents: 91
diff changeset
  2064
    unsigned INT flags;
3920
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2065
#if ! defined(FAST_ARRAY_MEMSET)
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2066
    REGISTER char *cp;
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2067
    short *sp;
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2068
    long *lp;
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2069
#endif
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2070
    REGISTER OBJ *op;
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2071
    float *fp;
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2072
    double *dp;
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2073
249
claus
parents: 216
diff changeset
  2074
    if (__isSmallInteger(anInteger)) {
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2075
	nindexedinstvars = __intVal(anInteger);
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2076
	if (nindexedinstvars >= 0) {
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2077
	    nInstVars = __intVal(__INST(instSize));
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2078
	    flags = __intVal(__INST(flags)) & ARRAYMASK;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2079
	    switch (flags) {
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2080
		case BYTEARRAY:
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2081
		    instsize = OHDR_SIZE + nindexedinstvars;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2082
		    if (nInstVars == 0) {
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2083
			if (__CanDoQuickNew(instsize)) {        /* OBJECT ALLOCATION */
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2084
			    /*
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2085
			     * the most common case
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2086
			     */
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2087
			    __qCheckedNew(newobj, instsize);
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2088
			    __InstPtr(newobj)->o_class = self;
788
e80f1c42b87b dont use memset4 if its undefined
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  2089
#if defined(memset4) && defined(FAST_ARRAY_MEMSET4) || defined(FAST_MEMSET4)
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2090
			    nInstVars = nindexedinstvars >> 2;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2091
			    if (nindexedinstvars & 3) nInstVars++;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2092
			    memset4(__InstPtr(newobj)->i_instvars, 0, nInstVars);
357
claus
parents: 356
diff changeset
  2093
#else
3920
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2094
# if defined(FAST_ARRAY_MEMSET)
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2095
			    memset(__InstPtr(newobj)->i_instvars, 0, nindexedinstvars);
357
claus
parents: 356
diff changeset
  2096
# else
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2097
			    cp = (char *)__InstPtr(newobj)->i_instvars;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2098
			    while (nindexedinstvars >= sizeof(long)) {
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2099
				*(long *)cp = 0;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2100
				cp += sizeof(long);
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2101
				nindexedinstvars -= sizeof(long);
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2102
			    }
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2103
			    while (nindexedinstvars--)
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2104
				*cp++ = '\0';
357
claus
parents: 356
diff changeset
  2105
# endif
92
0c73b48551ac *** empty log message ***
claus
parents: 91
diff changeset
  2106
#endif
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2107
			    RETURN ( newobj );
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2108
			}
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2109
		    } else {
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2110
			instsize += __OBJS2BYTES__(nInstVars);
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2111
		    }
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2112
		    __PROTECT_CONTEXT__
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2113
		    __qNew(newobj, instsize);   /* OBJECT ALLOCATION */
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2114
		    __UNPROTECT_CONTEXT__
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2115
		    if (newobj == nil) {
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2116
			break;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2117
		    }
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2118
		    __InstPtr(newobj)->o_class = self;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2119
		    __qSTORE(newobj, self);
369
claus
parents: 362
diff changeset
  2120
788
e80f1c42b87b dont use memset4 if its undefined
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  2121
#if defined(memset4) && defined(FAST_ARRAY_MEMSET4) || defined(FAST_MEMSET4)
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2122
		    nInstVars = (instsize-OHDR_SIZE) >> 2;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2123
		    if (instsize & 3) nInstVars++;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2124
		    memset4(__InstPtr(newobj)->i_instvars, 0, nInstVars);
357
claus
parents: 356
diff changeset
  2125
#else
3920
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2126
# if defined(FAST_ARRAY_MEMSET)
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2127
		    /*
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2128
		     * knowing that nil is 0
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2129
		     */
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2130
		    memset(__InstPtr(newobj)->i_instvars, 0, instsize-OHDR_SIZE);
357
claus
parents: 356
diff changeset
  2131
# else
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2132
		    op = __InstPtr(newobj)->i_instvars;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2133
		    while (nInstVars--)
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2134
			*op++ = nil;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2135
		    cp = (char *)op;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2136
		    while (nindexedinstvars >= sizeof(long)) {
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2137
			*(long *)cp = 0;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2138
			cp += sizeof(long);
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2139
			nindexedinstvars -= sizeof(long);
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2140
		    }
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2141
		    while (nindexedinstvars--)
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2142
			*cp++ = '\0';
357
claus
parents: 356
diff changeset
  2143
# endif
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2144
#endif
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2145
		    RETURN ( newobj );
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2146
		    break;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2147
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2148
		case WORDARRAY:
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2149
		case SWORDARRAY:
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2150
		    instsize = OHDR_SIZE + 
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2151
			       __OBJS2BYTES__(nInstVars) + 
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2152
			       nindexedinstvars * 2;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2153
		    __PROTECT_CONTEXT__
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2154
		    __qNew(newobj, instsize);   /* OBJECT ALLOCATION */
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2155
		    __UNPROTECT_CONTEXT__
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2156
		    if (newobj == nil) {
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2157
			break;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2158
		    }
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2159
		    __InstPtr(newobj)->o_class = self;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2160
		    __qSTORE(newobj, self);
369
claus
parents: 362
diff changeset
  2161
3920
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2162
#if defined(FAST_ARRAY_MEMSET)
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2163
		    /*
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2164
		     * knowing that nil is 0
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2165
		     */
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2166
		    memset(__InstPtr(newobj)->i_instvars, 0, instsize - OHDR_SIZE);
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2167
#else
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2168
		    op = __InstPtr(newobj)->i_instvars;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2169
		    while (nInstVars--)
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2170
			*op++ = nil;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2171
		    sp = (short *)op;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2172
		    while (nindexedinstvars--)
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2173
			*sp++ = 0;
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2174
#endif
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2175
		    RETURN ( newobj );
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2176
		    break;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2177
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2178
	       case LONGARRAY:
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2179
	       case SLONGARRAY:
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2180
		    instsize = OHDR_SIZE + 
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2181
			       __OBJS2BYTES__(nInstVars) + 
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2182
			       nindexedinstvars * 4;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2183
		    __PROTECT_CONTEXT__
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2184
		    __qAlignedNew(newobj, instsize);    /* OBJECT ALLOCATION */
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2185
		    __UNPROTECT_CONTEXT__
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2186
		    if (newobj == nil) {
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2187
			break;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2188
		    }
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2189
		    __InstPtr(newobj)->o_class = self;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2190
		    __qSTORE(newobj, self);
369
claus
parents: 362
diff changeset
  2191
3920
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2192
#if defined(memset4)
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2193
		    /*
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2194
		     * knowing that nil is 0
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2195
		     */
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2196
		    {
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2197
			int n4 = nInstVars + nindexedinstvars;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2198
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2199
			memset4(__InstPtr(newobj)->i_instvars, 0, n4);
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2200
		    }
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2201
#else
3920
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2202
# if defined(FAST_ARRAY_MEMSET)
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2203
		    /*
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2204
		     * knowing that nil is 0
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2205
		     */
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2206
		    memset(__InstPtr(newobj)->i_instvars, 0, instsize - OHDR_SIZE);
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2207
# else
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2208
		    op = __InstPtr(newobj)->i_instvars;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2209
		    while (nInstVars--)
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2210
			*op++ = nil;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2211
		    lp = (long *)op;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2212
		    while (nindexedinstvars--)
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2213
			*lp++ = 0;
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2214
# endif
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2215
#endif
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2216
		    RETURN ( newobj );
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2217
		    break;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2218
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2219
	       case LONGLONGARRAY:
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2220
	       case SLONGLONGARRAY:
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2221
		    instsize = OHDR_SIZE + __OBJS2BYTES__(nInstVars);
3920
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2222
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2223
#ifdef __NEED_LONGLONG_ALIGN
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2224
		    instsize = ((instsize-1) + __LONGLONG_ALIGN) & ~(__LONGLONG_ALIGN-1);
3920
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2225
#endif
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2226
		    instsize += nindexedinstvars * 8;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2227
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2228
		    __PROTECT_CONTEXT__
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2229
		    __qAlignedNew(newobj, instsize);    /* OBJECT ALLOCATION */
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2230
		    __UNPROTECT_CONTEXT__
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2231
		    if (newobj == nil) {
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2232
			break;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2233
		    }
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2234
		    __InstPtr(newobj)->o_class = self;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2235
		    __qSTORE(newobj, self);
3920
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2236
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2237
#if defined(memset4)
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2238
		    {
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2239
			int n4 = (instsize-OHDR_SIZE) / 4;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2240
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2241
			memset4(__InstPtr(newobj)->i_instvars, 0, n4);
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2242
		    }
3920
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2243
#else
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2244
		    memset(__InstPtr(newobj)->i_instvars, 0, instsize - OHDR_SIZE);
3920
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2245
#endif
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2246
		    RETURN ( newobj );
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2247
		    break;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2248
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2249
	       case FLOATARRAY:
5321
c21a89ffdea4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5297
diff changeset
  2250
		    instsize = OHDR_SIZE + __OBJS2BYTES__(nInstVars);
c21a89ffdea4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5297
diff changeset
  2251
		    instsize += nindexedinstvars * sizeof(float);
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2252
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2253
		    __PROTECT_CONTEXT__
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2254
		    __qNew(newobj, instsize);   /* OBJECT ALLOCATION */
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2255
		    __UNPROTECT_CONTEXT__
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2256
		    if (newobj == nil) {
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2257
			break;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2258
		    }
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2259
		    __InstPtr(newobj)->o_class = self;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2260
		    __qSTORE(newobj, self);
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2261
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2262
		    op = __InstPtr(newobj)->i_instvars;
3920
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2263
#if defined(__FLOAT0_IS_INT0) /* knowin that float 0.0 is all-zeros */
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2264
# if defined(memset4)
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2265
		    {
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2266
			int n4 = (instsize-OHDR_SIZE) / 4;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2267
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2268
			memset4(__InstPtr(newobj)->i_instvars, 0, n4);
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2269
		    }
3920
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2270
# else
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2271
		    memset(__InstPtr(newobj)->i_instvars, 0, instsize - OHDR_SIZE);
3920
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2272
# endif
3870
ea7a0f0db4be use memset to initialize float- and doubleArrays, if float0/double0 is int0
Claus Gittinger <cg@exept.de>
parents: 3805
diff changeset
  2273
#else
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2274
		    while (nInstVars--)
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2275
			*op++ = nil;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2276
		    fp = (float *)op;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2277
		    while (nindexedinstvars--)
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2278
			*fp++ = 0.0;
3870
ea7a0f0db4be use memset to initialize float- and doubleArrays, if float0/double0 is int0
Claus Gittinger <cg@exept.de>
parents: 3805
diff changeset
  2279
#endif
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2280
		    RETURN ( newobj );
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2281
		    break;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2282
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2283
	       case DOUBLEARRAY:
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2284
		    instsize = OHDR_SIZE + __OBJS2BYTES__(nInstVars);
3920
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2285
#ifdef __NEED_DOUBLE_ALIGN
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2286
		    instsize = ((instsize-1) + __DOUBLE_ALIGN) & ~(__DOUBLE_ALIGN-1);
3920
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2287
#endif
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2288
		    instsize += nindexedinstvars * sizeof(double);
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2289
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2290
		    __PROTECT_CONTEXT__
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2291
		    __qAlignedNew(newobj, instsize);    /* OBJECT ALLOCATION */
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2292
		    __UNPROTECT_CONTEXT__
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2293
		    if (newobj == nil) {
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2294
			break;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2295
		    }
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2296
		    __InstPtr(newobj)->o_class = self;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2297
		    __qSTORE(newobj, self);
369
claus
parents: 362
diff changeset
  2298
3920
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2299
#if defined(__DOUBLE0_IS_INT0) /* knowin that double 0.0 is all-zeros */
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2300
# ifdef memset4
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2301
		    {
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2302
			int n4 = (instsize-OHDR_SIZE) / 4;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2303
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2304
			memset4(__InstPtr(newobj)->i_instvars, 0, n4);
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2305
		    }
3920
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2306
# else
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2307
		    memset(__InstPtr(newobj)->i_instvars, 0, instsize - OHDR_SIZE);
3920
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2308
# endif
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2309
#else
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2310
		    op = __InstPtr(newobj)->i_instvars;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2311
		    while (nInstVars--)
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2312
			*op++ = nil;
3920
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2313
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2314
# ifdef __NEED_DOUBLE_ALIGN
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2315
		    /*
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2316
		     * care for double alignment
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2317
		     * add filler.
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2318
		     */
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2319
		    if ((INT)op & (__DOUBLE_ALIGN-1)) {
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2320
			*op++ = nil;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2321
		    }
3870
ea7a0f0db4be use memset to initialize float- and doubleArrays, if float0/double0 is int0
Claus Gittinger <cg@exept.de>
parents: 3805
diff changeset
  2322
# endif
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2323
		    dp = (double *)op;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2324
		    while (nindexedinstvars--)
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2325
			*dp++ = 0.0;
3870
ea7a0f0db4be use memset to initialize float- and doubleArrays, if float0/double0 is int0
Claus Gittinger <cg@exept.de>
parents: 3805
diff changeset
  2326
#endif
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2327
		    RETURN ( newobj );
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2328
		    break;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2329
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2330
		case WKPOINTERARRAY:
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2331
		case POINTERARRAY:
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2332
		    nInstVars += nindexedinstvars;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2333
		    instsize = OHDR_SIZE + __OBJS2BYTES__(nInstVars);
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2334
		    __PROTECT_CONTEXT__
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2335
		    __qAlignedNew(newobj, instsize);    /* OBJECT ALLOCATION */
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2336
		    __UNPROTECT_CONTEXT__
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2337
		    if (newobj == nil) {
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2338
			break;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2339
		    }
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2340
		    __InstPtr(newobj)->o_class = self;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2341
		    __qSTORE(newobj, self);
369
claus
parents: 362
diff changeset
  2342
788
e80f1c42b87b dont use memset4 if its undefined
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  2343
#if defined(memset4) && defined(FAST_ARRAY_MEMSET4) || defined(FAST_MEMSET4)
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2344
		    memset4(__InstPtr(newobj)->i_instvars, nil, nInstVars);
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2345
#else
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2346
		    /*
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2347
		     * knowing that nil is 0
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2348
		     */
3920
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2349
# ifdef sparc
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2350
#  define FAST_ARRAY_MEMSET_DOUBLES_UNROLLED
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2351
# endif
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2352
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2353
# if defined(FAST_ARRAY_MEMSET_DOUBLES_UNROLLED)
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2354
		    op = __InstPtr(newobj)->i_instvars;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2355
		    if (nInstVars > 8) {
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2356
			*op++ = nil;    /* for alignment */
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2357
			nInstVars--;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2358
			while (nInstVars >= 8) {
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2359
			    *(double *)op = 0.0;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2360
			    ((double *)op)[1] = 0.0;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2361
			    ((double *)op)[2] = 0.0;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2362
			    ((double *)op)[3] = 0.0;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2363
			    op += 8;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2364
			    nInstVars -= 8;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2365
			}
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2366
		    }
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2367
		    while (nInstVars) {
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2368
			*op++ = 0;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2369
			nInstVars--;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2370
		    }
3920
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2371
# else
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2372
#  if defined(FAST_ARRAY_MEMSET_LONGLONG_UNROLLED)
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2373
		    op = __InstPtr(newobj)->i_instvars;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2374
		    if (nInstVars > 8) {
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2375
			*op++ = nil;    /* for alignment */
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2376
			nInstVars--;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2377
			while (nInstVars >= 8) {
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2378
			    *(long long *)op = 0;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2379
			    ((long long *)op)[1] = 0;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2380
			    ((long long *)op)[2] = 0;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2381
			    ((long long *)op)[3] = 0;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2382
			    op += 8;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2383
			    nInstVars -= 8;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2384
			}
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2385
		    }
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2386
		    while (nInstVars) {
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2387
			*op++ = 0;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2388
			nInstVars--;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2389
		    }
3920
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2390
#  else
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2391
#   if defined(FAST_ARRAY_MEMSET)
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2392
		    memset(__InstPtr(newobj)->i_instvars, 0, instsize - OHDR_SIZE);
91
b3971c7dc731 *** empty log message ***
claus
parents: 88
diff changeset
  2393
#   else
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2394
		    op = __InstPtr(newobj)->i_instvars;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2395
		    while (nInstVars--)
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2396
			*op++ = nil;
82
0147b4f725ae *** empty log message ***
claus
parents: 81
diff changeset
  2397
#   endif
0147b4f725ae *** empty log message ***
claus
parents: 81
diff changeset
  2398
#  endif
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2399
# endif
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2400
#endif
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2401
		    RETURN ( newobj );
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2402
		    break;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2403
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2404
		default:
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2405
		    /*
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2406
		     * new:n for non-variable classes only allowed if
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2407
		     * n == 0
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2408
		     */
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2409
		    if (nindexedinstvars == 0) {
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2410
			instsize = OHDR_SIZE + __OBJS2BYTES__(nInstVars);
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2411
			__PROTECT_CONTEXT__
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2412
			__qAlignedNew(newobj, instsize);        /* OBJECT ALLOCATION */
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2413
			__UNPROTECT_CONTEXT__
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2414
			if (newobj == nil) {
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2415
			    break;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2416
			}
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2417
			__InstPtr(newobj)->o_class = self;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2418
			__qSTORE(newobj, self);
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2419
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2420
			if (nInstVars) {
788
e80f1c42b87b dont use memset4 if its undefined
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  2421
#if defined(memset4) && defined(FAST_OBJECT_MEMSET4) || defined(FAST_MEMSET4)
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2422
			    memset4(__InstPtr(newobj)->i_instvars, nil, nInstVars);
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2423
#else
3920
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2424
# if defined(FAST_MEMSET)
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2425
			    /*
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2426
			     * knowing that nil is 0
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2427
			     */
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2428
			    memset(__InstPtr(newobj)->i_instvars, 0, instsize - OHDR_SIZE);
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2429
# else
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2430
			    op = __InstPtr(newobj)->i_instvars;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2431
			    do {
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2432
				*op++ = nil;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2433
			    } while (--nInstVars);
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2434
# endif
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2435
#endif
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2436
			}
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2437
			RETURN ( newobj );
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2438
		    }
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2439
		    break;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2440
	    }
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2441
	}
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2442
    }
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2443
%}.
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2444
    "
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2445
     arrive here if something went wrong ...
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2446
     figure out what it was
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2447
    "
11
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
  2448
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2449
    (anInteger isMemberOf:SmallInteger) ifFalse:[
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2450
	"
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2451
	 the argument is either not an integer,
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2452
	 or a LargeInteger (which means that its definitely too big)
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2453
	"
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2454
	self error:'argument to new: must be Integer' mayProceed:true.
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2455
	^ nil
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2456
    ].
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2457
    (anInteger < 0) ifTrue:[
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2458
	"
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2459
	 the argument is negative,
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2460
	"
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2461
	self error:'bad (negative) argument to new:'.
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2462
	^ nil
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2463
    ].
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2464
    self isVariable ifFalse:[
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2465
	"
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2466
	 this class does not have any indexed instance variables
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2467
	"
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2468
	self error:'class has no indexed instvars - cannot create with new:'.
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2469
	^ nil
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2470
    ].
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2471
    "
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2472
     memory allocation failed.
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2473
     When we arrive here, there was no memory, even after
165
63341654cfb8 *** empty log message ***
claus
parents: 154
diff changeset
  2474
     a garbage collect. 
63341654cfb8 *** empty log message ***
claus
parents: 154
diff changeset
  2475
     This means, that the VM wanted to get some more memory from the 
63341654cfb8 *** empty log message ***
claus
parents: 154
diff changeset
  2476
     Operatingsystem, which was not kind enough to give it.
63341654cfb8 *** empty log message ***
claus
parents: 154
diff changeset
  2477
     Bad luck - you should increase the swap space on your machine.
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2478
    "
127
6625c77d890f added sizeOfInst:
claus
parents: 92
diff changeset
  2479
    ^ ObjectMemory allocationFailureSignal raise.
11
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
  2480
!
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
  2481
2666
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
  2482
decodeFromLiteralArray:anArray
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
  2483
    "create & return a new instance from information encoded in anArray."
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
  2484
3237
5c3d09b9239d use #new instead of #basicNew when decoding from a literal array;
Claus Gittinger <cg@exept.de>
parents: 3141
diff changeset
  2485
    ^ self new fromLiteralArrayEncoding:anArray.
2370
694ebbc71f04 added #decodeFromLiteralArray: - ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 2236
diff changeset
  2486
694ebbc71f04 added #decodeFromLiteralArray: - ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 2236
diff changeset
  2487
    "
694ebbc71f04 added #decodeFromLiteralArray: - ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 2236
diff changeset
  2488
     Rectangle
3920
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2489
	decodeFromLiteralArray:#(Rectangle 10 10 100 100)
2370
694ebbc71f04 added #decodeFromLiteralArray: - ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 2236
diff changeset
  2490
    "
694ebbc71f04 added #decodeFromLiteralArray: - ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 2236
diff changeset
  2491
3237
5c3d09b9239d use #new instead of #basicNew when decoding from a literal array;
Claus Gittinger <cg@exept.de>
parents: 3141
diff changeset
  2492
    "Modified: / 28.1.1998 / 17:40:30 / cg"
2370
694ebbc71f04 added #decodeFromLiteralArray: - ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 2236
diff changeset
  2493
!
694ebbc71f04 added #decodeFromLiteralArray: - ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 2236
diff changeset
  2494
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2495
new
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2496
    "return an instance of myself without indexed variables"
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2497
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2498
    ^ self basicNew
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2499
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2500
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2501
new:anInteger
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2502
    "return an instance of myself with anInteger indexed variables"
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2503
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2504
    ^ self basicNew:anInteger
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2505
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2506
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2507
niceBasicNew:anInteger
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2508
    "same as basicNew:anInteger, but tries to avoid long pauses
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2509
     due to garbage collection. This method checks to see if
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2510
     allocation is possible without a pause, and does a background
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2511
     incremental garbage collect first if there is not enough memory
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2512
     available at the moment for fast allocation. 
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2513
     This is useful in low-priority background processes which like to 
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2514
     avoid disturbing any higher priority foreground process while allocating
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2515
     big amounts of memory. Of course, using this method only makes
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2516
     sense for big or huge objects (say > 200k).
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2517
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2518
     EXPERIMENTAL: this is a non-standard interface and should only 
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2519
     be used for special applications. There is no guarantee, that this
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2520
     method will be available in future ST/X releases."
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2521
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2522
    |size|
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2523
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2524
    size := self sizeOfInst:anInteger.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2525
    (ObjectMemory checkForFastNew:size) ifFalse:[
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2526
	"
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2527
	 incrementally collect garbage
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2528
	"
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2529
	ObjectMemory incrementalGC.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2530
    ].
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2531
    ^ self basicNew:anInteger
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2532
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2533
11
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
  2534
readFrom:aStream
43
00ca34676cbf *** empty log message ***
claus
parents: 25
diff changeset
  2535
    "read an objects printed representation from the argument, aStream 
00ca34676cbf *** empty log message ***
claus
parents: 25
diff changeset
  2536
     and return it. 
154
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  2537
     The read object must be a kind of myself if its not, an error is raised.
11
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
  2538
     This is the reverse operation to 'storeOn:'.
43
00ca34676cbf *** empty log message ***
claus
parents: 25
diff changeset
  2539
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2540
     WARNING: storeOn: does not handle circular references and multiple 
3920
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2541
	      references to the same object.
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2542
	      Use #storeBinary:/readBinaryFrom: for this."
3480
aa538a7438ba conversion error string
Claus Gittinger <cg@exept.de>
parents: 3442
diff changeset
  2543
aa538a7438ba conversion error string
Claus Gittinger <cg@exept.de>
parents: 3442
diff changeset
  2544
    ^ self readFrom:aStream onError:[self error:'conversion error for: ' , self name]
11
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
  2545
91
b3971c7dc731 *** empty log message ***
claus
parents: 88
diff changeset
  2546
    "
b3971c7dc731 *** empty log message ***
claus
parents: 88
diff changeset
  2547
     |s|
11
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
  2548
     s := WriteStream on:String new.
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
  2549
     #(1 2 3 4) storeOn:s.
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
  2550
     Object readFrom:(ReadStream on:s contents)  
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
  2551
    "
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
  2552
!
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
  2553
198
d0d0e3910c98 added readFrom:onError: / binaryReadFrom:onError:
claus
parents: 165
diff changeset
  2554
readFrom:aStream onError:exceptionBlock
d0d0e3910c98 added readFrom:onError: / binaryReadFrom:onError:
claus
parents: 165
diff changeset
  2555
    "read an objects printed representation from the argument, aStream 
d0d0e3910c98 added readFrom:onError: / binaryReadFrom:onError:
claus
parents: 165
diff changeset
  2556
     and return it (i.e. the stream should contain some representation of
d0d0e3910c98 added readFrom:onError: / binaryReadFrom:onError:
claus
parents: 165
diff changeset
  2557
     the object which was created using #storeOn:). 
d0d0e3910c98 added readFrom:onError: / binaryReadFrom:onError:
claus
parents: 165
diff changeset
  2558
     The read object must be a kind of myself if its not, the value of
d0d0e3910c98 added readFrom:onError: / binaryReadFrom:onError:
claus
parents: 165
diff changeset
  2559
     exceptionBlock is returned.
d0d0e3910c98 added readFrom:onError: / binaryReadFrom:onError:
claus
parents: 165
diff changeset
  2560
     To get any object, use 'Object readFrom:...',
d0d0e3910c98 added readFrom:onError: / binaryReadFrom:onError:
claus
parents: 165
diff changeset
  2561
     To get any number, use 'Number readFrom:...' and so on.
d0d0e3910c98 added readFrom:onError: / binaryReadFrom:onError:
claus
parents: 165
diff changeset
  2562
     This is the reverse operation to 'storeOn:'.
d0d0e3910c98 added readFrom:onError: / binaryReadFrom:onError:
claus
parents: 165
diff changeset
  2563
d0d0e3910c98 added readFrom:onError: / binaryReadFrom:onError:
claus
parents: 165
diff changeset
  2564
     WARNING: storeOn: does not handle circular references and multiple 
5842
720736f72cb4 exceptionBlock handling in #readFrom:onError:
Stefan Vogel <sv@exept.de>
parents: 5753
diff changeset
  2565
              references to the same object.
720736f72cb4 exceptionBlock handling in #readFrom:onError:
Stefan Vogel <sv@exept.de>
parents: 5753
diff changeset
  2566
              Use #storeBinary:/readBinaryFrom: for this."
198
d0d0e3910c98 added readFrom:onError: / binaryReadFrom:onError:
claus
parents: 165
diff changeset
  2567
6627
685ab6f994f0 Avoid block creation in #readFrom:onError:
Stefan Vogel <sv@exept.de>
parents: 6596
diff changeset
  2568
    ^ [
685ab6f994f0 Avoid block creation in #readFrom:onError:
Stefan Vogel <sv@exept.de>
parents: 6596
diff changeset
  2569
        |newObject|
5842
720736f72cb4 exceptionBlock handling in #readFrom:onError:
Stefan Vogel <sv@exept.de>
parents: 5753
diff changeset
  2570
        newObject := self evaluatorClass evaluate:aStream ifFail:exceptionBlock.
6627
685ab6f994f0 Avoid block creation in #readFrom:onError:
Stefan Vogel <sv@exept.de>
parents: 6596
diff changeset
  2571
        (newObject isKindOf:self) ifTrue:[newObject] ifFalse:[exceptionBlock value].
685ab6f994f0 Avoid block creation in #readFrom:onError:
Stefan Vogel <sv@exept.de>
parents: 6596
diff changeset
  2572
    ] on:Error do:exceptionBlock.
198
d0d0e3910c98 added readFrom:onError: / binaryReadFrom:onError:
claus
parents: 165
diff changeset
  2573
d0d0e3910c98 added readFrom:onError: / binaryReadFrom:onError:
claus
parents: 165
diff changeset
  2574
    "
d0d0e3910c98 added readFrom:onError: / binaryReadFrom:onError:
claus
parents: 165
diff changeset
  2575
     |s|
d0d0e3910c98 added readFrom:onError: / binaryReadFrom:onError:
claus
parents: 165
diff changeset
  2576
     s := WriteStream on:String new.
d0d0e3910c98 added readFrom:onError: / binaryReadFrom:onError:
claus
parents: 165
diff changeset
  2577
     #(1 2 3 4) storeOn:s.
1422
9a0b792f2953 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1383
diff changeset
  2578
     Transcript showCR:(
5842
720736f72cb4 exceptionBlock handling in #readFrom:onError:
Stefan Vogel <sv@exept.de>
parents: 5753
diff changeset
  2579
        Array readFrom:(ReadStream on:s contents) onError:'not an Array'
293
31df3850e98c *** empty log message ***
claus
parents: 283
diff changeset
  2580
     )
198
d0d0e3910c98 added readFrom:onError: / binaryReadFrom:onError:
claus
parents: 165
diff changeset
  2581
    "
d0d0e3910c98 added readFrom:onError: / binaryReadFrom:onError:
claus
parents: 165
diff changeset
  2582
    "
d0d0e3910c98 added readFrom:onError: / binaryReadFrom:onError:
claus
parents: 165
diff changeset
  2583
     |s|
d0d0e3910c98 added readFrom:onError: / binaryReadFrom:onError:
claus
parents: 165
diff changeset
  2584
     s := WriteStream on:String new.
d0d0e3910c98 added readFrom:onError: / binaryReadFrom:onError:
claus
parents: 165
diff changeset
  2585
     #[1 2 3 4] storeOn:s.
1422
9a0b792f2953 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1383
diff changeset
  2586
     Transcript showCR:(
5842
720736f72cb4 exceptionBlock handling in #readFrom:onError:
Stefan Vogel <sv@exept.de>
parents: 5753
diff changeset
  2587
         Array readFrom:(ReadStream on:s contents) onError:'not an Array'
345
claus
parents: 343
diff changeset
  2588
     )
198
d0d0e3910c98 added readFrom:onError: / binaryReadFrom:onError:
claus
parents: 165
diff changeset
  2589
    "
5842
720736f72cb4 exceptionBlock handling in #readFrom:onError:
Stefan Vogel <sv@exept.de>
parents: 5753
diff changeset
  2590
    "
6627
685ab6f994f0 Avoid block creation in #readFrom:onError:
Stefan Vogel <sv@exept.de>
parents: 6596
diff changeset
  2591
     Object readFrom:'illegal' onError:['bla']
685ab6f994f0 Avoid block creation in #readFrom:onError:
Stefan Vogel <sv@exept.de>
parents: 6596
diff changeset
  2592
     String readFrom:'illegal' onError:'bla'
5842
720736f72cb4 exceptionBlock handling in #readFrom:onError:
Stefan Vogel <sv@exept.de>
parents: 5753
diff changeset
  2593
    "
198
d0d0e3910c98 added readFrom:onError: / binaryReadFrom:onError:
claus
parents: 165
diff changeset
  2594
!
d0d0e3910c98 added readFrom:onError: / binaryReadFrom:onError:
claus
parents: 165
diff changeset
  2595
11
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
  2596
readFromString:aString
275
a76029ddaa98 *** empty log message ***
claus
parents: 249
diff changeset
  2597
    "create an object from its printed representation.
a76029ddaa98 *** empty log message ***
claus
parents: 249
diff changeset
  2598
     For most classes, the string is expected to be in a format created by
a76029ddaa98 *** empty log message ***
claus
parents: 249
diff changeset
  2599
     storeOn: or storeString; however, some (Time, Date) expect a user
a76029ddaa98 *** empty log message ***
claus
parents: 249
diff changeset
  2600
     readable string here.
a76029ddaa98 *** empty log message ***
claus
parents: 249
diff changeset
  2601
     See comments in Behavior>>readFromString:onError:,
a76029ddaa98 *** empty log message ***
claus
parents: 249
diff changeset
  2602
     Behavior>>readFrom: and Behavior>>readFrom:onError:"
11
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
  2603
345
claus
parents: 343
diff changeset
  2604
    ^ self readFromString:aString onError:[self error:'expected: ' , self name]
91
b3971c7dc731 *** empty log message ***
claus
parents: 88
diff changeset
  2605
b3971c7dc731 *** empty log message ***
claus
parents: 88
diff changeset
  2606
    "
b3971c7dc731 *** empty log message ***
claus
parents: 88
diff changeset
  2607
     Integer readFromString:'12345678901234567890' 
b3971c7dc731 *** empty log message ***
claus
parents: 88
diff changeset
  2608
     Point readFromString:'1@2'  
345
claus
parents: 343
diff changeset
  2609
     Point readFromString:'1'  
91
b3971c7dc731 *** empty log message ***
claus
parents: 88
diff changeset
  2610
    "
198
d0d0e3910c98 added readFrom:onError: / binaryReadFrom:onError:
claus
parents: 165
diff changeset
  2611
!
d0d0e3910c98 added readFrom:onError: / binaryReadFrom:onError:
claus
parents: 165
diff changeset
  2612
d0d0e3910c98 added readFrom:onError: / binaryReadFrom:onError:
claus
parents: 165
diff changeset
  2613
readFromString:aString onError:exceptionBlock
275
a76029ddaa98 *** empty log message ***
claus
parents: 249
diff changeset
  2614
    "create an object from its printed representation.
a76029ddaa98 *** empty log message ***
claus
parents: 249
diff changeset
  2615
     Here, the string is expected to be in a format created by
a76029ddaa98 *** empty log message ***
claus
parents: 249
diff changeset
  2616
     storeOn: or storeString; however, some classes (Time, Date) may redefine
a76029ddaa98 *** empty log message ***
claus
parents: 249
diff changeset
  2617
     it to expect a user readable string here.
198
d0d0e3910c98 added readFrom:onError: / binaryReadFrom:onError:
claus
parents: 165
diff changeset
  2618
     See comments in Behavior>>readFrom: and Behavior>>readFrom:onError:"
d0d0e3910c98 added readFrom:onError: / binaryReadFrom:onError:
claus
parents: 165
diff changeset
  2619
d0d0e3910c98 added readFrom:onError: / binaryReadFrom:onError:
claus
parents: 165
diff changeset
  2620
    ^ self readFrom:(ReadStream on:aString) onError:exceptionBlock
d0d0e3910c98 added readFrom:onError: / binaryReadFrom:onError:
claus
parents: 165
diff changeset
  2621
d0d0e3910c98 added readFrom:onError: / binaryReadFrom:onError:
claus
parents: 165
diff changeset
  2622
    "
d0d0e3910c98 added readFrom:onError: / binaryReadFrom:onError:
claus
parents: 165
diff changeset
  2623
     Integer readFromString:'12345678901234567890' 
275
a76029ddaa98 *** empty log message ***
claus
parents: 249
diff changeset
  2624
     Integer readFromString:'abc' 
a76029ddaa98 *** empty log message ***
claus
parents: 249
diff changeset
  2625
     Integer readFromString:'abc' onError:0
198
d0d0e3910c98 added readFrom:onError: / binaryReadFrom:onError:
claus
parents: 165
diff changeset
  2626
     Point readFromString:'1@2'  
345
claus
parents: 343
diff changeset
  2627
     Point readFromString:'0'   
275
a76029ddaa98 *** empty log message ***
claus
parents: 249
diff changeset
  2628
     Point readFromString:'0' onError:[0@0]  
198
d0d0e3910c98 added readFrom:onError: / binaryReadFrom:onError:
claus
parents: 165
diff changeset
  2629
    "
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2630
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2631
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2632
uninitializedNew
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2633
    "create an instance of myself with uninitialized contents.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2634
     For all classes except ByteArray, this is the same as #basicNew."
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2635
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2636
    ^ self basicNew
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2637
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2638
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2639
uninitializedNew:anInteger
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2640
    "create an instance of myself with uninitialized contents.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2641
     For all classes except ByteArray, this is the same as #basicNew:."
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2642
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2643
    ^ self basicNew:anInteger
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2644
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2645
3619
85b70481bc54 added #sourceCodeTemplate
Claus Gittinger <cg@exept.de>
parents: 3480
diff changeset
  2646
!Behavior methodsFor:'misc'!
85b70481bc54 added #sourceCodeTemplate
Claus Gittinger <cg@exept.de>
parents: 3480
diff changeset
  2647
4928
1c8c123fb3d3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4889
diff changeset
  2648
browse
5727
b97b7c5c7ab9 comments added
Claus Gittinger <cg@exept.de>
parents: 5709
diff changeset
  2649
    "open a browser showing the receiver"
b97b7c5c7ab9 comments added
Claus Gittinger <cg@exept.de>
parents: 5709
diff changeset
  2650
5517
81558c304485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5513
diff changeset
  2651
    self browserClass openInClass:self 
4928
1c8c123fb3d3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4889
diff changeset
  2652
1c8c123fb3d3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4889
diff changeset
  2653
    "
5546
934ca7bfecc6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5517
diff changeset
  2654
     Array browserClass
4928
1c8c123fb3d3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4889
diff changeset
  2655
     Array browse
1c8c123fb3d3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4889
diff changeset
  2656
    "
1c8c123fb3d3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4889
diff changeset
  2657
!
1c8c123fb3d3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4889
diff changeset
  2658
3619
85b70481bc54 added #sourceCodeTemplate
Claus Gittinger <cg@exept.de>
parents: 3480
diff changeset
  2659
sourceCodeTemplate
85b70481bc54 added #sourceCodeTemplate
Claus Gittinger <cg@exept.de>
parents: 3480
diff changeset
  2660
    ^ 'messageSelector and arguments
85b70481bc54 added #sourceCodeTemplate
Claus Gittinger <cg@exept.de>
parents: 3480
diff changeset
  2661
    "method comment - purpose of message"
85b70481bc54 added #sourceCodeTemplate
Claus Gittinger <cg@exept.de>
parents: 3480
diff changeset
  2662
85b70481bc54 added #sourceCodeTemplate
Claus Gittinger <cg@exept.de>
parents: 3480
diff changeset
  2663
    |temporaries|
85b70481bc54 added #sourceCodeTemplate
Claus Gittinger <cg@exept.de>
parents: 3480
diff changeset
  2664
85b70481bc54 added #sourceCodeTemplate
Claus Gittinger <cg@exept.de>
parents: 3480
diff changeset
  2665
    statements
85b70481bc54 added #sourceCodeTemplate
Claus Gittinger <cg@exept.de>
parents: 3480
diff changeset
  2666
85b70481bc54 added #sourceCodeTemplate
Claus Gittinger <cg@exept.de>
parents: 3480
diff changeset
  2667
    "
85b70481bc54 added #sourceCodeTemplate
Claus Gittinger <cg@exept.de>
parents: 3480
diff changeset
  2668
     example uses
85b70481bc54 added #sourceCodeTemplate
Claus Gittinger <cg@exept.de>
parents: 3480
diff changeset
  2669
    "
85b70481bc54 added #sourceCodeTemplate
Claus Gittinger <cg@exept.de>
parents: 3480
diff changeset
  2670
'
85b70481bc54 added #sourceCodeTemplate
Claus Gittinger <cg@exept.de>
parents: 3480
diff changeset
  2671
85b70481bc54 added #sourceCodeTemplate
Claus Gittinger <cg@exept.de>
parents: 3480
diff changeset
  2672
    "Created: / 19.6.1998 / 02:14:02 / cg"
85b70481bc54 added #sourceCodeTemplate
Claus Gittinger <cg@exept.de>
parents: 3480
diff changeset
  2673
! !
85b70481bc54 added #sourceCodeTemplate
Claus Gittinger <cg@exept.de>
parents: 3480
diff changeset
  2674
6590
53ad98dc93ef *** empty log message ***
penk
parents: 6589
diff changeset
  2675
!Behavior methodsFor:'printing & storing'!
53ad98dc93ef *** empty log message ***
penk
parents: 6589
diff changeset
  2676
53ad98dc93ef *** empty log message ***
penk
parents: 6589
diff changeset
  2677
printOn:aStream
53ad98dc93ef *** empty log message ***
penk
parents: 6589
diff changeset
  2678
    aStream nextPutAll:(self name).
53ad98dc93ef *** empty log message ***
penk
parents: 6589
diff changeset
  2679
! !
6589
cf52ed7e5601 *** empty log message ***
penk
parents: 6477
diff changeset
  2680
7260
edfa8d6a6046 method category rename
Claus Gittinger <cg@exept.de>
parents: 7224
diff changeset
  2681
!Behavior methodsFor:'private-accessing'!
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2682
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2683
flags:aNumber
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2684
    "set the flags.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2685
     this method is for special uses only - there will be no recompilation
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2686
     and no change record written here; 
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2687
     Do NOT use it."
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2688
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2689
    flags := aNumber
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2690
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2691
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2692
instSize:aNumber
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2693
    "set the instance size.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2694
     this method is for special uses only - there will be no recompilation
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2695
     and no change record written here; 
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2696
     Do NOT use it."
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2697
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2698
    instSize := aNumber
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2699
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2700
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2701
primAddSelector:newSelector withMethod:newMethod
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2702
    "add the method given by 2nd argument under the selector given by
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2703
     the 1st argument to the methodDictionary. 
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2704
     Does NOT flush any caches, does NOT write a change record.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2705
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2706
     Do not use this in normal situations, strange behavior will be
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2707
     the consequence.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2708
     I.e. executing obsolete methods, since the old method will still 
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2709
     be executed out of the caches."
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2710
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  2711
    |dict|
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2712
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2713
    (newSelector isMemberOf:Symbol) ifFalse:[
7123
2af84f5b1447 pre-set the methods mclass cache when adding a method
Claus Gittinger <cg@exept.de>
parents: 6968
diff changeset
  2714
        self error:'invalid selector'. 
2af84f5b1447 pre-set the methods mclass cache when adding a method
Claus Gittinger <cg@exept.de>
parents: 6968
diff changeset
  2715
        ^ false
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2716
    ].
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2717
    newMethod isNil ifTrue:[
7123
2af84f5b1447 pre-set the methods mclass cache when adding a method
Claus Gittinger <cg@exept.de>
parents: 6968
diff changeset
  2718
        self error:'invalid method'. 
2af84f5b1447 pre-set the methods mclass cache when adding a method
Claus Gittinger <cg@exept.de>
parents: 6968
diff changeset
  2719
        ^ false
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2720
    ].
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2721
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  2722
    dict := self methodDictionary.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  2723
    self setMethodDictionary:(dict at:newSelector putOrAppend:newMethod).
7123
2af84f5b1447 pre-set the methods mclass cache when adding a method
Claus Gittinger <cg@exept.de>
parents: 6968
diff changeset
  2724
    newMethod mclass:self.
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  2725
    ^ true.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  2726
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  2727
    "Modified: 7.6.1996 / 14:48:45 / stefan"
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2728
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2729
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  2730
setMethodDictionary:dict
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  2731
    "set the receivers method dictionary.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  2732
     Convert dict to a MethodDictionary if necessary.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  2733
     Do not flush inline caches, therefore old cached methods may be executed
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  2734
     after this call"
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  2735
2228
ddcc662bd9b1 commentary
Claus Gittinger <cg@exept.de>
parents: 2226
diff changeset
  2736
    "/ since the only thing the VM is prepared to deal with are
ddcc662bd9b1 commentary
Claus Gittinger <cg@exept.de>
parents: 2226
diff changeset
  2737
    "/ proper methodDictionaries (it cannot do another message send, to
ddcc662bd9b1 commentary
Claus Gittinger <cg@exept.de>
parents: 2226
diff changeset
  2738
    "/ find any methods ...), we convert it here if required.
ddcc662bd9b1 commentary
Claus Gittinger <cg@exept.de>
parents: 2226
diff changeset
  2739
    "/ No other classes instances are allowed.
ddcc662bd9b1 commentary
Claus Gittinger <cg@exept.de>
parents: 2226
diff changeset
  2740
1494
dab70fc90ebc Remove old methodArray and selectorArray stuff (use MethodDictionary only).
Stefan Vogel <sv@exept.de>
parents: 1461
diff changeset
  2741
    dict class ~~ MethodDictionary ifTrue:[
5484
7dbf2507f262 halt vs. error
Claus Gittinger <cg@exept.de>
parents: 5428
diff changeset
  2742
        methodDictionary := MethodDictionary withAll:dict.
7dbf2507f262 halt vs. error
Claus Gittinger <cg@exept.de>
parents: 5428
diff changeset
  2743
        methodDictionary isNil ifTrue:[
7dbf2507f262 halt vs. error
Claus Gittinger <cg@exept.de>
parents: 5428
diff changeset
  2744
7dbf2507f262 halt vs. error
Claus Gittinger <cg@exept.de>
parents: 5428
diff changeset
  2745
            "/ refuse to do this 
7dbf2507f262 halt vs. error
Claus Gittinger <cg@exept.de>
parents: 5428
diff changeset
  2746
            "/ (can only happen in case of memory allocation trouble,
7dbf2507f262 halt vs. error
Claus Gittinger <cg@exept.de>
parents: 5428
diff changeset
  2747
            "/  where the allocation failed and some exception handler returned
7dbf2507f262 halt vs. error
Claus Gittinger <cg@exept.de>
parents: 5428
diff changeset
  2748
            "/  nil ...)
2228
ddcc662bd9b1 commentary
Claus Gittinger <cg@exept.de>
parents: 2226
diff changeset
  2749
        
5484
7dbf2507f262 halt vs. error
Claus Gittinger <cg@exept.de>
parents: 5428
diff changeset
  2750
            self error:'cannot set methodDictionary to nil' mayProceed:true.
7dbf2507f262 halt vs. error
Claus Gittinger <cg@exept.de>
parents: 5428
diff changeset
  2751
            ^ self.
7dbf2507f262 halt vs. error
Claus Gittinger <cg@exept.de>
parents: 5428
diff changeset
  2752
        ]
1494
dab70fc90ebc Remove old methodArray and selectorArray stuff (use MethodDictionary only).
Stefan Vogel <sv@exept.de>
parents: 1461
diff changeset
  2753
    ] ifFalse:[
5484
7dbf2507f262 halt vs. error
Claus Gittinger <cg@exept.de>
parents: 5428
diff changeset
  2754
        methodDictionary := dict.
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2755
    ].
1494
dab70fc90ebc Remove old methodArray and selectorArray stuff (use MethodDictionary only).
Stefan Vogel <sv@exept.de>
parents: 1461
diff changeset
  2756
    ^ self.
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  2757
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  2758
    "Created: 5.6.1996 / 11:29:36 / stefan"
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  2759
    "Modified: 12.6.1996 / 13:58:55 / stefan"
2228
ddcc662bd9b1 commentary
Claus Gittinger <cg@exept.de>
parents: 2226
diff changeset
  2760
    "Modified: 22.1.1997 / 21:10:48 / cg"
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2761
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2762
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2763
setSuperclass:aClass
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2764
    "set the superclass of the receiver.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2765
     this method is for special uses only - there will be no recompilation
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2766
     and no change record written here. Also, if the receiver class has
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2767
     already been in use, future operation of the system is not guaranteed to
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2768
     be correct, since no caches are flushed.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2769
     Therefore: do NOT use it; use Behavior>>superclass: (or flush the caches, at least)"
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2770
2438
52ca8e0904a7 try to preserve subclassInfo in #setSuperClass.
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  2771
    |info|
52ca8e0904a7 try to preserve subclassInfo in #setSuperClass.
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  2772
52ca8e0904a7 try to preserve subclassInfo in #setSuperClass.
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  2773
    SubclassInfo notNil ifTrue:[
2666
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
  2774
	"/ flush/update the subclass information
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
  2775
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
  2776
	"/ if my class is already contained
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
  2777
	(info := SubclassInfo at:aClass ifAbsent:nil) notNil ifTrue:[
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
  2778
	    info add:self
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
  2779
	] ifFalse:[
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
  2780
	    SubclassInfo := nil.  "/ flush it
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
  2781
	]
2438
52ca8e0904a7 try to preserve subclassInfo in #setSuperClass.
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  2782
    ].
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2783
    superclass := aClass
2224
7e49310cb7af commentary
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
  2784
2438
52ca8e0904a7 try to preserve subclassInfo in #setSuperClass.
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  2785
    "Modified: 3.3.1997 / 13:27:00 / cg"
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2786
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2787
5906
4fdd3f36bfff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5862
diff changeset
  2788
setSuperclass:aClass instSize:i 
4fdd3f36bfff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5862
diff changeset
  2789
    "set some inst vars. 
4fdd3f36bfff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5862
diff changeset
  2790
     this method is for special uses only - there will be no recompilation
4fdd3f36bfff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5862
diff changeset
  2791
     and no change record is written here. Also, if the receiver class has 
4fdd3f36bfff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5862
diff changeset
  2792
     already been in use, future operation of the system is not guaranteed to
4fdd3f36bfff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5862
diff changeset
  2793
     be correct, since no caches are flushed.
4fdd3f36bfff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5862
diff changeset
  2794
     Therefore: do NOT use it; use Behavior>>superclass: (or flush the caches, at least)"
4fdd3f36bfff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5862
diff changeset
  2795
4fdd3f36bfff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5862
diff changeset
  2796
    self setSuperclass:aClass.
4fdd3f36bfff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5862
diff changeset
  2797
    instSize := i.
4fdd3f36bfff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5862
diff changeset
  2798
!
4fdd3f36bfff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5862
diff changeset
  2799
2224
7e49310cb7af commentary
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
  2800
setSuperclass:aClass methodDictionary:d instSize:i flags:f
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2801
    "set some inst vars. 
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2802
     this method is for special uses only - there will be no recompilation
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2803
     and no change record is written here. Also, if the receiver class has 
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2804
     already been in use, future operation of the system is not guaranteed to
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2805
     be correct, since no caches are flushed.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2806
     Therefore: do NOT use it; use Behavior>>superclass: (or flush the caches, at least)"
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2807
2224
7e49310cb7af commentary
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
  2808
    self setSuperclass:aClass.
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  2809
    self setMethodDictionary:d.
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2810
    instSize := i.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2811
    flags := f
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  2812
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  2813
    "Created: 7.6.1996 / 08:41:20 / stefan"
2224
7e49310cb7af commentary
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
  2814
    "Modified: 22.1.1997 / 18:42:12 / cg"
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2815
! !
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2816
7260
edfa8d6a6046 method category rename
Claus Gittinger <cg@exept.de>
parents: 7224
diff changeset
  2817
!Behavior methodsFor:'private-helpers'!
1192
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  2818
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  2819
addAllClassVarNamesTo:aCollection
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  2820
    "helper - add the name-strings of the class variables and of the class-vars
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  2821
     of all superclasses to the argument, aCollection. Return aCollection"
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  2822
6395
2ad7a8e870ab instance variables should only be accessed by getters/setters
Claus Gittinger <cg@exept.de>
parents: 6329
diff changeset
  2823
    |classvars superclass|
2ad7a8e870ab instance variables should only be accessed by getters/setters
Claus Gittinger <cg@exept.de>
parents: 6329
diff changeset
  2824
2ad7a8e870ab instance variables should only be accessed by getters/setters
Claus Gittinger <cg@exept.de>
parents: 6329
diff changeset
  2825
    superclass := self superclass.
1192
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  2826
    (superclass notNil) ifTrue:[
6395
2ad7a8e870ab instance variables should only be accessed by getters/setters
Claus Gittinger <cg@exept.de>
parents: 6329
diff changeset
  2827
        superclass addAllClassVarNamesTo:aCollection
1192
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  2828
    ].
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  2829
    (classvars := self classVariableString) notNil ifTrue:[
6395
2ad7a8e870ab instance variables should only be accessed by getters/setters
Claus Gittinger <cg@exept.de>
parents: 6329
diff changeset
  2830
        aCollection addAll:(classvars asCollectionOfWords).
1192
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  2831
    ].
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  2832
    ^ aCollection
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  2833
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  2834
    "Created: 16.4.1996 / 18:00:38 / cg"
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  2835
!
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  2836
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  2837
addAllInstVarNamesTo:aCollection
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  2838
    "helper for allInstVarNames - add the name-strings of the instance variables
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  2839
     and of the inst-vars of all superclasses to the argument, aCollection. 
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  2840
     Return aCollection."
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  2841
6395
2ad7a8e870ab instance variables should only be accessed by getters/setters
Claus Gittinger <cg@exept.de>
parents: 6329
diff changeset
  2842
    |superclass|
2ad7a8e870ab instance variables should only be accessed by getters/setters
Claus Gittinger <cg@exept.de>
parents: 6329
diff changeset
  2843
2ad7a8e870ab instance variables should only be accessed by getters/setters
Claus Gittinger <cg@exept.de>
parents: 6329
diff changeset
  2844
    superclass := self superclass.
1192
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  2845
    (superclass notNil) ifTrue:[
5512
45dc420fd76f tuned #allInstVarNames
Claus Gittinger <cg@exept.de>
parents: 5484
diff changeset
  2846
        superclass addAllInstVarNamesTo:aCollection
1192
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  2847
    ].
5512
45dc420fd76f tuned #allInstVarNames
Claus Gittinger <cg@exept.de>
parents: 5484
diff changeset
  2848
    aCollection addAll:self instVarNames.
1192
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  2849
    ^ aCollection
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  2850
5512
45dc420fd76f tuned #allInstVarNames
Claus Gittinger <cg@exept.de>
parents: 5484
diff changeset
  2851
    "
45dc420fd76f tuned #allInstVarNames
Claus Gittinger <cg@exept.de>
parents: 5484
diff changeset
  2852
     SortedCollection allInstVarNames
45dc420fd76f tuned #allInstVarNames
Claus Gittinger <cg@exept.de>
parents: 5484
diff changeset
  2853
     SortedCollection instVarNames
45dc420fd76f tuned #allInstVarNames
Claus Gittinger <cg@exept.de>
parents: 5484
diff changeset
  2854
    "
4371
dc83645cc903 support to recursively enumerate all private classes
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  2855
!
dc83645cc903 support to recursively enumerate all private classes
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  2856
dc83645cc903 support to recursively enumerate all private classes
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  2857
addAllPrivateClassesTo:aCollection
dc83645cc903 support to recursively enumerate all private classes
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  2858
    "add all of my private classes to aCollection"
dc83645cc903 support to recursively enumerate all private classes
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  2859
dc83645cc903 support to recursively enumerate all private classes
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  2860
    self privateClassesDo:[:aPrivateClass |
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2861
	aCollection add:aPrivateClass.
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2862
	aPrivateClass addAllPrivateClassesTo:aCollection
4371
dc83645cc903 support to recursively enumerate all private classes
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  2863
    ].
1192
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  2864
! !
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  2865
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2866
!Behavior methodsFor:'queries'!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2867
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2868
category
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2869
    "return the category of the class. 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2870
     Returning nil here, since Behavior does not define a category
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2871
     (only ClassDescriptions do)."
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2872
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2873
    ^ nil
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2874
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2875
    "
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2876
     Point category                
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2877
     Behavior new category           
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2878
    "
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2879
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2880
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2881
comment
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2882
    "return the comment of the class. 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2883
     Returning nil here, since Behavior does not define a category
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2884
     (only Classes do). This allows different Behavior-like objects
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2885
     (alien classes) to be handled by the browser as well."
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2886
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2887
    ^ nil
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2888
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2889
    "Modified: 16.4.1996 / 16:25:23 / cg"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2890
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2891
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2892
definitionSelector
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2893
    "return the selector with which I was (can be) defined in my superclass"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2894
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2895
    ^ (self firstDefinitionSelectorPart
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2896
      ,
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2897
      'instanceVariableNames:classVariableNames:poolDictionaries:category:') asSymbol
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2898
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2899
    "
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2900
     Object definitionSelector
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2901
     Array definitionSelector  
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2902
     ByteArray definitionSelector 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2903
     FloatArray definitionSelector 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2904
    "
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2905
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2906
    "Modified: 3.3.1997 / 11:50:37 / cg"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2907
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2908
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2909
definitionSelectorPrivate
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2910
    "return the selector with which I was (can be) defined in my superclass
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2911
     as a private class"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2912
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2913
    ^ (self firstDefinitionSelectorPart
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2914
      ,
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2915
      'instanceVariableNames:classVariableNames:poolDictionaries:privateIn:') asSymbol
1192
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  2916
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  2917
    "
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2918
     Array definitionSelector      
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2919
     Array definitionSelectorPrivate  
1192
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  2920
    "
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  2921
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2922
    "Modified: 23.6.1997 / 10:45:57 / cg"
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2923
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2924
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2925
firstDefinitionSelectorPart
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2926
    "return the first part of the selector with which I was (can be) defined in my superclass"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2927
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2928
    self isVariable ifFalse:[
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2929
	^ #'subclass:'
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2930
    ].
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2931
    self isBytes ifTrue:[
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2932
	^ #'variableByteSubclass:'
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2933
    ].
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2934
    self isLongs ifTrue:[
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2935
	^ #'variableLongSubclass:'
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2936
    ].
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2937
    self isFloats ifTrue:[
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2938
	^ #'variableFloatSubclass:'
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2939
    ].
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2940
    self isDoubles ifTrue:[
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2941
	^ #'variableDoubleSubclass:'
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2942
    ].
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2943
    self isWords ifTrue:[
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2944
	^ #'variableWordSubclass:'
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2945
    ].
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2946
    self isSignedWords ifTrue:[
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2947
	^ #'variableSignedWordSubclass:'
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2948
    ].
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2949
    self isSignedLongs ifTrue:[
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2950
	^ #'variableSignedLongSubclass:'
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2951
    ].
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2952
    self isSignedLongLongs ifTrue:[
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2953
	^ #'variableSignedLongLongSubclass:'
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2954
    ].
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2955
    self isLongLongs ifTrue:[
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2956
	^ #'variableLongLongSubclass:'
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2957
    ].
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2958
    ^ #'variableSubclass:'
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2959
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2960
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2961
fullName
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2962
    "Answer the name of the receiver, fully qualified."
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2963
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2964
    ^ self name asString
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2965
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2966
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2967
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2968
isBehavior
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2969
    "return true, if the receiver is describing another objects behavior,
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2970
     i.e. is a class. Defined to avoid the need to use isKindOf:"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2971
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2972
    ^ true
1192
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  2973
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  2974
    "
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2975
     True isBehavior   
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2976
     true isBehavior
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2977
    "
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2978
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2979
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2980
isBuiltInClass
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2981
    "return true if this class is known by the run-time-system.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2982
     Here, false is returned as default.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2983
     Notice, this is instance protocol, which means that any class
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2984
     other than those special ones) are non-builtIn by default."
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2985
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2986
    ^ false
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2987
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2988
    "Modified: 23.4.1996 / 15:55:52 / cg"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2989
    "Created: 28.10.1996 / 15:10:02 / cg"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2990
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2991
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2992
isJavaClass
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2993
    "return true, if the receiver is a java class.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2994
     Java class support is not yet released to the public."
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2995
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2996
    ^ false
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2997
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2998
    "Created: 17.3.1997 / 16:23:59 / cg"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2999
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3000
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3001
isPrivate
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3002
    "return true, if the receiver is some private class"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3003
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3004
    ^ self owningClass notNil
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3005
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3006
    "Modified: 12.10.1996 / 20:11:05 / cg"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3007
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3008
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3009
isSubclassOf:aClass
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3010
    "return true, if I am a subclass of the argument, aClass"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3011
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3012
    |theClass|
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3013
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3014
    theClass := superclass.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3015
    [theClass notNil] whileTrue:[
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3016
	(theClass == aClass) ifTrue:[^ true].
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3017
%{
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3018
	if (__isBehaviorLike(theClass)) {
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3019
	    theClass = __ClassInstPtr(theClass)->c_superclass;
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3020
	} else {
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3021
	    theClass = nil;
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3022
	}
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3023
%}.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3024
"/        theClass := theClass superclass.
3620
e517c8b18e90 added #allInstancesWeakly for ST-80 compatibility.
Claus Gittinger <cg@exept.de>
parents: 3619
diff changeset
  3025
    ].
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3026
    ^ false
2053
82cf91ad2d8f added #allSelectors
ca
parents: 2048
diff changeset
  3027
82cf91ad2d8f added #allSelectors
ca
parents: 2048
diff changeset
  3028
    "
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3029
     String isSubclassOf:Collection  
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3030
     LinkedList isSubclassOf:Array   
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3031
     1 isSubclassOf:Number              <- will fail since 1 is no class
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3032
    "     
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3033
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3034
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3035
name
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3036
    "although behaviors have no name, we return something
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3037
     useful here - there are many places (inspectors) where
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3038
     a classes name is asked for.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3039
     Implementing this message here allows anonymous classes
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3040
     and instances of them to be inspected."
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3041
7331
cd0f1492d540 code motion from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7269
diff changeset
  3042
    ^ #'anonymous Behavior'
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3043
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3044
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3045
nameInBrowser
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3046
    "return a nameString as shown in browsers"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3047
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3048
    ^ self name
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3049
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3050
7331
cd0f1492d540 code motion from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7269
diff changeset
  3051
nameWithArticle
cd0f1492d540 code motion from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7269
diff changeset
  3052
    "return a string consisting of classname preceeded by an article.
cd0f1492d540 code motion from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7269
diff changeset
  3053
     (dont expect me to write national variants for this ... :-)
cd0f1492d540 code motion from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7269
diff changeset
  3054
     If you have special preferences, redefine it..."
cd0f1492d540 code motion from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7269
diff changeset
  3055
 
cd0f1492d540 code motion from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7269
diff changeset
  3056
    |classname|
cd0f1492d540 code motion from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7269
diff changeset
  3057
 
cd0f1492d540 code motion from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7269
diff changeset
  3058
    classname := self name.
cd0f1492d540 code motion from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7269
diff changeset
  3059
    ^ classname article , ' ' , classname
cd0f1492d540 code motion from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7269
diff changeset
  3060
 
cd0f1492d540 code motion from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7269
diff changeset
  3061
    "
cd0f1492d540 code motion from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7269
diff changeset
  3062
     SmallInteger nameWithArticle
cd0f1492d540 code motion from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7269
diff changeset
  3063
    "
cd0f1492d540 code motion from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7269
diff changeset
  3064
!
cd0f1492d540 code motion from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7269
diff changeset
  3065
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3066
owningClass
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3067
    "return my owning class - nil if I am a public class"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3068
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3069
    "/ this information is in the metaclass ...
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3070
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3071
    ^ self class owningClass
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3072
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3073
    "Created: 15.10.1996 / 21:19:32 / cg"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3074
    "Modified: 7.11.1996 / 13:49:28 / cg"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3075
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3076
6733
4f8a80a22261 added #owningClassOrYourself
Claus Gittinger <cg@exept.de>
parents: 6727
diff changeset
  3077
owningClassOrYourself
4f8a80a22261 added #owningClassOrYourself
Claus Gittinger <cg@exept.de>
parents: 6727
diff changeset
  3078
    "return my owning class if I am private, myself otherwise"
4f8a80a22261 added #owningClassOrYourself
Claus Gittinger <cg@exept.de>
parents: 6727
diff changeset
  3079
4f8a80a22261 added #owningClassOrYourself
Claus Gittinger <cg@exept.de>
parents: 6727
diff changeset
  3080
    self owningClass notNil ifTrue:[^ self topOwningClass].
4f8a80a22261 added #owningClassOrYourself
Claus Gittinger <cg@exept.de>
parents: 6727
diff changeset
  3081
    ^ self
4f8a80a22261 added #owningClassOrYourself
Claus Gittinger <cg@exept.de>
parents: 6727
diff changeset
  3082
!
4f8a80a22261 added #owningClassOrYourself
Claus Gittinger <cg@exept.de>
parents: 6727
diff changeset
  3083
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3084
sharedPools
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3085
    "shared pools are not (yet) supported by ST/X;
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3086
     return a dummy, empty collection here"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3087
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3088
    ^ #()
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3089
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3090
    "Created: 19.6.1997 / 18:19:36 / cg"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3091
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3092
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3093
sourceCodeAt:aSelector
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3094
    "return the methods source for given selector aSelector or nil.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3095
     Only methods in the receiver - not in the superclass chain are tested."
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3096
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3097
    |method|
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3098
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3099
    method := self compiledMethodAt:aSelector.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3100
    method isNil ifTrue:[^ nil].
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3101
    ^ method source
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3102
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3103
    "
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3104
     True sourceCodeAt:#ifTrue:
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3105
     Object sourceCodeAt:#==
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3106
     Behavior sourceCodeAt:#sourceCodeAt:
2053
82cf91ad2d8f added #allSelectors
ca
parents: 2048
diff changeset
  3107
    "
82cf91ad2d8f added #allSelectors
ca
parents: 2048
diff changeset
  3108
!
82cf91ad2d8f added #allSelectors
ca
parents: 2048
diff changeset
  3109
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3110
sourceCodeManager
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3111
    "return the sourceCodeManager of the class. 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3112
     Returning nil here, since Behavior does not define any sourceCode management.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3113
     (only Classes do). This allows different Behavior-like objects
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3114
     (alien classes) to be handled by the browser as well."
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3115
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3116
    ^ nil
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3117
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3118
    "Created: 16.4.1996 / 16:26:03 / cg"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3119
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3120
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3121
supportsMethodCategories
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3122
    "return true, if my methods are categorized.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3123
     This is a hook for the browser to allow alien classes
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3124
     to be handled (aktually, this is not yet used)."
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3125
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3126
    ^ true
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3127
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3128
    "Created: 30.7.1997 / 14:59:08 / cg"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3129
    "Modified: 30.7.1997 / 15:02:03 / cg"
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3130
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3131
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3132
theMetaclass
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3133
    "return my metaclass, also implemented in my metaclass, which also returns iteself."
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3134
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3135
    ^ self class
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3136
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3137
    "Created: / 30.1.2000 / 23:08:30 / cg"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3138
    "Modified: / 31.1.2000 / 16:16:52 / cg"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3139
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3140
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3141
theNonMetaclass
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3142
    "return myself, also implemented in my metaclass, which also returns me."
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3143
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3144
    ^ self
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3145
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3146
    "Created: / 30.1.2000 / 23:07:59 / cg"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3147
    "Modified: / 31.1.2000 / 16:17:46 / cg"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3148
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3149
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3150
topOwningClass
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3151
    "return my outermost owning class - nil if I am a public class"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3152
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3153
    "/ this information is in the metaclass ...
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3154
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3155
    ^ self class topOwningClass
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3156
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3157
    "Created: 15.10.1996 / 21:19:32 / cg"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3158
    "Modified: 3.1.1997 / 19:18:49 / cg"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3159
! !
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3160
6931
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  3161
!Behavior methodsFor:'queries-inheritance'!
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3162
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3163
allSubclasses
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3164
    "return a collection of all subclasses (direct AND indirect) of
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3165
     the receiver. There will be no specific order, in which entries
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3166
     are returned."
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3167
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3168
    |newColl|
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3169
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3170
    newColl := OrderedCollection new.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3171
    self allSubclassesDo:[:aClass |
5327
5e5602d156fa #isNamespace renamed to #isNameSpace
Claus Gittinger <cg@exept.de>
parents: 5325
diff changeset
  3172
        (aClass isNameSpace not or:[aClass == Smalltalk]) ifTrue:[
5e5602d156fa #isNamespace renamed to #isNameSpace
Claus Gittinger <cg@exept.de>
parents: 5325
diff changeset
  3173
            newColl add:aClass
5e5602d156fa #isNamespace renamed to #isNameSpace
Claus Gittinger <cg@exept.de>
parents: 5325
diff changeset
  3174
        ]
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3175
    ].
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3176
    ^ newColl
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3177
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3178
    "
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3179
     Collection allSubclasses
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3180
    "
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3181
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3182
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3183
allSubclassesInOrder
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3184
    "return a collection of all subclasses (direct AND indirect) of
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3185
     the receiver. Higher level subclasses will come before lower ones."
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3186
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3187
    |newColl|
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3188
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3189
    newColl := OrderedCollection new.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3190
    self allSubclassesInOrderDo:[:aClass |
5327
5e5602d156fa #isNamespace renamed to #isNameSpace
Claus Gittinger <cg@exept.de>
parents: 5325
diff changeset
  3191
        (aClass isNameSpace not or:[aClass == Smalltalk]) ifTrue:[
5e5602d156fa #isNamespace renamed to #isNameSpace
Claus Gittinger <cg@exept.de>
parents: 5325
diff changeset
  3192
            newColl add:aClass
5e5602d156fa #isNamespace renamed to #isNameSpace
Claus Gittinger <cg@exept.de>
parents: 5325
diff changeset
  3193
        ]
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3194
    ].
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3195
    ^ newColl
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3196
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3197
    "
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3198
     Collection allSubclassesInOrder
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3199
    "
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3200
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3201
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3202
allSuperclasses
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3203
    "return a collection of the receivers accumulated superclasses"
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3204
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3205
    |aCollection theSuperClass|
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3206
6395
2ad7a8e870ab instance variables should only be accessed by getters/setters
Claus Gittinger <cg@exept.de>
parents: 6329
diff changeset
  3207
    theSuperClass := self superclass.
4451
ca4d77871c1c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4428
diff changeset
  3208
    theSuperClass isNil ifTrue:[
6395
2ad7a8e870ab instance variables should only be accessed by getters/setters
Claus Gittinger <cg@exept.de>
parents: 6329
diff changeset
  3209
        ^ #()
4451
ca4d77871c1c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4428
diff changeset
  3210
    ].
ca4d77871c1c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4428
diff changeset
  3211
    aCollection := OrderedCollection new.
ca4d77871c1c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4428
diff changeset
  3212
    [theSuperClass notNil] whileTrue:[
6395
2ad7a8e870ab instance variables should only be accessed by getters/setters
Claus Gittinger <cg@exept.de>
parents: 6329
diff changeset
  3213
        aCollection add:theSuperClass.
2ad7a8e870ab instance variables should only be accessed by getters/setters
Claus Gittinger <cg@exept.de>
parents: 6329
diff changeset
  3214
        theSuperClass := theSuperClass superclass
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3215
    ].
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3216
    ^ aCollection
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3217
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3218
    "
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3219
     String allSuperclasses 
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3220
    "
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3221
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3222
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3223
canBeSubclassed
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3224
    "return true, if its allowed to create subclasses of the receiver.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3225
     This method is redefined in SmallInteger and UndefinedObject, since
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3226
     instances are detected by their pointer-fields, i.e. they do not have
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3227
     a class entry (you dont have to understand this :-)"
10
claus
parents: 5
diff changeset
  3228
claus
parents: 5
diff changeset
  3229
    ^ true
claus
parents: 5
diff changeset
  3230
!
claus
parents: 5
diff changeset
  3231
3641
d419c5d9a1c3 added #commonSuperClass:
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  3232
commonSuperclass:aClass
d419c5d9a1c3 added #commonSuperClass:
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  3233
    "Return the common superclass of the receiver and aClass.
6754
d9c0f178f091 commonSuperClass: care for nil subclass
Claus Gittinger <cg@exept.de>
parents: 6733
diff changeset
  3234
     Assumes that there is a common superclass of any two classes.
d9c0f178f091 commonSuperClass: care for nil subclass
Claus Gittinger <cg@exept.de>
parents: 6733
diff changeset
  3235
     (might return nil, if either the receiver or the argument inherit from nil)"
3641
d419c5d9a1c3 added #commonSuperClass:
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  3236
d419c5d9a1c3 added #commonSuperClass:
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  3237
    (aClass includesBehavior:self) ifTrue:[^ self].
d419c5d9a1c3 added #commonSuperClass:
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  3238
    (self inheritsFrom:aClass) ifTrue:[^ aClass].
6754
d9c0f178f091 commonSuperClass: care for nil subclass
Claus Gittinger <cg@exept.de>
parents: 6733
diff changeset
  3239
    superclass isNil ifTrue:[^ nil].
d9c0f178f091 commonSuperClass: care for nil subclass
Claus Gittinger <cg@exept.de>
parents: 6733
diff changeset
  3240
    ^ superclass commonSuperclass:aClass
3641
d419c5d9a1c3 added #commonSuperClass:
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  3241
d419c5d9a1c3 added #commonSuperClass:
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  3242
    "
d419c5d9a1c3 added #commonSuperClass:
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  3243
     Integer commonSuperclass:Fraction  
d419c5d9a1c3 added #commonSuperClass:
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  3244
     SmallInteger commonSuperclass:Fraction  
d419c5d9a1c3 added #commonSuperClass:
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  3245
     View commonSuperclass:Form  
d419c5d9a1c3 added #commonSuperClass:
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  3246
     View commonSuperclass:Image  
6754
d9c0f178f091 commonSuperClass: care for nil subclass
Claus Gittinger <cg@exept.de>
parents: 6733
diff changeset
  3247
     Integer commonSuperclass:Autoload      
3641
d419c5d9a1c3 added #commonSuperClass:
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  3248
    "
d419c5d9a1c3 added #commonSuperClass:
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  3249
d419c5d9a1c3 added #commonSuperClass:
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  3250
    "Modified: / 10.7.1998 / 02:13:04 / cg"
d419c5d9a1c3 added #commonSuperClass:
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  3251
!
d419c5d9a1c3 added #commonSuperClass:
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  3252
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3253
hasMultipleSuperclasses
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3254
    "Return true, if this class inherits from other classes 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3255
     (beside its primary superclass). 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3256
     This method is a preparation for a future multiple inheritance extension 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3257
     - currently it is not supported by the VM"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3258
7331
cd0f1492d540 code motion from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7269
diff changeset
  3259
    ^ false
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3260
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3261
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3262
inheritsFrom:aClass
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3263
    "return true, if the receiver inherits methods from aClass;
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3264
     i.e. if aClass is on the receivers superclass chain."
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3265
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3266
    ^ self isSubclassOf:aClass
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3267
293
31df3850e98c *** empty log message ***
claus
parents: 283
diff changeset
  3268
    "
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3269
     True inheritsFrom:Object
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3270
     LinkedList inheritsFrom:Array
293
31df3850e98c *** empty log message ***
claus
parents: 283
diff changeset
  3271
    "
1088
989f0e510a32 nicer message
Claus Gittinger <cg@exept.de>
parents: 983
diff changeset
  3272
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3273
    "Modified: 19.6.1997 / 18:13:21 / cg"
3053
d6aad366397f added #whichSelectorsReferTo: and #compiledMethodAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  3274
!
d6aad366397f added #whichSelectorsReferTo: and #compiledMethodAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  3275
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3276
subclasses
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3277
    "return a collection of the direct subclasses of the receiver"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3278
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3279
    |newColl|
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3280
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3281
    "/ use cached information (avoid class hierarchy search)
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3282
    "/ if possible
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3283
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3284
    SubclassInfo notNil ifTrue:[
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3285
        newColl := SubclassInfo at:self ifAbsent:nil.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3286
        newColl notNil ifTrue:[^ newColl asOrderedCollection]
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3287
    ].
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3288
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3289
    newColl := OrderedCollection new.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3290
    self subclassesDo:[:aClass |
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3291
        newColl add:aClass
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3292
    ].
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3293
    SubclassInfo notNil ifTrue:[
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3294
        SubclassInfo at:self put:newColl.
3053
d6aad366397f added #whichSelectorsReferTo: and #compiledMethodAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  3295
    ].
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3296
    ^ newColl
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3297
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3298
    "
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3299
     Class flushSubclassInfo.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3300
     Collection subclasses
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3301
    "
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3302
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3303
    "Modified: 22.1.1997 / 18:43:52 / cg"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3304
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3305
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3306
superclasses
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3307
    "return a collection of the receivers immediate superclasses.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3308
     This method is a preparation for a future multiple inheritance extension 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3309
     - currently it is not supported by the VM"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3310
7331
cd0f1492d540 code motion from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7269
diff changeset
  3311
    ^ Array with:self superclass.
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3312
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3313
    "
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3314
     String superclasses  
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3315
    "
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3316
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3317
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3318
withAllSubclasses
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3319
    "return a collection containing the receiver and 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3320
     all subclasses (direct AND indirect) of the receiver"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3321
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3322
    |coll|
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3323
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3324
    coll := self allSubclasses asOrderedCollection.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3325
    coll addFirst:self.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3326
    ^ coll
3053
d6aad366397f added #whichSelectorsReferTo: and #compiledMethodAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  3327
d6aad366397f added #whichSelectorsReferTo: and #compiledMethodAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  3328
    "
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3329
     Collection withAllSubclasses
3053
d6aad366397f added #whichSelectorsReferTo: and #compiledMethodAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  3330
    "
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3331
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3332
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3333
withAllSuperclasses
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3334
    "return a collection containing the receiver and all
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3335
     of the receivers accumulated superclasses"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3336
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3337
    |aCollection|
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3338
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3339
    aCollection := OrderedCollection new.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3340
    self withAllSuperclassesDo:[:cls |
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3341
        aCollection add:cls
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3342
    ].
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3343
    ^ aCollection
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3344
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3345
    "
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3346
     String withAllSuperclasses 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3347
    "
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3348
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3349
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3350
withAllSuperclassesDo:aBlock
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3351
    "evaluate aBlock for the class and all of its superclasses"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3352
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3353
    |theSuperClass|
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3354
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3355
    aBlock value:self.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3356
    theSuperClass := self superclass.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3357
    [theSuperClass notNil] whileTrue:[
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3358
        aBlock value:theSuperClass.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3359
        theSuperClass := theSuperClass superclass
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3360
    ].
2436
dbea519857e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
  3361
dbea519857e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
  3362
    "
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3363
     String withAllSuperclassesDo:[:each| Transcript showCR:each] 
2436
dbea519857e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
  3364
    "
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3365
! !
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3366
6931
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  3367
!Behavior methodsFor:'queries-instances'!
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3368
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3369
allDerivedInstances
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3370
    "return a collection of all instances of myself and 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3371
     instances of all subclasses of myself.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3372
     This method is going to be removed for protocol compatibility with
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3373
     other STs; use allSubInstances"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3374
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3375
    <resource:#obsolete>
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3376
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3377
    self obsoleteMethodWarning:'use #allSubInstances'.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3378
    ^ self allSubInstances
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3379
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3380
    "Modified: 31.7.1997 / 23:04:59 / cg"
2436
dbea519857e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
  3381
!
dbea519857e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
  3382
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3383
allInstances
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3384
    "return a collection of all my instances"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3385
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3386
    "Read the documentation on why there seem to be no
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3387
     instances of SmallInteger and UndefinedObject"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3388
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3389
    |coll|
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3390
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3391
    coll := OrderedCollection new:100.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3392
    self allInstancesDo:[:anObject |
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3393
	coll add:anObject
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3394
    ].
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3395
    ^ coll 
2713
11cd28893629 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2699
diff changeset
  3396
11cd28893629 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2699
diff changeset
  3397
    "
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3398
     ScrollBar allInstances
2713
11cd28893629 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2699
diff changeset
  3399
    "
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3400
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3401
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3402
allInstancesWeakly:doWeakly
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3403
    "return a collection of all my instances.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3404
     If weakly is true, a weak collection is returned."
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3405
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3406
    "Read the documentation on why there seem to be no
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3407
     instances of SmallInteger and UndefinedObject"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3408
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3409
    |coll|
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3410
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3411
    coll := self allInstances.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3412
    doWeakly ifTrue:[
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3413
	coll := WeakArray withAll:coll
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3414
    ].
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3415
    ^ coll
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3416
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3417
    "Created: / 19.6.1998 / 02:17:20 / cg"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3418
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3419
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3420
allSubInstances
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3421
    "return a collection of all instances of myself and 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3422
     instances of all subclasses of myself."
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3423
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3424
    |coll|
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3425
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3426
    coll := OrderedCollection new:100.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3427
    self allSubInstancesDo:[:anObject |
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3428
	(anObject isKindOf:self) ifTrue:[
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3429
	    coll add:anObject
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3430
	]
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3431
    ].
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3432
    ^ coll 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3433
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3434
    "
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3435
     View allSubInstances
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3436
    "
2713
11cd28893629 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2699
diff changeset
  3437
!
11cd28893629 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2699
diff changeset
  3438
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3439
derivedInstanceCount
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3440
    "return the number of instances of myself and of subclasses"
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3441
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3442
    |count|
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3443
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3444
    count := 0.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3445
    ObjectMemory allObjectsDo:[:anObject |
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3446
	(anObject isKindOf:self) ifTrue:[
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3447
	    count := count + 1
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3448
	]
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3449
    ].
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3450
    ^ count
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3451
293
31df3850e98c *** empty log message ***
claus
parents: 283
diff changeset
  3452
    "
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3453
     View derivedInstanceCount
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3454
     SequenceableCollection derivedInstanceCount
983
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3455
     Object derivedInstanceCount
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3456
    "
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3457
!
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3458
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3459
hasDerivedInstances
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3460
    "return true, if there are any instances of myself or of any subclass"
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3461
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3462
    "Read the documentation on why there seem to be no
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3463
     instances of SmallInteger and UndefinedObject"
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3464
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3465
    ObjectMemory allObjectsDo:[:anObject |
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3466
	(anObject isKindOf:self) ifTrue:[
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3467
	    ^ true
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3468
	]
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3469
    ].
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3470
    ^ false
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3471
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3472
    "
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3473
     Object hasDerivedInstances         - certainly true
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3474
     SharedQueue hasDerivedInstances
293
31df3850e98c *** empty log message ***
claus
parents: 283
diff changeset
  3475
    "
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3476
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3477
2674
5278213b500c added #hasImmediateInstances for VW compatibility
Claus Gittinger <cg@exept.de>
parents: 2666
diff changeset
  3478
hasImmediateInstances
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  3479
    "return true if this class has immediate instances
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  3480
     i.e. if the instances are represented in the pointer itself and
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  3481
     no real object header/storage is used for the object.
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  3482
     Redefined in classes which have so (only SmallInteger and UndefinedObject)"
2674
5278213b500c added #hasImmediateInstances for VW compatibility
Claus Gittinger <cg@exept.de>
parents: 2666
diff changeset
  3483
5278213b500c added #hasImmediateInstances for VW compatibility
Claus Gittinger <cg@exept.de>
parents: 2666
diff changeset
  3484
    ^ false
5278213b500c added #hasImmediateInstances for VW compatibility
Claus Gittinger <cg@exept.de>
parents: 2666
diff changeset
  3485
5278213b500c added #hasImmediateInstances for VW compatibility
Claus Gittinger <cg@exept.de>
parents: 2666
diff changeset
  3486
    "Created: 3.6.1997 / 12:01:05 / cg"
5278213b500c added #hasImmediateInstances for VW compatibility
Claus Gittinger <cg@exept.de>
parents: 2666
diff changeset
  3487
!
5278213b500c added #hasImmediateInstances for VW compatibility
Claus Gittinger <cg@exept.de>
parents: 2666
diff changeset
  3488
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3489
hasInstances
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3490
    "return true, if there are any instances of myself"
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3491
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3492
    "Read the documentation on why there seem to be no
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3493
     instances of SmallInteger and UndefinedObject"
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3494
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3495
"/    ObjectMemory allObjectsDo:[:anObject |
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3496
"/        (anObject class == self) ifTrue:[
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3497
"/            ^ true
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3498
"/        ]
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3499
"/    ].
983
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3500
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3501
    ObjectMemory allInstancesOf:self do:[:anObject |
983
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3502
	^ true
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3503
    ].
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3504
    ^ false
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3505
293
31df3850e98c *** empty log message ***
claus
parents: 283
diff changeset
  3506
    "
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3507
     Object hasInstances
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3508
     SequenceableCollection hasInstances
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3509
     Float hasInstances
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3510
     SmallInteger hasInstances
293
31df3850e98c *** empty log message ***
claus
parents: 283
diff changeset
  3511
    "
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3512
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3513
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3514
hasSharedInstances
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3515
    "return true if this class has shared instances, that is, instances
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3516
     with the same value are identical.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3517
     False is returned here, only redefined in classes which have unified
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3518
     instances (or should be treated so)."
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3519
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3520
    ^ false
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3521
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3522
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3523
instanceCount
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3524
    "return the number of instances of myself."
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3525
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3526
    "Read the documentation on why there seem to be no
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3527
     instances of SmallInteger and UndefinedObject"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3528
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3529
    |count|
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3530
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3531
    count := 0.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3532
"/    ObjectMemory allObjectsDo:[:anObject |
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3533
"/        (anObject class == self) ifTrue:[
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3534
"/            count := count + 1
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3535
"/        ]
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3536
"/    ].
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3537
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3538
    ObjectMemory allInstancesOf:self do:[:anObject |
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3539
	count := count + 1
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3540
    ].
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3541
    ^ count
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3542
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3543
    "
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3544
     View instanceCount
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3545
     Object instanceCount
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3546
     Float instanceCount
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3547
     SequenceableCollection instanceCount
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3548
     SmallInteger instanceCount   .... mhmh - hear, hear
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3549
    "
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3550
! !
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3551
6931
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  3552
!Behavior methodsFor:'queries-instlayout'!
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3553
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3554
elementByteSize
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3555
    "for bit-like containers, return the number of bytes stored per
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3556
     element. For pointer indexed classes, 0 is returned"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3557
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3558
    self isBitsExtended ifTrue:[
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3559
	self isBytes ifTrue:[^ 1].
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3560
	self isWords ifTrue:[^ 2].
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3561
	self isSignedWords ifTrue:[^ 2].
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3562
	self isLongs ifTrue:[^ 4].
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3563
	self isSignedLongs ifTrue:[^ 4].
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3564
	self isLongLongs ifTrue:[^ 8].
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3565
	self isSignedLongLongs ifTrue:[^ 8].
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3566
    ].
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3567
    self isFloats ifTrue:[^ 4].
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3568
    self isDoubles ifTrue:[^ 8].
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3569
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3570
    ^ 0
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3571
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3572
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3573
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3574
isBits
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3575
    "return true, if instances have indexed byte or short instance variables.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3576
     Ignore long, float and double arrays, since ST-80 code using isBits are probably
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3577
     not prepared to handle them correctly."
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3578
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3579
%{  /* NOCONTEXT */
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3580
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3581
    REGISTER int what;
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3582
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3583
    what = (INT)(__INST(flags)) & __MASKSMALLINT(ARRAYMASK);
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3584
    RETURN (( (what == __MASKSMALLINT(BYTEARRAY))
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3585
             || (what == __MASKSMALLINT(WORDARRAY))) ? true : false ); 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3586
%}.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3587
    ^ self isBytes or:[self isWords]
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3588
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3589
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3590
isBitsExtended
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3591
    "return true, if instances have indexed byte, short, long or longlong instance variables.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3592
     Ignore float and double arrays.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3593
     This is really the thing we expect #isBits to return, however, #isBits
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3594
     is defined to only return true for byte- and wordIndexed instances.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3595
     This avoids confusion of ST80 code, which is not prepared for long or longLong
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3596
     instVars."
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3597
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3598
%{  /* NOCONTEXT */
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3599
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3600
    REGISTER int what;
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3601
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3602
    what = (INT)(__INST(flags)) & __MASKSMALLINT(ARRAYMASK);
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3603
    RETURN (( (what == __MASKSMALLINT(BYTEARRAY))
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3604
	     || (what == __MASKSMALLINT(WORDARRAY))
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3605
	     || (what == __MASKSMALLINT(SWORDARRAY))
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3606
	     || (what == __MASKSMALLINT(LONGARRAY))
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3607
	     || (what == __MASKSMALLINT(SLONGARRAY))
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3608
	     || (what == __MASKSMALLINT(LONGLONGARRAY))
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3609
	     || (what == __MASKSMALLINT(SLONGLONGARRAY))) ? true : false ); 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3610
%}
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3611
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3612
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3613
isBytes
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3614
    "return true, if instances have indexed byte instance variables"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3615
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3616
    "this could also be defined as:
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3617
	^ (flags bitAnd:(Behavior maskIndexType)) == Behavior flagBytes
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3618
    "
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3619
%{  /* NOCONTEXT */
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3620
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3621
    RETURN ( (((INT)(__INST(flags)) & __MASKSMALLINT(ARRAYMASK)) == __MASKSMALLINT(BYTEARRAY)) ? true : false ); 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3622
%}
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3623
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3624
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3625
isDoubles
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3626
    "return true, if instances have indexed double instance variables"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3627
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3628
    "this could also be defined as:
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3629
	^ (flags bitAnd:(Behavior maskIndexType)) == Behavior flagDoubles
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3630
    "
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3631
%{  /* NOCONTEXT */
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3632
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3633
    RETURN ( (((INT)(__INST(flags)) & __MASKSMALLINT(ARRAYMASK)) == __MASKSMALLINT(DOUBLEARRAY)) ? true : false ); 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3634
%}
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3635
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3636
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3637
isFixed
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3638
    "return true, if instances do not have indexed instance variables"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3639
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3640
    "this could also be defined as:
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3641
        ^ self isVariable not
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3642
    "
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3643
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3644
%{  /* NOCONTEXT */
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3645
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3646
    RETURN ( ((INT)(__INST(flags)) & __MASKSMALLINT(ARRAYMASK)) ? false : true ); 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3647
%}.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3648
    ^ self isVariable not
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3649
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3650
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3651
isFloats
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3652
    "return true, if instances have indexed float instance variables"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3653
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3654
    "this could also be defined as:
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3655
	^ (flags bitAnd:(Behavior maskIndexType)) == Behavior flagFloats
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3656
    "
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3657
%{  /* NOCONTEXT */
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3658
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3659
    RETURN ( (((INT)(__INST(flags)) & __MASKSMALLINT(ARRAYMASK)) == __MASKSMALLINT(FLOATARRAY)) ? true : false ); 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3660
%}
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3661
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3662
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3663
isFloatsOrDoubles
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3664
    "return true, if instances have indexed float or double instance variables"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3665
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3666
%{  /* NOCONTEXT */
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3667
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3668
    int what;
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3669
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3670
    what = (INT)(__INST(flags)) & __MASKSMALLINT(ARRAYMASK);
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3671
    RETURN (( (what == __MASKSMALLINT(FLOATARRAY))
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3672
             || (what == __MASKSMALLINT(DOUBLEARRAY))) ? true : false ); 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3673
%}.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3674
    ^ self isFloats or:[self isDoubles]
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3675
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3676
    "
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3677
     (Object new) class isFloatsOrDoubles 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3678
     (Point new) class isFloatsOrDoubles   
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3679
     (Array new) class isFloatsOrDoubles   
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3680
     (ByteArray new) class isFloatsOrDoubles  
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3681
     (FloatArray new) class isFloatsOrDoubles  
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3682
     (DoubleArray new) class isFloatsOrDoubles  
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3683
    "
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3684
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3685
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3686
isLongLongs
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3687
    "return true, if instances have indexed long-long instance variables (8 byte uints)"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3688
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3689
%{  /* NOCONTEXT */
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3690
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3691
    RETURN ( (((INT)(__INST(flags)) & __MASKSMALLINT(ARRAYMASK)) == __MASKSMALLINT(LONGLONGARRAY)) ? true : false );
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3692
%}
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3693
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3694
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3695
isLongs
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3696
    "return true, if instances have indexed long instance variables (4 byte uints)"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3697
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3698
%{  /* NOCONTEXT */
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3699
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3700
    RETURN ( (((INT)(__INST(flags)) & __MASKSMALLINT(ARRAYMASK)) == __MASKSMALLINT(LONGARRAY)) ? true : false ); 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3701
%}
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3702
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3703
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3704
isPointers
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3705
    "return true, if instances have pointer instance variables 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3706
     i.e. are either non-indexed or have indexed pointer variables"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3707
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3708
    "QUESTION: should we ignore WeakPointers ?"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3709
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3710
%{  /* NOCONTEXT */
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3711
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3712
    REGISTER int flags;
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3713
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3714
    flags = __intVal(__INST(flags)) & ARRAYMASK;
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3715
    switch (flags) {
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3716
	default:
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3717
	    /* normal objects */
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3718
	    RETURN ( true );
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3719
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3720
	case BYTEARRAY:
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3721
	case WORDARRAY:
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3722
	case LONGARRAY:
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3723
	case SWORDARRAY:
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3724
	case SLONGARRAY:
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3725
	case SLONGLONGARRAY:
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3726
	case LONGLONGARRAY:
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3727
	case FLOATARRAY:
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3728
	case DOUBLEARRAY:
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3729
	    RETURN (false );
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3730
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3731
	case WKPOINTERARRAY:
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3732
	    /* what about those ? */
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3733
	    RETURN (true );
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3734
    }
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3735
%}
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3736
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3737
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3738
isSignedLongLongs
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3739
    "return true, if instances have indexed signed long-long instance variables (8 byte ints)"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3740
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3741
%{  /* NOCONTEXT */
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3742
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3743
    RETURN ( (((INT)(__INST(flags)) & __MASKSMALLINT(ARRAYMASK)) == __MASKSMALLINT(SLONGLONGARRAY)) ? true : false );
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3744
%}
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3745
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3746
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3747
isSignedLongs
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3748
    "return true, if instances have indexed signed long instance variables (4 byte ints)"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3749
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3750
%{  /* NOCONTEXT */
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3751
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3752
    RETURN ( (((INT)(__INST(flags)) & __MASKSMALLINT(ARRAYMASK)) == __MASKSMALLINT(SLONGARRAY)) ? true : false );
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3753
%}
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3754
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3755
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3756
isSignedWords
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3757
    "return true, if instances have indexed signed short instance variables"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3758
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3759
%{  /* NOCONTEXT */
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3760
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3761
    RETURN ( (((INT)(__INST(flags)) & __MASKSMALLINT(ARRAYMASK)) == __MASKSMALLINT(SWORDARRAY)) ? true : false );
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3762
%}
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3763
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3764
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3765
isVariable
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3766
    "return true, if instances have indexed instance variables"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3767
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3768
    "this could also be defined as:
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3769
	^ (flags bitAnd:(Behavior maskIndexType)) ~~ 0
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3770
     "
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3771
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3772
%{  /* NOCONTEXT */
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3773
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3774
    RETURN ( ((INT)(__INST(flags)) & __MASKSMALLINT(ARRAYMASK)) ? true : false ); 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3775
%}
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3776
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3777
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3778
isWeakPointers
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3779
    "return true, if instances have weak pointer instance variables"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3780
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3781
%{  /* NOCONTEXT */
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3782
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3783
    REGISTER int flags;
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3784
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3785
    flags = __intVal(__INST(flags)) & ARRAYMASK;
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3786
    if (flags == WKPOINTERARRAY) {
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3787
        RETURN ( true );
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3788
    }
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3789
%}.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3790
    ^ false
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3791
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3792
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3793
isWords
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3794
    "return true, if instances have indexed short instance variables"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3795
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3796
    "this could also be defined as:
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3797
	^ (flags bitAnd:(Behavior maskIndexType)) == Behavior flagWords
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3798
    "
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3799
%{  /* NOCONTEXT */
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3800
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3801
    RETURN ( (((INT)(__INST(flags)) & __MASKSMALLINT(ARRAYMASK)) == __MASKSMALLINT(WORDARRAY)) ? true : false ); 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3802
%}
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3803
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3804
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3805
sizeOfInst:n
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3806
    "return the number of bytes required for an instance of
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3807
     myself with n indexed instance variables. The argument n 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3808
     should be zero for classes without indexed instance variables.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3809
     See Behavior>>niceNew: for an application of this."
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3810
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3811
    |nInstvars|
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3812
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3813
    nInstvars := self instSize.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3814
%{
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3815
    int nBytes;
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3816
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3817
    nBytes = __intVal(nInstvars) * sizeof(OBJ) + OHDR_SIZE; 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3818
    if (__isSmallInteger(n)) {
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3819
	int nIndex;
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3820
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3821
	nIndex = __intVal(n);
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3822
	switch (__intVal(__INST(flags)) & ARRAYMASK) {
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3823
	    case BYTEARRAY:
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3824
		nBytes += nIndex;
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3825
		if (nBytes & (__ALIGN__ - 1)) {
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3826
		    nBytes = (nBytes & ~(__ALIGN__ - 1)) + __ALIGN__;
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3827
		}
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3828
		break;
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3829
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3830
	    case WORDARRAY:
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3831
	    case SWORDARRAY:
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3832
		nBytes += nIndex * 2;
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3833
		if (nBytes & (__ALIGN__ - 1)) {
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3834
		    nBytes = (nBytes & ~(__ALIGN__ - 1)) + __ALIGN__;
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3835
		}
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3836
		break;
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3837
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3838
	    case LONGARRAY:
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3839
	    case SLONGARRAY:
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3840
		nBytes += nIndex * 4;
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3841
		break;
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3842
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3843
	    case LONGLONGARRAY:
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3844
	    case SLONGLONGARRAY:
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3845
		nBytes += nIndex * 8;
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3846
		break;
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3847
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3848
	    case FLOATARRAY:
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3849
		nBytes += nIndex * sizeof(float);
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3850
		break;
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3851
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3852
	    case DOUBLEARRAY:
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3853
		nBytes += nIndex * sizeof(double);
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3854
		break;
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3855
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3856
	    default:
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3857
		nBytes += nIndex * sizeof(OBJ);
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3858
		break;
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3859
	}
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3860
    }
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3861
    RETURN (__MKSMALLINT(nBytes));
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3862
%}
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3863
! !
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3864
6931
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  3865
!Behavior methodsFor:'queries-protocol'!
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3866
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3867
allSelectors
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3868
    "return a collection of all selectors understood by the receiver;
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3869
     this includes my selectors and all superclass selectors
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3870
     (i.e. the receivers full protocol)"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3871
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3872
    |superclass|
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3873
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3874
    superclass := self superclass.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3875
    superclass notNil ifTrue:[
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3876
        ^ superclass allSelectors addAll:(self selectors); yourself.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3877
    ].
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3878
    ^ self selectors asIdentitySet
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3879
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3880
    "
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3881
     Point allSelectors
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3882
     View allSelectors
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3883
     Array allSelectors
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3884
    "
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3885
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3886
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3887
cachedLookupMethodFor:aSelector
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3888
    "return the method, which would be executed if aSelector was sent to
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3889
     an instance of the receiver. I.e. the selector arrays of the receiver
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3890
     and all of its superclasses are searched for aSelector.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3891
     Return the method, or nil if instances do not understand aSelector.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3892
     This interface provides exactly the same information as #lookupMethodFor:,
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3893
     but uses the lookup-cache in the VM for faster search. 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3894
     However, keep in mind, that doing a lookup through the cache also adds new
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3895
     entries and can thus slow down the system by polluting the cache with 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3896
     irrelevant entries. (do NOT loop over all objects calling this method).
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3897
     Does NOT (currently) handle MI"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3898
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3899
%{  /* NOCONTEXT */
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3900
    RETURN ( __lookup(self, aSelector) );
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3901
%}
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3902
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3903
    "
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3904
     String cachedLookupMethodFor:#=
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3905
     String cachedLookupMethodFor:#asOrderedCollection
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3906
    "
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3907
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3908
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3909
canUnderstand:aSelector
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3910
    "return true, if the receiver or one of its superclasses implements aSelector.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3911
     (i.e. true if my instances understand aSelector)"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3912
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3913
    ^ (self lookupMethodFor:aSelector) notNil
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3914
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3915
    "
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3916
     True canUnderstand:#ifTrue:
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3917
     True canUnderstand:#==
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3918
     True canUnderstand:#do:
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3919
    "
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3920
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3921
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3922
compiledMethodAt:aSelector
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3923
    "return the method for given selector aSelector or nil.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3924
     Only methods in the receiver - not in the superclass chain are tested."
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3925
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3926
    ^ self compiledMethodAt:aSelector ifAbsent:nil
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3927
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3928
    "
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3929
     Object compiledMethodAt:#==
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3930
     (Object compiledMethodAt:#==) category
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3931
    "
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3932
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3933
    "Modified: / 7.6.1996 / 14:43:32 / stefan"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3934
    "Modified: / 27.10.1997 / 20:18:55 / cg"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3935
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3936
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3937
compiledMethodAt:aSelector ifAbsent:exceptionValue
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3938
    "return the method for given selector aSelector or the value
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3939
     of exceptionValue if not present.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3940
     Only methods in the receiver - not in the superclass chain are tested."
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3941
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3942
    |dict|
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3943
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3944
    dict := self methodDictionary.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3945
    dict isNil ifTrue:[
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3946
	('Behavior [warning]: nil methodDictionary in ' , self name printString) errorPrintCR.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3947
	^ exceptionValue value
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3948
    ].
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3949
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3950
    ^ dict at:aSelector ifAbsent:exceptionValue
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3951
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3952
    "
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3953
     Object compiledMethodAt:#==
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3954
     (Object compiledMethodAt:#==) category
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3955
    "
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3956
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3957
    "Modified: / 7.6.1996 / 14:43:32 / stefan"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3958
    "Modified: / 10.1.1997 / 17:27:21 / cg"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3959
    "Created: / 27.10.1997 / 20:18:28 / cg"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3960
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3961
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3962
containsMethod:aMethod
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3963
    "Return true, if the argument, aMethod is a method of myself"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3964
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3965
    |dict|
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3966
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3967
    dict := self methodDictionary. 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3968
    dict isNil ifTrue:[^ false].  "degenerated class"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3969
    ^ (dict keyAtValue:aMethod ifAbsent:[0]) ~~ 0
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3970
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3971
    "Modified: 12.6.1996 / 13:33:53 / stefan"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3972
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3973
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3974
hasMethods
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3975
    "return true, if there are any (local) methods in this class"
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3976
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  3977
    ^ (self methodDictionary size ~~ 0)
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3978
293
31df3850e98c *** empty log message ***
claus
parents: 283
diff changeset
  3979
    "
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3980
     True hasMethods
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3981
     True class hasMethods
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3982
    "
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  3983
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  3984
    "Modified: 7.6.1996 / 15:43:09 / stefan"
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3985
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3986
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3987
implements:aSelector
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3988
    "return true, if the receiver implements aSelector.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3989
     (i.e. implemented in THIS class - NOT in a superclass).
983
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3990
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3991
     Caveat:
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3992
	This simply checks for the selector being present in the classes
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3993
	selector table - therefore, it does not care for ignoredMethods.
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3994
	(but: you should not use this method for protocol-testing, anyway).
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3995
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3996
     Hint:
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3997
	Dont use this method to check if someone responds to a message -
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3998
	use #canUnderstand: on the class or #respondsTo: on the instance
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3999
	to do this."
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  4000
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  4001
    ^ self includesSelector:aSelector
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4002
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4003
    "
983
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  4004
     notice: this is class protocol
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  4005
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  4006
       True implements:#ifTrue:  
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  4007
       True implements:#==        
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  4008
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  4009
     notice: this is instance protocol
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  4010
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  4011
       true respondsTo:#ifTrue:   
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  4012
       true respondsTo:#==        
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  4013
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  4014
     notice: this is class protocol
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  4015
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  4016
       True canUnderstand:#ifTrue: 
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  4017
       True canUnderstand:#==        
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4018
    "
983
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  4019
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  4020
    "Modified: 10.2.1996 / 13:15:56 / cg"
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4021
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4022
2698
26abb8941250 added #includesBehavior for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 2674
diff changeset
  4023
includesBehavior:aClass
26abb8941250 added #includesBehavior for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 2674
diff changeset
  4024
    "return true, if the receiver includes the behavior of aClass;
26abb8941250 added #includesBehavior for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 2674
diff changeset
  4025
     i.e. if is either identical to a class or inherits from it."
26abb8941250 added #includesBehavior for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 2674
diff changeset
  4026
26abb8941250 added #includesBehavior for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 2674
diff changeset
  4027
    ^ (self == aClass) or:[self isSubclassOf:aClass]
26abb8941250 added #includesBehavior for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 2674
diff changeset
  4028
26abb8941250 added #includesBehavior for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 2674
diff changeset
  4029
    "
26abb8941250 added #includesBehavior for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 2674
diff changeset
  4030
     True includesBehavior:Object  
26abb8941250 added #includesBehavior for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 2674
diff changeset
  4031
     True includesBehavior:Boolean 
26abb8941250 added #includesBehavior for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 2674
diff changeset
  4032
     True includesBehavior:True    
26abb8941250 added #includesBehavior for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 2674
diff changeset
  4033
     True includesBehavior:False   
26abb8941250 added #includesBehavior for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 2674
diff changeset
  4034
    "
26abb8941250 added #includesBehavior for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 2674
diff changeset
  4035
26abb8941250 added #includesBehavior for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 2674
diff changeset
  4036
    "Modified: 19.6.1997 / 18:14:35 / cg"
26abb8941250 added #includesBehavior for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 2674
diff changeset
  4037
!
26abb8941250 added #includesBehavior for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 2674
diff changeset
  4038
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4039
includesSelector:aSelector
1494
dab70fc90ebc Remove old methodArray and selectorArray stuff (use MethodDictionary only).
Stefan Vogel <sv@exept.de>
parents: 1461
diff changeset
  4040
    "return true, if the methodDictionary of THIS class includes
983
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  4041
     a method for aSelector.
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  4042
     (i.e. if aSelector is implemented in THIS class - NOT in a superclass).
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  4043
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  4044
     Hint:
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  4045
	Dont use this method to check if someone responds to a message -
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  4046
	use #canUnderstand: on the class or #respondsTo: on the instance
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  4047
	to do this."
4307
29dd3e6c91ca better #includesSelector
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4048
29dd3e6c91ca better #includesSelector
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  4049
    ^ self methodDictionary includesKey:aSelector
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  4050
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  4051
    "
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  4052
	Object includesSelector:#==
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  4053
	Object includesSelector:#murks
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  4054
    "
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  4055
3882
3e11ea1568d5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3870
diff changeset
  4056
    "Modified: / 7.6.1996 / 14:27:24 / stefan"
3e11ea1568d5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3870
diff changeset
  4057
    "Modified: / 16.10.1998 / 13:00:15 / cg"
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4058
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4059
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4060
lookupMethodFor:aSelector
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4061
    "return the method, which would be executed if aSelector was sent to
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4062
     an instance of the receiver. I.e. the selector arrays of the receiver
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4063
     and all of its superclasses are searched for aSelector.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4064
     Return the method, or nil if instances do not understand aSelector.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4065
     EXPERIMENTAL: take care of multiple superclasses."
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4066
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4067
    |m cls|
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4068
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4069
    cls := self.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4070
    [cls notNil] whileTrue:[
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4071
	m := cls compiledMethodAt:aSelector.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4072
	m notNil ifTrue:[^ m].
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4073
	cls hasMultipleSuperclasses ifTrue:[
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4074
	    cls superclasses do:[:aSuperClass |
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4075
		m := aSuperClass lookupMethodFor:aSelector.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4076
		m notNil ifTrue:[^ m].
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4077
	    ].
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4078
	    ^ nil
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4079
	] ifFalse:[
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4080
	    cls := cls superclass
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4081
	]
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4082
    ].
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4083
    ^ nil
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4084
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4085
6460
99ac1e25f249 added #responseTo:
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
  4086
responseTo:aSelector
99ac1e25f249 added #responseTo:
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
  4087
    "return the method (from here or the inheritance chain), 
99ac1e25f249 added #responseTo:
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
  4088
     which implements aSelector; return nil if none."
99ac1e25f249 added #responseTo:
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
  4089
99ac1e25f249 added #responseTo:
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
  4090
    |cls|
99ac1e25f249 added #responseTo:
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
  4091
99ac1e25f249 added #responseTo:
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
  4092
    cls := self whichClassIncludesSelector:aSelector.
99ac1e25f249 added #responseTo:
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
  4093
    cls notNil ifTrue:[
99ac1e25f249 added #responseTo:
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
  4094
        ^ cls compiledMethodAt:aSelector
99ac1e25f249 added #responseTo:
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
  4095
    ].
99ac1e25f249 added #responseTo:
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
  4096
    ^ nil
99ac1e25f249 added #responseTo:
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
  4097
99ac1e25f249 added #responseTo:
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
  4098
    "
99ac1e25f249 added #responseTo:
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
  4099
     String responseTo:#==      
99ac1e25f249 added #responseTo:
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
  4100
     String responseTo:#collect:   
99ac1e25f249 added #responseTo:
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
  4101
     String responseTo:#,   
99ac1e25f249 added #responseTo:
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
  4102
    "
99ac1e25f249 added #responseTo:
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
  4103
!
99ac1e25f249 added #responseTo:
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
  4104
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4105
selectorAtMethod:aMethod
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4106
    "Return the selector for given method aMethod."
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4107
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4108
    ^ self selectorAtMethod:aMethod ifAbsent:[nil]
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4109
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4110
    "
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4111
     |m|
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4112
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4113
     m := Object compiledMethodAt:#copy.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4114
     Fraction selectorAtMethod:m.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4115
    "
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4116
    "
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4117
     |m|
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4118
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4119
     m := Object compiledMethodAt:#copy.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4120
     Object selectorAtMethod:m.
356
claus
parents: 345
diff changeset
  4121
    "
claus
parents: 345
diff changeset
  4122
!
claus
parents: 345
diff changeset
  4123
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4124
selectorAtMethod:aMethod ifAbsent:failBlock
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4125
    "return the selector for given method aMethod
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4126
     or the value of failBlock, if not found."
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4127
1814
fdaf647b5086 check for nil methodDict
Claus Gittinger <cg@exept.de>
parents: 1760
diff changeset
  4128
    |md|
fdaf647b5086 check for nil methodDict
Claus Gittinger <cg@exept.de>
parents: 1760
diff changeset
  4129
fdaf647b5086 check for nil methodDict
Claus Gittinger <cg@exept.de>
parents: 1760
diff changeset
  4130
    md := self methodDictionary.
fdaf647b5086 check for nil methodDict
Claus Gittinger <cg@exept.de>
parents: 1760
diff changeset
  4131
    md isNil ifTrue:[
fdaf647b5086 check for nil methodDict
Claus Gittinger <cg@exept.de>
parents: 1760
diff changeset
  4132
	'OOPS - nil methodDictionary' errorPrintCR.
fdaf647b5086 check for nil methodDict
Claus Gittinger <cg@exept.de>
parents: 1760
diff changeset
  4133
	^ nil
fdaf647b5086 check for nil methodDict
Claus Gittinger <cg@exept.de>
parents: 1760
diff changeset
  4134
    ].
fdaf647b5086 check for nil methodDict
Claus Gittinger <cg@exept.de>
parents: 1760
diff changeset
  4135
    ^ md keyAtValue:aMethod ifAbsent:failBlock.
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4136
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4137
    "
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4138
     |m|
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4139
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4140
     m := Object compiledMethodAt:#copy.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4141
     Object selectorAtMethod:m ifAbsent:['oops'].
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4142
    "
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4143
    "
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4144
     |m|
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4145
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4146
     m := Object compiledMethodAt:#copy.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4147
     Fraction selectorAtMethod:m ifAbsent:['oops'].
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4148
    "
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  4149
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  4150
    "Modified: 7.6.1996 / 15:15:45 / stefan"
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4151
!
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4152
2
claus
parents: 1
diff changeset
  4153
whichClassImplements:aSelector
328
claus
parents: 325
diff changeset
  4154
    "obsolete interface;
claus
parents: 325
diff changeset
  4155
     use whichClassIncludesSelector: for ST-80 compatibility."
claus
parents: 325
diff changeset
  4156
claus
parents: 325
diff changeset
  4157
    ^ self whichClassIncludesSelector:aSelector
claus
parents: 325
diff changeset
  4158
!
claus
parents: 325
diff changeset
  4159
claus
parents: 325
diff changeset
  4160
whichClassIncludesSelector:aSelector
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  4161
    "return the class in the inheritance chain, which implements the method
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  4162
     for aSelector; return nil if none.
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  4163
     EXPERIMENTAL: handle multiple superclasses"
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  4164
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  4165
    |cls|
2
claus
parents: 1
diff changeset
  4166
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  4167
    cls := self.
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  4168
    [cls notNil] whileTrue:[
983
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  4169
	(cls includesSelector:aSelector) ifTrue:[^ cls].
154
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  4170
	cls hasMultipleSuperclasses ifTrue:[
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  4171
	    cls superclasses do:[:aSuperClass |
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  4172
		|implementingClass|
2
claus
parents: 1
diff changeset
  4173
328
claus
parents: 325
diff changeset
  4174
		implementingClass := aSuperClass whichClassIncludesSelector:aSelector.
154
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  4175
		implementingClass notNil ifTrue:[^ implementingClass].
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  4176
	    ].
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  4177
	    ^ nil
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  4178
	] ifFalse:[
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  4179
	    cls := cls superclass
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  4180
	]
2
claus
parents: 1
diff changeset
  4181
    ].
claus
parents: 1
diff changeset
  4182
    ^ nil
claus
parents: 1
diff changeset
  4183
91
b3971c7dc731 *** empty log message ***
claus
parents: 88
diff changeset
  4184
    "
328
claus
parents: 325
diff changeset
  4185
     String whichClassIncludesSelector:#==
claus
parents: 325
diff changeset
  4186
     String whichClassIncludesSelector:#collect:
91
b3971c7dc731 *** empty log message ***
claus
parents: 88
diff changeset
  4187
    "
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4188
! !
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4189
6931
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  4190
!Behavior methodsFor:'queries-variables'!
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4191
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4192
allClassVarNames
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4193
    "return a collection of all the class variable name-strings
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4194
     this includes all superclass-class variables"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4195
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4196
    ^ self addAllClassVarNamesTo:(OrderedCollection new)
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4197
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4198
    "
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4199
     Float allClassVarNames
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4200
    "
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4201
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4202
    "Modified: 16.4.1996 / 18:01:00 / cg"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4203
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4204
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4205
allInstVarNames
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4206
    "return a collection of all the instance variable name-strings
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4207
     this includes all superclass-instance variables.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4208
     Instvars of superclasses come first (i.e. the position matches
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4209
     the instVarAt:-index)."
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4210
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4211
    self superclass isNil ifTrue:[^ self instVarNames].
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4212
    ^ self addAllInstVarNamesTo:(OrderedCollection new)
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4213
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4214
    "
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4215
     Dictionary instVarNames       
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4216
     Dictionary allInstVarNames    
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4217
    "
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4218
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4219
    "Modified: 16.4.1996 / 18:03:55 / cg"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4220
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4221
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4222
allInstanceVariableNames
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4223
    "alias for allInstVarNames"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4224
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4225
    ^ self allInstVarNames
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4226
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4227
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4228
classVarNames
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4229
    "return a collection of the class variable name-strings.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4230
     Returning empty here, since Behavior does not define any classVariables.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4231
     (only Classes do). This allows different Behavior-like objects
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4232
     (alien classes) to be handled by the browser as well."
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4233
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4234
    ^ #()
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4235
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4236
    "Created: 16.4.1996 / 17:57:31 / cg"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4237
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4238
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4239
classVariableString
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4240
    "return a string of the class variables names.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4241
     Returning empty here, since Behavior does not define any classVariables.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4242
     (only Classes do). This allows different Behavior-like objects
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4243
     (alien classes) to be handled by the browser as well."
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4244
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4245
    ^ ''
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4246
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4247
    "Created: 16.4.1996 / 16:28:56 / cg"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4248
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4249
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4250
instVarNames
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4251
    "Behavior does not provide this info - generate synthetic names."
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4252
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4253
    |superclass superInsts|
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4254
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4255
    superclass := self superclass.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4256
    superclass isNil ifTrue:[
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4257
        superInsts := 0
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4258
    ] ifFalse:[
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4259
        superInsts := superclass instSize
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4260
    ].
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4261
    ^ (superInsts+1 to:self instSize) 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4262
       collect:[:index | '* instVar' , index printString , ' *']
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4263
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4264
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4265
instanceVariableNames
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4266
    "alias for instVarNames."
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4267
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4268
    ^ self instVarNames
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4269
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4270
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4271
instanceVariableString
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4272
    "return a string with dummy names here - typically, your
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4273
     objects are instances of Class, not Behavior."
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4274
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4275
    |superclass s superInsts n "{Class: SmallInteger }"|
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4276
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4277
    superclass := self superclass.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4278
    s := ''.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4279
    superclass isNil ifTrue:[
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4280
        superInsts := 0
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4281
    ] ifFalse:[
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4282
        superInsts := superclass instSize
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4283
    ].
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4284
    n := self instSize.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4285
    superInsts+1 to:n do:[:i |
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4286
        s size == 0 ifFalse:[s := s , ' '].
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4287
        s := s , 'instvar' , i printString
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4288
    ].
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4289
    ^ s
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4290
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4291
    "
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4292
     Behavior new instanceVariableString 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4293
    "
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4294
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4295
    "Modified: 7.5.1996 / 12:50:25 / cg"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4296
    "Modified: 3.6.1996 / 16:03:33 / stefan"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4297
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4298
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4299
whichClassDefinesClassVar: aString 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4300
	^self whichClassSatisfies: 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4301
			[:aClass | 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4302
			(aClass classVarNames collect: [:each | each asString]) 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4303
				includes: aString asString]
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4304
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4305
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4306
whichClassDefinesInstVar: aString 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4307
	^self whichClassSatisfies: [:aClass | aClass instVarNames includes: aString]
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4308
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4309
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4310
whichSelectorsAssign: instVarName 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4311
        "Answer a set of selectors whose methods write the argument, instVarName, 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4312
        as a named instance variable."
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4313
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4314
        ^ self whichSelectorsWrite: instVarName
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4315
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4316
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4317
whichSelectorsRead: instVarName 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4318
	"Answer a set of selectors whose methods read the argument, instVarName, 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4319
	as a named instance variable."
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4320
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4321
	| instVarIndex methodDict|
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4322
	instVarIndex := self allInstVarNames indexOf: instVarName ifAbsent: [^Set new].
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4323
	methodDict := self methodDictionary.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4324
	^methodDict keys select: [:sel | (methodDict at: sel)
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4325
			readsField: instVarIndex]
2
claus
parents: 1
diff changeset
  4326
!
claus
parents: 1
diff changeset
  4327
3053
d6aad366397f added #whichSelectorsReferTo: and #compiledMethodAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  4328
whichSelectorsReferTo:someLiteralConstant
d6aad366397f added #whichSelectorsReferTo: and #compiledMethodAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  4329
    "return a collection of selectors of methods which refer to the argument.
d6aad366397f added #whichSelectorsReferTo: and #compiledMethodAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  4330
     Search the literal arrays of my methods to do this."
d6aad366397f added #whichSelectorsReferTo: and #compiledMethodAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  4331
d6aad366397f added #whichSelectorsReferTo: and #compiledMethodAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  4332
    |setOfSelectors|
d6aad366397f added #whichSelectorsReferTo: and #compiledMethodAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  4333
d6aad366397f added #whichSelectorsReferTo: and #compiledMethodAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  4334
    setOfSelectors := IdentitySet new.
6395
2ad7a8e870ab instance variables should only be accessed by getters/setters
Claus Gittinger <cg@exept.de>
parents: 6329
diff changeset
  4335
    self methodDictionary keysAndValuesDo:[:sel :mthd |
2ad7a8e870ab instance variables should only be accessed by getters/setters
Claus Gittinger <cg@exept.de>
parents: 6329
diff changeset
  4336
        (mthd referencesLiteral:someLiteralConstant) ifTrue:[
2ad7a8e870ab instance variables should only be accessed by getters/setters
Claus Gittinger <cg@exept.de>
parents: 6329
diff changeset
  4337
            setOfSelectors add:sel
2ad7a8e870ab instance variables should only be accessed by getters/setters
Claus Gittinger <cg@exept.de>
parents: 6329
diff changeset
  4338
        ].
3053
d6aad366397f added #whichSelectorsReferTo: and #compiledMethodAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  4339
    ].
d6aad366397f added #whichSelectorsReferTo: and #compiledMethodAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  4340
d6aad366397f added #whichSelectorsReferTo: and #compiledMethodAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  4341
    ^ setOfSelectors
d6aad366397f added #whichSelectorsReferTo: and #compiledMethodAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  4342
d6aad366397f added #whichSelectorsReferTo: and #compiledMethodAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  4343
    "
d6aad366397f added #whichSelectorsReferTo: and #compiledMethodAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  4344
     String whichSelectorsReferTo:#at:  
d6aad366397f added #whichSelectorsReferTo: and #compiledMethodAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  4345
     String whichSelectorsReferTo:CharacterArray 
d6aad366397f added #whichSelectorsReferTo: and #compiledMethodAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  4346
    "
d6aad366397f added #whichSelectorsReferTo: and #compiledMethodAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  4347
d6aad366397f added #whichSelectorsReferTo: and #compiledMethodAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  4348
    "Modified: / 28.10.1997 / 13:13:18 / cg"
d6aad366397f added #whichSelectorsReferTo: and #compiledMethodAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  4349
!
d6aad366397f added #whichSelectorsReferTo: and #compiledMethodAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  4350
5297
3779bff26cbe compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 5222
diff changeset
  4351
whichSelectorsReferToClassVariable:nameOfClassVariable
3779bff26cbe compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 5222
diff changeset
  4352
    "return a collection of selectors of methods which refer to the argument.
3779bff26cbe compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 5222
diff changeset
  4353
     Search the literal arrays of my methods to do this."
3779bff26cbe compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 5222
diff changeset
  4354
3779bff26cbe compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 5222
diff changeset
  4355
    |internalNameOfVar|
3779bff26cbe compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 5222
diff changeset
  4356
3779bff26cbe compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 5222
diff changeset
  4357
    internalNameOfVar := (self name , ':' , nameOfClassVariable) asSymbol.
3779bff26cbe compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 5222
diff changeset
  4358
    ^ self whichSelectorsReferTo:internalNameOfVar
3779bff26cbe compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 5222
diff changeset
  4359
3779bff26cbe compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 5222
diff changeset
  4360
    "
3779bff26cbe compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 5222
diff changeset
  4361
     Object whichSelectorsReferToClassVariable:#Dependencies
3779bff26cbe compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 5222
diff changeset
  4362
    "
3779bff26cbe compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 5222
diff changeset
  4363
3779bff26cbe compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 5222
diff changeset
  4364
    "Modified: / 4.2.2000 / 00:40:22 / cg"
3779bff26cbe compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 5222
diff changeset
  4365
!
3779bff26cbe compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 5222
diff changeset
  4366
3779bff26cbe compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 5222
diff changeset
  4367
whichSelectorsReferToGlobal:nameOfGlobal
3779bff26cbe compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 5222
diff changeset
  4368
    "return a collection of selectors of methods which refer to the argument.
3779bff26cbe compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 5222
diff changeset
  4369
     Search the literal arrays of my methods to do this."
3779bff26cbe compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 5222
diff changeset
  4370
3779bff26cbe compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 5222
diff changeset
  4371
    |internalNameOfVar|
3779bff26cbe compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 5222
diff changeset
  4372
3779bff26cbe compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 5222
diff changeset
  4373
    internalNameOfVar := nameOfGlobal asSymbol.
3779bff26cbe compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 5222
diff changeset
  4374
    ^ self whichSelectorsReferTo:internalNameOfVar
3779bff26cbe compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 5222
diff changeset
  4375
3779bff26cbe compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 5222
diff changeset
  4376
    "
3779bff26cbe compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 5222
diff changeset
  4377
     Object whichSelectorsReferToGlobal:#Debugger
3779bff26cbe compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 5222
diff changeset
  4378
    "
3779bff26cbe compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 5222
diff changeset
  4379
3779bff26cbe compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 5222
diff changeset
  4380
    "Modified: / 4.2.2000 / 00:41:10 / cg"
3779bff26cbe compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 5222
diff changeset
  4381
!
3779bff26cbe compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 5222
diff changeset
  4382
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4383
whichSelectorsWrite: instVarName 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4384
	"Answer a set of selectors whose methods write the argument, instVarName, 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4385
	as a named instance variable."
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4386
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4387
	| instVarIndex methodDict |
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4388
	instVarIndex := self allInstVarNames indexOf: instVarName ifAbsent: [^Set new].
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4389
	methodDict := self methodDictionary.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4390
	^methodDict keys select: [:sel | (methodDict at: sel)
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4391
			writesField: instVarIndex]
2
claus
parents: 1
diff changeset
  4392
! !
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4393
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4394
!Behavior methodsFor:'snapshots'!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4395
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4396
postSnapshot
1192
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  4397
    "sent by ObjectMemory to all classes, after a snapshot has been written.
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  4398
     Nothing done here. This can be redefined in classes which like to know
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  4399
     about snapshooting."
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  4400
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  4401
    "Modified: 16.4.1996 / 18:12:08 / cg"
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4402
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4403
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4404
preSnapshot
1192
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  4405
    "sent by ObjectMemory to all classes, before a snapshot is written.
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  4406
     Nothing done here. This can be redefined in classes which like to know
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  4407
     about snapshooting."
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  4408
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  4409
    "Modified: 16.4.1996 / 18:12:14 / cg"
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4410
! !
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4411
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  4412
!Behavior methodsFor:'tracing'!
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  4413
4682
4158042a9c8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4657
diff changeset
  4414
traceInto:aRequestor level:level from:referrer
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  4415
    "double dispatch into tracer, passing my type implicitely in the selector"
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  4416
4682
4158042a9c8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4657
diff changeset
  4417
    ^ aRequestor traceBehavior:self level:level from:referrer
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  4418
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  4419
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  4420
! !
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  4421
1760
e7254ff682fd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
  4422
!Behavior class methodsFor:'documentation'!
662
df7953db3847 version method at the end
Claus Gittinger <cg@exept.de>
parents: 642
diff changeset
  4423
df7953db3847 version method at the end
Claus Gittinger <cg@exept.de>
parents: 642
diff changeset
  4424
version
7358
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  4425
    ^ '$Header: /cvs/stx/stx/libbasic/Behavior.st,v 1.227 2003-06-16 09:22:20 cg Exp $'
662
df7953db3847 version method at the end
Claus Gittinger <cg@exept.de>
parents: 642
diff changeset
  4426
! !