Behavior.st
author Claus Gittinger <cg@exept.de>
Tue, 18 Nov 2003 10:04:11 +0100
changeset 7754 adc5c9bdbab5
parent 7676 132c48f4bef9
child 7764 0e1dbc9f0fe6
permissions -rw-r--r--
*** empty log message ***
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
1760
e7254ff682fd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
   763
!Behavior class methodsFor:'queries'!
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   764
4332
c672bf261fbd added query for class-def selectors.
Claus Gittinger <cg@exept.de>
parents: 4307
diff changeset
   765
definitionSelectorFirstParts
c672bf261fbd added query for class-def selectors.
Claus Gittinger <cg@exept.de>
parents: 4307
diff changeset
   766
    "return a collection of partial class-definition selectors"
c672bf261fbd added query for class-def selectors.
Claus Gittinger <cg@exept.de>
parents: 4307
diff changeset
   767
c672bf261fbd added query for class-def selectors.
Claus Gittinger <cg@exept.de>
parents: 4307
diff changeset
   768
    ^ #( #'subclass:'
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   769
	 #'variableSubclass:'
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   770
	 #'variableByteSubclass:'
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   771
	 #'variableWordSubclass:'
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   772
	 #'variableLongSubclass:'
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   773
	 #'variableSignedWordSubclass:'
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   774
	 #'variableSignedLongSubclass:'
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   775
	 #'variableLongLongSubclass:'
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   776
	 #'variableSignedLongLongSubclass:'
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   777
	 #'variableFloatSubclass:'
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   778
	 #'variableDoubleSubclass:'
4332
c672bf261fbd added query for class-def selectors.
Claus Gittinger <cg@exept.de>
parents: 4307
diff changeset
   779
      )  
c672bf261fbd added query for class-def selectors.
Claus Gittinger <cg@exept.de>
parents: 4307
diff changeset
   780
!
c672bf261fbd added query for class-def selectors.
Claus Gittinger <cg@exept.de>
parents: 4307
diff changeset
   781
4428
d612ee1f2b32 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4371
diff changeset
   782
definitionSelectors
d612ee1f2b32 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4371
diff changeset
   783
    "return a collection class-definition selectors"
d612ee1f2b32 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4371
diff changeset
   784
4579
848788d00ccf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
   785
    ^ #( 
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   786
	 #'subclass:instanceVariableNames:classVariableNames:poolDictionaries:category:'
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   787
	 #'variableSubclass:instanceVariableNames:classVariableNames:poolDictionaries:category:'
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   788
	 #'variableByteSubclass:instanceVariableNames:classVariableNames:poolDictionaries:category:'
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   789
	 #'variableWordSubclass:instanceVariableNames:classVariableNames:poolDictionaries:category:'
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   790
	 #'variableLongSubclass:instanceVariableNames:classVariableNames:poolDictionaries:category:'
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   791
	 #'variableSignedWordSubclass:instanceVariableNames:classVariableNames:poolDictionaries:category:'
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   792
	 #'variableSignedLongSubclass:instanceVariableNames:classVariableNames:poolDictionaries:category:'
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   793
	 #'variableLongLongSubclass:instanceVariableNames:classVariableNames:poolDictionaries:category:'
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   794
	 #'variableSignedLongLongSubclass:instanceVariableNames:classVariableNames:poolDictionaries:category:'
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   795
	 #'variableFloatSubclass:instanceVariableNames:classVariableNames:poolDictionaries:category:'
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   796
	 #'variableDoubleSubclass:instanceVariableNames:classVariableNames:poolDictionaries:category:'
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   797
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   798
	"/ ST/X private subclasses
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   799
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   800
	 #'subclass:instanceVariableNames:classVariableNames:poolDictionaries:privateIn:'
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   801
	 #'variableSubclass:instanceVariableNames:classVariableNames:poolDictionaries:privateIn:'
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   802
	 #'variableByteSubclass:instanceVariableNames:classVariableNames:poolDictionaries:privateIn:'
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   803
	 #'variableWordSubclass:instanceVariableNames:classVariableNames:poolDictionaries:privateIn:'
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   804
	 #'variableLongSubclass:instanceVariableNames:classVariableNames:poolDictionaries:privateIn:'
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   805
	 #'variableSignedWordSubclass:instanceVariableNames:classVariableNames:poolDictionaries:privateIn:'
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   806
	 #'variableSignedLongSubclass:instanceVariableNames:classVariableNames:poolDictionaries:privateIn:'
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   807
	 #'variableLongLongSubclass:instanceVariableNames:classVariableNames:poolDictionaries:privateIn:'
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   808
	 #'variableSignedLongLongSubclass:instanceVariableNames:classVariableNames:poolDictionaries:privateIn:'
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   809
	 #'variableFloatSubclass:instanceVariableNames:classVariableNames:poolDictionaries:privateIn:'
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   810
	 #'variableDoubleSubclass:instanceVariableNames:classVariableNames:poolDictionaries:privateIn:'
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   811
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   812
	"/ ST/V subclass messages
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   813
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   814
	 #'subclass:instanceVariableNames:classVariableNames:poolDictionaries:'
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   815
	 #'variableByteSubclass:classVariableNames:poolDictionaries:'
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
   816
	 #'variableSubclass:instanceVariableNames:classVariableNames:poolDictionaries:'
4428
d612ee1f2b32 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4371
diff changeset
   817
      )  
d612ee1f2b32 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4371
diff changeset
   818
!
d612ee1f2b32 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4371
diff changeset
   819
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   820
isBuiltInClass
1266
cef9b3cd49df commentary
Claus Gittinger <cg@exept.de>
parents: 1259
diff changeset
   821
    "return true if this class is known by the run-time-system.
cef9b3cd49df commentary
Claus Gittinger <cg@exept.de>
parents: 1259
diff changeset
   822
     Here, true is returned for myself, false for subclasses."
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   823
1179
3e0f32177af4 allow subclasses of Class to be changed
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   824
    ^ (self == Behavior class) or:[self == Behavior]
3e0f32177af4 allow subclasses of Class to be changed
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   825
1266
cef9b3cd49df commentary
Claus Gittinger <cg@exept.de>
parents: 1259
diff changeset
   826
    "Modified: 23.4.1996 / 15:55:52 / cg"
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   827
! !
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   828
7269
f1e3ab435963 method category rename
Claus Gittinger <cg@exept.de>
parents: 7260
diff changeset
   829
!Behavior methodsFor:'Compatibility-Dolphin'!
6329
e6c32a251669 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6147
diff changeset
   830
e6c32a251669 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6147
diff changeset
   831
allSubinstances
6865
434e45411991 dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6754
diff changeset
   832
    ^ self allSubInstances
434e45411991 dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6754
diff changeset
   833
!
434e45411991 dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6754
diff changeset
   834
6889
7efa6d375ef7 +fromBinaryStoreBytes; +fromString.
Claus Gittinger <cg@exept.de>
parents: 6865
diff changeset
   835
fromString:aString
7efa6d375ef7 +fromBinaryStoreBytes; +fromString.
Claus Gittinger <cg@exept.de>
parents: 6865
diff changeset
   836
    ^ self readFrom:aString
7efa6d375ef7 +fromBinaryStoreBytes; +fromString.
Claus Gittinger <cg@exept.de>
parents: 6865
diff changeset
   837
!
7efa6d375ef7 +fromBinaryStoreBytes; +fromString.
Claus Gittinger <cg@exept.de>
parents: 6865
diff changeset
   838
6865
434e45411991 dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6754
diff changeset
   839
guid:aUUID
434e45411991 dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6754
diff changeset
   840
    ^ self
6329
e6c32a251669 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6147
diff changeset
   841
! !
e6c32a251669 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6147
diff changeset
   842
7269
f1e3ab435963 method category rename
Claus Gittinger <cg@exept.de>
parents: 7260
diff changeset
   843
!Behavior methodsFor:'Compatibility-Squeak'!
4889
aa8f6b9f7e28 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4851
diff changeset
   844
aa8f6b9f7e28 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4851
diff changeset
   845
defaultNameStemForInstances
aa8f6b9f7e28 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4851
diff changeset
   846
    "Answer a basis for names of default instances of the receiver"
aa8f6b9f7e28 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4851
diff changeset
   847
aa8f6b9f7e28 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4851
diff changeset
   848
    ^ self name
aa8f6b9f7e28 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4851
diff changeset
   849
5753
65cce9486ee9 added #lookupSelector: for Squeak compatibility
Claus Gittinger <cg@exept.de>
parents: 5743
diff changeset
   850
!
65cce9486ee9 added #lookupSelector: for Squeak compatibility
Claus Gittinger <cg@exept.de>
parents: 5743
diff changeset
   851
65cce9486ee9 added #lookupSelector: for Squeak compatibility
Claus Gittinger <cg@exept.de>
parents: 5743
diff changeset
   852
lookupSelector:aSelector
65cce9486ee9 added #lookupSelector: for Squeak compatibility
Claus Gittinger <cg@exept.de>
parents: 5743
diff changeset
   853
    "return the method for a selector - Squeak compatibility"
65cce9486ee9 added #lookupSelector: for Squeak compatibility
Claus Gittinger <cg@exept.de>
parents: 5743
diff changeset
   854
65cce9486ee9 added #lookupSelector: for Squeak compatibility
Claus Gittinger <cg@exept.de>
parents: 5743
diff changeset
   855
    ^ self lookupMethodFor:aSelector
6147
42cc230e5a9b selectorsWithArgs: (for squeak)
james
parents: 6140
diff changeset
   856
!
42cc230e5a9b selectorsWithArgs: (for squeak)
james
parents: 6140
diff changeset
   857
42cc230e5a9b selectorsWithArgs: (for squeak)
james
parents: 6140
diff changeset
   858
selectorsWithArgs:numberOfArgs 
42cc230e5a9b selectorsWithArgs: (for squeak)
james
parents: 6140
diff changeset
   859
    "Return all selectors defined in this class that take this number of arguments."
42cc230e5a9b selectorsWithArgs: (for squeak)
james
parents: 6140
diff changeset
   860
42cc230e5a9b selectorsWithArgs: (for squeak)
james
parents: 6140
diff changeset
   861
    ^ self selectors 
42cc230e5a9b selectorsWithArgs: (for squeak)
james
parents: 6140
diff changeset
   862
        select:[:sel | sel numArgs == numberOfArgs]
42cc230e5a9b selectorsWithArgs: (for squeak)
james
parents: 6140
diff changeset
   863
42cc230e5a9b selectorsWithArgs: (for squeak)
james
parents: 6140
diff changeset
   864
    "
42cc230e5a9b selectorsWithArgs: (for squeak)
james
parents: 6140
diff changeset
   865
     SmallInteger selectorsWithArgs:0  
42cc230e5a9b selectorsWithArgs: (for squeak)
james
parents: 6140
diff changeset
   866
     SmallInteger selectorsWithArgs:2  
42cc230e5a9b selectorsWithArgs: (for squeak)
james
parents: 6140
diff changeset
   867
     SmallInteger selectorsWithArgs:3
42cc230e5a9b selectorsWithArgs: (for squeak)
james
parents: 6140
diff changeset
   868
     SmallInteger selectorsWithArgs:4  
42cc230e5a9b selectorsWithArgs: (for squeak)
james
parents: 6140
diff changeset
   869
    "
4889
aa8f6b9f7e28 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4851
diff changeset
   870
! !
aa8f6b9f7e28 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4851
diff changeset
   871
7269
f1e3ab435963 method category rename
Claus Gittinger <cg@exept.de>
parents: 7260
diff changeset
   872
!Behavior methodsFor:'Compatibility-VW'!
5964
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5917
diff changeset
   873
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5917
diff changeset
   874
>> aSelector
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5917
diff changeset
   875
    "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
   876
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5917
diff changeset
   877
    ^ self compiledMethodAt:aSelector
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5917
diff changeset
   878
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5917
diff changeset
   879
    "
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5917
diff changeset
   880
     self compiledMethodAt:#compiledMethodAt:
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5917
diff changeset
   881
     self >> #compiledMethodAt:
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5917
diff changeset
   882
    "
6115
b1af45aca054 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6104
diff changeset
   883
!
b1af45aca054 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6104
diff changeset
   884
b1af45aca054 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6104
diff changeset
   885
fixedFieldsMask
b1af45aca054 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6104
diff changeset
   886
    "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
   887
     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
   888
b1af45aca054 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6104
diff changeset
   889
    ^ 255
b1af45aca054 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6104
diff changeset
   890
b1af45aca054 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6104
diff changeset
   891
!
b1af45aca054 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6104
diff changeset
   892
b1af45aca054 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6104
diff changeset
   893
format
b1af45aca054 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6104
diff changeset
   894
    "Answer an Integer that encodes the kinds and numbers of
b1af45aca054 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6104
diff changeset
   895
    variables of instances of the receiver.
b1af45aca054 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6104
diff changeset
   896
b1af45aca054 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6104
diff changeset
   897
    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
   898
    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
   899
    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
   900
    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
   901
b1af45aca054 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6104
diff changeset
   902
    "/ simulate a VW5i mask
b1af45aca054 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6104
diff changeset
   903
b1af45aca054 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6104
diff changeset
   904
    ^ (self instSize
b1af45aca054 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6104
diff changeset
   905
      bitOr:( self isPointers ifTrue:[16384] ifFalse:[0]))
b1af45aca054 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6104
diff changeset
   906
      bitOr:( self isVariable ifTrue:[ 4096] ifFalse:[0])
b1af45aca054 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6104
diff changeset
   907
b1af45aca054 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6104
diff changeset
   908
!
b1af45aca054 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6104
diff changeset
   909
b1af45aca054 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6104
diff changeset
   910
instanceBehavior
b1af45aca054 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6104
diff changeset
   911
    "Answer the instance behavior of the receiver. 
b1af45aca054 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6104
diff changeset
   912
     This is the receiver for non metaclasses. 
b1af45aca054 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6104
diff changeset
   913
     Metaclass overrides this to answer a Metaclass's sole instance.
b1af45aca054 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6104
diff changeset
   914
     Same as #theNonMetaclass - for VW compatibility
b1af45aca054 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6104
diff changeset
   915
    "
b1af45aca054 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6104
diff changeset
   916
b1af45aca054 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6104
diff changeset
   917
    ^ self theNonMetaclass
b1af45aca054 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6104
diff changeset
   918
6968
5eb367934349 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6931
diff changeset
   919
!
5eb367934349 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6931
diff changeset
   920
5eb367934349 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6931
diff changeset
   921
shortName
5eb367934349 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6931
diff changeset
   922
    ^ self nameWithoutPrefix
5964
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5917
diff changeset
   923
! !
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5917
diff changeset
   924
4851
ff6ecefce66f skip namespaces in #allSubclasses / #withAllSubclasses
ca
parents: 4738
diff changeset
   925
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   926
!Behavior methodsFor:'accessing'!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   927
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   928
addSelector:newSelector withLazyMethod:newMethod
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   929
    "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
   930
     1st argument to the methodDictionary. 
a4378f483a86 pass original method as changeArg when doing method changes;
Claus Gittinger <cg@exept.de>
parents: 662
diff changeset
   931
     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
   932
     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
   933
a4378f483a86 pass original method as changeArg when doing method changes;
Claus Gittinger <cg@exept.de>
parents: 662
diff changeset
   934
    |oldMethod|
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   935
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   936
    newMethod isLazyMethod ifFalse:[
2666
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   937
	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
   938
	^ false
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   939
    ].
734
a4378f483a86 pass original method as changeArg when doing method changes;
Claus Gittinger <cg@exept.de>
parents: 662
diff changeset
   940
    oldMethod := self compiledMethodAt:newSelector.
a4378f483a86 pass original method as changeArg when doing method changes;
Claus Gittinger <cg@exept.de>
parents: 662
diff changeset
   941
    "/
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   942
    "/ 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
   943
    "/ 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
   944
    "/
a4378f483a86 pass original method as changeArg when doing method changes;
Claus Gittinger <cg@exept.de>
parents: 662
diff changeset
   945
    oldMethod notNil ifTrue:[
2666
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   946
	newMethod privacy:(oldMethod privacy).
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   947
	newMethod restricted:(oldMethod isRestricted).
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   948
	ObjectMemory flushCaches
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   949
    ].
734
a4378f483a86 pass original method as changeArg when doing method changes;
Claus Gittinger <cg@exept.de>
parents: 662
diff changeset
   950
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   951
    (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
   952
	"/
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   953
	"/ 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
   954
	"/ - 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
   955
	"/
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   956
	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
   957
	"/
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   958
	"/ 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
   959
	"/ 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
   960
	"/ 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
   961
	"/ - 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
   962
	"/
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   963
	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
   964
	^ true
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   965
    ].
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   966
    ^ false
734
a4378f483a86 pass original method as changeArg when doing method changes;
Claus Gittinger <cg@exept.de>
parents: 662
diff changeset
   967
2095
fa85d9f387ac beside notifying a self-changed,
Claus Gittinger <cg@exept.de>
parents: 2054
diff changeset
   968
    "Modified: 8.1.1997 / 23:02:10 / cg"
308
f04744ef7b5d *** empty log message ***
claus
parents: 295
diff changeset
   969
!
f04744ef7b5d *** empty log message ***
claus
parents: 295
diff changeset
   970
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   971
addSelector:newSelector withMethod:newMethod
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   972
    "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
   973
     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
   974
a4378f483a86 pass original method as changeArg when doing method changes;
Claus Gittinger <cg@exept.de>
parents: 662
diff changeset
   975
    |nargs oldMethod|
a4378f483a86 pass original method as changeArg when doing method changes;
Claus Gittinger <cg@exept.de>
parents: 662
diff changeset
   976
a4378f483a86 pass original method as changeArg when doing method changes;
Claus Gittinger <cg@exept.de>
parents: 662
diff changeset
   977
    oldMethod := self compiledMethodAt:newSelector.
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   978
    (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
   979
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   980
    "
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   981
     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
   982
     data for myself ... (actually, in any case all that needs
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   983
     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
   984
    "
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   985
"
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   986
    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
   987
	     a bit slow :-(
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   988
	     We need the hasSubclasses-info bit in Behavior; now
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   989
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   990
    self withAllSubclassesDo:[:aClass |
2666
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   991
	ObjectMemory flushInlineCachesFor:aClass withArgs:nargs.
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
   992
	ObjectMemory flushMethodCacheFor:aClass
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   993
    ].
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   994
"
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   995
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   996
    nargs := newSelector numArgs.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   997
734
a4378f483a86 pass original method as changeArg when doing method changes;
Claus Gittinger <cg@exept.de>
parents: 662
diff changeset
   998
    ObjectMemory flushMethodCacheForSelector:newSelector.
a4378f483a86 pass original method as changeArg when doing method changes;
Claus Gittinger <cg@exept.de>
parents: 662
diff changeset
   999
"/    ObjectMemory flushMethodCache.
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1000
    ObjectMemory flushInlineCachesWithArgs:nargs.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1001
3805
d525b3acc091 flush cache first in addMethod - then do a change notification
Claus Gittinger <cg@exept.de>
parents: 3641
diff changeset
  1002
    oldMethod notNil ifTrue:[
d525b3acc091 flush cache first in addMethod - then do a change notification
Claus Gittinger <cg@exept.de>
parents: 3641
diff changeset
  1003
	newMethod privacy:(oldMethod privacy).
d525b3acc091 flush cache first in addMethod - then do a change notification
Claus Gittinger <cg@exept.de>
parents: 3641
diff changeset
  1004
	newMethod restricted:(oldMethod isRestricted).
d525b3acc091 flush cache first in addMethod - then do a change notification
Claus Gittinger <cg@exept.de>
parents: 3641
diff changeset
  1005
    ].
d525b3acc091 flush cache first in addMethod - then do a change notification
Claus Gittinger <cg@exept.de>
parents: 3641
diff changeset
  1006
d525b3acc091 flush cache first in addMethod - then do a change notification
Claus Gittinger <cg@exept.de>
parents: 3641
diff changeset
  1007
    "/
d525b3acc091 flush cache first in addMethod - then do a change notification
Claus Gittinger <cg@exept.de>
parents: 3641
diff changeset
  1008
    "/ 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
  1009
    "/ - 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
  1010
    "/
d525b3acc091 flush cache first in addMethod - then do a change notification
Claus Gittinger <cg@exept.de>
parents: 3641
diff changeset
  1011
    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
  1012
d525b3acc091 flush cache first in addMethod - then do a change notification
Claus Gittinger <cg@exept.de>
parents: 3641
diff changeset
  1013
    "/
d525b3acc091 flush cache first in addMethod - then do a change notification
Claus Gittinger <cg@exept.de>
parents: 3641
diff changeset
  1014
    "/ 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
  1015
    "/ 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
  1016
    "/ 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
  1017
    "/ - 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
  1018
    "/
d525b3acc091 flush cache first in addMethod - then do a change notification
Claus Gittinger <cg@exept.de>
parents: 3641
diff changeset
  1019
    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
  1020
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1021
    ^ true
734
a4378f483a86 pass original method as changeArg when doing method changes;
Claus Gittinger <cg@exept.de>
parents: 662
diff changeset
  1022
a4378f483a86 pass original method as changeArg when doing method changes;
Claus Gittinger <cg@exept.de>
parents: 662
diff changeset
  1023
    "Created: 11.12.1995 / 13:59:37 / cg"
2095
fa85d9f387ac beside notifying a self-changed,
Claus Gittinger <cg@exept.de>
parents: 2054
diff changeset
  1024
    "Modified: 8.1.1997 / 22:43:13 / cg"
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1025
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1026
4598
7bfc7f7c4c07 classPool simulation
Claus Gittinger <cg@exept.de>
parents: 4579
diff changeset
  1027
classPool
7bfc7f7c4c07 classPool simulation
Claus Gittinger <cg@exept.de>
parents: 4579
diff changeset
  1028
    "return something which allows access to my classVariables via
7bfc7f7c4c07 classPool simulation
Claus Gittinger <cg@exept.de>
parents: 4579
diff changeset
  1029
     #at: and #at:put: messages."
7bfc7f7c4c07 classPool simulation
Claus Gittinger <cg@exept.de>
parents: 4579
diff changeset
  1030
7bfc7f7c4c07 classPool simulation
Claus Gittinger <cg@exept.de>
parents: 4579
diff changeset
  1031
    ^ SimulatedClassPool new setClass:self
7bfc7f7c4c07 classPool simulation
Claus Gittinger <cg@exept.de>
parents: 4579
diff changeset
  1032
7bfc7f7c4c07 classPool simulation
Claus Gittinger <cg@exept.de>
parents: 4579
diff changeset
  1033
    "
7bfc7f7c4c07 classPool simulation
Claus Gittinger <cg@exept.de>
parents: 4579
diff changeset
  1034
     Button classPool
7bfc7f7c4c07 classPool simulation
Claus Gittinger <cg@exept.de>
parents: 4579
diff changeset
  1035
    "
7bfc7f7c4c07 classPool simulation
Claus Gittinger <cg@exept.de>
parents: 4579
diff changeset
  1036
7bfc7f7c4c07 classPool simulation
Claus Gittinger <cg@exept.de>
parents: 4579
diff changeset
  1037
    "Modified: 17.10.1997 / 12:12:14 / cg"
7bfc7f7c4c07 classPool simulation
Claus Gittinger <cg@exept.de>
parents: 4579
diff changeset
  1038
!
7bfc7f7c4c07 classPool simulation
Claus Gittinger <cg@exept.de>
parents: 4579
diff changeset
  1039
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1040
displayString
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1041
    "although behaviors have no name, we return something
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1042
     useful here - there are many places (inspectors) where
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1043
     a classes name is asked for.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1044
     Implementing this message here allows instances of anonymous classes
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1045
     to show a reasonable name."
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1046
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1047
    ^ 'someBehavior'
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1048
!
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
flags
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1051
    "return the receivers flag bits"
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1052
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1053
    ^ flags
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1054
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1055
3327
5efc0a1f0e2c Add #getMethodDictionary (ST80)
Stefan Vogel <sv@exept.de>
parents: 3237
diff changeset
  1056
getMethodDictionary
5efc0a1f0e2c Add #getMethodDictionary (ST80)
Stefan Vogel <sv@exept.de>
parents: 3237
diff changeset
  1057
    "ST 80 compatibility: return the receivers method dictionary."
5efc0a1f0e2c Add #getMethodDictionary (ST80)
Stefan Vogel <sv@exept.de>
parents: 3237
diff changeset
  1058
6395
2ad7a8e870ab instance variables should only be accessed by getters/setters
Claus Gittinger <cg@exept.de>
parents: 6329
diff changeset
  1059
    ^ self methodDictionary
3327
5efc0a1f0e2c Add #getMethodDictionary (ST80)
Stefan Vogel <sv@exept.de>
parents: 3237
diff changeset
  1060
5efc0a1f0e2c Add #getMethodDictionary (ST80)
Stefan Vogel <sv@exept.de>
parents: 3237
diff changeset
  1061
    "Modified: / 6.3.1998 / 15:45:50 / stefan"
5efc0a1f0e2c Add #getMethodDictionary (ST80)
Stefan Vogel <sv@exept.de>
parents: 3237
diff changeset
  1062
!
5efc0a1f0e2c Add #getMethodDictionary (ST80)
Stefan Vogel <sv@exept.de>
parents: 3237
diff changeset
  1063
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1064
instSize
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1065
    "return the number of instance variables of the receiver.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1066
     This includes all superclass instance variables."
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1067
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1068
    ^ instSize
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1069
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1070
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1071
methodDictionary
1634
9ce0afb7f089 commentary
Claus Gittinger <cg@exept.de>
parents: 1514
diff changeset
  1072
    "return the receivers method dictionary."
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1073
1494
dab70fc90ebc Remove old methodArray and selectorArray stuff (use MethodDictionary only).
Stefan Vogel <sv@exept.de>
parents: 1461
diff changeset
  1074
    ^ methodDictionary
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  1075
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  1076
    "Modified: 12.6.1996 / 13:47:08 / stefan"
1634
9ce0afb7f089 commentary
Claus Gittinger <cg@exept.de>
parents: 1514
diff changeset
  1077
    "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
  1078
!
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  1079
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  1080
methodDictionary:dict
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  1081
    "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
  1082
1814
fdaf647b5086 check for nil methodDict
Claus Gittinger <cg@exept.de>
parents: 1760
diff changeset
  1083
    dict isNil ifTrue:[
5484
7dbf2507f262 halt vs. error
Claus Gittinger <cg@exept.de>
parents: 5428
diff changeset
  1084
        self error:'attempt to set methodDictionary to nil.' mayProceed:true.
7dbf2507f262 halt vs. error
Claus Gittinger <cg@exept.de>
parents: 5428
diff changeset
  1085
        ^ self
1814
fdaf647b5086 check for nil methodDict
Claus Gittinger <cg@exept.de>
parents: 1760
diff changeset
  1086
    ].
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  1087
    self setMethodDictionary:dict.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  1088
    ObjectMemory flushCaches.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  1089
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  1090
    "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
  1091
    "Modified: 7.6.1996 / 08:39:51 / stefan"
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1092
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1093
7605
945a2cd8115c moved some stuff from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7435
diff changeset
  1094
package
945a2cd8115c moved some stuff from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7435
diff changeset
  1095
    "for protocol compatibility with class"
945a2cd8115c moved some stuff from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7435
diff changeset
  1096
945a2cd8115c moved some stuff from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7435
diff changeset
  1097
    ^ ''
945a2cd8115c moved some stuff from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7435
diff changeset
  1098
!
945a2cd8115c moved some stuff from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7435
diff changeset
  1099
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1100
removeSelector:aSelector
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1101
    "remove the selector, aSelector and its associated method 
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1102
     from the methodDictionary"
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1103
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  1104
    |dict newDict|
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  1105
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  1106
    dict := self methodDictionary.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  1107
    newDict := dict removeKeyAndCompress:aSelector.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  1108
    newDict isNil ifTrue:[ 
1494
dab70fc90ebc Remove old methodArray and selectorArray stuff (use MethodDictionary only).
Stefan Vogel <sv@exept.de>
parents: 1461
diff changeset
  1109
	^ false.
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  1110
    ].
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  1111
    self setMethodDictionary:newDict.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  1112
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1113
"
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1114
    [
1494
dab70fc90ebc Remove old methodArray and selectorArray stuff (use MethodDictionary only).
Stefan Vogel <sv@exept.de>
parents: 1461
diff changeset
  1115
	|nargs|
dab70fc90ebc Remove old methodArray and selectorArray stuff (use MethodDictionary only).
Stefan Vogel <sv@exept.de>
parents: 1461
diff changeset
  1116
	nargs := aSelector numArgs.
dab70fc90ebc Remove old methodArray and selectorArray stuff (use MethodDictionary only).
Stefan Vogel <sv@exept.de>
parents: 1461
diff changeset
  1117
	ObjectMemory flushMethodCache.
dab70fc90ebc Remove old methodArray and selectorArray stuff (use MethodDictionary only).
Stefan Vogel <sv@exept.de>
parents: 1461
diff changeset
  1118
	ObjectMemory flushInlineCachesWithArgs:nargs.
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1119
    ] value
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1120
"
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1121
    "
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1122
     actually, we would do better with less flushing ...
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
    ObjectMemory flushCaches.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1125
    ^ true
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  1126
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  1127
    "Modified: 12.6.1996 / 11:54:29 / stefan"
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1128
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1129
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1130
selectors
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1131
    "return the receivers selector array as an orderedCollection.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1132
     Notice: this may not be compatible with ST-80.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1133
     (should we return a Set ?)"
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1134
1814
fdaf647b5086 check for nil methodDict
Claus Gittinger <cg@exept.de>
parents: 1760
diff changeset
  1135
    |md|
fdaf647b5086 check for nil methodDict
Claus Gittinger <cg@exept.de>
parents: 1760
diff changeset
  1136
1967
e8a6fb1e14ce oops - iNil instead of isNil
Claus Gittinger <cg@exept.de>
parents: 1918
diff changeset
  1137
    (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
  1138
	'oops - nil methodDictionary' errorPrintCR.
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
  1139
	^ #()
1814
fdaf647b5086 check for nil methodDict
Claus Gittinger <cg@exept.de>
parents: 1760
diff changeset
  1140
    ].
fdaf647b5086 check for nil methodDict
Claus Gittinger <cg@exept.de>
parents: 1760
diff changeset
  1141
    ^ md keys
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  1142
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  1143
    "Modified: 7.6.1996 / 15:33:18 / stefan"
1967
e8a6fb1e14ce oops - iNil instead of isNil
Claus Gittinger <cg@exept.de>
parents: 1918
diff changeset
  1144
    "Modified: 12.11.1996 / 11:31:51 / cg"
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1145
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1146
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1147
superclass
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1148
    "return the receivers superclass"
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
    ^ superclass
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1151
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1152
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1153
superclass:aClass
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1154
    "set the superclass - this actually creates a new class,
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1155
     recompiling all methods for the new one. The receiving class stays
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1156
     around anonymous to allow existing instances some life.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1157
     This may change in the future (adjusting existing instances)"
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1158
2054
1601ad49cf59 care for nameSpace and owning class when changing the superClass.
Claus Gittinger <cg@exept.de>
parents: 2053
diff changeset
  1159
    |owner ns name|
1601ad49cf59 care for nameSpace and owning class when changing the superClass.
Claus Gittinger <cg@exept.de>
parents: 2053
diff changeset
  1160
7435
c5afb1b0fd1b Prepare for moving of SubclassInfo to subclass instcar in Class
Stefan Vogel <sv@exept.de>
parents: 7358
diff changeset
  1161
    Class flushSubclassInfo.
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1162
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1163
    "must flush caches since lookup chain changes"
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1164
    ObjectMemory flushCaches.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1165
2054
1601ad49cf59 care for nameSpace and owning class when changing the superClass.
Claus Gittinger <cg@exept.de>
parents: 2053
diff changeset
  1166
    "/ 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
  1167
    "/ 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
  1168
    "/ 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
  1169
1601ad49cf59 care for nameSpace and owning class when changing the superClass.
Claus Gittinger <cg@exept.de>
parents: 2053
diff changeset
  1170
    (owner := self owningClass) notNil ifTrue:[
7435
c5afb1b0fd1b Prepare for moving of SubclassInfo to subclass instcar in Class
Stefan Vogel <sv@exept.de>
parents: 7358
diff changeset
  1171
        ns := owner.
c5afb1b0fd1b Prepare for moving of SubclassInfo to subclass instcar in Class
Stefan Vogel <sv@exept.de>
parents: 7358
diff changeset
  1172
        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
  1173
    ] ifFalse:[
7435
c5afb1b0fd1b Prepare for moving of SubclassInfo to subclass instcar in Class
Stefan Vogel <sv@exept.de>
parents: 7358
diff changeset
  1174
        ns := Smalltalk.
c5afb1b0fd1b Prepare for moving of SubclassInfo to subclass instcar in Class
Stefan Vogel <sv@exept.de>
parents: 7358
diff changeset
  1175
        name := self name
2054
1601ad49cf59 care for nameSpace and owning class when changing the superClass.
Claus Gittinger <cg@exept.de>
parents: 2053
diff changeset
  1176
    ].
1601ad49cf59 care for nameSpace and owning class when changing the superClass.
Claus Gittinger <cg@exept.de>
parents: 2053
diff changeset
  1177
3628
5b58b3b8644a auto-keep package - when changing superclass
Claus Gittinger <cg@exept.de>
parents: 3623
diff changeset
  1178
    Class classRedefinitionSignal answer:#keep do:[
7435
c5afb1b0fd1b Prepare for moving of SubclassInfo to subclass instcar in Class
Stefan Vogel <sv@exept.de>
parents: 7358
diff changeset
  1179
        Class nameSpaceQuerySignal answer:ns
c5afb1b0fd1b Prepare for moving of SubclassInfo to subclass instcar in Class
Stefan Vogel <sv@exept.de>
parents: 7358
diff changeset
  1180
        do:[
c5afb1b0fd1b Prepare for moving of SubclassInfo to subclass instcar in Class
Stefan Vogel <sv@exept.de>
parents: 7358
diff changeset
  1181
            aClass 
c5afb1b0fd1b Prepare for moving of SubclassInfo to subclass instcar in Class
Stefan Vogel <sv@exept.de>
parents: 7358
diff changeset
  1182
                perform:(self definitionSelector) 
c5afb1b0fd1b Prepare for moving of SubclassInfo to subclass instcar in Class
Stefan Vogel <sv@exept.de>
parents: 7358
diff changeset
  1183
                withArguments:(Array with:name 
c5afb1b0fd1b Prepare for moving of SubclassInfo to subclass instcar in Class
Stefan Vogel <sv@exept.de>
parents: 7358
diff changeset
  1184
                               with:(self instanceVariableString) 
c5afb1b0fd1b Prepare for moving of SubclassInfo to subclass instcar in Class
Stefan Vogel <sv@exept.de>
parents: 7358
diff changeset
  1185
                               with:(self classVariableString)
c5afb1b0fd1b Prepare for moving of SubclassInfo to subclass instcar in Class
Stefan Vogel <sv@exept.de>
parents: 7358
diff changeset
  1186
                               with:'' "/ pool 
c5afb1b0fd1b Prepare for moving of SubclassInfo to subclass instcar in Class
Stefan Vogel <sv@exept.de>
parents: 7358
diff changeset
  1187
                               with:(self category)).
c5afb1b0fd1b Prepare for moving of SubclassInfo to subclass instcar in Class
Stefan Vogel <sv@exept.de>
parents: 7358
diff changeset
  1188
        ]
2054
1601ad49cf59 care for nameSpace and owning class when changing the superClass.
Claus Gittinger <cg@exept.de>
parents: 2053
diff changeset
  1189
    ]
2436
dbea519857e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
  1190
3628
5b58b3b8644a auto-keep package - when changing superclass
Claus Gittinger <cg@exept.de>
parents: 3623
diff changeset
  1191
    "Modified: / 20.6.1998 / 18:17:37 / cg"
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1192
! !
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1193
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1194
!Behavior methodsFor:'autoload check'!
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
autoload
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1197
    "force autoloading - do nothing here; 
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1198
     redefined in Autoload; see comment there"
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
    ^ self
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
isLoaded
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1204
    "return true, if the class has been loaded; 
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1205
     redefined in Autoload; see comment there"
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1206
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1207
    ^ true
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  1208
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  1209
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  1210
wasAutoloaded
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  1211
    "return true, if this class came into the system via an
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  1212
     autoload; false otherwise.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  1213
     Returning false here. This allows different Behavior-like objects
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  1214
     (alien classes) to be handled by the browser as well."
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  1215
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  1216
    ^ false
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  1217
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  1218
    "Created: 16.4.1996 / 16:27:16 / cg"
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1219
! !
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1220
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1221
!Behavior methodsFor:'binary storage'!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1222
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1223
binaryDefinitionFrom:stream manager:manager
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1224
    "sent during a binary read by the input manager.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1225
     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
  1226
     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
  1227
     return the new object."
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1228
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1229
    |obj t
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1230
     basicSize "{ Class: SmallInteger }" |
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1231
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1232
    self isPointers ifTrue: [
7358
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1233
        "/
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1234
        "/ inst size not needed - if you uncomment the line below,
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1235
        "/ also uncomment the corresponding line in
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1236
        "/ Object>>storeBinaryDefinitionOn:manager:
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1237
        "/
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1238
        "/ stream next. "skip instSize"
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1239
        self isVariable ifTrue: [
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1240
            ^ self basicNew:(stream nextNumber:3)
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1241
        ].
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1242
        ^ self basicNew
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1243
    ].
308
f04744ef7b5d *** empty log message ***
claus
parents: 295
diff changeset
  1244
f04744ef7b5d *** empty log message ***
claus
parents: 295
diff changeset
  1245
    "
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1246
     an object with bit-valued instance variables.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1247
     These are read here.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1248
    "
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1249
    basicSize := stream nextNumber:4.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1250
    obj := self basicNew:basicSize.
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
    self isBytes ifTrue: [
7358
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1253
        stream nextBytes:basicSize into:obj
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1254
    ] ifFalse: [
7358
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1255
        self isWords ifTrue: [
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1256
            1 to:basicSize do:[:i |
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1257
                obj basicAt:i put:(stream nextNumber:2)
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1258
            ]
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1259
        ] ifFalse:[
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1260
            self isLongs ifTrue: [
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1261
                1 to:basicSize do:[:i |
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1262
                    obj basicAt:i put:(stream nextNumber:4)
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1263
                ]
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1264
            ] ifFalse:[
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1265
                self isFloats ifTrue: [
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1266
                    "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
  1267
                    t := ShortFloat basicNew.
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1268
                    1 to:basicSize do:[:i |
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1269
                        ShortFloat readBinaryIEEESingleFrom:stream into:t.
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1270
                        obj basicAt:i put: t
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1271
                    ]
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1272
                ] ifFalse:[
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1273
                    self isDoubles ifTrue: [
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1274
                        "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
  1275
                        t := Float basicNew.
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1276
                        1 to:basicSize do:[:i |
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1277
                            Float readBinaryIEEEDoubleFrom:stream into:t.
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1278
                            obj basicAt:i put: t
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1279
                        ]
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1280
                    ]
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1281
                ]
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1282
            ]
7df7aa75e77a reading short floats fixed
Claus Gittinger <cg@exept.de>
parents: 7331
diff changeset
  1283
        ]
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1284
    ].
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1285
    ^obj
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1286
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1287
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1288
canCloneFrom:anObject 
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1289
    "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
  1290
     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
  1291
     be converted, should redefine this method to return false.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1292
     (However, conversion is never done silently in a binary load; you
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1293
      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
  1294
      request signal.)"
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1295
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1296
    ^ true
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1297
!
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
cloneFrom:aPrototype
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1300
    "return an instance of myself with variables initialized from
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1301
     a prototype. This is used when instances of obsolete classes are
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1302
     binary loaded and a conversion is done on the obsolete object. 
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1303
     UserClasses may redefine this for better conversions."
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1304
4738
fe2a0f7d585e Remove unused method vars.
Stefan Vogel <sv@exept.de>
parents: 4728
diff changeset
  1305
    |newInst indexed|
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1306
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1307
    indexed := false.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1308
    aPrototype class isVariable ifTrue:[
5321
c21a89ffdea4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5297
diff changeset
  1309
	self isVariable ifTrue:[
c21a89ffdea4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5297
diff changeset
  1310
	    indexed := true.
c21a89ffdea4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5297
diff changeset
  1311
	].
c21a89ffdea4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5297
diff changeset
  1312
	"otherwise, these are lost ..."
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1313
    ].
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1314
    indexed ifTrue:[
5321
c21a89ffdea4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5297
diff changeset
  1315
	newInst := self basicNew:aPrototype basicSize
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1316
    ] ifFalse:[
5321
c21a89ffdea4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5297
diff changeset
  1317
	newInst := self basicNew
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1318
    ].
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1319
4692
055edf6e95af Redefine #cloneFrom: using #cloneInstanceVariablesFrom:.
Stefan Vogel <sv@exept.de>
parents: 4682
diff changeset
  1320
    newInst cloneInstanceVariablesFrom:aPrototype.
055edf6e95af Redefine #cloneFrom: using #cloneInstanceVariablesFrom:.
Stefan Vogel <sv@exept.de>
parents: 4682
diff changeset
  1321
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1322
    ^ newInst
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1323
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1324
    "
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1325
     Class withoutUpdatingChangesDo:[
5321
c21a89ffdea4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5297
diff changeset
  1326
	 Point subclass:#Point3D
c21a89ffdea4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5297
diff changeset
  1327
	   instanceVariableNames:'z'
c21a89ffdea4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5297
diff changeset
  1328
	   classVariableNames:''
c21a89ffdea4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5297
diff changeset
  1329
	   poolDictionaries:''
c21a89ffdea4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5297
diff changeset
  1330
	   category:'testing'.
c21a89ffdea4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5297
diff changeset
  1331
	 (Point3D cloneFrom:1@2) inspect.
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1332
     ]
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1333
    "
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
    "
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1336
     Class withoutUpdatingChangesDo:[
5321
c21a89ffdea4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5297
diff changeset
  1337
	 Point variableSubclass:#Point3D
c21a89ffdea4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5297
diff changeset
  1338
	   instanceVariableNames:'z'
c21a89ffdea4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5297
diff changeset
  1339
	   classVariableNames:''
c21a89ffdea4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5297
diff changeset
  1340
	   poolDictionaries:''
c21a89ffdea4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5297
diff changeset
  1341
	   category:'testing'.
c21a89ffdea4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5297
diff changeset
  1342
	 (Point3D cloneFrom:#(1 2 3)) inspect.
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1343
     ]
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1344
    "
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
    "
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1347
     |someObject|
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
     Class withoutUpdatingChangesDo:[
5321
c21a89ffdea4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5297
diff changeset
  1350
	 Object subclass:#TestClass1 
c21a89ffdea4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5297
diff changeset
  1351
	   instanceVariableNames:'foo bar'
c21a89ffdea4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5297
diff changeset
  1352
	   classVariableNames:''
c21a89ffdea4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5297
diff changeset
  1353
	   poolDictionaries:''
c21a89ffdea4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5297
diff changeset
  1354
	   category:'testing'.
c21a89ffdea4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5297
diff changeset
  1355
	 someObject := TestClass1 new.
c21a89ffdea4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5297
diff changeset
  1356
	 someObject instVarAt:1 put:'foo'; instVarAt:2 put:'bar'.
c21a89ffdea4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5297
diff changeset
  1357
	 Object subclass:#TestClass2 
c21a89ffdea4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5297
diff changeset
  1358
	   instanceVariableNames:'bar foo'
c21a89ffdea4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5297
diff changeset
  1359
	   classVariableNames:''
c21a89ffdea4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5297
diff changeset
  1360
	   poolDictionaries:''
c21a89ffdea4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5297
diff changeset
  1361
	   category:'testing'.
c21a89ffdea4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5297
diff changeset
  1362
	 (TestClass2 cloneFrom:someObject) inspect.
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
    "
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1365
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1366
6889
7efa6d375ef7 +fromBinaryStoreBytes; +fromString.
Claus Gittinger <cg@exept.de>
parents: 6865
diff changeset
  1367
fromBinaryStoreBytes:bytes
7efa6d375ef7 +fromBinaryStoreBytes; +fromString.
Claus Gittinger <cg@exept.de>
parents: 6865
diff changeset
  1368
    ^ self readBinaryFrom:(bytes readStream)
7efa6d375ef7 +fromBinaryStoreBytes; +fromString.
Claus Gittinger <cg@exept.de>
parents: 6865
diff changeset
  1369
7efa6d375ef7 +fromBinaryStoreBytes; +fromString.
Claus Gittinger <cg@exept.de>
parents: 6865
diff changeset
  1370
    "
7efa6d375ef7 +fromBinaryStoreBytes; +fromString.
Claus Gittinger <cg@exept.de>
parents: 6865
diff changeset
  1371
     Object fromBinaryStoreBytes:
7efa6d375ef7 +fromBinaryStoreBytes; +fromString.
Claus Gittinger <cg@exept.de>
parents: 6865
diff changeset
  1372
        #[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
  1373
    "
7efa6d375ef7 +fromBinaryStoreBytes; +fromString.
Claus Gittinger <cg@exept.de>
parents: 6865
diff changeset
  1374
!
7efa6d375ef7 +fromBinaryStoreBytes; +fromString.
Claus Gittinger <cg@exept.de>
parents: 6865
diff changeset
  1375
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1376
readBinaryFrom:aStream
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1377
    "read an objects binary representation from the argument,
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1378
     aStream and return it. 
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1379
     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
  1380
     To get any object, use 'Object readBinaryFrom:...',
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1381
     To get any number, use 'Number readBinaryFrom:...' and so on.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1382
     This is the reverse operation to 'storeBinaryOn:'. "
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
    ^ self readBinaryFrom:aStream onError:[self error:('expected ' , self name)]
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
    "
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1387
     |s|
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1388
     s := WriteStream on:(ByteArray new).
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1389
     #(1 2 3 4) storeBinaryOn:s.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1390
     Object readBinaryFrom:(ReadStream on:s contents)  
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1391
    "
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1392
    "
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1393
     |s|
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1394
     s := 'testFile' asFilename writeStream binary.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1395
     #(1 2 3 4) storeBinaryOn:s.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1396
     'hello world' storeBinaryOn:s.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1397
     s close.
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
     s := 'testFile' asFilename readStream binary.
1422
9a0b792f2953 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1383
diff changeset
  1400
     Transcript showCR:(Object readBinaryFrom:s).
9a0b792f2953 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1383
diff changeset
  1401
     Transcript showCR:(Object readBinaryFrom:s).
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1402
     s close.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1403
    "
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1404
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1405
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1406
readBinaryFrom:aStream onError:exceptionBlock
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1407
    "read an objects binary representation from the argument,
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1408
     aStream and return it. 
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1409
     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
  1410
     the exceptionBlock is returned.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1411
     To get any object, use 'Object readBinaryFrom:...',
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1412
     To get any number, use 'Number readBinaryFrom:...' and so on.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1413
     This is the reverse operation to 'storeBinaryOn:'. "
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
    |newObject|
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1416
3069
9a25834a3ef7 tuned binaryStorage
Claus Gittinger <cg@exept.de>
parents: 3053
diff changeset
  1417
    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
  1418
    (self ~~ Object
b46ca5e3f1ec allow readBinaryFrom ... to return a nonObject, if sent to
Claus Gittinger <cg@exept.de>
parents: 1832
diff changeset
  1419
     and:[(newObject isKindOf:self) not]) ifTrue:[^ exceptionBlock value].
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1420
    ^ newObject
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1421
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1422
    "
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1423
     |s|
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1424
     s := WriteStream on:(ByteArray new).
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1425
     #(1 2 3 4) storeBinaryOn:s.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1426
     Object readBinaryFrom:(ReadStream on:s contents) onError:['oops'] 
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1427
    "
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1428
    "
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1429
     |s|
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1430
     s := WriteStream on:(ByteArray new).
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1431
     #[1 2 3 4] storeBinaryOn:s.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1432
     Array readBinaryFrom:(ReadStream on:s contents)  onError:['oops']  
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1433
    "
1834
b46ca5e3f1ec allow readBinaryFrom ... to return a nonObject, if sent to
Claus Gittinger <cg@exept.de>
parents: 1832
diff changeset
  1434
3069
9a25834a3ef7 tuned binaryStorage
Claus Gittinger <cg@exept.de>
parents: 3053
diff changeset
  1435
    "Modified: / 1.11.1997 / 16:53:36 / cg"
620
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
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1438
storeBinaryDefinitionOn: stream manager: manager
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1439
    "binary store of a classes definition.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1440
     Classes will store the name only and restore by looking for
1259
8c62958114ad commentary
Claus Gittinger <cg@exept.de>
parents: 1192
diff changeset
  1441
     that name in the Smalltalk dictionary.
2463
b0937b570306 save strings in one write (binary storage)
Claus Gittinger <cg@exept.de>
parents: 2455
diff changeset
  1442
     This is an internal interface for the binary storage mechanism."
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1443
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1444
    | myName |
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1445
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1446
    myName := self name.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1447
    stream nextNumber:4 put:self signature.
2463
b0937b570306 save strings in one write (binary storage)
Claus Gittinger <cg@exept.de>
parents: 2455
diff changeset
  1448
    stream nextNumber:2 put:0.              "/ no instVarNames string here
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1449
    stream nextNumber:2 put:myName size.
2463
b0937b570306 save strings in one write (binary storage)
Claus Gittinger <cg@exept.de>
parents: 2455
diff changeset
  1450
    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
  1451
"/    myName do:[:c| 
b0937b570306 save strings in one write (binary storage)
Claus Gittinger <cg@exept.de>
parents: 2455
diff changeset
  1452
"/        stream nextPut:c asciiValue
b0937b570306 save strings in one write (binary storage)
Claus Gittinger <cg@exept.de>
parents: 2455
diff changeset
  1453
"/    ]
620
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
     |s|
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1457
     s := WriteStream on:ByteArray new.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1458
     #(1 2 3 4) storeBinaryOn:s.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1459
     Object readBinaryFrom:(ReadStream on:s contents)  
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1460
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1461
     |s|
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1462
     s := WriteStream on:ByteArray new.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1463
     Rectangle storeBinaryOn:s.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1464
     Object readBinaryFrom:(ReadStream on:s contents)  
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1465
    "
1259
8c62958114ad commentary
Claus Gittinger <cg@exept.de>
parents: 1192
diff changeset
  1466
2463
b0937b570306 save strings in one write (binary storage)
Claus Gittinger <cg@exept.de>
parents: 2455
diff changeset
  1467
    "Modified: 19.3.1997 / 19:49:59 / cg"
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1468
! !
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1469
7331
cd0f1492d540 code motion from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7269
diff changeset
  1470
!Behavior methodsFor:'compiler interface'!
cd0f1492d540 code motion from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7269
diff changeset
  1471
7605
945a2cd8115c moved some stuff from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7435
diff changeset
  1472
browserClass
945a2cd8115c moved some stuff from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7435
diff changeset
  1473
    "return the browser to use for this class - 
945a2cd8115c moved some stuff from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7435
diff changeset
  1474
     this can be redefined in special classes, to get different browsers"
945a2cd8115c moved some stuff from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7435
diff changeset
  1475
945a2cd8115c moved some stuff from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7435
diff changeset
  1476
    ^ self class browserClass.
945a2cd8115c moved some stuff from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7435
diff changeset
  1477
!
945a2cd8115c moved some stuff from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7435
diff changeset
  1478
945a2cd8115c moved some stuff from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7435
diff changeset
  1479
compilerClass
945a2cd8115c moved some stuff from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7435
diff changeset
  1480
    "return the compiler to use for this class - 
945a2cd8115c moved some stuff from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7435
diff changeset
  1481
     this can be redefined in special classes, to compile classes with
945a2cd8115c moved some stuff from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7435
diff changeset
  1482
     Lisp, Prolog, ASN1, Basic :-) or whatever syntax."
945a2cd8115c moved some stuff from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7435
diff changeset
  1483
945a2cd8115c moved some stuff from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7435
diff changeset
  1484
    ^ self class compilerClass.
945a2cd8115c moved some stuff from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7435
diff changeset
  1485
!
945a2cd8115c moved some stuff from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7435
diff changeset
  1486
7331
cd0f1492d540 code motion from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7269
diff changeset
  1487
evaluatorClass
cd0f1492d540 code motion from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7269
diff changeset
  1488
    "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
  1489
     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
  1490
     Lisp, Prolog, ASN1, Basic :-) or whatever syntax."
cd0f1492d540 code motion from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7269
diff changeset
  1491
cd0f1492d540 code motion from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7269
diff changeset
  1492
    ^ self class evaluatorClass.
7605
945a2cd8115c moved some stuff from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7435
diff changeset
  1493
!
945a2cd8115c moved some stuff from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7435
diff changeset
  1494
945a2cd8115c moved some stuff from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7435
diff changeset
  1495
formatterClass
945a2cd8115c moved some stuff from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7435
diff changeset
  1496
    "return the parser to use for formatting (prettyPrinting) this class - 
945a2cd8115c moved some stuff from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7435
diff changeset
  1497
     this can be redefined in special classes, to format classes with
945a2cd8115c moved some stuff from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7435
diff changeset
  1498
     Lisp, Prolog, ASN1, Basic :-) or whatever syntax."
945a2cd8115c moved some stuff from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7435
diff changeset
  1499
945a2cd8115c moved some stuff from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7435
diff changeset
  1500
    ^ self class formatterClass.
945a2cd8115c moved some stuff from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7435
diff changeset
  1501
!
945a2cd8115c moved some stuff from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7435
diff changeset
  1502
945a2cd8115c moved some stuff from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7435
diff changeset
  1503
parserClass
945a2cd8115c moved some stuff from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7435
diff changeset
  1504
    "return the parser to use for parsing this class - 
945a2cd8115c moved some stuff from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7435
diff changeset
  1505
     this can be redefined in special classes, to parse classes with
945a2cd8115c moved some stuff from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7435
diff changeset
  1506
     Lisp, Prolog, ASN1, Basic :-) or whatever syntax."
945a2cd8115c moved some stuff from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7435
diff changeset
  1507
945a2cd8115c moved some stuff from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7435
diff changeset
  1508
    ^ self class parserClass.
945a2cd8115c moved some stuff from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7435
diff changeset
  1509
!
945a2cd8115c moved some stuff from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7435
diff changeset
  1510
945a2cd8115c moved some stuff from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7435
diff changeset
  1511
subclassDefinerClass
945a2cd8115c moved some stuff from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7435
diff changeset
  1512
    "Answer an evaluator class appropriate for evaluating definitions of new 
945a2cd8115c moved some stuff from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7435
diff changeset
  1513
     subclasses of this class."
945a2cd8115c moved some stuff from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7435
diff changeset
  1514
945a2cd8115c moved some stuff from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7435
diff changeset
  1515
    ^ self class subclassDefinerClass.
945a2cd8115c moved some stuff from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7435
diff changeset
  1516
!
945a2cd8115c moved some stuff from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7435
diff changeset
  1517
945a2cd8115c moved some stuff from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7435
diff changeset
  1518
syntaxHighlighterClass
945a2cd8115c moved some stuff from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7435
diff changeset
  1519
    "return the class to use for syntaxHighlighting (prettyPrinting) this class - 
945a2cd8115c moved some stuff from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7435
diff changeset
  1520
     this can be redefined in special classes, to highlight classes with
945a2cd8115c moved some stuff from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7435
diff changeset
  1521
     Lisp, Prolog, ASN1, Basic :-) or whatever syntax."
945a2cd8115c moved some stuff from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7435
diff changeset
  1522
945a2cd8115c moved some stuff from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7435
diff changeset
  1523
    ^ self class syntaxHighlighterClass.
7331
cd0f1492d540 code motion from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7269
diff changeset
  1524
! !
cd0f1492d540 code motion from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7269
diff changeset
  1525
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1526
!Behavior methodsFor:'copying'!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1527
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1528
deepCopyUsing:aDictionary
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1529
    "return a deep copy of the receiver
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1530
     - return the receiver here - time will show if this is ok"
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
    ^ self
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1533
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1534
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1535
simpleDeepCopy
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1536
    "return a deep copy of the receiver
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1537
     - return the receiver here - time will show if this is ok"
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
    ^ self
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1540
! !
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1541
1192
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  1542
!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
  1543
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  1544
addChangeRecordForClassRemove:aClassName
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  1545
     "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
  1546
      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
  1547
      (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
  1548
      (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
  1549
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  1550
    "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
  1551
    "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
  1552
! !
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
!Behavior methodsFor:'dummy fileOut'!
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  1555
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  1556
fileOutDefinitionOn:aStream
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  1557
    "dummy fileOut defined here.
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  1558
     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
  1559
     (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
  1560
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  1561
    ^ self
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  1562
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  1563
    "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
  1564
! !
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  1565
6596
76f5c57a8734 Encoding
Stefan Vogel <sv@exept.de>
parents: 6590
diff changeset
  1566
!Behavior methodsFor:'encoding'!
76f5c57a8734 Encoding
Stefan Vogel <sv@exept.de>
parents: 6590
diff changeset
  1567
76f5c57a8734 Encoding
Stefan Vogel <sv@exept.de>
parents: 6590
diff changeset
  1568
encodeOn:anEncoder with:aParameter
76f5c57a8734 Encoding
Stefan Vogel <sv@exept.de>
parents: 6590
diff changeset
  1569
76f5c57a8734 Encoding
Stefan Vogel <sv@exept.de>
parents: 6590
diff changeset
  1570
    anEncoder encodeBehavior:self with:aParameter
76f5c57a8734 Encoding
Stefan Vogel <sv@exept.de>
parents: 6590
diff changeset
  1571
! !
76f5c57a8734 Encoding
Stefan Vogel <sv@exept.de>
parents: 6590
diff changeset
  1572
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1573
!Behavior methodsFor:'enumerating'!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1574
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1575
allDerivedInstancesDo:aBlock
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1576
    "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
  1577
     This method is going to be removed for protocol compatibility with
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1578
     other STs; use allSubInstancesDo:"
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1579
5862
c0ca96f505d7 Use <resource:#obsolete>
Stefan Vogel <sv@exept.de>
parents: 5842
diff changeset
  1580
    <resource:#obsolete>
c0ca96f505d7 Use <resource:#obsolete>
Stefan Vogel <sv@exept.de>
parents: 5842
diff changeset
  1581
2823
eb6feef1dd12 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2809
diff changeset
  1582
    self obsoleteMethodWarning:'use #allSubInstancesDo:'.
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1583
    self allSubInstancesDo:aBlock
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1584
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1585
    "
1422
9a0b792f2953 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1383
diff changeset
  1586
     StandardSystemView allDerivedInstancesDo:[:v | Transcript showCR:(v name)]
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1587
    "
2823
eb6feef1dd12 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2809
diff changeset
  1588
eb6feef1dd12 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2809
diff changeset
  1589
    "Modified: 31.7.1997 / 23:05:04 / cg"
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1590
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1591
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1592
allInstancesDo:aBlock
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1593
    "evaluate aBlock for all of my instances"
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
    ObjectMemory allInstancesOf:self do:[:anObject |
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1596
	aBlock value:anObject
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1597
    ]
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
    "
1422
9a0b792f2953 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1383
diff changeset
  1600
     StandardSystemView allInstancesDo:[:v | Transcript showCR:(v name)]
620
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
5368
192acdc335e6 added #allSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 5327
diff changeset
  1604
allSelectorsAndMethodsDo:aTwoArgBlock
192acdc335e6 added #allSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 5327
diff changeset
  1605
    "evaluate the argument, aBlock for all selectors of mySelf and my metaclass,
192acdc335e6 added #allSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 5327
diff changeset
  1606
     passing the corresponding method as second argument"
192acdc335e6 added #allSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 5327
diff changeset
  1607
6076
2f75076b5597 renamed: #allSelectorsAndMethodsDo: into: #instAndClassSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 6030
diff changeset
  1608
    self obsoleteMethodWarning:'use #instAndClassSelectorsAndMethodsDo:'.
2f75076b5597 renamed: #allSelectorsAndMethodsDo: into: #instAndClassSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 6030
diff changeset
  1609
6022
112a2f86608d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6015
diff changeset
  1610
    self selectorsAndMethodsDo:aTwoArgBlock.
112a2f86608d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6015
diff changeset
  1611
    self class selectorsAndMethodsDo:aTwoArgBlock.
5368
192acdc335e6 added #allSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 5327
diff changeset
  1612
!
192acdc335e6 added #allSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 5327
diff changeset
  1613
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1614
allSubInstancesDo:aBlock
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1615
    "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
  1616
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1617
    ObjectMemory allObjectsDo:[:anObject |
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1618
	(anObject isKindOf:self) ifTrue:[
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1619
	    aBlock value:anObject
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
    ]
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1622
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1623
    "
1422
9a0b792f2953 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1383
diff changeset
  1624
     StandardSystemView allSubInstancesDo:[:v | Transcript showCR:(v name)]
620
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
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1628
allSubclassesDo:aBlock
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1629
    "evaluate aBlock for all of my subclasses.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1630
     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
  1631
     Warning:
5581
7bef1c75fb06 allBehaviors vs. allClasses
Claus Gittinger <cg@exept.de>
parents: 5561
diff changeset
  1632
        This will only enumerate globally known classes - for anonymous
7bef1c75fb06 allBehaviors vs. allClasses
Claus Gittinger <cg@exept.de>
parents: 5561
diff changeset
  1633
        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
  1634
6931
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1635
    self allSubclassesInOrderDo:aBlock
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1636
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1637
"/    self isMeta ifTrue:[
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1638
"/        "/ metaclasses are not found via Smalltalk allClassesDo:
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1639
"/        "/ here, walk over classes and enumerate corresponding metas.
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1640
"/        self soleInstance allSubclassesDo:[:aSubClass |
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1641
"/            aBlock value:(aSubClass class)
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1642
"/        ].
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1643
"/    ] ifFalse:[
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1644
"/        Smalltalk allClassesDo:[:aClass |
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1645
"/            (aClass isSubclassOf:self) ifTrue:[
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1646
"/                aBlock value:aClass
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1647
"/            ]
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1648
"/        ]
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1649
"/    ]
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1650
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1651
    "
1422
9a0b792f2953 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1383
diff changeset
  1652
     Collection allSubclassesDo:[:c | Transcript showCR:(c name)]
3053
d6aad366397f added #whichSelectorsReferTo: and #compiledMethodAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  1653
     Collection class allSubclassesDo:[:c | Transcript showCR:(c name)]
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1654
    "
3053
d6aad366397f added #whichSelectorsReferTo: and #compiledMethodAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  1655
d6aad366397f added #whichSelectorsReferTo: and #compiledMethodAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  1656
    "Modified: / 25.10.1997 / 21:17:13 / cg"
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1657
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1658
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1659
allSubclassesInOrderDo:aBlock
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1660
    "evaluate aBlock for all of my subclasses.
6931
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1661
     There is no specific order, in which the entries are enumerated.
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1662
     Warning:
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1663
        This will only enumerate globally known classes - for anonymous
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1664
        behaviors, you have to walk over all instances of Behavior."
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1665
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1666
    |meta toDo cls|
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1667
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1668
    meta := self isMeta.
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
    toDo := OrderedCollection new.
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1671
    toDo addAll:self theNonMetaclass subclasses.
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1672
    [toDo notEmpty] whileTrue:[
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1673
        cls := toDo removeFirst.
7435
c5afb1b0fd1b Prepare for moving of SubclassInfo to subclass instcar in Class
Stefan Vogel <sv@exept.de>
parents: 7358
diff changeset
  1674
        toDo addAll:cls subclasses.
6931
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1675
        meta ifTrue:[
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1676
            aBlock value:cls class.
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1677
        ] ifFalse:[
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1678
            aBlock value:cls.
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1679
        ]
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1680
    ].
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1681
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1682
"/    self isMeta ifTrue:[
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1683
"/        "/ metaclasses are not found via Smalltalk allClassesDo:
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1684
"/        "/ here, walk over classes and enumerate corresponding metas.
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1685
"/        self soleInstance allSubclassesDo:[:aSubClass |
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1686
"/            aBlock value:(aSubClass class)
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1687
"/        ].
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1688
"/    ] ifFalse:[
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1689
"/        Smalltalk allClassesDo:[:aClass |
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1690
"/            (aClass isSubclassOf:self) ifTrue:[
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1691
"/                aBlock value:aClass
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1692
"/            ]
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1693
"/        ]
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1694
"/    ]
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1695
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1696
    "
7435
c5afb1b0fd1b Prepare for moving of SubclassInfo to subclass instcar in Class
Stefan Vogel <sv@exept.de>
parents: 7358
diff changeset
  1697
     Collection allSubclassesInOrderDo:[:c | Transcript showCR:(c name)]
c5afb1b0fd1b Prepare for moving of SubclassInfo to subclass instcar in Class
Stefan Vogel <sv@exept.de>
parents: 7358
diff changeset
  1698
     Collection class allSubclassesInOrderDo:[:c | Transcript showCR:(c name)]
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1699
    "
6931
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1700
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  1701
    "Modified: / 25.10.1997 / 21:17:13 / cg"
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1702
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1703
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1704
allSuperclassesDo:aBlock
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1705
    "evaluate aBlock for all of my superclasses"
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
    |theClass|
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1708
6395
2ad7a8e870ab instance variables should only be accessed by getters/setters
Claus Gittinger <cg@exept.de>
parents: 6329
diff changeset
  1709
    theClass := self superclass.
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1710
    [theClass notNil] whileTrue:[
6395
2ad7a8e870ab instance variables should only be accessed by getters/setters
Claus Gittinger <cg@exept.de>
parents: 6329
diff changeset
  1711
        aBlock value:theClass.
2ad7a8e870ab instance variables should only be accessed by getters/setters
Claus Gittinger <cg@exept.de>
parents: 6329
diff changeset
  1712
        theClass := theClass superclass
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1713
    ]
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1714
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1715
    "
1422
9a0b792f2953 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1383
diff changeset
  1716
     String allSuperclassesDo:[:c | Transcript showCR:(c name)]
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
6076
2f75076b5597 renamed: #allSelectorsAndMethodsDo: into: #instAndClassSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 6030
diff changeset
  1720
instAndClassMethodsDo:aOneArgBlock
2f75076b5597 renamed: #allSelectorsAndMethodsDo: into: #instAndClassSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 6030
diff changeset
  1721
    "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
  1722
     (i.e. for both instance- and class methods)"
2f75076b5597 renamed: #allSelectorsAndMethodsDo: into: #instAndClassSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 6030
diff changeset
  1723
6395
2ad7a8e870ab instance variables should only be accessed by getters/setters
Claus Gittinger <cg@exept.de>
parents: 6329
diff changeset
  1724
    self theNonMetaclass methodsDo:aOneArgBlock.
2ad7a8e870ab instance variables should only be accessed by getters/setters
Claus Gittinger <cg@exept.de>
parents: 6329
diff changeset
  1725
    self theMetaclass    methodsDo:aOneArgBlock.
6076
2f75076b5597 renamed: #allSelectorsAndMethodsDo: into: #instAndClassSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 6030
diff changeset
  1726
!
2f75076b5597 renamed: #allSelectorsAndMethodsDo: into: #instAndClassSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 6030
diff changeset
  1727
2f75076b5597 renamed: #allSelectorsAndMethodsDo: into: #instAndClassSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 6030
diff changeset
  1728
instAndClassSelectorsAndMethodsDo:aTwoArgBlock
2f75076b5597 renamed: #allSelectorsAndMethodsDo: into: #instAndClassSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 6030
diff changeset
  1729
    "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
  1730
     passing the corresponding method as second argument"
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
    self selectorsAndMethodsDo:aTwoArgBlock.
2f75076b5597 renamed: #allSelectorsAndMethodsDo: into: #instAndClassSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 6030
diff changeset
  1733
    self class selectorsAndMethodsDo:aTwoArgBlock.
2f75076b5597 renamed: #allSelectorsAndMethodsDo: into: #instAndClassSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 6030
diff changeset
  1734
!
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
methodsDo:aOneArgBlock
2f75076b5597 renamed: #allSelectorsAndMethodsDo: into: #instAndClassSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 6030
diff changeset
  1737
    "evaluate the argument, aBlock for all my methods"
2f75076b5597 renamed: #allSelectorsAndMethodsDo: into: #instAndClassSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 6030
diff changeset
  1738
6395
2ad7a8e870ab instance variables should only be accessed by getters/setters
Claus Gittinger <cg@exept.de>
parents: 6329
diff changeset
  1739
    self methodDictionary do:aOneArgBlock
6076
2f75076b5597 renamed: #allSelectorsAndMethodsDo: into: #instAndClassSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 6030
diff changeset
  1740
2f75076b5597 renamed: #allSelectorsAndMethodsDo: into: #instAndClassSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 6030
diff changeset
  1741
    "
2f75076b5597 renamed: #allSelectorsAndMethodsDo: into: #instAndClassSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 6030
diff changeset
  1742
     UndefinedObject methodsDo:[:m | Transcript showCR:m whoString]
2f75076b5597 renamed: #allSelectorsAndMethodsDo: into: #instAndClassSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 6030
diff changeset
  1743
     UndefinedObject selectorsDo:[:sym | Transcript showCR:sym]
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
3053
d6aad366397f added #whichSelectorsReferTo: and #compiledMethodAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  1747
selectorsAndMethodsDo:aTwoArgBlock
5368
192acdc335e6 added #allSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 5327
diff changeset
  1748
    "evaluate the argument, aBlock for all my selectors,
3920
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  1749
     passing the corresponding method as second argument"
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  1750
6395
2ad7a8e870ab instance variables should only be accessed by getters/setters
Claus Gittinger <cg@exept.de>
parents: 6329
diff changeset
  1751
    self methodDictionary keysAndValuesDo:aTwoArgBlock
3053
d6aad366397f added #whichSelectorsReferTo: and #compiledMethodAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  1752
d6aad366397f added #whichSelectorsReferTo: and #compiledMethodAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  1753
    "Created: / 27.10.1997 / 14:09:27 / cg"
d6aad366397f added #whichSelectorsReferTo: and #compiledMethodAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  1754
!
d6aad366397f added #whichSelectorsReferTo: and #compiledMethodAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  1755
6076
2f75076b5597 renamed: #allSelectorsAndMethodsDo: into: #instAndClassSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 6030
diff changeset
  1756
selectorsDo:aOneArgBlock
2f75076b5597 renamed: #allSelectorsAndMethodsDo: into: #instAndClassSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 6030
diff changeset
  1757
    "evaluate the argument, aBlock for all my selectors"
2f75076b5597 renamed: #allSelectorsAndMethodsDo: into: #instAndClassSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 6030
diff changeset
  1758
6395
2ad7a8e870ab instance variables should only be accessed by getters/setters
Claus Gittinger <cg@exept.de>
parents: 6329
diff changeset
  1759
    self methodDictionary keysDo:aOneArgBlock
6076
2f75076b5597 renamed: #allSelectorsAndMethodsDo: into: #instAndClassSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 6030
diff changeset
  1760
!
2f75076b5597 renamed: #allSelectorsAndMethodsDo: into: #instAndClassSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 6030
diff changeset
  1761
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1762
subclassesDo:aBlock
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1763
    "evaluate the argument, aBlock for all immediate subclasses.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1764
     This will only enumerate globally known classes - for anonymous
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1765
     behaviors, you have to walk over all instances of Behavior."
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1766
7435
c5afb1b0fd1b Prepare for moving of SubclassInfo to subclass instcar in Class
Stefan Vogel <sv@exept.de>
parents: 7358
diff changeset
  1767
    "Do it the hard way. Subclasses redefine this"
5581
7bef1c75fb06 allBehaviors vs. allClasses
Claus Gittinger <cg@exept.de>
parents: 5561
diff changeset
  1768
    Smalltalk allClassesDo:[:aClass |
7bef1c75fb06 allBehaviors vs. allClasses
Claus Gittinger <cg@exept.de>
parents: 5561
diff changeset
  1769
        (aClass superclass == self) ifTrue:[
7bef1c75fb06 allBehaviors vs. allClasses
Claus Gittinger <cg@exept.de>
parents: 5561
diff changeset
  1770
            aBlock value:aClass
7bef1c75fb06 allBehaviors vs. allClasses
Claus Gittinger <cg@exept.de>
parents: 5561
diff changeset
  1771
        ]
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1772
    ]
5638
02e3fcf34e3a added #withAllSubclassesDo:
Claus Gittinger <cg@exept.de>
parents: 5636
diff changeset
  1773
!
02e3fcf34e3a added #withAllSubclassesDo:
Claus Gittinger <cg@exept.de>
parents: 5636
diff changeset
  1774
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  1775
whichClassSatisfies: aBlock 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  1776
    |superclass|
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  1777
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  1778
    (aBlock value: self) ifTrue: [^self].
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  1779
    superclass := self superclass.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  1780
    ^ superclass isNil 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  1781
                ifTrue: [nil]
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  1782
                ifFalse: [superclass whichClassSatisfies: aBlock]
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  1783
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  1784
5638
02e3fcf34e3a added #withAllSubclassesDo:
Claus Gittinger <cg@exept.de>
parents: 5636
diff changeset
  1785
withAllSubclassesDo:aBlock
02e3fcf34e3a added #withAllSubclassesDo:
Claus Gittinger <cg@exept.de>
parents: 5636
diff changeset
  1786
    "evaluate aBlock for mySelf and all of my subclasses.
02e3fcf34e3a added #withAllSubclassesDo:
Claus Gittinger <cg@exept.de>
parents: 5636
diff changeset
  1787
     There is no specific order, in which the entries are enumerated.
02e3fcf34e3a added #withAllSubclassesDo:
Claus Gittinger <cg@exept.de>
parents: 5636
diff changeset
  1788
     Warning:
02e3fcf34e3a added #withAllSubclassesDo:
Claus Gittinger <cg@exept.de>
parents: 5636
diff changeset
  1789
        This will only enumerate globally known classes - for anonymous
02e3fcf34e3a added #withAllSubclassesDo:
Claus Gittinger <cg@exept.de>
parents: 5636
diff changeset
  1790
        behaviors, you have to walk over all instances of Behavior."
02e3fcf34e3a added #withAllSubclassesDo:
Claus Gittinger <cg@exept.de>
parents: 5636
diff changeset
  1791
02e3fcf34e3a added #withAllSubclassesDo:
Claus Gittinger <cg@exept.de>
parents: 5636
diff changeset
  1792
    aBlock value:self.
02e3fcf34e3a added #withAllSubclassesDo:
Claus Gittinger <cg@exept.de>
parents: 5636
diff changeset
  1793
    self allSubclassesDo:aBlock
02e3fcf34e3a added #withAllSubclassesDo:
Claus Gittinger <cg@exept.de>
parents: 5636
diff changeset
  1794
02e3fcf34e3a added #withAllSubclassesDo:
Claus Gittinger <cg@exept.de>
parents: 5636
diff changeset
  1795
    "
02e3fcf34e3a added #withAllSubclassesDo:
Claus Gittinger <cg@exept.de>
parents: 5636
diff changeset
  1796
     Collection withAllSubclassesDo:[:c | Transcript showCR:(c name)]
02e3fcf34e3a added #withAllSubclassesDo:
Claus Gittinger <cg@exept.de>
parents: 5636
diff changeset
  1797
     Collection class withAllSubclassesDo:[:c | Transcript showCR:(c name)]
02e3fcf34e3a added #withAllSubclassesDo:
Claus Gittinger <cg@exept.de>
parents: 5636
diff changeset
  1798
    "
7435
c5afb1b0fd1b Prepare for moving of SubclassInfo to subclass instcar in Class
Stefan Vogel <sv@exept.de>
parents: 7358
diff changeset
  1799
!
c5afb1b0fd1b Prepare for moving of SubclassInfo to subclass instcar in Class
Stefan Vogel <sv@exept.de>
parents: 7358
diff changeset
  1800
c5afb1b0fd1b Prepare for moving of SubclassInfo to subclass instcar in Class
Stefan Vogel <sv@exept.de>
parents: 7358
diff changeset
  1801
withAllSuperclassesDo:aBlock
c5afb1b0fd1b Prepare for moving of SubclassInfo to subclass instcar in Class
Stefan Vogel <sv@exept.de>
parents: 7358
diff changeset
  1802
    "evaluate aBlock for the class and all of its superclasses"
c5afb1b0fd1b Prepare for moving of SubclassInfo to subclass instcar in Class
Stefan Vogel <sv@exept.de>
parents: 7358
diff changeset
  1803
c5afb1b0fd1b Prepare for moving of SubclassInfo to subclass instcar in Class
Stefan Vogel <sv@exept.de>
parents: 7358
diff changeset
  1804
    |theSuperClass|
c5afb1b0fd1b Prepare for moving of SubclassInfo to subclass instcar in Class
Stefan Vogel <sv@exept.de>
parents: 7358
diff changeset
  1805
c5afb1b0fd1b Prepare for moving of SubclassInfo to subclass instcar in Class
Stefan Vogel <sv@exept.de>
parents: 7358
diff changeset
  1806
    aBlock value:self.
c5afb1b0fd1b Prepare for moving of SubclassInfo to subclass instcar in Class
Stefan Vogel <sv@exept.de>
parents: 7358
diff changeset
  1807
    theSuperClass := self superclass.
c5afb1b0fd1b Prepare for moving of SubclassInfo to subclass instcar in Class
Stefan Vogel <sv@exept.de>
parents: 7358
diff changeset
  1808
    [theSuperClass notNil] whileTrue:[
c5afb1b0fd1b Prepare for moving of SubclassInfo to subclass instcar in Class
Stefan Vogel <sv@exept.de>
parents: 7358
diff changeset
  1809
        aBlock value:theSuperClass.
c5afb1b0fd1b Prepare for moving of SubclassInfo to subclass instcar in Class
Stefan Vogel <sv@exept.de>
parents: 7358
diff changeset
  1810
        theSuperClass := theSuperClass superclass
c5afb1b0fd1b Prepare for moving of SubclassInfo to subclass instcar in Class
Stefan Vogel <sv@exept.de>
parents: 7358
diff changeset
  1811
    ].
c5afb1b0fd1b Prepare for moving of SubclassInfo to subclass instcar in Class
Stefan Vogel <sv@exept.de>
parents: 7358
diff changeset
  1812
c5afb1b0fd1b Prepare for moving of SubclassInfo to subclass instcar in Class
Stefan Vogel <sv@exept.de>
parents: 7358
diff changeset
  1813
    "
c5afb1b0fd1b Prepare for moving of SubclassInfo to subclass instcar in Class
Stefan Vogel <sv@exept.de>
parents: 7358
diff changeset
  1814
     String withAllSuperclassesDo:[:each| Transcript showCR:each] 
c5afb1b0fd1b Prepare for moving of SubclassInfo to subclass instcar in Class
Stefan Vogel <sv@exept.de>
parents: 7358
diff changeset
  1815
    "
308
f04744ef7b5d *** empty log message ***
claus
parents: 295
diff changeset
  1816
! !
f04744ef7b5d *** empty log message ***
claus
parents: 295
diff changeset
  1817
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1818
!Behavior methodsFor:'initialization'!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1819
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1820
deinitialize
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1821
    "deinitialize is sent to a class before it is physically unloaded.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1822
     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
  1823
     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
  1824
     not visible to smalltalk (for example, release internal memory).
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1825
     The default action here is to do nothing."
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1826
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1827
    ^ self
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1828
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1829
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1830
initialize
442
65a11cda5e9e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 421
diff changeset
  1831
    "initialize is sent to a class either during startup,
65a11cda5e9e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 421
diff changeset
  1832
     (for all statically compiled-in classes) or after a class
65a11cda5e9e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 421
diff changeset
  1833
     has been loaded into the system (either bytecodes or machinecode).
65a11cda5e9e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 421
diff changeset
  1834
     The default action here is to do nothing."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1835
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1836
    ^ self
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1837
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1838
3442
d22afbb5864f added #initializeWithAllPrivateClasses
Claus Gittinger <cg@exept.de>
parents: 3411
diff changeset
  1839
initializeWithAllPrivateClasses
d22afbb5864f added #initializeWithAllPrivateClasses
Claus Gittinger <cg@exept.de>
parents: 3411
diff changeset
  1840
    "if implemented, send #initialize to myself and any private
d22afbb5864f added #initializeWithAllPrivateClasses
Claus Gittinger <cg@exept.de>
parents: 3411
diff changeset
  1841
     class which does so.
d22afbb5864f added #initializeWithAllPrivateClasses
Claus Gittinger <cg@exept.de>
parents: 3411
diff changeset
  1842
     This is sent to a class after it
d22afbb5864f added #initializeWithAllPrivateClasses
Claus Gittinger <cg@exept.de>
parents: 3411
diff changeset
  1843
     has been loaded into the system.
d22afbb5864f added #initializeWithAllPrivateClasses
Claus Gittinger <cg@exept.de>
parents: 3411
diff changeset
  1844
     Statically compiled classes are initialized by the VM"
d22afbb5864f added #initializeWithAllPrivateClasses
Claus Gittinger <cg@exept.de>
parents: 3411
diff changeset
  1845
6412
4d6aaac56707 implements -> includesSelector
Claus Gittinger <cg@exept.de>
parents: 6395
diff changeset
  1846
    (self class includesSelector:#initialize) ifTrue:[
4d6aaac56707 implements -> includesSelector
Claus Gittinger <cg@exept.de>
parents: 6395
diff changeset
  1847
        self initialize.
3442
d22afbb5864f added #initializeWithAllPrivateClasses
Claus Gittinger <cg@exept.de>
parents: 3411
diff changeset
  1848
    ].
d22afbb5864f added #initializeWithAllPrivateClasses
Claus Gittinger <cg@exept.de>
parents: 3411
diff changeset
  1849
    self privateClassesSorted do:[:aPrivateClass |
6412
4d6aaac56707 implements -> includesSelector
Claus Gittinger <cg@exept.de>
parents: 6395
diff changeset
  1850
        aPrivateClass initializeWithAllPrivateClasses.
3442
d22afbb5864f added #initializeWithAllPrivateClasses
Claus Gittinger <cg@exept.de>
parents: 3411
diff changeset
  1851
    ].
d22afbb5864f added #initializeWithAllPrivateClasses
Claus Gittinger <cg@exept.de>
parents: 3411
diff changeset
  1852
d22afbb5864f added #initializeWithAllPrivateClasses
Claus Gittinger <cg@exept.de>
parents: 3411
diff changeset
  1853
    "Created: / 13.5.1998 / 23:33:16 / cg"
d22afbb5864f added #initializeWithAllPrivateClasses
Claus Gittinger <cg@exept.de>
parents: 3411
diff changeset
  1854
    "Modified: / 13.5.1998 / 23:34:06 / cg"
d22afbb5864f added #initializeWithAllPrivateClasses
Claus Gittinger <cg@exept.de>
parents: 3411
diff changeset
  1855
!
d22afbb5864f added #initializeWithAllPrivateClasses
Claus Gittinger <cg@exept.de>
parents: 3411
diff changeset
  1856
328
claus
parents: 325
diff changeset
  1857
postAutoload
442
65a11cda5e9e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 421
diff changeset
  1858
    "postAutoload is sent to a class after it has been autoloaded.
65a11cda5e9e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 421
diff changeset
  1859
     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
  1860
     after a while ...
65a11cda5e9e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 421
diff changeset
  1861
     This is NOT sent to statically compiled in or explicitely filedIn
65a11cda5e9e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 421
diff changeset
  1862
     classes.
65a11cda5e9e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 421
diff changeset
  1863
     The default action here is to do nothing."
328
claus
parents: 325
diff changeset
  1864
claus
parents: 325
diff changeset
  1865
    ^ self
claus
parents: 325
diff changeset
  1866
!
claus
parents: 325
diff changeset
  1867
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1868
reinitialize
442
65a11cda5e9e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 421
diff changeset
  1869
    "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
  1870
     I.e. when the system is restarted.
65a11cda5e9e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 421
diff changeset
  1871
     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
  1872
     obsolete data which may be a leftover from the previous live.
65a11cda5e9e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 421
diff changeset
  1873
     The default action here is to do nothing."
65a11cda5e9e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 421
diff changeset
  1874
65a11cda5e9e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 421
diff changeset
  1875
    ^ self
11
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
  1876
! !
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
  1877
492
fa23b14f444b renamed instance creation category
Claus Gittinger <cg@exept.de>
parents: 457
diff changeset
  1878
!Behavior methodsFor:'instance creation'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1879
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1880
basicNew
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 47
diff changeset
  1881
    "return an instance of myself without indexed variables.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1882
     If the receiver-class has indexed instvars, the new object will have
91
b3971c7dc731 *** empty log message ***
claus
parents: 88
diff changeset
  1883
     a basicSize of zero - 
b3971c7dc731 *** empty log message ***
claus
parents: 88
diff changeset
  1884
     i.e. 'aClass basicNew' is equivalent to 'aClass basicNew:0'.
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 47
diff changeset
  1885
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1886
     ** Do not redefine this method in any class **"
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1887
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1888
%{  /* NOCONTEXT */
81
e02c66a7296f *** empty log message ***
claus
parents: 77
diff changeset
  1889
    REGISTER OBJ newobj;
e02c66a7296f *** empty log message ***
claus
parents: 77
diff changeset
  1890
    REGISTER char *nextPtr;
91
b3971c7dc731 *** empty log message ***
claus
parents: 88
diff changeset
  1891
    unsigned int instsize;
b3971c7dc731 *** empty log message ***
claus
parents: 88
diff changeset
  1892
    REGISTER unsigned int nInstVars;
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1893
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 47
diff changeset
  1894
    /*
369
claus
parents: 362
diff changeset
  1895
     * the following ugly code is nothing more than a __new() followed
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 47
diff changeset
  1896
     * by a nilling of the new instance.
91
b3971c7dc731 *** empty log message ***
claus
parents: 88
diff changeset
  1897
     * Unrolled for a bit more speed since this is one of the central object 
b3971c7dc731 *** empty log message ***
claus
parents: 88
diff changeset
  1898
     * allocation methods in the system
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 47
diff changeset
  1899
     */
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1088
diff changeset
  1900
    nInstVars = __intVal(__INST(instSize));
92
0c73b48551ac *** empty log message ***
claus
parents: 91
diff changeset
  1901
    instsize = OHDR_SIZE + __OBJS2BYTES__(nInstVars);
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 47
diff changeset
  1902
983
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  1903
    newobj = (OBJ) __newNextPtr;
81
e02c66a7296f *** empty log message ***
claus
parents: 77
diff changeset
  1904
    nextPtr = ((char *)newobj) + instsize;
e02c66a7296f *** empty log message ***
claus
parents: 77
diff changeset
  1905
e02c66a7296f *** empty log message ***
claus
parents: 77
diff changeset
  1906
    /*
e02c66a7296f *** empty log message ***
claus
parents: 77
diff changeset
  1907
     * dont argue about the goto and the arrangement below - it saves 
e02c66a7296f *** empty log message ***
claus
parents: 77
diff changeset
  1908
     * an extra nil-compare and branch in the common case ...
91
b3971c7dc731 *** empty log message ***
claus
parents: 88
diff changeset
  1909
     * (i.e. if no GC is needed, we fall through without a branch)
81
e02c66a7296f *** empty log message ***
claus
parents: 77
diff changeset
  1910
     */
983
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  1911
    if (nextPtr < __newEndPtr) {
154
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1912
	_objPtr(newobj)->o_size = instsize;
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1913
	/* o_allFlags(newobj) = 0;              */
983
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  1914
	/* _objPtr(newobj)->o_space = __newSpace; */
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  1915
	o_setAllFlags(newobj, __newSpace);
2894
344aec8ba014 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2879
diff changeset
  1916
#ifdef __HAS_ALIGN4__
344aec8ba014 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2879
diff changeset
  1917
	/*
344aec8ba014 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2879
diff changeset
  1918
	 * if the alignment is 4, we are already sat,
344aec8ba014 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2879
diff changeset
  1919
	 * since a non-indexed object always has a word-aligned size.
344aec8ba014 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2879
diff changeset
  1920
	 */
983
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  1921
	__newNextPtr = nextPtr;
91
b3971c7dc731 *** empty log message ***
claus
parents: 88
diff changeset
  1922
#else
2894
344aec8ba014 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2879
diff changeset
  1923
	if (instsize & (__ALIGN__-1)) {
344aec8ba014 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2879
diff changeset
  1924
	    __newNextPtr = (char *)newobj + (instsize & ~(__ALIGN__-1)) + __ALIGN__;
154
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1925
	} else {
983
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  1926
	    __newNextPtr = nextPtr;
154
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1927
	}
91
b3971c7dc731 *** empty log message ***
claus
parents: 88
diff changeset
  1928
#endif
82
0147b4f725ae *** empty log message ***
claus
parents: 81
diff changeset
  1929
0147b4f725ae *** empty log message ***
claus
parents: 81
diff changeset
  1930
ok:
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1088
diff changeset
  1931
	__InstPtr(newobj)->o_class = self;
369
claus
parents: 362
diff changeset
  1932
	__qSTORE(newobj, self);
82
0147b4f725ae *** empty log message ***
claus
parents: 81
diff changeset
  1933
154
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1934
	if (nInstVars) {
788
e80f1c42b87b dont use memset4 if its undefined
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  1935
#if defined(memset4) && defined(FAST_OBJECT_MEMSET4) || defined(FAST_MEMSET4)
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1088
diff changeset
  1936
	    memset4(__InstPtr(newobj)->i_instvars, nil, nInstVars);
82
0147b4f725ae *** empty log message ***
claus
parents: 81
diff changeset
  1937
#else
154
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1938
	    REGISTER OBJ *op;
82
0147b4f725ae *** empty log message ***
claus
parents: 81
diff changeset
  1939
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1088
diff changeset
  1940
	    op = __InstPtr(newobj)->i_instvars;
82
0147b4f725ae *** empty log message ***
claus
parents: 81
diff changeset
  1941
154
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1942
	    /*
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1943
	     * knowing that nil is 0
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1944
	     */
3920
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  1945
# if defined(FAST_OBJECT_MEMSET_DOUBLES_UNROLLED)
154
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1946
	    if (nInstVars > 8) {
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1947
		*op++ = nil;    /* for alignment */
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1948
		nInstVars--;
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1949
		while (nInstVars >= 8) {
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1950
		    *(double *)op = 0.0;
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1951
		    ((double *)op)[1] = 0.0;
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1952
		    ((double *)op)[2] = 0.0;
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1953
		    ((double *)op)[3] = 0.0;
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1954
		    op += 8;
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1955
		    nInstVars -= 8;
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1956
		}
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1957
	    }
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1958
	    while (nInstVars != 0) {
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1959
		*op++ = 0;
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1960
		nInstVars--;
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
# else
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  1963
#  if defined(FAST_OBJECT_MEMSET_LONGLONG_UNROLLED)
154
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1964
	    if (nInstVars > 8) {
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1965
		*op++ = nil;    /* for alignment */
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1966
		nInstVars--;
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1967
		while (nInstVars >= 8) {
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1968
		    *(long long *)op = 0;
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1969
		    ((long long *)op)[1] = 0;
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1970
		    ((long long *)op)[2] = 0;
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1971
		    ((long long *)op)[3] = 0;
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1972
		    op += 8;
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1973
		    nInstVars -= 8;
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1974
		}
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1975
	    }
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1976
	    while (nInstVars != 0) {
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1977
		*op++ = 0;
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1978
		nInstVars--;
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1979
	    }
91
b3971c7dc731 *** empty log message ***
claus
parents: 88
diff changeset
  1980
3920
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  1981
#  else
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  1982
#   if defined(FAST_OBJECT_MEMSET_WORDS_UNROLLED)
154
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1983
	    while (nInstVars >= 8) {
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1984
		*op = nil;
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1985
		*(op+1) = nil;
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1986
		*(op+2) = nil;
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1987
		*(op+3) = nil;
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1988
		*(op+4) = nil;
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1989
		*(op+5) = nil;
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1990
		*(op+6) = nil;
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1991
		*(op+7) = nil;
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1992
		op += 8;
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1993
		nInstVars -= 8;
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1994
	    }
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1995
	    while (nInstVars != 0) {
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1996
		*op++ = nil;
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1997
		nInstVars--;
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  1998
	    }
3920
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  1999
#   else
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2000
#    if defined(FAST_MEMSET)
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2001
	    memset(__InstPtr(newobj)->i_instvars, 0, instsize-OHDR_SIZE);
91
b3971c7dc731 *** empty log message ***
claus
parents: 88
diff changeset
  2002
#    else
154
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  2003
	    do {
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  2004
		*op++ = nil;
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  2005
		nInstVars--;
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  2006
	    } while (nInstVars != 0);
82
0147b4f725ae *** empty log message ***
claus
parents: 81
diff changeset
  2007
#    endif
0147b4f725ae *** empty log message ***
claus
parents: 81
diff changeset
  2008
#   endif
0147b4f725ae *** empty log message ***
claus
parents: 81
diff changeset
  2009
#  endif
0147b4f725ae *** empty log message ***
claus
parents: 81
diff changeset
  2010
# endif
0147b4f725ae *** empty log message ***
claus
parents: 81
diff changeset
  2011
#endif
154
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  2012
	}
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  2013
	RETURN ( newobj );
81
e02c66a7296f *** empty log message ***
claus
parents: 77
diff changeset
  2014
    }
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 47
diff changeset
  2015
92
0c73b48551ac *** empty log message ***
claus
parents: 91
diff changeset
  2016
    /*
0c73b48551ac *** empty log message ***
claus
parents: 91
diff changeset
  2017
     * the slow case - a GC will occur
0c73b48551ac *** empty log message ***
claus
parents: 91
diff changeset
  2018
     */
834
c68ed1088b42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
  2019
    __PROTECT_CONTEXT__
3980
8f9443e37693 renamed __new() to __STX___new()
Claus Gittinger <cg@exept.de>
parents: 3935
diff changeset
  2020
    newobj = __STX___new(instsize);
834
c68ed1088b42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
  2021
    __UNPROTECT_CONTEXT__
82
0147b4f725ae *** empty log message ***
claus
parents: 81
diff changeset
  2022
    if (newobj != nil) goto ok;
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2023
%}
2
claus
parents: 1
diff changeset
  2024
.
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2025
    "
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2026
     memory allocation failed.
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2027
     When we arrive here, there was no memory, even after
165
63341654cfb8 *** empty log message ***
claus
parents: 154
diff changeset
  2028
     a garbage collect. 
63341654cfb8 *** empty log message ***
claus
parents: 154
diff changeset
  2029
     This means, that the VM wanted to get some more memory from the 
63341654cfb8 *** empty log message ***
claus
parents: 154
diff changeset
  2030
     Operatingsystem, which was not kind enough to give it.
63341654cfb8 *** empty log message ***
claus
parents: 154
diff changeset
  2031
     Bad luck - you should increase the swap space on your machine.
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2032
    "
127
6625c77d890f added sizeOfInst:
claus
parents: 92
diff changeset
  2033
    ^ ObjectMemory allocationFailureSignal raise.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2034
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2035
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2036
basicNew:anInteger
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2037
    "return an instance of myself with anInteger indexed variables.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2038
     If the receiver-class has no indexed instvars, this is only allowed
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2039
     if the argument, anInteger is zero.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2040
     ** Do not redefine this method in any class **"
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2041
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2042
%{  /* NOCONTEXT */
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2043
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2044
    OBJ newobj;
154
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  2045
    unsigned INT instsize, nInstVars;
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  2046
    INT nindexedinstvars;
92
0c73b48551ac *** empty log message ***
claus
parents: 91
diff changeset
  2047
    unsigned INT flags;
3920
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2048
#if ! defined(FAST_ARRAY_MEMSET)
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2049
    REGISTER char *cp;
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2050
    short *sp;
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2051
    long *lp;
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2052
#endif
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2053
    REGISTER OBJ *op;
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2054
    float *fp;
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2055
    double *dp;
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2056
249
claus
parents: 216
diff changeset
  2057
    if (__isSmallInteger(anInteger)) {
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2058
	nindexedinstvars = __intVal(anInteger);
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2059
	if (nindexedinstvars >= 0) {
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2060
	    nInstVars = __intVal(__INST(instSize));
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2061
	    flags = __intVal(__INST(flags)) & ARRAYMASK;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2062
	    switch (flags) {
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2063
		case BYTEARRAY:
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2064
		    instsize = OHDR_SIZE + nindexedinstvars;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2065
		    if (nInstVars == 0) {
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2066
			if (__CanDoQuickNew(instsize)) {        /* OBJECT ALLOCATION */
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2067
			    /*
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2068
			     * the most common case
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2069
			     */
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2070
			    __qCheckedNew(newobj, instsize);
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2071
			    __InstPtr(newobj)->o_class = self;
788
e80f1c42b87b dont use memset4 if its undefined
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  2072
#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
  2073
			    nInstVars = nindexedinstvars >> 2;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2074
			    if (nindexedinstvars & 3) nInstVars++;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2075
			    memset4(__InstPtr(newobj)->i_instvars, 0, nInstVars);
357
claus
parents: 356
diff changeset
  2076
#else
3920
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2077
# if defined(FAST_ARRAY_MEMSET)
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2078
			    memset(__InstPtr(newobj)->i_instvars, 0, nindexedinstvars);
357
claus
parents: 356
diff changeset
  2079
# else
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2080
			    cp = (char *)__InstPtr(newobj)->i_instvars;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2081
			    while (nindexedinstvars >= sizeof(long)) {
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2082
				*(long *)cp = 0;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2083
				cp += sizeof(long);
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2084
				nindexedinstvars -= sizeof(long);
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2085
			    }
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2086
			    while (nindexedinstvars--)
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2087
				*cp++ = '\0';
357
claus
parents: 356
diff changeset
  2088
# endif
92
0c73b48551ac *** empty log message ***
claus
parents: 91
diff changeset
  2089
#endif
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2090
			    RETURN ( newobj );
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2091
			}
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2092
		    } else {
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2093
			instsize += __OBJS2BYTES__(nInstVars);
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2094
		    }
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2095
		    __PROTECT_CONTEXT__
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2096
		    __qNew(newobj, instsize);   /* OBJECT ALLOCATION */
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2097
		    __UNPROTECT_CONTEXT__
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2098
		    if (newobj == nil) {
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2099
			break;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2100
		    }
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2101
		    __InstPtr(newobj)->o_class = self;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2102
		    __qSTORE(newobj, self);
369
claus
parents: 362
diff changeset
  2103
788
e80f1c42b87b dont use memset4 if its undefined
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  2104
#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
  2105
		    nInstVars = (instsize-OHDR_SIZE) >> 2;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2106
		    if (instsize & 3) nInstVars++;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2107
		    memset4(__InstPtr(newobj)->i_instvars, 0, nInstVars);
357
claus
parents: 356
diff changeset
  2108
#else
3920
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2109
# if defined(FAST_ARRAY_MEMSET)
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2110
		    /*
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2111
		     * knowing that nil is 0
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2112
		     */
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2113
		    memset(__InstPtr(newobj)->i_instvars, 0, instsize-OHDR_SIZE);
357
claus
parents: 356
diff changeset
  2114
# else
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2115
		    op = __InstPtr(newobj)->i_instvars;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2116
		    while (nInstVars--)
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2117
			*op++ = nil;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2118
		    cp = (char *)op;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2119
		    while (nindexedinstvars >= sizeof(long)) {
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2120
			*(long *)cp = 0;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2121
			cp += sizeof(long);
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2122
			nindexedinstvars -= sizeof(long);
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2123
		    }
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2124
		    while (nindexedinstvars--)
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2125
			*cp++ = '\0';
357
claus
parents: 356
diff changeset
  2126
# endif
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2127
#endif
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2128
		    RETURN ( newobj );
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2129
		    break;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2130
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2131
		case WORDARRAY:
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2132
		case SWORDARRAY:
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2133
		    instsize = OHDR_SIZE + 
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2134
			       __OBJS2BYTES__(nInstVars) + 
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2135
			       nindexedinstvars * 2;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2136
		    __PROTECT_CONTEXT__
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2137
		    __qNew(newobj, instsize);   /* OBJECT ALLOCATION */
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2138
		    __UNPROTECT_CONTEXT__
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2139
		    if (newobj == nil) {
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2140
			break;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2141
		    }
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2142
		    __InstPtr(newobj)->o_class = self;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2143
		    __qSTORE(newobj, self);
369
claus
parents: 362
diff changeset
  2144
3920
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2145
#if defined(FAST_ARRAY_MEMSET)
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2146
		    /*
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2147
		     * knowing that nil is 0
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2148
		     */
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2149
		    memset(__InstPtr(newobj)->i_instvars, 0, instsize - OHDR_SIZE);
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2150
#else
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2151
		    op = __InstPtr(newobj)->i_instvars;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2152
		    while (nInstVars--)
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2153
			*op++ = nil;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2154
		    sp = (short *)op;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2155
		    while (nindexedinstvars--)
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2156
			*sp++ = 0;
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2157
#endif
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2158
		    RETURN ( newobj );
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2159
		    break;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2160
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2161
	       case LONGARRAY:
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2162
	       case SLONGARRAY:
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2163
		    instsize = OHDR_SIZE + 
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2164
			       __OBJS2BYTES__(nInstVars) + 
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2165
			       nindexedinstvars * 4;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2166
		    __PROTECT_CONTEXT__
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2167
		    __qAlignedNew(newobj, instsize);    /* OBJECT ALLOCATION */
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2168
		    __UNPROTECT_CONTEXT__
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2169
		    if (newobj == nil) {
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2170
			break;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2171
		    }
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2172
		    __InstPtr(newobj)->o_class = self;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2173
		    __qSTORE(newobj, self);
369
claus
parents: 362
diff changeset
  2174
3920
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2175
#if defined(memset4)
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2176
		    /*
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2177
		     * knowing that nil is 0
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2178
		     */
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2179
		    {
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2180
			int n4 = nInstVars + nindexedinstvars;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2181
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2182
			memset4(__InstPtr(newobj)->i_instvars, 0, n4);
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2183
		    }
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2184
#else
3920
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2185
# if defined(FAST_ARRAY_MEMSET)
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2186
		    /*
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2187
		     * knowing that nil is 0
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
		    memset(__InstPtr(newobj)->i_instvars, 0, instsize - OHDR_SIZE);
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2190
# else
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2191
		    op = __InstPtr(newobj)->i_instvars;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2192
		    while (nInstVars--)
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2193
			*op++ = nil;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2194
		    lp = (long *)op;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2195
		    while (nindexedinstvars--)
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2196
			*lp++ = 0;
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2197
# endif
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2198
#endif
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2199
		    RETURN ( newobj );
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2200
		    break;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2201
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2202
	       case LONGLONGARRAY:
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2203
	       case SLONGLONGARRAY:
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2204
		    instsize = OHDR_SIZE + __OBJS2BYTES__(nInstVars);
3920
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2205
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2206
#ifdef __NEED_LONGLONG_ALIGN
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2207
		    instsize = ((instsize-1) + __LONGLONG_ALIGN) & ~(__LONGLONG_ALIGN-1);
3920
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2208
#endif
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2209
		    instsize += nindexedinstvars * 8;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2210
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2211
		    __PROTECT_CONTEXT__
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2212
		    __qAlignedNew(newobj, instsize);    /* OBJECT ALLOCATION */
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2213
		    __UNPROTECT_CONTEXT__
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2214
		    if (newobj == nil) {
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2215
			break;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2216
		    }
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2217
		    __InstPtr(newobj)->o_class = self;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2218
		    __qSTORE(newobj, self);
3920
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2219
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2220
#if defined(memset4)
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2221
		    {
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2222
			int n4 = (instsize-OHDR_SIZE) / 4;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2223
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2224
			memset4(__InstPtr(newobj)->i_instvars, 0, n4);
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2225
		    }
3920
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2226
#else
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2227
		    memset(__InstPtr(newobj)->i_instvars, 0, instsize - OHDR_SIZE);
3920
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2228
#endif
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2229
		    RETURN ( newobj );
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2230
		    break;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2231
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2232
	       case FLOATARRAY:
5321
c21a89ffdea4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5297
diff changeset
  2233
		    instsize = OHDR_SIZE + __OBJS2BYTES__(nInstVars);
c21a89ffdea4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5297
diff changeset
  2234
		    instsize += nindexedinstvars * sizeof(float);
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2235
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2236
		    __PROTECT_CONTEXT__
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2237
		    __qNew(newobj, instsize);   /* OBJECT ALLOCATION */
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2238
		    __UNPROTECT_CONTEXT__
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2239
		    if (newobj == nil) {
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2240
			break;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2241
		    }
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2242
		    __InstPtr(newobj)->o_class = self;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2243
		    __qSTORE(newobj, self);
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2244
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2245
		    op = __InstPtr(newobj)->i_instvars;
3920
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2246
#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
  2247
# if defined(memset4)
4657
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
			int n4 = (instsize-OHDR_SIZE) / 4;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2250
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2251
			memset4(__InstPtr(newobj)->i_instvars, 0, n4);
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2252
		    }
3920
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2253
# else
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2254
		    memset(__InstPtr(newobj)->i_instvars, 0, instsize - OHDR_SIZE);
3920
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2255
# endif
3870
ea7a0f0db4be use memset to initialize float- and doubleArrays, if float0/double0 is int0
Claus Gittinger <cg@exept.de>
parents: 3805
diff changeset
  2256
#else
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2257
		    while (nInstVars--)
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2258
			*op++ = nil;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2259
		    fp = (float *)op;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2260
		    while (nindexedinstvars--)
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2261
			*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
  2262
#endif
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2263
		    RETURN ( newobj );
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2264
		    break;
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
	       case DOUBLEARRAY:
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2267
		    instsize = OHDR_SIZE + __OBJS2BYTES__(nInstVars);
3920
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2268
#ifdef __NEED_DOUBLE_ALIGN
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2269
		    instsize = ((instsize-1) + __DOUBLE_ALIGN) & ~(__DOUBLE_ALIGN-1);
3920
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2270
#endif
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2271
		    instsize += nindexedinstvars * sizeof(double);
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2272
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2273
		    __PROTECT_CONTEXT__
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2274
		    __qAlignedNew(newobj, instsize);    /* OBJECT ALLOCATION */
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2275
		    __UNPROTECT_CONTEXT__
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2276
		    if (newobj == nil) {
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2277
			break;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2278
		    }
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2279
		    __InstPtr(newobj)->o_class = self;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2280
		    __qSTORE(newobj, self);
369
claus
parents: 362
diff changeset
  2281
3920
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2282
#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
  2283
# ifdef memset4
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2284
		    {
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2285
			int n4 = (instsize-OHDR_SIZE) / 4;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2286
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2287
			memset4(__InstPtr(newobj)->i_instvars, 0, n4);
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2288
		    }
3920
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2289
# else
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2290
		    memset(__InstPtr(newobj)->i_instvars, 0, instsize - OHDR_SIZE);
3920
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2291
# endif
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2292
#else
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2293
		    op = __InstPtr(newobj)->i_instvars;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2294
		    while (nInstVars--)
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2295
			*op++ = nil;
3920
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2296
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2297
# ifdef __NEED_DOUBLE_ALIGN
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2298
		    /*
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2299
		     * care for double alignment
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2300
		     * add filler.
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
		    if ((INT)op & (__DOUBLE_ALIGN-1)) {
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2303
			*op++ = nil;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2304
		    }
3870
ea7a0f0db4be use memset to initialize float- and doubleArrays, if float0/double0 is int0
Claus Gittinger <cg@exept.de>
parents: 3805
diff changeset
  2305
# endif
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2306
		    dp = (double *)op;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2307
		    while (nindexedinstvars--)
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2308
			*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
  2309
#endif
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2310
		    RETURN ( newobj );
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2311
		    break;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2312
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2313
		case WKPOINTERARRAY:
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2314
		case POINTERARRAY:
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2315
		    nInstVars += nindexedinstvars;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2316
		    instsize = OHDR_SIZE + __OBJS2BYTES__(nInstVars);
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2317
		    __PROTECT_CONTEXT__
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2318
		    __qAlignedNew(newobj, instsize);    /* OBJECT ALLOCATION */
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2319
		    __UNPROTECT_CONTEXT__
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2320
		    if (newobj == nil) {
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2321
			break;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2322
		    }
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2323
		    __InstPtr(newobj)->o_class = self;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2324
		    __qSTORE(newobj, self);
369
claus
parents: 362
diff changeset
  2325
788
e80f1c42b87b dont use memset4 if its undefined
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  2326
#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
  2327
		    memset4(__InstPtr(newobj)->i_instvars, nil, nInstVars);
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2328
#else
4657
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
		     * knowing that nil is 0
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2331
		     */
3920
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2332
# ifdef sparc
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2333
#  define FAST_ARRAY_MEMSET_DOUBLES_UNROLLED
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2334
# endif
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2335
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2336
# if defined(FAST_ARRAY_MEMSET_DOUBLES_UNROLLED)
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2337
		    op = __InstPtr(newobj)->i_instvars;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2338
		    if (nInstVars > 8) {
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2339
			*op++ = nil;    /* for alignment */
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2340
			nInstVars--;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2341
			while (nInstVars >= 8) {
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2342
			    *(double *)op = 0.0;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2343
			    ((double *)op)[1] = 0.0;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2344
			    ((double *)op)[2] = 0.0;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2345
			    ((double *)op)[3] = 0.0;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2346
			    op += 8;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2347
			    nInstVars -= 8;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2348
			}
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2349
		    }
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2350
		    while (nInstVars) {
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2351
			*op++ = 0;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2352
			nInstVars--;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2353
		    }
3920
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2354
# else
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2355
#  if defined(FAST_ARRAY_MEMSET_LONGLONG_UNROLLED)
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2356
		    op = __InstPtr(newobj)->i_instvars;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2357
		    if (nInstVars > 8) {
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2358
			*op++ = nil;    /* for alignment */
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2359
			nInstVars--;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2360
			while (nInstVars >= 8) {
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2361
			    *(long long *)op = 0;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2362
			    ((long long *)op)[1] = 0;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2363
			    ((long long *)op)[2] = 0;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2364
			    ((long long *)op)[3] = 0;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2365
			    op += 8;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2366
			    nInstVars -= 8;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2367
			}
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2368
		    }
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2369
		    while (nInstVars) {
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2370
			*op++ = 0;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2371
			nInstVars--;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2372
		    }
3920
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2373
#  else
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2374
#   if defined(FAST_ARRAY_MEMSET)
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2375
		    memset(__InstPtr(newobj)->i_instvars, 0, instsize - OHDR_SIZE);
91
b3971c7dc731 *** empty log message ***
claus
parents: 88
diff changeset
  2376
#   else
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2377
		    op = __InstPtr(newobj)->i_instvars;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2378
		    while (nInstVars--)
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2379
			*op++ = nil;
82
0147b4f725ae *** empty log message ***
claus
parents: 81
diff changeset
  2380
#   endif
0147b4f725ae *** empty log message ***
claus
parents: 81
diff changeset
  2381
#  endif
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2382
# endif
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2383
#endif
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2384
		    RETURN ( newobj );
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2385
		    break;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2386
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2387
		default:
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2388
		    /*
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2389
		     * new:n for non-variable classes only allowed if
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2390
		     * n == 0
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2391
		     */
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2392
		    if (nindexedinstvars == 0) {
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2393
			instsize = OHDR_SIZE + __OBJS2BYTES__(nInstVars);
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2394
			__PROTECT_CONTEXT__
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2395
			__qAlignedNew(newobj, instsize);        /* OBJECT ALLOCATION */
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2396
			__UNPROTECT_CONTEXT__
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2397
			if (newobj == nil) {
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2398
			    break;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2399
			}
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2400
			__InstPtr(newobj)->o_class = self;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2401
			__qSTORE(newobj, self);
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2402
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2403
			if (nInstVars) {
788
e80f1c42b87b dont use memset4 if its undefined
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  2404
#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
  2405
			    memset4(__InstPtr(newobj)->i_instvars, nil, nInstVars);
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2406
#else
3920
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2407
# if defined(FAST_MEMSET)
4657
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
			     * knowing that nil is 0
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2410
			     */
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2411
			    memset(__InstPtr(newobj)->i_instvars, 0, instsize - OHDR_SIZE);
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2412
# else
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2413
			    op = __InstPtr(newobj)->i_instvars;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2414
			    do {
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2415
				*op++ = nil;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2416
			    } while (--nInstVars);
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2417
# endif
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2418
#endif
4657
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
			RETURN ( newobj );
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2421
		    }
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2422
		    break;
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2423
	    }
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2424
	}
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2425
    }
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2426
%}.
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2427
    "
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2428
     arrive here if something went wrong ...
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2429
     figure out what it was
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2430
    "
11
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
  2431
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2432
    (anInteger isMemberOf:SmallInteger) ifFalse:[
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2433
	"
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2434
	 the argument is either not an integer,
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2435
	 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
  2436
	"
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2437
	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
  2438
	^ nil
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2439
    ].
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2440
    (anInteger < 0) ifTrue:[
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2441
	"
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2442
	 the argument is negative,
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2443
	"
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2444
	self error:'bad (negative) argument to new:'.
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2445
	^ nil
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2446
    ].
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2447
    self isVariable ifFalse:[
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2448
	"
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2449
	 this class does not have any indexed instance variables
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
	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
  2452
	^ nil
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2453
    ].
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2454
    "
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2455
     memory allocation failed.
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2456
     When we arrive here, there was no memory, even after
165
63341654cfb8 *** empty log message ***
claus
parents: 154
diff changeset
  2457
     a garbage collect. 
63341654cfb8 *** empty log message ***
claus
parents: 154
diff changeset
  2458
     This means, that the VM wanted to get some more memory from the 
63341654cfb8 *** empty log message ***
claus
parents: 154
diff changeset
  2459
     Operatingsystem, which was not kind enough to give it.
63341654cfb8 *** empty log message ***
claus
parents: 154
diff changeset
  2460
     Bad luck - you should increase the swap space on your machine.
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2461
    "
127
6625c77d890f added sizeOfInst:
claus
parents: 92
diff changeset
  2462
    ^ ObjectMemory allocationFailureSignal raise.
11
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
  2463
!
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
  2464
2666
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
  2465
decodeFromLiteralArray:anArray
7981b615b48a Make Metaclass a subclass of ClassDescription instead of Class.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
  2466
    "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
  2467
3237
5c3d09b9239d use #new instead of #basicNew when decoding from a literal array;
Claus Gittinger <cg@exept.de>
parents: 3141
diff changeset
  2468
    ^ self new fromLiteralArrayEncoding:anArray.
2370
694ebbc71f04 added #decodeFromLiteralArray: - ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 2236
diff changeset
  2469
694ebbc71f04 added #decodeFromLiteralArray: - ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 2236
diff changeset
  2470
    "
694ebbc71f04 added #decodeFromLiteralArray: - ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 2236
diff changeset
  2471
     Rectangle
3920
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2472
	decodeFromLiteralArray:#(Rectangle 10 10 100 100)
2370
694ebbc71f04 added #decodeFromLiteralArray: - ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 2236
diff changeset
  2473
    "
694ebbc71f04 added #decodeFromLiteralArray: - ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 2236
diff changeset
  2474
3237
5c3d09b9239d use #new instead of #basicNew when decoding from a literal array;
Claus Gittinger <cg@exept.de>
parents: 3141
diff changeset
  2475
    "Modified: / 28.1.1998 / 17:40:30 / cg"
2370
694ebbc71f04 added #decodeFromLiteralArray: - ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 2236
diff changeset
  2476
!
694ebbc71f04 added #decodeFromLiteralArray: - ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 2236
diff changeset
  2477
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2478
new
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2479
    "return an instance of myself without indexed variables"
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2480
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2481
    ^ self basicNew
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2482
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2483
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2484
new:anInteger
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2485
    "return an instance of myself with anInteger indexed variables"
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2486
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2487
    ^ self basicNew:anInteger
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2488
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2489
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2490
niceBasicNew:anInteger
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2491
    "same as basicNew:anInteger, but tries to avoid long pauses
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2492
     due to garbage collection. This method checks to see if
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2493
     allocation is possible without a pause, and does a background
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2494
     incremental garbage collect first if there is not enough memory
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2495
     available at the moment for fast allocation. 
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2496
     This is useful in low-priority background processes which like to 
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2497
     avoid disturbing any higher priority foreground process while allocating
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2498
     big amounts of memory. Of course, using this method only makes
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2499
     sense for big or huge objects (say > 200k).
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
     EXPERIMENTAL: this is a non-standard interface and should only 
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2502
     be used for special applications. There is no guarantee, that this
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2503
     method will be available in future ST/X releases."
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2504
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2505
    |size|
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
    size := self sizeOfInst:anInteger.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2508
    (ObjectMemory checkForFastNew:size) ifFalse:[
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2509
	"
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2510
	 incrementally collect garbage
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2511
	"
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2512
	ObjectMemory incrementalGC.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2513
    ].
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2514
    ^ self basicNew:anInteger
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2515
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2516
11
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
  2517
readFrom:aStream
43
00ca34676cbf *** empty log message ***
claus
parents: 25
diff changeset
  2518
    "read an objects printed representation from the argument, aStream 
00ca34676cbf *** empty log message ***
claus
parents: 25
diff changeset
  2519
     and return it. 
154
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  2520
     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
  2521
     This is the reverse operation to 'storeOn:'.
43
00ca34676cbf *** empty log message ***
claus
parents: 25
diff changeset
  2522
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2523
     WARNING: storeOn: does not handle circular references and multiple 
3920
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2524
	      references to the same object.
0c1b9b2fa23b added longlong indexed instvars;
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
  2525
	      Use #storeBinary:/readBinaryFrom: for this."
3480
aa538a7438ba conversion error string
Claus Gittinger <cg@exept.de>
parents: 3442
diff changeset
  2526
aa538a7438ba conversion error string
Claus Gittinger <cg@exept.de>
parents: 3442
diff changeset
  2527
    ^ self readFrom:aStream onError:[self error:'conversion error for: ' , self name]
11
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
  2528
91
b3971c7dc731 *** empty log message ***
claus
parents: 88
diff changeset
  2529
    "
b3971c7dc731 *** empty log message ***
claus
parents: 88
diff changeset
  2530
     |s|
11
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
  2531
     s := WriteStream on:String new.
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
  2532
     #(1 2 3 4) storeOn:s.
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
  2533
     Object readFrom:(ReadStream on:s contents)  
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
  2534
    "
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
  2535
!
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
  2536
198
d0d0e3910c98 added readFrom:onError: / binaryReadFrom:onError:
claus
parents: 165
diff changeset
  2537
readFrom:aStream onError:exceptionBlock
d0d0e3910c98 added readFrom:onError: / binaryReadFrom:onError:
claus
parents: 165
diff changeset
  2538
    "read an objects printed representation from the argument, aStream 
d0d0e3910c98 added readFrom:onError: / binaryReadFrom:onError:
claus
parents: 165
diff changeset
  2539
     and return it (i.e. the stream should contain some representation of
d0d0e3910c98 added readFrom:onError: / binaryReadFrom:onError:
claus
parents: 165
diff changeset
  2540
     the object which was created using #storeOn:). 
d0d0e3910c98 added readFrom:onError: / binaryReadFrom:onError:
claus
parents: 165
diff changeset
  2541
     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
  2542
     exceptionBlock is returned.
d0d0e3910c98 added readFrom:onError: / binaryReadFrom:onError:
claus
parents: 165
diff changeset
  2543
     To get any object, use 'Object readFrom:...',
d0d0e3910c98 added readFrom:onError: / binaryReadFrom:onError:
claus
parents: 165
diff changeset
  2544
     To get any number, use 'Number readFrom:...' and so on.
d0d0e3910c98 added readFrom:onError: / binaryReadFrom:onError:
claus
parents: 165
diff changeset
  2545
     This is the reverse operation to 'storeOn:'.
d0d0e3910c98 added readFrom:onError: / binaryReadFrom:onError:
claus
parents: 165
diff changeset
  2546
d0d0e3910c98 added readFrom:onError: / binaryReadFrom:onError:
claus
parents: 165
diff changeset
  2547
     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
  2548
              references to the same object.
720736f72cb4 exceptionBlock handling in #readFrom:onError:
Stefan Vogel <sv@exept.de>
parents: 5753
diff changeset
  2549
              Use #storeBinary:/readBinaryFrom: for this."
198
d0d0e3910c98 added readFrom:onError: / binaryReadFrom:onError:
claus
parents: 165
diff changeset
  2550
6627
685ab6f994f0 Avoid block creation in #readFrom:onError:
Stefan Vogel <sv@exept.de>
parents: 6596
diff changeset
  2551
    ^ [
685ab6f994f0 Avoid block creation in #readFrom:onError:
Stefan Vogel <sv@exept.de>
parents: 6596
diff changeset
  2552
        |newObject|
5842
720736f72cb4 exceptionBlock handling in #readFrom:onError:
Stefan Vogel <sv@exept.de>
parents: 5753
diff changeset
  2553
        newObject := self evaluatorClass evaluate:aStream ifFail:exceptionBlock.
6627
685ab6f994f0 Avoid block creation in #readFrom:onError:
Stefan Vogel <sv@exept.de>
parents: 6596
diff changeset
  2554
        (newObject isKindOf:self) ifTrue:[newObject] ifFalse:[exceptionBlock value].
685ab6f994f0 Avoid block creation in #readFrom:onError:
Stefan Vogel <sv@exept.de>
parents: 6596
diff changeset
  2555
    ] on:Error do:exceptionBlock.
198
d0d0e3910c98 added readFrom:onError: / binaryReadFrom:onError:
claus
parents: 165
diff changeset
  2556
d0d0e3910c98 added readFrom:onError: / binaryReadFrom:onError:
claus
parents: 165
diff changeset
  2557
    "
d0d0e3910c98 added readFrom:onError: / binaryReadFrom:onError:
claus
parents: 165
diff changeset
  2558
     |s|
d0d0e3910c98 added readFrom:onError: / binaryReadFrom:onError:
claus
parents: 165
diff changeset
  2559
     s := WriteStream on:String new.
d0d0e3910c98 added readFrom:onError: / binaryReadFrom:onError:
claus
parents: 165
diff changeset
  2560
     #(1 2 3 4) storeOn:s.
1422
9a0b792f2953 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1383
diff changeset
  2561
     Transcript showCR:(
5842
720736f72cb4 exceptionBlock handling in #readFrom:onError:
Stefan Vogel <sv@exept.de>
parents: 5753
diff changeset
  2562
        Array readFrom:(ReadStream on:s contents) onError:'not an Array'
293
31df3850e98c *** empty log message ***
claus
parents: 283
diff changeset
  2563
     )
198
d0d0e3910c98 added readFrom:onError: / binaryReadFrom:onError:
claus
parents: 165
diff changeset
  2564
    "
d0d0e3910c98 added readFrom:onError: / binaryReadFrom:onError:
claus
parents: 165
diff changeset
  2565
    "
d0d0e3910c98 added readFrom:onError: / binaryReadFrom:onError:
claus
parents: 165
diff changeset
  2566
     |s|
d0d0e3910c98 added readFrom:onError: / binaryReadFrom:onError:
claus
parents: 165
diff changeset
  2567
     s := WriteStream on:String new.
d0d0e3910c98 added readFrom:onError: / binaryReadFrom:onError:
claus
parents: 165
diff changeset
  2568
     #[1 2 3 4] storeOn:s.
1422
9a0b792f2953 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1383
diff changeset
  2569
     Transcript showCR:(
5842
720736f72cb4 exceptionBlock handling in #readFrom:onError:
Stefan Vogel <sv@exept.de>
parents: 5753
diff changeset
  2570
         Array readFrom:(ReadStream on:s contents) onError:'not an Array'
345
claus
parents: 343
diff changeset
  2571
     )
198
d0d0e3910c98 added readFrom:onError: / binaryReadFrom:onError:
claus
parents: 165
diff changeset
  2572
    "
5842
720736f72cb4 exceptionBlock handling in #readFrom:onError:
Stefan Vogel <sv@exept.de>
parents: 5753
diff changeset
  2573
    "
6627
685ab6f994f0 Avoid block creation in #readFrom:onError:
Stefan Vogel <sv@exept.de>
parents: 6596
diff changeset
  2574
     Object readFrom:'illegal' onError:['bla']
685ab6f994f0 Avoid block creation in #readFrom:onError:
Stefan Vogel <sv@exept.de>
parents: 6596
diff changeset
  2575
     String readFrom:'illegal' onError:'bla'
5842
720736f72cb4 exceptionBlock handling in #readFrom:onError:
Stefan Vogel <sv@exept.de>
parents: 5753
diff changeset
  2576
    "
198
d0d0e3910c98 added readFrom:onError: / binaryReadFrom:onError:
claus
parents: 165
diff changeset
  2577
!
d0d0e3910c98 added readFrom:onError: / binaryReadFrom:onError:
claus
parents: 165
diff changeset
  2578
11
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
  2579
readFromString:aString
275
a76029ddaa98 *** empty log message ***
claus
parents: 249
diff changeset
  2580
    "create an object from its printed representation.
a76029ddaa98 *** empty log message ***
claus
parents: 249
diff changeset
  2581
     For most classes, the string is expected to be in a format created by
a76029ddaa98 *** empty log message ***
claus
parents: 249
diff changeset
  2582
     storeOn: or storeString; however, some (Time, Date) expect a user
a76029ddaa98 *** empty log message ***
claus
parents: 249
diff changeset
  2583
     readable string here.
a76029ddaa98 *** empty log message ***
claus
parents: 249
diff changeset
  2584
     See comments in Behavior>>readFromString:onError:,
a76029ddaa98 *** empty log message ***
claus
parents: 249
diff changeset
  2585
     Behavior>>readFrom: and Behavior>>readFrom:onError:"
11
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
  2586
345
claus
parents: 343
diff changeset
  2587
    ^ self readFromString:aString onError:[self error:'expected: ' , self name]
91
b3971c7dc731 *** empty log message ***
claus
parents: 88
diff changeset
  2588
b3971c7dc731 *** empty log message ***
claus
parents: 88
diff changeset
  2589
    "
b3971c7dc731 *** empty log message ***
claus
parents: 88
diff changeset
  2590
     Integer readFromString:'12345678901234567890' 
b3971c7dc731 *** empty log message ***
claus
parents: 88
diff changeset
  2591
     Point readFromString:'1@2'  
345
claus
parents: 343
diff changeset
  2592
     Point readFromString:'1'  
91
b3971c7dc731 *** empty log message ***
claus
parents: 88
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
d0d0e3910c98 added readFrom:onError: / binaryReadFrom:onError:
claus
parents: 165
diff changeset
  2596
readFromString:aString onError:exceptionBlock
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
     Here, 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 classes (Time, Date) may redefine
a76029ddaa98 *** empty log message ***
claus
parents: 249
diff changeset
  2600
     it to expect a user readable string here.
198
d0d0e3910c98 added readFrom:onError: / binaryReadFrom:onError:
claus
parents: 165
diff changeset
  2601
     See comments in Behavior>>readFrom: and Behavior>>readFrom:onError:"
d0d0e3910c98 added readFrom:onError: / binaryReadFrom:onError:
claus
parents: 165
diff changeset
  2602
d0d0e3910c98 added readFrom:onError: / binaryReadFrom:onError:
claus
parents: 165
diff changeset
  2603
    ^ self readFrom:(ReadStream on:aString) onError:exceptionBlock
d0d0e3910c98 added readFrom:onError: / binaryReadFrom:onError:
claus
parents: 165
diff changeset
  2604
d0d0e3910c98 added readFrom:onError: / binaryReadFrom:onError:
claus
parents: 165
diff changeset
  2605
    "
d0d0e3910c98 added readFrom:onError: / binaryReadFrom:onError:
claus
parents: 165
diff changeset
  2606
     Integer readFromString:'12345678901234567890' 
275
a76029ddaa98 *** empty log message ***
claus
parents: 249
diff changeset
  2607
     Integer readFromString:'abc' 
a76029ddaa98 *** empty log message ***
claus
parents: 249
diff changeset
  2608
     Integer readFromString:'abc' onError:0
198
d0d0e3910c98 added readFrom:onError: / binaryReadFrom:onError:
claus
parents: 165
diff changeset
  2609
     Point readFromString:'1@2'  
345
claus
parents: 343
diff changeset
  2610
     Point readFromString:'0'   
275
a76029ddaa98 *** empty log message ***
claus
parents: 249
diff changeset
  2611
     Point readFromString:'0' onError:[0@0]  
198
d0d0e3910c98 added readFrom:onError: / binaryReadFrom:onError:
claus
parents: 165
diff changeset
  2612
    "
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2613
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2614
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2615
uninitializedNew
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2616
    "create an instance of myself with uninitialized contents.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2617
     For all classes except ByteArray, this is the same as #basicNew."
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2618
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2619
    ^ self basicNew
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2620
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2621
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2622
uninitializedNew:anInteger
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2623
    "create an instance of myself with uninitialized contents.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2624
     For all classes except ByteArray, this is the same as #basicNew:."
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2625
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2626
    ^ self basicNew:anInteger
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2627
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2628
3619
85b70481bc54 added #sourceCodeTemplate
Claus Gittinger <cg@exept.de>
parents: 3480
diff changeset
  2629
!Behavior methodsFor:'misc'!
85b70481bc54 added #sourceCodeTemplate
Claus Gittinger <cg@exept.de>
parents: 3480
diff changeset
  2630
4928
1c8c123fb3d3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4889
diff changeset
  2631
browse
5727
b97b7c5c7ab9 comments added
Claus Gittinger <cg@exept.de>
parents: 5709
diff changeset
  2632
    "open a browser showing the receiver"
b97b7c5c7ab9 comments added
Claus Gittinger <cg@exept.de>
parents: 5709
diff changeset
  2633
5517
81558c304485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5513
diff changeset
  2634
    self browserClass openInClass:self 
4928
1c8c123fb3d3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4889
diff changeset
  2635
1c8c123fb3d3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4889
diff changeset
  2636
    "
5546
934ca7bfecc6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5517
diff changeset
  2637
     Array browserClass
4928
1c8c123fb3d3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4889
diff changeset
  2638
     Array browse
1c8c123fb3d3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4889
diff changeset
  2639
    "
1c8c123fb3d3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4889
diff changeset
  2640
!
1c8c123fb3d3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4889
diff changeset
  2641
3619
85b70481bc54 added #sourceCodeTemplate
Claus Gittinger <cg@exept.de>
parents: 3480
diff changeset
  2642
sourceCodeTemplate
85b70481bc54 added #sourceCodeTemplate
Claus Gittinger <cg@exept.de>
parents: 3480
diff changeset
  2643
    ^ 'messageSelector and arguments
85b70481bc54 added #sourceCodeTemplate
Claus Gittinger <cg@exept.de>
parents: 3480
diff changeset
  2644
    "method comment - purpose of message"
85b70481bc54 added #sourceCodeTemplate
Claus Gittinger <cg@exept.de>
parents: 3480
diff changeset
  2645
85b70481bc54 added #sourceCodeTemplate
Claus Gittinger <cg@exept.de>
parents: 3480
diff changeset
  2646
    |temporaries|
85b70481bc54 added #sourceCodeTemplate
Claus Gittinger <cg@exept.de>
parents: 3480
diff changeset
  2647
85b70481bc54 added #sourceCodeTemplate
Claus Gittinger <cg@exept.de>
parents: 3480
diff changeset
  2648
    statements
85b70481bc54 added #sourceCodeTemplate
Claus Gittinger <cg@exept.de>
parents: 3480
diff changeset
  2649
85b70481bc54 added #sourceCodeTemplate
Claus Gittinger <cg@exept.de>
parents: 3480
diff changeset
  2650
    "
85b70481bc54 added #sourceCodeTemplate
Claus Gittinger <cg@exept.de>
parents: 3480
diff changeset
  2651
     example uses
85b70481bc54 added #sourceCodeTemplate
Claus Gittinger <cg@exept.de>
parents: 3480
diff changeset
  2652
    "
85b70481bc54 added #sourceCodeTemplate
Claus Gittinger <cg@exept.de>
parents: 3480
diff changeset
  2653
'
85b70481bc54 added #sourceCodeTemplate
Claus Gittinger <cg@exept.de>
parents: 3480
diff changeset
  2654
85b70481bc54 added #sourceCodeTemplate
Claus Gittinger <cg@exept.de>
parents: 3480
diff changeset
  2655
    "Created: / 19.6.1998 / 02:14:02 / cg"
85b70481bc54 added #sourceCodeTemplate
Claus Gittinger <cg@exept.de>
parents: 3480
diff changeset
  2656
! !
85b70481bc54 added #sourceCodeTemplate
Claus Gittinger <cg@exept.de>
parents: 3480
diff changeset
  2657
6590
53ad98dc93ef *** empty log message ***
penk
parents: 6589
diff changeset
  2658
!Behavior methodsFor:'printing & storing'!
53ad98dc93ef *** empty log message ***
penk
parents: 6589
diff changeset
  2659
53ad98dc93ef *** empty log message ***
penk
parents: 6589
diff changeset
  2660
printOn:aStream
53ad98dc93ef *** empty log message ***
penk
parents: 6589
diff changeset
  2661
    aStream nextPutAll:(self name).
53ad98dc93ef *** empty log message ***
penk
parents: 6589
diff changeset
  2662
! !
6589
cf52ed7e5601 *** empty log message ***
penk
parents: 6477
diff changeset
  2663
7260
edfa8d6a6046 method category rename
Claus Gittinger <cg@exept.de>
parents: 7224
diff changeset
  2664
!Behavior methodsFor:'private-accessing'!
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2665
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2666
flags:aNumber
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2667
    "set the flags.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2668
     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
  2669
     and no change record written here; 
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2670
     Do NOT use it."
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2671
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2672
    flags := aNumber
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2673
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2674
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2675
instSize:aNumber
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2676
    "set the instance size.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2677
     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
  2678
     and no change record written here; 
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2679
     Do NOT use it."
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2680
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2681
    instSize := aNumber
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
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2684
primAddSelector:newSelector withMethod:newMethod
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2685
    "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
  2686
     the 1st argument to the methodDictionary. 
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2687
     Does NOT flush any caches, does NOT write a change record.
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
     Do not use this in normal situations, strange behavior will be
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2690
     the consequence.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2691
     I.e. executing obsolete methods, since the old method will still 
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2692
     be executed out of the caches."
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2693
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  2694
    |dict|
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2695
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2696
    (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
  2697
        self error:'invalid selector'. 
2af84f5b1447 pre-set the methods mclass cache when adding a method
Claus Gittinger <cg@exept.de>
parents: 6968
diff changeset
  2698
        ^ false
620
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
    newMethod isNil ifTrue:[
7123
2af84f5b1447 pre-set the methods mclass cache when adding a method
Claus Gittinger <cg@exept.de>
parents: 6968
diff changeset
  2701
        self error:'invalid method'. 
2af84f5b1447 pre-set the methods mclass cache when adding a method
Claus Gittinger <cg@exept.de>
parents: 6968
diff changeset
  2702
        ^ false
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2703
    ].
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2704
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  2705
    dict := self methodDictionary.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  2706
    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
  2707
    newMethod mclass:self.
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  2708
    ^ true.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  2709
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  2710
    "Modified: 7.6.1996 / 14:48:45 / stefan"
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2711
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2712
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  2713
setMethodDictionary:dict
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  2714
    "set the receivers method dictionary.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  2715
     Convert dict to a MethodDictionary if necessary.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  2716
     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
  2717
     after this call"
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  2718
2228
ddcc662bd9b1 commentary
Claus Gittinger <cg@exept.de>
parents: 2226
diff changeset
  2719
    "/ since the only thing the VM is prepared to deal with are
ddcc662bd9b1 commentary
Claus Gittinger <cg@exept.de>
parents: 2226
diff changeset
  2720
    "/ proper methodDictionaries (it cannot do another message send, to
ddcc662bd9b1 commentary
Claus Gittinger <cg@exept.de>
parents: 2226
diff changeset
  2721
    "/ find any methods ...), we convert it here if required.
ddcc662bd9b1 commentary
Claus Gittinger <cg@exept.de>
parents: 2226
diff changeset
  2722
    "/ No other classes instances are allowed.
ddcc662bd9b1 commentary
Claus Gittinger <cg@exept.de>
parents: 2226
diff changeset
  2723
1494
dab70fc90ebc Remove old methodArray and selectorArray stuff (use MethodDictionary only).
Stefan Vogel <sv@exept.de>
parents: 1461
diff changeset
  2724
    dict class ~~ MethodDictionary ifTrue:[
5484
7dbf2507f262 halt vs. error
Claus Gittinger <cg@exept.de>
parents: 5428
diff changeset
  2725
        methodDictionary := MethodDictionary withAll:dict.
7dbf2507f262 halt vs. error
Claus Gittinger <cg@exept.de>
parents: 5428
diff changeset
  2726
        methodDictionary isNil ifTrue:[
7dbf2507f262 halt vs. error
Claus Gittinger <cg@exept.de>
parents: 5428
diff changeset
  2727
7dbf2507f262 halt vs. error
Claus Gittinger <cg@exept.de>
parents: 5428
diff changeset
  2728
            "/ refuse to do this 
7dbf2507f262 halt vs. error
Claus Gittinger <cg@exept.de>
parents: 5428
diff changeset
  2729
            "/ (can only happen in case of memory allocation trouble,
7dbf2507f262 halt vs. error
Claus Gittinger <cg@exept.de>
parents: 5428
diff changeset
  2730
            "/  where the allocation failed and some exception handler returned
7dbf2507f262 halt vs. error
Claus Gittinger <cg@exept.de>
parents: 5428
diff changeset
  2731
            "/  nil ...)
2228
ddcc662bd9b1 commentary
Claus Gittinger <cg@exept.de>
parents: 2226
diff changeset
  2732
        
5484
7dbf2507f262 halt vs. error
Claus Gittinger <cg@exept.de>
parents: 5428
diff changeset
  2733
            self error:'cannot set methodDictionary to nil' mayProceed:true.
7dbf2507f262 halt vs. error
Claus Gittinger <cg@exept.de>
parents: 5428
diff changeset
  2734
            ^ self.
7dbf2507f262 halt vs. error
Claus Gittinger <cg@exept.de>
parents: 5428
diff changeset
  2735
        ]
1494
dab70fc90ebc Remove old methodArray and selectorArray stuff (use MethodDictionary only).
Stefan Vogel <sv@exept.de>
parents: 1461
diff changeset
  2736
    ] ifFalse:[
5484
7dbf2507f262 halt vs. error
Claus Gittinger <cg@exept.de>
parents: 5428
diff changeset
  2737
        methodDictionary := dict.
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2738
    ].
1494
dab70fc90ebc Remove old methodArray and selectorArray stuff (use MethodDictionary only).
Stefan Vogel <sv@exept.de>
parents: 1461
diff changeset
  2739
    ^ self.
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  2740
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  2741
    "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
  2742
    "Modified: 12.6.1996 / 13:58:55 / stefan"
2228
ddcc662bd9b1 commentary
Claus Gittinger <cg@exept.de>
parents: 2226
diff changeset
  2743
    "Modified: 22.1.1997 / 21:10:48 / cg"
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2744
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2745
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2746
setSuperclass:aClass
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2747
    "set the superclass of the receiver.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2748
     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
  2749
     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
  2750
     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
  2751
     be correct, since no caches are flushed.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2752
     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
  2753
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2754
    superclass := aClass
2224
7e49310cb7af commentary
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
  2755
2438
52ca8e0904a7 try to preserve subclassInfo in #setSuperClass.
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  2756
    "Modified: 3.3.1997 / 13:27:00 / cg"
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2757
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2758
5906
4fdd3f36bfff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5862
diff changeset
  2759
setSuperclass:aClass instSize:i 
4fdd3f36bfff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5862
diff changeset
  2760
    "set some inst vars. 
4fdd3f36bfff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5862
diff changeset
  2761
     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
  2762
     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
  2763
     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
  2764
     be correct, since no caches are flushed.
4fdd3f36bfff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5862
diff changeset
  2765
     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
  2766
4fdd3f36bfff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5862
diff changeset
  2767
    self setSuperclass:aClass.
4fdd3f36bfff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5862
diff changeset
  2768
    instSize := i.
4fdd3f36bfff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5862
diff changeset
  2769
!
4fdd3f36bfff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5862
diff changeset
  2770
2224
7e49310cb7af commentary
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
  2771
setSuperclass:aClass methodDictionary:d instSize:i flags:f
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2772
    "set some inst vars. 
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2773
     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
  2774
     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
  2775
     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
  2776
     be correct, since no caches are flushed.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2777
     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
  2778
2224
7e49310cb7af commentary
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
  2779
    self setSuperclass:aClass.
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  2780
    self setMethodDictionary:d.
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2781
    instSize := i.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2782
    flags := f
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  2783
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  2784
    "Created: 7.6.1996 / 08:41:20 / stefan"
2224
7e49310cb7af commentary
Claus Gittinger <cg@exept.de>
parents: 2201
diff changeset
  2785
    "Modified: 22.1.1997 / 18:42:12 / 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
7260
edfa8d6a6046 method category rename
Claus Gittinger <cg@exept.de>
parents: 7224
diff changeset
  2788
!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
  2789
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  2790
addAllClassVarNamesTo:aCollection
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  2791
    "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
  2792
     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
  2793
6395
2ad7a8e870ab instance variables should only be accessed by getters/setters
Claus Gittinger <cg@exept.de>
parents: 6329
diff changeset
  2794
    |classvars superclass|
2ad7a8e870ab instance variables should only be accessed by getters/setters
Claus Gittinger <cg@exept.de>
parents: 6329
diff changeset
  2795
2ad7a8e870ab instance variables should only be accessed by getters/setters
Claus Gittinger <cg@exept.de>
parents: 6329
diff changeset
  2796
    superclass := self superclass.
1192
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  2797
    (superclass notNil) ifTrue:[
6395
2ad7a8e870ab instance variables should only be accessed by getters/setters
Claus Gittinger <cg@exept.de>
parents: 6329
diff changeset
  2798
        superclass addAllClassVarNamesTo:aCollection
1192
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  2799
    ].
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  2800
    (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
  2801
        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
  2802
    ].
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  2803
    ^ aCollection
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  2804
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  2805
    "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
  2806
!
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  2807
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  2808
addAllInstVarNamesTo:aCollection
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  2809
    "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
  2810
     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
  2811
     Return aCollection."
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  2812
6395
2ad7a8e870ab instance variables should only be accessed by getters/setters
Claus Gittinger <cg@exept.de>
parents: 6329
diff changeset
  2813
    |superclass|
2ad7a8e870ab instance variables should only be accessed by getters/setters
Claus Gittinger <cg@exept.de>
parents: 6329
diff changeset
  2814
2ad7a8e870ab instance variables should only be accessed by getters/setters
Claus Gittinger <cg@exept.de>
parents: 6329
diff changeset
  2815
    superclass := self superclass.
1192
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  2816
    (superclass notNil) ifTrue:[
5512
45dc420fd76f tuned #allInstVarNames
Claus Gittinger <cg@exept.de>
parents: 5484
diff changeset
  2817
        superclass addAllInstVarNamesTo:aCollection
1192
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  2818
    ].
5512
45dc420fd76f tuned #allInstVarNames
Claus Gittinger <cg@exept.de>
parents: 5484
diff changeset
  2819
    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
  2820
    ^ aCollection
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  2821
5512
45dc420fd76f tuned #allInstVarNames
Claus Gittinger <cg@exept.de>
parents: 5484
diff changeset
  2822
    "
45dc420fd76f tuned #allInstVarNames
Claus Gittinger <cg@exept.de>
parents: 5484
diff changeset
  2823
     SortedCollection allInstVarNames
45dc420fd76f tuned #allInstVarNames
Claus Gittinger <cg@exept.de>
parents: 5484
diff changeset
  2824
     SortedCollection instVarNames
45dc420fd76f tuned #allInstVarNames
Claus Gittinger <cg@exept.de>
parents: 5484
diff changeset
  2825
    "
4371
dc83645cc903 support to recursively enumerate all private classes
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  2826
!
dc83645cc903 support to recursively enumerate all private classes
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  2827
dc83645cc903 support to recursively enumerate all private classes
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  2828
addAllPrivateClassesTo:aCollection
dc83645cc903 support to recursively enumerate all private classes
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  2829
    "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
  2830
dc83645cc903 support to recursively enumerate all private classes
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  2831
    self privateClassesDo:[:aPrivateClass |
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2832
	aCollection add:aPrivateClass.
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  2833
	aPrivateClass addAllPrivateClassesTo:aCollection
4371
dc83645cc903 support to recursively enumerate all private classes
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  2834
    ].
1192
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
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2837
!Behavior methodsFor:'queries'!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2838
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2839
category
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2840
    "return the category of the class. 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2841
     Returning nil here, since Behavior does not define a category
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2842
     (only ClassDescriptions do)."
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2843
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2844
    ^ nil
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2845
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2846
    "
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2847
     Point category                
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2848
     Behavior new category           
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2849
    "
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2850
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2851
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2852
comment
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2853
    "return the comment of the class. 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2854
     Returning nil here, since Behavior does not define a category
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2855
     (only Classes do). This allows different Behavior-like objects
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2856
     (alien classes) to be handled by the browser as well."
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2857
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2858
    ^ nil
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2859
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2860
    "Modified: 16.4.1996 / 16:25:23 / cg"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2861
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2862
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2863
definitionSelector
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2864
    "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
  2865
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2866
    ^ (self firstDefinitionSelectorPart
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2867
      ,
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2868
      'instanceVariableNames:classVariableNames:poolDictionaries:category:') asSymbol
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2869
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2870
    "
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2871
     Object definitionSelector
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2872
     Array definitionSelector  
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2873
     ByteArray definitionSelector 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2874
     FloatArray definitionSelector 
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
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2877
    "Modified: 3.3.1997 / 11:50:37 / cg"
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
definitionSelectorPrivate
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2881
    "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
  2882
     as a private class"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2883
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2884
    ^ (self firstDefinitionSelectorPart
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2885
      ,
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2886
      '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
  2887
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  2888
    "
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2889
     Array definitionSelector      
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2890
     Array definitionSelectorPrivate  
1192
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  2891
    "
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  2892
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2893
    "Modified: 23.6.1997 / 10:45:57 / cg"
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2894
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2895
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2896
firstDefinitionSelectorPart
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2897
    "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
  2898
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2899
    self isVariable ifFalse:[
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2900
	^ #'subclass:'
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2901
    ].
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2902
    self isBytes ifTrue:[
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2903
	^ #'variableByteSubclass:'
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
    self isLongs ifTrue:[
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2906
	^ #'variableLongSubclass:'
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
    self isFloats ifTrue:[
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2909
	^ #'variableFloatSubclass:'
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2910
    ].
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2911
    self isDoubles ifTrue:[
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2912
	^ #'variableDoubleSubclass:'
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2913
    ].
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2914
    self isWords ifTrue:[
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2915
	^ #'variableWordSubclass:'
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2916
    ].
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2917
    self isSignedWords ifTrue:[
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2918
	^ #'variableSignedWordSubclass:'
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2919
    ].
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2920
    self isSignedLongs ifTrue:[
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2921
	^ #'variableSignedLongSubclass:'
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2922
    ].
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2923
    self isSignedLongLongs ifTrue:[
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2924
	^ #'variableSignedLongLongSubclass:'
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2925
    ].
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2926
    self isLongLongs ifTrue:[
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2927
	^ #'variableLongLongSubclass:'
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2928
    ].
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2929
    ^ #'variableSubclass:'
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2930
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2931
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2932
fullName
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2933
    "Answer the name of the receiver, fully qualified."
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2934
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2935
    ^ self name asString
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
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2938
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2939
isBehavior
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2940
    "return true, if the receiver is describing another objects behavior,
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2941
     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
  2942
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2943
    ^ true
1192
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  2944
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  2945
    "
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2946
     True isBehavior   
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2947
     true isBehavior
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2948
    "
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2949
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2950
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2951
isBuiltInClass
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2952
    "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
  2953
     Here, false is returned as default.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2954
     Notice, this is instance protocol, which means that any class
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2955
     other than those special ones) are non-builtIn by default."
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2956
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2957
    ^ false
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2958
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2959
    "Modified: 23.4.1996 / 15:55:52 / cg"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2960
    "Created: 28.10.1996 / 15:10:02 / cg"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2961
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2962
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2963
isJavaClass
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2964
    "return true, if the receiver is a java class.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2965
     Java class support is not yet released to the public."
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
    ^ false
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2968
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2969
    "Created: 17.3.1997 / 16:23:59 / cg"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2970
!
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
isPrivate
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2973
    "return true, if the receiver is some private class"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2974
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2975
    ^ self owningClass notNil
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2976
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2977
    "Modified: 12.10.1996 / 20:11:05 / cg"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2978
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2979
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2980
isSubclassOf:aClass
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2981
    "return true, if I am a subclass of the argument, aClass"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2982
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2983
    |theClass|
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2984
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2985
    theClass := superclass.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2986
    [theClass notNil] whileTrue:[
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2987
	(theClass == aClass) ifTrue:[^ true].
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2988
%{
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2989
	if (__isBehaviorLike(theClass)) {
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2990
	    theClass = __ClassInstPtr(theClass)->c_superclass;
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2991
	} else {
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2992
	    theClass = nil;
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2993
	}
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2994
%}.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2995
"/        theClass := theClass superclass.
3620
e517c8b18e90 added #allInstancesWeakly for ST-80 compatibility.
Claus Gittinger <cg@exept.de>
parents: 3619
diff changeset
  2996
    ].
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  2997
    ^ false
2053
82cf91ad2d8f added #allSelectors
ca
parents: 2048
diff changeset
  2998
82cf91ad2d8f added #allSelectors
ca
parents: 2048
diff changeset
  2999
    "
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3000
     String isSubclassOf:Collection  
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3001
     LinkedList isSubclassOf:Array   
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3002
     1 isSubclassOf:Number              <- will fail since 1 is no 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
!
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
name
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3007
    "although behaviors have no name, we return something
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3008
     useful here - there are many places (inspectors) where
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3009
     a classes name is asked for.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3010
     Implementing this message here allows anonymous classes
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3011
     and instances of them to be inspected."
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3012
7331
cd0f1492d540 code motion from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7269
diff changeset
  3013
    ^ #'anonymous Behavior'
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3014
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3015
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3016
nameInBrowser
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3017
    "return a nameString as shown in browsers"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3018
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3019
    ^ self name
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3020
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3021
7331
cd0f1492d540 code motion from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7269
diff changeset
  3022
nameWithArticle
cd0f1492d540 code motion from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7269
diff changeset
  3023
    "return a string consisting of classname preceeded by an article.
cd0f1492d540 code motion from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7269
diff changeset
  3024
     (dont expect me to write national variants for this ... :-)
cd0f1492d540 code motion from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7269
diff changeset
  3025
     If you have special preferences, redefine it..."
cd0f1492d540 code motion from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7269
diff changeset
  3026
 
cd0f1492d540 code motion from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7269
diff changeset
  3027
    |classname|
cd0f1492d540 code motion from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7269
diff changeset
  3028
 
cd0f1492d540 code motion from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7269
diff changeset
  3029
    classname := self name.
cd0f1492d540 code motion from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7269
diff changeset
  3030
    ^ classname article , ' ' , classname
cd0f1492d540 code motion from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7269
diff changeset
  3031
 
cd0f1492d540 code motion from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7269
diff changeset
  3032
    "
cd0f1492d540 code motion from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7269
diff changeset
  3033
     SmallInteger nameWithArticle
cd0f1492d540 code motion from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7269
diff changeset
  3034
    "
cd0f1492d540 code motion from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7269
diff changeset
  3035
!
cd0f1492d540 code motion from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7269
diff changeset
  3036
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3037
owningClass
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3038
    "return my owning class - nil if I am a public class"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3039
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3040
    "/ this information is in the metaclass ...
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3041
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3042
    ^ self class owningClass
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
    "Created: 15.10.1996 / 21:19:32 / cg"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3045
    "Modified: 7.11.1996 / 13:49:28 / cg"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3046
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3047
6733
4f8a80a22261 added #owningClassOrYourself
Claus Gittinger <cg@exept.de>
parents: 6727
diff changeset
  3048
owningClassOrYourself
4f8a80a22261 added #owningClassOrYourself
Claus Gittinger <cg@exept.de>
parents: 6727
diff changeset
  3049
    "return my owning class if I am private, myself otherwise"
4f8a80a22261 added #owningClassOrYourself
Claus Gittinger <cg@exept.de>
parents: 6727
diff changeset
  3050
4f8a80a22261 added #owningClassOrYourself
Claus Gittinger <cg@exept.de>
parents: 6727
diff changeset
  3051
    self owningClass notNil ifTrue:[^ self topOwningClass].
4f8a80a22261 added #owningClassOrYourself
Claus Gittinger <cg@exept.de>
parents: 6727
diff changeset
  3052
    ^ self
4f8a80a22261 added #owningClassOrYourself
Claus Gittinger <cg@exept.de>
parents: 6727
diff changeset
  3053
!
4f8a80a22261 added #owningClassOrYourself
Claus Gittinger <cg@exept.de>
parents: 6727
diff changeset
  3054
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3055
sharedPools
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3056
    "shared pools are not (yet) supported by ST/X;
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3057
     return a dummy, empty collection here"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3058
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3059
    ^ #()
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3060
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3061
    "Created: 19.6.1997 / 18:19:36 / cg"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3062
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3063
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3064
sourceCodeAt:aSelector
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3065
    "return the methods source for given selector aSelector or nil.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3066
     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
  3067
7676
132c48f4bef9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7605
diff changeset
  3068
    ^ self sourceCodeAt:aSelector ifAbsent:nil
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3069
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
     True sourceCodeAt:#ifTrue:
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3072
     Object sourceCodeAt:#==
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3073
     Behavior sourceCodeAt:#sourceCodeAt:
2053
82cf91ad2d8f added #allSelectors
ca
parents: 2048
diff changeset
  3074
    "
82cf91ad2d8f added #allSelectors
ca
parents: 2048
diff changeset
  3075
!
82cf91ad2d8f added #allSelectors
ca
parents: 2048
diff changeset
  3076
7676
132c48f4bef9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7605
diff changeset
  3077
sourceCodeAt:aSelector ifAbsent:exceptionalValue
132c48f4bef9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7605
diff changeset
  3078
    "return the methods source for given selector aSelector or exceptionalValue.
132c48f4bef9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7605
diff changeset
  3079
     Only methods in the receiver - not in the superclass chain are tested."
132c48f4bef9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7605
diff changeset
  3080
132c48f4bef9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7605
diff changeset
  3081
    |method|
132c48f4bef9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7605
diff changeset
  3082
132c48f4bef9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7605
diff changeset
  3083
    method := self compiledMethodAt:aSelector.
132c48f4bef9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7605
diff changeset
  3084
    method isNil ifTrue:[^ exceptionalValue value].
132c48f4bef9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7605
diff changeset
  3085
    ^ method source
132c48f4bef9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7605
diff changeset
  3086
!
132c48f4bef9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7605
diff changeset
  3087
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3088
sourceCodeManager
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3089
    "return the sourceCodeManager of the class. 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3090
     Returning nil here, since Behavior does not define any sourceCode management.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3091
     (only Classes do). This allows different Behavior-like objects
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3092
     (alien classes) to be handled by the browser as well."
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3093
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3094
    ^ nil
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3095
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3096
    "Created: 16.4.1996 / 16:26:03 / cg"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3097
!
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
supportsMethodCategories
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3100
    "return true, if my methods are categorized.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3101
     This is a hook for the browser to allow alien classes
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3102
     to be handled (aktually, this is not yet used)."
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
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3105
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3106
    "Created: 30.7.1997 / 14:59:08 / cg"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3107
    "Modified: 30.7.1997 / 15:02:03 / cg"
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3108
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3109
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3110
theMetaclass
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3111
    "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
  3112
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3113
    ^ self class
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3114
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3115
    "Created: / 30.1.2000 / 23:08:30 / cg"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3116
    "Modified: / 31.1.2000 / 16:16:52 / cg"
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
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3119
theNonMetaclass
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3120
    "return myself, also implemented in my metaclass, which also returns me."
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3121
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3122
    ^ self
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3123
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3124
    "Created: / 30.1.2000 / 23:07:59 / cg"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3125
    "Modified: / 31.1.2000 / 16:17:46 / cg"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3126
!
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
topOwningClass
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3129
    "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
  3130
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3131
    "/ this information is in the metaclass ...
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3132
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3133
    ^ self class topOwningClass
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
    "Created: 15.10.1996 / 21:19:32 / cg"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3136
    "Modified: 3.1.1997 / 19:18:49 / cg"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3137
! !
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3138
6931
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  3139
!Behavior methodsFor:'queries-inheritance'!
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3140
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3141
allSubclasses
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3142
    "return a collection of all subclasses (direct AND indirect) of
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3143
     the receiver. There will be no specific order, in which entries
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3144
     are returned."
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3145
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3146
    |newColl|
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3147
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3148
    newColl := OrderedCollection new.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3149
    self allSubclassesDo:[:aClass |
5327
5e5602d156fa #isNamespace renamed to #isNameSpace
Claus Gittinger <cg@exept.de>
parents: 5325
diff changeset
  3150
        (aClass isNameSpace not or:[aClass == Smalltalk]) ifTrue:[
5e5602d156fa #isNamespace renamed to #isNameSpace
Claus Gittinger <cg@exept.de>
parents: 5325
diff changeset
  3151
            newColl add:aClass
5e5602d156fa #isNamespace renamed to #isNameSpace
Claus Gittinger <cg@exept.de>
parents: 5325
diff changeset
  3152
        ]
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3153
    ].
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3154
    ^ newColl
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3155
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3156
    "
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3157
     Collection allSubclasses
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3158
    "
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3159
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3160
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3161
allSubclassesInOrder
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3162
    "return a collection of all subclasses (direct AND indirect) of
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3163
     the receiver. Higher level subclasses will come before lower ones."
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3164
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3165
    |newColl|
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3166
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3167
    newColl := OrderedCollection new.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3168
    self allSubclassesInOrderDo:[:aClass |
5327
5e5602d156fa #isNamespace renamed to #isNameSpace
Claus Gittinger <cg@exept.de>
parents: 5325
diff changeset
  3169
        (aClass isNameSpace not or:[aClass == Smalltalk]) ifTrue:[
5e5602d156fa #isNamespace renamed to #isNameSpace
Claus Gittinger <cg@exept.de>
parents: 5325
diff changeset
  3170
            newColl add:aClass
5e5602d156fa #isNamespace renamed to #isNameSpace
Claus Gittinger <cg@exept.de>
parents: 5325
diff changeset
  3171
        ]
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3172
    ].
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3173
    ^ newColl
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3174
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
     Collection allSubclassesInOrder
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
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3180
allSuperclasses
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3181
    "return a collection of the receivers accumulated superclasses"
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
    |aCollection theSuperClass|
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3184
6395
2ad7a8e870ab instance variables should only be accessed by getters/setters
Claus Gittinger <cg@exept.de>
parents: 6329
diff changeset
  3185
    theSuperClass := self superclass.
4451
ca4d77871c1c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4428
diff changeset
  3186
    theSuperClass isNil ifTrue:[
6395
2ad7a8e870ab instance variables should only be accessed by getters/setters
Claus Gittinger <cg@exept.de>
parents: 6329
diff changeset
  3187
        ^ #()
4451
ca4d77871c1c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4428
diff changeset
  3188
    ].
ca4d77871c1c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4428
diff changeset
  3189
    aCollection := OrderedCollection new.
ca4d77871c1c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4428
diff changeset
  3190
    [theSuperClass notNil] whileTrue:[
6395
2ad7a8e870ab instance variables should only be accessed by getters/setters
Claus Gittinger <cg@exept.de>
parents: 6329
diff changeset
  3191
        aCollection add:theSuperClass.
2ad7a8e870ab instance variables should only be accessed by getters/setters
Claus Gittinger <cg@exept.de>
parents: 6329
diff changeset
  3192
        theSuperClass := theSuperClass superclass
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3193
    ].
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3194
    ^ aCollection
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3195
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
     String allSuperclasses 
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3198
    "
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
canBeSubclassed
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3202
    "return true, if its allowed to create subclasses of the receiver.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3203
     This method is redefined in SmallInteger and UndefinedObject, since
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3204
     instances are detected by their pointer-fields, i.e. they do not have
7435
c5afb1b0fd1b Prepare for moving of SubclassInfo to subclass instcar in Class
Stefan Vogel <sv@exept.de>
parents: 7358
diff changeset
  3205
     a class entry (you don't have to understand this :-)"
10
claus
parents: 5
diff changeset
  3206
claus
parents: 5
diff changeset
  3207
    ^ true
claus
parents: 5
diff changeset
  3208
!
claus
parents: 5
diff changeset
  3209
3641
d419c5d9a1c3 added #commonSuperClass:
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  3210
commonSuperclass:aClass
d419c5d9a1c3 added #commonSuperClass:
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  3211
    "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
  3212
     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
  3213
     (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
  3214
d419c5d9a1c3 added #commonSuperClass:
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  3215
    (aClass includesBehavior:self) ifTrue:[^ self].
d419c5d9a1c3 added #commonSuperClass:
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  3216
    (self inheritsFrom:aClass) ifTrue:[^ aClass].
6754
d9c0f178f091 commonSuperClass: care for nil subclass
Claus Gittinger <cg@exept.de>
parents: 6733
diff changeset
  3217
    superclass isNil ifTrue:[^ nil].
d9c0f178f091 commonSuperClass: care for nil subclass
Claus Gittinger <cg@exept.de>
parents: 6733
diff changeset
  3218
    ^ superclass commonSuperclass:aClass
3641
d419c5d9a1c3 added #commonSuperClass:
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  3219
d419c5d9a1c3 added #commonSuperClass:
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  3220
    "
d419c5d9a1c3 added #commonSuperClass:
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  3221
     Integer commonSuperclass:Fraction  
d419c5d9a1c3 added #commonSuperClass:
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  3222
     SmallInteger commonSuperclass:Fraction  
d419c5d9a1c3 added #commonSuperClass:
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  3223
     View commonSuperclass:Form  
d419c5d9a1c3 added #commonSuperClass:
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  3224
     View commonSuperclass:Image  
6754
d9c0f178f091 commonSuperClass: care for nil subclass
Claus Gittinger <cg@exept.de>
parents: 6733
diff changeset
  3225
     Integer commonSuperclass:Autoload      
3641
d419c5d9a1c3 added #commonSuperClass:
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  3226
    "
d419c5d9a1c3 added #commonSuperClass:
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  3227
d419c5d9a1c3 added #commonSuperClass:
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  3228
    "Modified: / 10.7.1998 / 02:13:04 / cg"
d419c5d9a1c3 added #commonSuperClass:
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  3229
!
d419c5d9a1c3 added #commonSuperClass:
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  3230
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3231
hasMultipleSuperclasses
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3232
    "Return true, if this class inherits from other classes 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3233
     (beside its primary superclass). 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3234
     This method is a preparation for a future multiple inheritance extension 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3235
     - currently it is not supported by the VM"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3236
7331
cd0f1492d540 code motion from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7269
diff changeset
  3237
    ^ false
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3238
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3239
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3240
inheritsFrom:aClass
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3241
    "return true, if the receiver inherits methods from aClass;
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3242
     i.e. if aClass is on the receivers superclass chain."
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3243
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3244
    ^ self isSubclassOf:aClass
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3245
293
31df3850e98c *** empty log message ***
claus
parents: 283
diff changeset
  3246
    "
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3247
     True inheritsFrom:Object
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3248
     LinkedList inheritsFrom:Array
293
31df3850e98c *** empty log message ***
claus
parents: 283
diff changeset
  3249
    "
1088
989f0e510a32 nicer message
Claus Gittinger <cg@exept.de>
parents: 983
diff changeset
  3250
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3251
    "Modified: 19.6.1997 / 18:13:21 / cg"
3053
d6aad366397f added #whichSelectorsReferTo: and #compiledMethodAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  3252
!
d6aad366397f added #whichSelectorsReferTo: and #compiledMethodAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  3253
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3254
subclasses
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3255
    "return a collection of the direct subclasses of the receiver"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3256
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3257
    |newColl|
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3258
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3259
    newColl := OrderedCollection new.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3260
    self subclassesDo:[:aClass |
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3261
        newColl add:aClass
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3262
    ].
7435
c5afb1b0fd1b Prepare for moving of SubclassInfo to subclass instcar in Class
Stefan Vogel <sv@exept.de>
parents: 7358
diff changeset
  3263
    ^ newColl.
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3264
!
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
superclasses
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3267
    "return a collection of the receivers immediate superclasses.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3268
     This method is a preparation for a future multiple inheritance extension 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3269
     - currently it is not supported by the VM"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3270
7331
cd0f1492d540 code motion from ClassDescription
Claus Gittinger <cg@exept.de>
parents: 7269
diff changeset
  3271
    ^ Array with:self superclass.
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3272
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3273
    "
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3274
     String superclasses  
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3275
    "
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3276
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3277
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3278
withAllSubclasses
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3279
    "return a collection containing the receiver and 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3280
     all subclasses (direct AND indirect) of the receiver"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3281
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3282
    |coll|
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
    coll := self allSubclasses asOrderedCollection.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3285
    coll addFirst:self.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3286
    ^ coll
3053
d6aad366397f added #whichSelectorsReferTo: and #compiledMethodAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  3287
d6aad366397f added #whichSelectorsReferTo: and #compiledMethodAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  3288
    "
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3289
     Collection withAllSubclasses
3053
d6aad366397f added #whichSelectorsReferTo: and #compiledMethodAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  3290
    "
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3291
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3292
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3293
withAllSuperclasses
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3294
    "return a collection containing the receiver and all
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3295
     of the receivers accumulated superclasses"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3296
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3297
    |aCollection|
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
    aCollection := OrderedCollection new.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3300
    self withAllSuperclassesDo:[:cls |
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3301
        aCollection add:cls
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
    ^ aCollection
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
     String withAllSuperclasses 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3307
    "
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3308
! !
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3309
6931
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  3310
!Behavior methodsFor:'queries-instances'!
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3311
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3312
allDerivedInstances
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3313
    "return a collection of all instances of myself and 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3314
     instances of all subclasses of myself.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3315
     This method is going to be removed for protocol compatibility with
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3316
     other STs; use allSubInstances"
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
    <resource:#obsolete>
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3319
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3320
    self obsoleteMethodWarning:'use #allSubInstances'.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3321
    ^ self allSubInstances
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3322
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3323
    "Modified: 31.7.1997 / 23:04:59 / cg"
2436
dbea519857e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
  3324
!
dbea519857e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
  3325
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3326
allInstances
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3327
    "return a collection of all my instances"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3328
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3329
    "Read the documentation on why there seem to be no
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3330
     instances of SmallInteger and UndefinedObject"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3331
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3332
    |coll|
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3333
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3334
    coll := OrderedCollection new:100.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3335
    self allInstancesDo:[:anObject |
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3336
	coll add:anObject
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3337
    ].
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3338
    ^ coll 
2713
11cd28893629 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2699
diff changeset
  3339
11cd28893629 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2699
diff changeset
  3340
    "
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3341
     ScrollBar allInstances
2713
11cd28893629 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2699
diff changeset
  3342
    "
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3343
!
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
allInstancesWeakly:doWeakly
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3346
    "return a collection of all my instances.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3347
     If weakly is true, a weak collection is returned."
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3348
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3349
    "Read the documentation on why there seem to be no
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3350
     instances of SmallInteger and UndefinedObject"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3351
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3352
    |coll|
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3353
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3354
    coll := self allInstances.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3355
    doWeakly ifTrue:[
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3356
	coll := WeakArray withAll:coll
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3357
    ].
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3358
    ^ coll
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3359
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3360
    "Created: / 19.6.1998 / 02:17:20 / cg"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3361
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3362
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3363
allSubInstances
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3364
    "return a collection of all instances of myself and 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3365
     instances of all subclasses of myself."
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3366
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3367
    |coll|
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
    coll := OrderedCollection new:100.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3370
    self allSubInstancesDo:[:anObject |
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3371
	(anObject isKindOf:self) ifTrue:[
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3372
	    coll add:anObject
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3373
	]
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
    ^ coll 
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
    "
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3378
     View allSubInstances
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3379
    "
2713
11cd28893629 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2699
diff changeset
  3380
!
11cd28893629 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2699
diff changeset
  3381
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3382
derivedInstanceCount
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3383
    "return the number of instances of myself and of subclasses"
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3384
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3385
    |count|
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3386
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3387
    count := 0.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3388
    ObjectMemory allObjectsDo:[:anObject |
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3389
	(anObject isKindOf:self) ifTrue:[
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3390
	    count := count + 1
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3391
	]
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3392
    ].
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3393
    ^ count
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3394
293
31df3850e98c *** empty log message ***
claus
parents: 283
diff changeset
  3395
    "
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3396
     View derivedInstanceCount
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3397
     SequenceableCollection derivedInstanceCount
983
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3398
     Object derivedInstanceCount
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3399
    "
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3400
!
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3401
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3402
hasDerivedInstances
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3403
    "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
  3404
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3405
    "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
  3406
     instances of SmallInteger and UndefinedObject"
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3407
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3408
    ObjectMemory allObjectsDo:[:anObject |
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3409
	(anObject isKindOf:self) ifTrue:[
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3410
	    ^ true
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3411
	]
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3412
    ].
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3413
    ^ false
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3414
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3415
    "
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3416
     Object hasDerivedInstances         - certainly true
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3417
     SharedQueue hasDerivedInstances
293
31df3850e98c *** empty log message ***
claus
parents: 283
diff changeset
  3418
    "
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3419
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3420
2674
5278213b500c added #hasImmediateInstances for VW compatibility
Claus Gittinger <cg@exept.de>
parents: 2666
diff changeset
  3421
hasImmediateInstances
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  3422
    "return true if this class has immediate instances
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  3423
     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
  3424
     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
  3425
     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
  3426
5278213b500c added #hasImmediateInstances for VW compatibility
Claus Gittinger <cg@exept.de>
parents: 2666
diff changeset
  3427
    ^ false
5278213b500c added #hasImmediateInstances for VW compatibility
Claus Gittinger <cg@exept.de>
parents: 2666
diff changeset
  3428
5278213b500c added #hasImmediateInstances for VW compatibility
Claus Gittinger <cg@exept.de>
parents: 2666
diff changeset
  3429
    "Created: 3.6.1997 / 12:01:05 / cg"
5278213b500c added #hasImmediateInstances for VW compatibility
Claus Gittinger <cg@exept.de>
parents: 2666
diff changeset
  3430
!
5278213b500c added #hasImmediateInstances for VW compatibility
Claus Gittinger <cg@exept.de>
parents: 2666
diff changeset
  3431
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3432
hasInstances
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3433
    "return true, if there are any instances of myself"
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3434
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3435
    "Read the documentation on why there seem to be no
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3436
     instances of SmallInteger and UndefinedObject"
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3437
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3438
"/    ObjectMemory allObjectsDo:[:anObject |
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3439
"/        (anObject class == self) ifTrue:[
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3440
"/            ^ true
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
"/    ].
983
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3443
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3444
    ObjectMemory allInstancesOf:self do:[:anObject |
983
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3445
	^ true
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3446
    ].
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3447
    ^ false
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3448
293
31df3850e98c *** empty log message ***
claus
parents: 283
diff changeset
  3449
    "
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3450
     Object hasInstances
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3451
     SequenceableCollection hasInstances
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3452
     Float hasInstances
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3453
     SmallInteger hasInstances
293
31df3850e98c *** empty log message ***
claus
parents: 283
diff changeset
  3454
    "
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3455
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3456
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3457
hasSharedInstances
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3458
    "return true if this class has shared instances, that is, instances
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3459
     with the same value are identical.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3460
     False is returned here, only redefined in classes which have unified
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3461
     instances (or should be treated so)."
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3462
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3463
    ^ false
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3464
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3465
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3466
instanceCount
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3467
    "return the number of instances of myself."
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3468
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3469
    "Read the documentation on why there seem to be no
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3470
     instances of SmallInteger and UndefinedObject"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3471
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3472
    |count|
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3473
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3474
    count := 0.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3475
"/    ObjectMemory allObjectsDo:[:anObject |
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3476
"/        (anObject class == self) ifTrue:[
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3477
"/            count := count + 1
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3478
"/        ]
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3479
"/    ].
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3480
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3481
    ObjectMemory allInstancesOf:self do:[:anObject |
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3482
	count := count + 1
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3483
    ].
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3484
    ^ count
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3485
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3486
    "
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3487
     View instanceCount
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3488
     Object instanceCount
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3489
     Float instanceCount
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3490
     SequenceableCollection instanceCount
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3491
     SmallInteger instanceCount   .... mhmh - hear, hear
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3492
    "
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3493
! !
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3494
6931
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  3495
!Behavior methodsFor:'queries-instlayout'!
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3496
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3497
elementByteSize
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3498
    "for bit-like containers, return the number of bytes stored per
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3499
     element. For pointer indexed classes, 0 is returned"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3500
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3501
    self isBitsExtended ifTrue:[
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3502
	self isBytes ifTrue:[^ 1].
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3503
	self isWords ifTrue:[^ 2].
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3504
	self isSignedWords ifTrue:[^ 2].
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3505
	self isLongs ifTrue:[^ 4].
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3506
	self isSignedLongs ifTrue:[^ 4].
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3507
	self isLongLongs ifTrue:[^ 8].
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3508
	self isSignedLongLongs ifTrue:[^ 8].
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3509
    ].
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3510
    self isFloats ifTrue:[^ 4].
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3511
    self isDoubles ifTrue:[^ 8].
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3512
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3513
    ^ 0
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3514
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3515
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3516
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3517
isBits
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3518
    "return true, if instances have indexed byte or short instance variables.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3519
     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
  3520
     not prepared to handle them correctly."
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
%{  /* NOCONTEXT */
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3523
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3524
    REGISTER int what;
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
    what = (INT)(__INST(flags)) & __MASKSMALLINT(ARRAYMASK);
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3527
    RETURN (( (what == __MASKSMALLINT(BYTEARRAY))
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3528
             || (what == __MASKSMALLINT(WORDARRAY))) ? true : false ); 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3529
%}.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3530
    ^ self isBytes or:[self isWords]
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3531
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3532
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3533
isBitsExtended
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3534
    "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
  3535
     Ignore float and double arrays.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3536
     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
  3537
     is defined to only return true for byte- and wordIndexed instances.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3538
     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
  3539
     instVars."
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
%{  /* NOCONTEXT */
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
    REGISTER int what;
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3544
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3545
    what = (INT)(__INST(flags)) & __MASKSMALLINT(ARRAYMASK);
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3546
    RETURN (( (what == __MASKSMALLINT(BYTEARRAY))
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3547
	     || (what == __MASKSMALLINT(WORDARRAY))
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3548
	     || (what == __MASKSMALLINT(SWORDARRAY))
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3549
	     || (what == __MASKSMALLINT(LONGARRAY))
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3550
	     || (what == __MASKSMALLINT(SLONGARRAY))
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3551
	     || (what == __MASKSMALLINT(LONGLONGARRAY))
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3552
	     || (what == __MASKSMALLINT(SLONGLONGARRAY))) ? true : false ); 
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
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3555
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3556
isBytes
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3557
    "return true, if instances have indexed byte instance variables"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3558
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3559
    "this could also be defined as:
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3560
	^ (flags bitAnd:(Behavior maskIndexType)) == Behavior flagBytes
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3561
    "
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3562
%{  /* NOCONTEXT */
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3563
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3564
    RETURN ( (((INT)(__INST(flags)) & __MASKSMALLINT(ARRAYMASK)) == __MASKSMALLINT(BYTEARRAY)) ? true : false ); 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3565
%}
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
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3568
isDoubles
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3569
    "return true, if instances have indexed double instance variables"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3570
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3571
    "this could also be defined as:
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3572
	^ (flags bitAnd:(Behavior maskIndexType)) == Behavior flagDoubles
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
%{  /* NOCONTEXT */
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3575
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3576
    RETURN ( (((INT)(__INST(flags)) & __MASKSMALLINT(ARRAYMASK)) == __MASKSMALLINT(DOUBLEARRAY)) ? true : false ); 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3577
%}
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
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3580
isFixed
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3581
    "return true, if instances do not have indexed instance variables"
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
    "this could also be defined as:
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3584
        ^ self isVariable not
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3585
    "
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
%{  /* NOCONTEXT */
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
    RETURN ( ((INT)(__INST(flags)) & __MASKSMALLINT(ARRAYMASK)) ? false : true ); 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3590
%}.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3591
    ^ self isVariable not
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3592
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3593
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3594
isFloats
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3595
    "return true, if instances have indexed float instance variables"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3596
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3597
    "this could also be defined as:
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3598
	^ (flags bitAnd:(Behavior maskIndexType)) == Behavior flagFloats
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
%{  /* NOCONTEXT */
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
    RETURN ( (((INT)(__INST(flags)) & __MASKSMALLINT(ARRAYMASK)) == __MASKSMALLINT(FLOATARRAY)) ? true : false ); 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3603
%}
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3604
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3605
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3606
isFloatsOrDoubles
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3607
    "return true, if instances have indexed float or double instance variables"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3608
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3609
%{  /* NOCONTEXT */
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
    int what;
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
    what = (INT)(__INST(flags)) & __MASKSMALLINT(ARRAYMASK);
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3614
    RETURN (( (what == __MASKSMALLINT(FLOATARRAY))
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3615
             || (what == __MASKSMALLINT(DOUBLEARRAY))) ? true : false ); 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3616
%}.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3617
    ^ self isFloats or:[self isDoubles]
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
    "
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3620
     (Object new) class isFloatsOrDoubles 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3621
     (Point new) class isFloatsOrDoubles   
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3622
     (Array new) class isFloatsOrDoubles   
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3623
     (ByteArray new) class isFloatsOrDoubles  
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3624
     (FloatArray new) class isFloatsOrDoubles  
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3625
     (DoubleArray new) class isFloatsOrDoubles  
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3626
    "
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
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3629
isLongLongs
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3630
    "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
  3631
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3632
%{  /* NOCONTEXT */
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3633
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3634
    RETURN ( (((INT)(__INST(flags)) & __MASKSMALLINT(ARRAYMASK)) == __MASKSMALLINT(LONGLONGARRAY)) ? true : false );
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
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3638
isLongs
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3639
    "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
  3640
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3641
%{  /* NOCONTEXT */
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
    RETURN ( (((INT)(__INST(flags)) & __MASKSMALLINT(ARRAYMASK)) == __MASKSMALLINT(LONGARRAY)) ? true : false ); 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3644
%}
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
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3647
isPointers
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3648
    "return true, if instances have pointer instance variables 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3649
     i.e. are either non-indexed or have indexed pointer variables"
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
    "QUESTION: should we ignore WeakPointers ?"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3652
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3653
%{  /* NOCONTEXT */
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3654
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3655
    REGISTER int flags;
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
    flags = __intVal(__INST(flags)) & ARRAYMASK;
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3658
    switch (flags) {
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3659
	default:
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3660
	    /* normal objects */
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3661
	    RETURN ( true );
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
	case BYTEARRAY:
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3664
	case WORDARRAY:
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3665
	case LONGARRAY:
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3666
	case SWORDARRAY:
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3667
	case SLONGARRAY:
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3668
	case SLONGLONGARRAY:
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3669
	case LONGLONGARRAY:
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3670
	case FLOATARRAY:
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3671
	case DOUBLEARRAY:
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3672
	    RETURN (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
	case WKPOINTERARRAY:
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3675
	    /* what about those ? */
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3676
	    RETURN (true );
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3677
    }
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3678
%}
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3679
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3680
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3681
isSignedLongLongs
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3682
    "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
  3683
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3684
%{  /* NOCONTEXT */
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
    RETURN ( (((INT)(__INST(flags)) & __MASKSMALLINT(ARRAYMASK)) == __MASKSMALLINT(SLONGLONGARRAY)) ? true : false );
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3687
%}
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
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3690
isSignedLongs
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3691
    "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
  3692
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3693
%{  /* NOCONTEXT */
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
    RETURN ( (((INT)(__INST(flags)) & __MASKSMALLINT(ARRAYMASK)) == __MASKSMALLINT(SLONGARRAY)) ? true : false );
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3696
%}
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
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3699
isSignedWords
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3700
    "return true, if instances have indexed signed short instance variables"
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
%{  /* NOCONTEXT */
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
    RETURN ( (((INT)(__INST(flags)) & __MASKSMALLINT(ARRAYMASK)) == __MASKSMALLINT(SWORDARRAY)) ? true : false );
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3705
%}
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3706
!
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
isVariable
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3709
    "return true, if instances have indexed instance variables"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3710
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3711
    "this could also be defined as:
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3712
	^ (flags bitAnd:(Behavior maskIndexType)) ~~ 0
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
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3715
%{  /* NOCONTEXT */
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3716
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3717
    RETURN ( ((INT)(__INST(flags)) & __MASKSMALLINT(ARRAYMASK)) ? true : false ); 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3718
%}
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
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3721
isWeakPointers
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3722
    "return true, if instances have weak pointer instance variables"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3723
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3724
%{  /* NOCONTEXT */
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3725
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3726
    REGISTER int flags;
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3728
    flags = __intVal(__INST(flags)) & ARRAYMASK;
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3729
    if (flags == WKPOINTERARRAY) {
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3730
        RETURN ( true );
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3731
    }
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3732
%}.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3733
    ^ false
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
isWords
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3737
    "return true, if instances have indexed short instance variables"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3738
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3739
    "this could also be defined as:
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3740
	^ (flags bitAnd:(Behavior maskIndexType)) == Behavior flagWords
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3741
    "
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3742
%{  /* NOCONTEXT */
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3743
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3744
    RETURN ( (((INT)(__INST(flags)) & __MASKSMALLINT(ARRAYMASK)) == __MASKSMALLINT(WORDARRAY)) ? true : false ); 
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
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3748
sizeOfInst:n
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3749
    "return the number of bytes required for an instance of
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3750
     myself with n indexed instance variables. The argument n 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3751
     should be zero for classes without indexed instance variables.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3752
     See Behavior>>niceNew: for an application of this."
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
    |nInstvars|
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
    nInstvars := self instSize.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3757
%{
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3758
    int nBytes;
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3759
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3760
    nBytes = __intVal(nInstvars) * sizeof(OBJ) + OHDR_SIZE; 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3761
    if (__isSmallInteger(n)) {
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3762
	int nIndex;
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
	nIndex = __intVal(n);
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3765
	switch (__intVal(__INST(flags)) & ARRAYMASK) {
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3766
	    case BYTEARRAY:
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3767
		nBytes += nIndex;
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3768
		if (nBytes & (__ALIGN__ - 1)) {
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3769
		    nBytes = (nBytes & ~(__ALIGN__ - 1)) + __ALIGN__;
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
		break;
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3772
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3773
	    case WORDARRAY:
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3774
	    case SWORDARRAY:
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3775
		nBytes += nIndex * 2;
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3776
		if (nBytes & (__ALIGN__ - 1)) {
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3777
		    nBytes = (nBytes & ~(__ALIGN__ - 1)) + __ALIGN__;
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3778
		}
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3779
		break;
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
	    case LONGARRAY:
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3782
	    case SLONGARRAY:
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3783
		nBytes += nIndex * 4;
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3784
		break;
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3785
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3786
	    case LONGLONGARRAY:
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3787
	    case SLONGLONGARRAY:
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3788
		nBytes += nIndex * 8;
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3789
		break;
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3790
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3791
	    case FLOATARRAY:
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3792
		nBytes += nIndex * sizeof(float);
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3793
		break;
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3794
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3795
	    case DOUBLEARRAY:
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3796
		nBytes += nIndex * sizeof(double);
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3797
		break;
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
	    default:
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3800
		nBytes += nIndex * sizeof(OBJ);
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3801
		break;
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
    RETURN (__MKSMALLINT(nBytes));
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3805
%}
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3806
! !
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3807
6931
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  3808
!Behavior methodsFor:'queries-protocol'!
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3809
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3810
allSelectors
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3811
    "return a collection of all selectors understood by the receiver;
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3812
     this includes my selectors and all superclass selectors
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3813
     (i.e. the receivers full protocol)"
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
    |superclass|
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
    superclass := self superclass.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3818
    superclass notNil ifTrue:[
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3819
        ^ superclass allSelectors addAll:(self selectors); yourself.
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
    ^ self selectors asIdentitySet
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3822
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3823
    "
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3824
     Point allSelectors
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3825
     View allSelectors
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3826
     Array allSelectors
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
!
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
cachedLookupMethodFor:aSelector
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3831
    "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
  3832
     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
  3833
     and all of its superclasses are searched for aSelector.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3834
     Return the method, or nil if instances do not understand aSelector.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3835
     This interface provides exactly the same information as #lookupMethodFor:,
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3836
     but uses the lookup-cache in the VM for faster search. 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3837
     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
  3838
     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
  3839
     irrelevant entries. (do NOT loop over all objects calling this method).
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3840
     Does NOT (currently) handle MI"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3841
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3842
%{  /* NOCONTEXT */
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3843
    RETURN ( __lookup(self, aSelector) );
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3844
%}
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3845
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3846
    "
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3847
     String cachedLookupMethodFor:#=
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3848
     String cachedLookupMethodFor:#asOrderedCollection
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3849
    "
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3850
!
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
canUnderstand:aSelector
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3853
    "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
  3854
     (i.e. true if my instances understand aSelector)"
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
    ^ (self lookupMethodFor:aSelector) notNil
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3857
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3858
    "
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3859
     True canUnderstand:#ifTrue:
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3860
     True canUnderstand:#==
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3861
     True canUnderstand:#do:
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
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3865
compiledMethodAt:aSelector
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3866
    "return the method for given selector aSelector or nil.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3867
     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
  3868
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3869
    ^ self compiledMethodAt:aSelector ifAbsent:nil
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3870
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
     Object compiledMethodAt:#==
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3873
     (Object compiledMethodAt:#==) category
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3874
    "
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3875
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3876
    "Modified: / 7.6.1996 / 14:43:32 / stefan"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3877
    "Modified: / 27.10.1997 / 20:18:55 / cg"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3878
!
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
compiledMethodAt:aSelector ifAbsent:exceptionValue
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3881
    "return the method for given selector aSelector or the value
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3882
     of exceptionValue if not present.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3883
     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
  3884
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3885
    |dict|
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
    dict := self methodDictionary.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3888
    dict isNil ifTrue:[
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3889
	('Behavior [warning]: nil methodDictionary in ' , self name printString) errorPrintCR.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3890
	^ exceptionValue value
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3891
    ].
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3892
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3893
    ^ dict at:aSelector ifAbsent:exceptionValue
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3894
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3895
    "
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3896
     Object compiledMethodAt:#==
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3897
     (Object compiledMethodAt:#==) category
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
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3900
    "Modified: / 7.6.1996 / 14:43:32 / stefan"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3901
    "Modified: / 10.1.1997 / 17:27:21 / cg"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3902
    "Created: / 27.10.1997 / 20:18:28 / cg"
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
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3905
containsMethod:aMethod
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3906
    "Return true, if the argument, aMethod is a method of myself"
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
    |dict|
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3909
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3910
    dict := self methodDictionary. 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3911
    dict isNil ifTrue:[^ false].  "degenerated class"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3912
    ^ (dict keyAtValue:aMethod ifAbsent:[0]) ~~ 0
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3913
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  3914
    "Modified: 12.6.1996 / 13:33:53 / stefan"
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
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3917
hasMethods
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3918
    "return true, if there are any (local) methods in this class"
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3919
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  3920
    ^ (self methodDictionary size ~~ 0)
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3921
293
31df3850e98c *** empty log message ***
claus
parents: 283
diff changeset
  3922
    "
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3923
     True hasMethods
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3924
     True class hasMethods
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3925
    "
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  3926
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  3927
    "Modified: 7.6.1996 / 15:43:09 / stefan"
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3928
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3929
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3930
implements:aSelector
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3931
    "return true, if the receiver implements aSelector.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3932
     (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
  3933
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3934
     Caveat:
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3935
	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
  3936
	selector table - therefore, it does not care for ignoredMethods.
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3937
	(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
  3938
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3939
     Hint:
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3940
	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
  3941
	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
  3942
	to do this."
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3943
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3944
    ^ self includesSelector:aSelector
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3945
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3946
    "
983
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3947
     notice: this is class protocol
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3948
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3949
       True implements:#ifTrue:  
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3950
       True implements:#==        
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3951
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3952
     notice: this is instance protocol
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3953
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3954
       true respondsTo:#ifTrue:   
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3955
       true respondsTo:#==        
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3956
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3957
     notice: this is class protocol
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3958
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3959
       True canUnderstand:#ifTrue: 
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3960
       True canUnderstand:#==        
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3961
    "
983
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3962
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3963
    "Modified: 10.2.1996 / 13:15:56 / cg"
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3964
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3965
2698
26abb8941250 added #includesBehavior for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 2674
diff changeset
  3966
includesBehavior:aClass
26abb8941250 added #includesBehavior for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 2674
diff changeset
  3967
    "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
  3968
     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
  3969
26abb8941250 added #includesBehavior for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 2674
diff changeset
  3970
    ^ (self == aClass) or:[self isSubclassOf:aClass]
26abb8941250 added #includesBehavior for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 2674
diff changeset
  3971
26abb8941250 added #includesBehavior for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 2674
diff changeset
  3972
    "
26abb8941250 added #includesBehavior for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 2674
diff changeset
  3973
     True includesBehavior:Object  
26abb8941250 added #includesBehavior for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 2674
diff changeset
  3974
     True includesBehavior:Boolean 
26abb8941250 added #includesBehavior for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 2674
diff changeset
  3975
     True includesBehavior:True    
26abb8941250 added #includesBehavior for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 2674
diff changeset
  3976
     True includesBehavior:False   
26abb8941250 added #includesBehavior for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 2674
diff changeset
  3977
    "
26abb8941250 added #includesBehavior for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 2674
diff changeset
  3978
26abb8941250 added #includesBehavior for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 2674
diff changeset
  3979
    "Modified: 19.6.1997 / 18:14:35 / cg"
26abb8941250 added #includesBehavior for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 2674
diff changeset
  3980
!
26abb8941250 added #includesBehavior for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 2674
diff changeset
  3981
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3982
includesSelector:aSelector
1494
dab70fc90ebc Remove old methodArray and selectorArray stuff (use MethodDictionary only).
Stefan Vogel <sv@exept.de>
parents: 1461
diff changeset
  3983
    "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
  3984
     a method for aSelector.
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3985
     (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
  3986
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  3987
     Hint:
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  3988
	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
  3989
	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
  3990
	to do this."
4307
29dd3e6c91ca better #includesSelector
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3991
29dd3e6c91ca better #includesSelector
Claus Gittinger <cg@exept.de>
parents: 3980
diff changeset
  3992
    ^ self methodDictionary includesKey:aSelector
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  3993
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  3994
    "
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  3995
	Object includesSelector:#==
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  3996
	Object includesSelector:#murks
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  3997
    "
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  3998
3882
3e11ea1568d5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3870
diff changeset
  3999
    "Modified: / 7.6.1996 / 14:27:24 / stefan"
3e11ea1568d5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3870
diff changeset
  4000
    "Modified: / 16.10.1998 / 13:00:15 / cg"
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4001
!
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
lookupMethodFor:aSelector
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4004
    "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
  4005
     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
  4006
     and all of its superclasses are searched for aSelector.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4007
     Return the method, or nil if instances do not understand aSelector.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4008
     EXPERIMENTAL: take care of multiple superclasses."
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4009
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4010
    |m cls|
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4011
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4012
    cls := self.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4013
    [cls notNil] whileTrue:[
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4014
	m := cls compiledMethodAt:aSelector.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4015
	m notNil ifTrue:[^ m].
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4016
	cls hasMultipleSuperclasses ifTrue:[
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4017
	    cls superclasses do:[:aSuperClass |
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4018
		m := aSuperClass lookupMethodFor:aSelector.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4019
		m notNil ifTrue:[^ m].
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4020
	    ].
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4021
	    ^ nil
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4022
	] ifFalse:[
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4023
	    cls := cls superclass
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4024
	]
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4025
    ].
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4026
    ^ nil
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4027
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4028
6460
99ac1e25f249 added #responseTo:
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
  4029
responseTo:aSelector
99ac1e25f249 added #responseTo:
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
  4030
    "return the method (from here or the inheritance chain), 
99ac1e25f249 added #responseTo:
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
  4031
     which implements aSelector; return nil if none."
99ac1e25f249 added #responseTo:
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
  4032
99ac1e25f249 added #responseTo:
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
  4033
    |cls|
99ac1e25f249 added #responseTo:
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
  4034
99ac1e25f249 added #responseTo:
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
  4035
    cls := self whichClassIncludesSelector:aSelector.
99ac1e25f249 added #responseTo:
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
  4036
    cls notNil ifTrue:[
99ac1e25f249 added #responseTo:
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
  4037
        ^ cls compiledMethodAt:aSelector
99ac1e25f249 added #responseTo:
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
  4038
    ].
99ac1e25f249 added #responseTo:
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
  4039
    ^ nil
99ac1e25f249 added #responseTo:
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
  4040
99ac1e25f249 added #responseTo:
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
  4041
    "
99ac1e25f249 added #responseTo:
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
  4042
     String responseTo:#==      
99ac1e25f249 added #responseTo:
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
  4043
     String responseTo:#collect:   
99ac1e25f249 added #responseTo:
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
  4044
     String responseTo:#,   
99ac1e25f249 added #responseTo:
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
  4045
    "
99ac1e25f249 added #responseTo:
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
  4046
!
99ac1e25f249 added #responseTo:
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
  4047
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4048
selectorAtMethod:aMethod
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4049
    "Return the selector for given method aMethod."
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4050
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4051
    ^ self selectorAtMethod:aMethod ifAbsent:[nil]
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4052
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4053
    "
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4054
     |m|
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4055
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4056
     m := Object compiledMethodAt:#copy.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4057
     Fraction selectorAtMethod:m.
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
     |m|
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4061
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4062
     m := Object compiledMethodAt:#copy.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4063
     Object selectorAtMethod:m.
356
claus
parents: 345
diff changeset
  4064
    "
claus
parents: 345
diff changeset
  4065
!
claus
parents: 345
diff changeset
  4066
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4067
selectorAtMethod:aMethod ifAbsent:failBlock
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4068
    "return the selector for given method aMethod
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4069
     or the value of failBlock, if not found."
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4070
1814
fdaf647b5086 check for nil methodDict
Claus Gittinger <cg@exept.de>
parents: 1760
diff changeset
  4071
    |md|
fdaf647b5086 check for nil methodDict
Claus Gittinger <cg@exept.de>
parents: 1760
diff changeset
  4072
fdaf647b5086 check for nil methodDict
Claus Gittinger <cg@exept.de>
parents: 1760
diff changeset
  4073
    md := self methodDictionary.
fdaf647b5086 check for nil methodDict
Claus Gittinger <cg@exept.de>
parents: 1760
diff changeset
  4074
    md isNil ifTrue:[
fdaf647b5086 check for nil methodDict
Claus Gittinger <cg@exept.de>
parents: 1760
diff changeset
  4075
	'OOPS - nil methodDictionary' errorPrintCR.
fdaf647b5086 check for nil methodDict
Claus Gittinger <cg@exept.de>
parents: 1760
diff changeset
  4076
	^ nil
fdaf647b5086 check for nil methodDict
Claus Gittinger <cg@exept.de>
parents: 1760
diff changeset
  4077
    ].
fdaf647b5086 check for nil methodDict
Claus Gittinger <cg@exept.de>
parents: 1760
diff changeset
  4078
    ^ md keyAtValue:aMethod ifAbsent:failBlock.
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4079
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4080
    "
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4081
     |m|
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
     m := Object compiledMethodAt:#copy.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4084
     Object selectorAtMethod:m ifAbsent:['oops'].
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4085
    "
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4086
    "
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4087
     |m|
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4088
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4089
     m := Object compiledMethodAt:#copy.
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4090
     Fraction selectorAtMethod:m ifAbsent:['oops'].
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4091
    "
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  4092
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1449
diff changeset
  4093
    "Modified: 7.6.1996 / 15:15:45 / stefan"
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4094
!
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4095
2
claus
parents: 1
diff changeset
  4096
whichClassImplements:aSelector
328
claus
parents: 325
diff changeset
  4097
    "obsolete interface;
claus
parents: 325
diff changeset
  4098
     use whichClassIncludesSelector: for ST-80 compatibility."
claus
parents: 325
diff changeset
  4099
claus
parents: 325
diff changeset
  4100
    ^ self whichClassIncludesSelector:aSelector
claus
parents: 325
diff changeset
  4101
!
claus
parents: 325
diff changeset
  4102
claus
parents: 325
diff changeset
  4103
whichClassIncludesSelector:aSelector
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  4104
    "return the class in the inheritance chain, which implements the method
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  4105
     for aSelector; return nil if none.
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  4106
     EXPERIMENTAL: handle multiple superclasses"
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  4107
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  4108
    |cls|
2
claus
parents: 1
diff changeset
  4109
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  4110
    cls := self.
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  4111
    [cls notNil] whileTrue:[
983
86239edb7b7d change in VM data structures
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  4112
	(cls includesSelector:aSelector) ifTrue:[^ cls].
154
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  4113
	cls hasMultipleSuperclasses ifTrue:[
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  4114
	    cls superclasses do:[:aSuperClass |
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  4115
		|implementingClass|
2
claus
parents: 1
diff changeset
  4116
328
claus
parents: 325
diff changeset
  4117
		implementingClass := aSuperClass whichClassIncludesSelector:aSelector.
154
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  4118
		implementingClass notNil ifTrue:[^ implementingClass].
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  4119
	    ].
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  4120
	    ^ nil
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  4121
	] ifFalse:[
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  4122
	    cls := cls superclass
d4236ec280a6 *** empty log message ***
claus
parents: 151
diff changeset
  4123
	]
2
claus
parents: 1
diff changeset
  4124
    ].
claus
parents: 1
diff changeset
  4125
    ^ nil
claus
parents: 1
diff changeset
  4126
91
b3971c7dc731 *** empty log message ***
claus
parents: 88
diff changeset
  4127
    "
328
claus
parents: 325
diff changeset
  4128
     String whichClassIncludesSelector:#==
claus
parents: 325
diff changeset
  4129
     String whichClassIncludesSelector:#collect:
91
b3971c7dc731 *** empty log message ***
claus
parents: 88
diff changeset
  4130
    "
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4131
! !
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4132
6931
da671aa63926 category change
Claus Gittinger <cg@exept.de>
parents: 6889
diff changeset
  4133
!Behavior methodsFor:'queries-variables'!
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4134
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4135
allClassVarNames
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4136
    "return a collection of all the class variable name-strings
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4137
     this includes all superclass-class variables"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4138
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4139
    ^ self addAllClassVarNamesTo:(OrderedCollection new)
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4140
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4141
    "
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4142
     Float allClassVarNames
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4143
    "
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4144
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4145
    "Modified: 16.4.1996 / 18:01:00 / cg"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4146
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4147
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4148
allInstVarNames
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4149
    "return a collection of all the instance variable name-strings
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4150
     this includes all superclass-instance variables.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4151
     Instvars of superclasses come first (i.e. the position matches
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4152
     the instVarAt:-index)."
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4153
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4154
    self superclass isNil ifTrue:[^ self instVarNames].
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4155
    ^ self addAllInstVarNamesTo:(OrderedCollection new)
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4156
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4157
    "
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4158
     Dictionary instVarNames       
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4159
     Dictionary allInstVarNames    
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4160
    "
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4161
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4162
    "Modified: 16.4.1996 / 18:03:55 / cg"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4163
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4164
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4165
allInstanceVariableNames
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4166
    "alias for allInstVarNames"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4167
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4168
    ^ self allInstVarNames
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4169
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4170
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4171
classVarNames
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4172
    "return a collection of the class variable name-strings.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4173
     Returning empty here, since Behavior does not define any classVariables.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4174
     (only Classes do). This allows different Behavior-like objects
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4175
     (alien classes) to be handled by the browser as well."
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4176
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4177
    ^ #()
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4178
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4179
    "Created: 16.4.1996 / 17:57:31 / cg"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4180
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4181
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4182
classVariableString
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4183
    "return a string of the class variables names.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4184
     Returning empty here, since Behavior does not define any classVariables.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4185
     (only Classes do). This allows different Behavior-like objects
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4186
     (alien classes) to be handled by the browser as well."
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4187
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
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4190
    "Created: 16.4.1996 / 16:28:56 / cg"
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
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4193
instVarNames
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4194
    "Behavior does not provide this info - generate synthetic names."
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
    |superclass superInsts|
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
    superclass := self superclass.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4199
    superclass isNil ifTrue:[
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4200
        superInsts := 0
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4201
    ] ifFalse:[
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4202
        superInsts := superclass instSize
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
    ^ (superInsts+1 to:self instSize) 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4205
       collect:[:index | '* instVar' , index printString , ' *']
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4206
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4207
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4208
instanceVariableNames
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4209
    "alias for instVarNames."
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 instVarNames
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4212
!
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
instanceVariableString
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4215
    "return a string with dummy names here - typically, your
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4216
     objects are instances of Class, not Behavior."
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
    |superclass s superInsts n "{Class: SmallInteger }"|
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4219
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4220
    superclass := self superclass.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4221
    s := ''.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4222
    superclass isNil ifTrue:[
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4223
        superInsts := 0
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4224
    ] ifFalse:[
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4225
        superInsts := superclass instSize
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
    n := self instSize.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4228
    superInsts+1 to:n do:[:i |
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4229
        s size == 0 ifFalse:[s := s , ' '].
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4230
        s := s , 'instvar' , i printString
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4231
    ].
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4232
    ^ s
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
     Behavior new instanceVariableString 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4236
    "
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
    "Modified: 7.5.1996 / 12:50:25 / cg"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4239
    "Modified: 3.6.1996 / 16:03:33 / stefan"
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4240
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4241
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4242
whichClassDefinesClassVar: aString 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4243
	^self whichClassSatisfies: 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4244
			[:aClass | 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4245
			(aClass classVarNames collect: [:each | each asString]) 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4246
				includes: aString asString]
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4247
!
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
whichClassDefinesInstVar: aString 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4250
	^self whichClassSatisfies: [:aClass | aClass instVarNames includes: aString]
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4251
!
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
whichSelectorsAssign: instVarName 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4254
        "Answer a set of selectors whose methods write the argument, instVarName, 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4255
        as a named instance variable."
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4256
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4257
        ^ self whichSelectorsWrite: instVarName
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4258
!
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4259
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4260
whichSelectorsRead: instVarName 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4261
	"Answer a set of selectors whose methods read the argument, instVarName, 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4262
	as a named instance variable."
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
	| instVarIndex methodDict|
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4265
	instVarIndex := self allInstVarNames indexOf: instVarName ifAbsent: [^Set new].
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4266
	methodDict := self methodDictionary.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4267
	^methodDict keys select: [:sel | (methodDict at: sel)
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4268
			readsField: instVarIndex]
2
claus
parents: 1
diff changeset
  4269
!
claus
parents: 1
diff changeset
  4270
3053
d6aad366397f added #whichSelectorsReferTo: and #compiledMethodAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  4271
whichSelectorsReferTo:someLiteralConstant
d6aad366397f added #whichSelectorsReferTo: and #compiledMethodAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  4272
    "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
  4273
     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
  4274
d6aad366397f added #whichSelectorsReferTo: and #compiledMethodAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  4275
    |setOfSelectors|
d6aad366397f added #whichSelectorsReferTo: and #compiledMethodAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  4276
d6aad366397f added #whichSelectorsReferTo: and #compiledMethodAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  4277
    setOfSelectors := IdentitySet new.
6395
2ad7a8e870ab instance variables should only be accessed by getters/setters
Claus Gittinger <cg@exept.de>
parents: 6329
diff changeset
  4278
    self methodDictionary keysAndValuesDo:[:sel :mthd |
2ad7a8e870ab instance variables should only be accessed by getters/setters
Claus Gittinger <cg@exept.de>
parents: 6329
diff changeset
  4279
        (mthd referencesLiteral:someLiteralConstant) ifTrue:[
2ad7a8e870ab instance variables should only be accessed by getters/setters
Claus Gittinger <cg@exept.de>
parents: 6329
diff changeset
  4280
            setOfSelectors add:sel
2ad7a8e870ab instance variables should only be accessed by getters/setters
Claus Gittinger <cg@exept.de>
parents: 6329
diff changeset
  4281
        ].
3053
d6aad366397f added #whichSelectorsReferTo: and #compiledMethodAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  4282
    ].
d6aad366397f added #whichSelectorsReferTo: and #compiledMethodAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  4283
d6aad366397f added #whichSelectorsReferTo: and #compiledMethodAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  4284
    ^ setOfSelectors
d6aad366397f added #whichSelectorsReferTo: and #compiledMethodAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  4285
d6aad366397f added #whichSelectorsReferTo: and #compiledMethodAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  4286
    "
d6aad366397f added #whichSelectorsReferTo: and #compiledMethodAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  4287
     String whichSelectorsReferTo:#at:  
d6aad366397f added #whichSelectorsReferTo: and #compiledMethodAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  4288
     String whichSelectorsReferTo:CharacterArray 
d6aad366397f added #whichSelectorsReferTo: and #compiledMethodAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  4289
    "
d6aad366397f added #whichSelectorsReferTo: and #compiledMethodAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  4290
d6aad366397f added #whichSelectorsReferTo: and #compiledMethodAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  4291
    "Modified: / 28.10.1997 / 13:13:18 / cg"
d6aad366397f added #whichSelectorsReferTo: and #compiledMethodAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  4292
!
d6aad366397f added #whichSelectorsReferTo: and #compiledMethodAt:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  4293
5297
3779bff26cbe compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 5222
diff changeset
  4294
whichSelectorsReferToClassVariable:nameOfClassVariable
3779bff26cbe compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 5222
diff changeset
  4295
    "return a collection of selectors of methods which refer to the argument.
3779bff26cbe compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 5222
diff changeset
  4296
     Search the literal arrays of my methods to do this."
3779bff26cbe compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 5222
diff changeset
  4297
3779bff26cbe compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 5222
diff changeset
  4298
    |internalNameOfVar|
3779bff26cbe compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 5222
diff changeset
  4299
3779bff26cbe compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 5222
diff changeset
  4300
    internalNameOfVar := (self name , ':' , nameOfClassVariable) asSymbol.
3779bff26cbe compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 5222
diff changeset
  4301
    ^ self whichSelectorsReferTo:internalNameOfVar
3779bff26cbe compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 5222
diff changeset
  4302
3779bff26cbe compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 5222
diff changeset
  4303
    "
3779bff26cbe compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 5222
diff changeset
  4304
     Object whichSelectorsReferToClassVariable:#Dependencies
3779bff26cbe compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 5222
diff changeset
  4305
    "
3779bff26cbe compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 5222
diff changeset
  4306
3779bff26cbe compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 5222
diff changeset
  4307
    "Modified: / 4.2.2000 / 00:40:22 / cg"
3779bff26cbe compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 5222
diff changeset
  4308
!
3779bff26cbe compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 5222
diff changeset
  4309
3779bff26cbe compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 5222
diff changeset
  4310
whichSelectorsReferToGlobal:nameOfGlobal
3779bff26cbe compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 5222
diff changeset
  4311
    "return a collection of selectors of methods which refer to the argument.
3779bff26cbe compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 5222
diff changeset
  4312
     Search the literal arrays of my methods to do this."
3779bff26cbe compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 5222
diff changeset
  4313
3779bff26cbe compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 5222
diff changeset
  4314
    |internalNameOfVar|
3779bff26cbe compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 5222
diff changeset
  4315
3779bff26cbe compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 5222
diff changeset
  4316
    internalNameOfVar := nameOfGlobal asSymbol.
3779bff26cbe compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 5222
diff changeset
  4317
    ^ self whichSelectorsReferTo:internalNameOfVar
3779bff26cbe compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 5222
diff changeset
  4318
3779bff26cbe compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 5222
diff changeset
  4319
    "
3779bff26cbe compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 5222
diff changeset
  4320
     Object whichSelectorsReferToGlobal:#Debugger
3779bff26cbe compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 5222
diff changeset
  4321
    "
3779bff26cbe compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 5222
diff changeset
  4322
3779bff26cbe compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 5222
diff changeset
  4323
    "Modified: / 4.2.2000 / 00:41:10 / cg"
3779bff26cbe compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 5222
diff changeset
  4324
!
3779bff26cbe compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 5222
diff changeset
  4325
6727
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4326
whichSelectorsWrite: instVarName 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4327
	"Answer a set of selectors whose methods write the argument, instVarName, 
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4328
	as a named instance variable."
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4329
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4330
	| instVarIndex methodDict |
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4331
	instVarIndex := self allInstVarNames indexOf: instVarName ifAbsent: [^Set new].
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4332
	methodDict := self methodDictionary.
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4333
	^methodDict keys select: [:sel | (methodDict at: sel)
30e331bcfeed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6658
diff changeset
  4334
			writesField: instVarIndex]
2
claus
parents: 1
diff changeset
  4335
! !
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4336
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4337
!Behavior methodsFor:'snapshots'!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4338
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4339
postSnapshot
1192
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  4340
    "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
  4341
     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
  4342
     about snapshooting."
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  4343
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  4344
    "Modified: 16.4.1996 / 18:12:08 / cg"
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4345
!
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4346
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4347
preSnapshot
1192
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  4348
    "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
  4349
     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
  4350
     about snapshooting."
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  4351
b1c2b886f23c moved some protocol from Class to upper levels; renamed categories
Claus Gittinger <cg@exept.de>
parents: 1191
diff changeset
  4352
    "Modified: 16.4.1996 / 18:12:14 / cg"
620
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4353
! !
c7353f86a302 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  4354
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  4355
!Behavior methodsFor:'tracing'!
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  4356
4682
4158042a9c8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4657
diff changeset
  4357
traceInto:aRequestor level:level from:referrer
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  4358
    "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
  4359
4682
4158042a9c8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4657
diff changeset
  4360
    ^ aRequestor traceBehavior:self level:level from:referrer
4657
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  4361
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  4362
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  4363
! !
ace3dc642424 added #hasSharedInstances and tracing support.
Claus Gittinger <cg@exept.de>
parents: 4636
diff changeset
  4364
1760
e7254ff682fd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
  4365
!Behavior class methodsFor:'documentation'!
662
df7953db3847 version method at the end
Claus Gittinger <cg@exept.de>
parents: 642
diff changeset
  4366
df7953db3847 version method at the end
Claus Gittinger <cg@exept.de>
parents: 642
diff changeset
  4367
version
7676
132c48f4bef9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7605
diff changeset
  4368
    ^ '$Header: /cvs/stx/stx/libbasic/Behavior.st,v 1.230 2003-10-21 20:52:07 cg Exp $'
662
df7953db3847 version method at the end
Claus Gittinger <cg@exept.de>
parents: 642
diff changeset
  4369
! !