Array.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Wed, 22 Apr 2015 07:33:07 +0100
branchjv
changeset 18261 22bdfc405bca
parent 18257 877a8f1b326d
parent 18246 d4d749c60f22
child 18274 042d13555f1f
permissions -rw-r--r--
Merge
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) 1989 by Claus Gittinger
155
edd7fc34e104 *** empty log message ***
claus
parents: 92
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
"
5347
21b418ac4cc3 oops: from:to:do: failed badly when stopIndex was < startIndex.
Claus Gittinger <cg@exept.de>
parents: 5049
diff changeset
    12
"{ Package: 'stx:libbasic' }"
21b418ac4cc3 oops: from:to:do: failed badly when stopIndex was < startIndex.
Claus Gittinger <cg@exept.de>
parents: 5049
diff changeset
    13
17376
5c0cab0193cf class: Array
Stefan Vogel <sv@exept.de>
parents: 16387
diff changeset
    14
"{ NameSpace: Smalltalk }"
5c0cab0193cf class: Array
Stefan Vogel <sv@exept.de>
parents: 16387
diff changeset
    15
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    16
ArrayedCollection variableSubclass:#Array
1083
fadaedfa28f8 cosmetic change - no space after last element in displayString
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
    17
	instanceVariableNames:''
fadaedfa28f8 cosmetic change - no space after last element in displayString
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
    18
	classVariableNames:''
fadaedfa28f8 cosmetic change - no space after last element in displayString
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
    19
	poolDictionaries:''
fadaedfa28f8 cosmetic change - no space after last element in displayString
Claus Gittinger <cg@exept.de>
parents: 951
diff changeset
    20
	category:'Collections-Arrayed'
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    21
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
    22
1903
30c98b3377c5 slight tuning
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
    23
!Array class methodsFor:'documentation'!
77
6c38ca59927f *** empty log message ***
claus
parents: 47
diff changeset
    24
554
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
    25
copyright
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
    26
"
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
    27
 COPYRIGHT (c) 1989 by Claus Gittinger
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
    28
	      All Rights Reserved
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
    29
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
    30
 This software is furnished under a license and may be used
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
    31
 only in accordance with the terms of that license and with the
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
    32
 inclusion of the above copyright notice.   This software may not
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
    33
 be provided or otherwise made available to, or used by, any
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
    34
 other person.  No title to or ownership of the software is
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
    35
 hereby transferred.
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
    36
"
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
    37
!
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
    38
77
6c38ca59927f *** empty log message ***
claus
parents: 47
diff changeset
    39
documentation
6c38ca59927f *** empty log message ***
claus
parents: 47
diff changeset
    40
"
18246
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
    41
    Instances of Array store general objects;
16386
99c180342c05 class: Array
Claus Gittinger <cg@exept.de>
parents: 16262
diff changeset
    42
    an array's size is fixed, therefore add:/remove: are not allowed.
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
    43
    (actually, #add: is implemented for compatibility with smalltalks which
16386
99c180342c05 class: Array
Claus Gittinger <cg@exept.de>
parents: 16262
diff changeset
    44
     provide it, but it is very slow and outputs an annoying warning message...)
1266
cef9b3cd49df commentary
Claus Gittinger <cg@exept.de>
parents: 1244
diff changeset
    45
cef9b3cd49df commentary
Claus Gittinger <cg@exept.de>
parents: 1244
diff changeset
    46
    Access to the individual elements is via an integer index,
cef9b3cd49df commentary
Claus Gittinger <cg@exept.de>
parents: 1244
diff changeset
    47
    using the well-known access messages #at: and #at:put:.
399
claus
parents: 393
diff changeset
    48
1903
30c98b3377c5 slight tuning
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
    49
    Since Arrays are used very often in the system (either directly or a data-container
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
    50
    of more complex collection classes), some methods have been tuned by reimplementing
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
    51
    them as primitives. Also, the compiler inline-codes some operations
1903
30c98b3377c5 slight tuning
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
    52
    (especially: the above accessing messages).
92
0c73b48551ac *** empty log message ***
claus
parents: 82
diff changeset
    53
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
    54
    Notice that Array is a built-in class
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
    55
    (i.e. the VM knows about its representation).
16386
99c180342c05 class: Array
Claus Gittinger <cg@exept.de>
parents: 16262
diff changeset
    56
    Therefore it is NOT possible to add named instance variables or change Arrays inheritance.
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
    57
    However, subclassing is allowed of course
1266
cef9b3cd49df commentary
Claus Gittinger <cg@exept.de>
parents: 1244
diff changeset
    58
    - even with added named instance variables.
92
0c73b48551ac *** empty log message ***
claus
parents: 82
diff changeset
    59
0c73b48551ac *** empty log message ***
claus
parents: 82
diff changeset
    60
    Literal arrays (i.e. array-constants) are entered in source as:
1266
cef9b3cd49df commentary
Claus Gittinger <cg@exept.de>
parents: 1244
diff changeset
    61
18246
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
    62
	#( element1 element2 ... element-N)
1266
cef9b3cd49df commentary
Claus Gittinger <cg@exept.de>
parents: 1244
diff changeset
    63
cef9b3cd49df commentary
Claus Gittinger <cg@exept.de>
parents: 1244
diff changeset
    64
    where each element must be itself a literal constant.
cef9b3cd49df commentary
Claus Gittinger <cg@exept.de>
parents: 1244
diff changeset
    65
    Array, symbol and byteArray constants within an array can be written
cef9b3cd49df commentary
Claus Gittinger <cg@exept.de>
parents: 1244
diff changeset
    66
    without the initial #-character.
cef9b3cd49df commentary
Claus Gittinger <cg@exept.de>
parents: 1244
diff changeset
    67
    In addition, true, false and nil are also allowed as array-literal.
399
claus
parents: 393
diff changeset
    68
92
0c73b48551ac *** empty log message ***
claus
parents: 82
diff changeset
    69
    Examples:
1266
cef9b3cd49df commentary
Claus Gittinger <cg@exept.de>
parents: 1244
diff changeset
    70
      #(1 2 3)                -> 3 elements: 1, 2 and 3
cef9b3cd49df commentary
Claus Gittinger <cg@exept.de>
parents: 1244
diff changeset
    71
      #('foo' 2 (1 2))        -> 3 elements: a String, 2 and anotherArray
cef9b3cd49df commentary
Claus Gittinger <cg@exept.de>
parents: 1244
diff changeset
    72
      #('foo' #(1 2) #foo)    -> 3 elements: a String, another array and a symbol
cef9b3cd49df commentary
Claus Gittinger <cg@exept.de>
parents: 1244
diff changeset
    73
      #('foo' (1 2) foo)      -> same as above
cef9b3cd49df commentary
Claus Gittinger <cg@exept.de>
parents: 1244
diff changeset
    74
      #(nil true #true)       -> 3 elements: nil, true and a symbol (watch out)
cef9b3cd49df commentary
Claus Gittinger <cg@exept.de>
parents: 1244
diff changeset
    75
      #(two [3 3 3] (4 4 4))  -> 3 elements: a symbol, a byteArray and another array
1276
21649f929b32 commentary
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
    76
16386
99c180342c05 class: Array
Claus Gittinger <cg@exept.de>
parents: 16262
diff changeset
    77
    Also, a syntactic sugar piece allows for Array instances to be created dynamcially
99c180342c05 class: Array
Claus Gittinger <cg@exept.de>
parents: 16262
diff changeset
    78
    at runtime with the brace syntax:
99c180342c05 class: Array
Claus Gittinger <cg@exept.de>
parents: 16262
diff changeset
    79
18246
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
    80
	{ expr1 . expr2 . ... . expr-N }
16386
99c180342c05 class: Array
Claus Gittinger <cg@exept.de>
parents: 16262
diff changeset
    81
99c180342c05 class: Array
Claus Gittinger <cg@exept.de>
parents: 16262
diff changeset
    82
    where each expr-i evaluates to an element of the new array instance.
99c180342c05 class: Array
Claus Gittinger <cg@exept.de>
parents: 16262
diff changeset
    83
    Notice that the expressions are separated by a period.
99c180342c05 class: Array
Claus Gittinger <cg@exept.de>
parents: 16262
diff changeset
    84
    Semantically, this is equivalent to ``Array with:expr1 with:expr2 ... with:expr-N''
99c180342c05 class: Array
Claus Gittinger <cg@exept.de>
parents: 16262
diff changeset
    85
    Examples:
18246
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
    86
	{ 1 . 2 . 3 }         -> a new 3 element array; similar to #( 1 2 3 ),
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
    87
				 but in contrast, a new array instance is created
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
    88
	{
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
    89
	    { 'foo' . [ Transcript showCR:'foo' ] } .
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
    90
	    { 'bar' . [ Transcript showCR:'bar' ] }
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
    91
	    { 'baz' . [ Transcript showCR:'baz' ] }
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
    92
	}
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
    93
			      -> a new 3 element array, consisting of 3 new
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
    94
				 2-element array instances, consisting of a string
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
    95
				 and a block each
16386
99c180342c05 class: Array
Claus Gittinger <cg@exept.de>
parents: 16262
diff changeset
    96
4062
4959de96b06f documentation
Claus Gittinger <cg@exept.de>
parents: 3979
diff changeset
    97
    [memory requirements:]
18246
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
    98
	OBJ-HEADER + (size * ptr-size)
4062
4959de96b06f documentation
Claus Gittinger <cg@exept.de>
parents: 3979
diff changeset
    99
2145
d243ffafeae3 more docu
Claus Gittinger <cg@exept.de>
parents: 2052
diff changeset
   100
    [warning:]
18246
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
   101
	read the warning about 'growing fixed size collection'
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
   102
	in ArrayedCollection's documentation
1276
21649f929b32 commentary
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
   103
1290
15ba3221b89b documentation
Claus Gittinger <cg@exept.de>
parents: 1276
diff changeset
   104
    [author:]
18246
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
   105
	Claus Gittinger
1290
15ba3221b89b documentation
Claus Gittinger <cg@exept.de>
parents: 1276
diff changeset
   106
1276
21649f929b32 commentary
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
   107
    [see also:]
18246
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
   108
	OrderedCollection
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
   109
	ByteArray FloatArray DoubleArray IntegerArray BitArray
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
   110
	CharacterArray String
77
6c38ca59927f *** empty log message ***
claus
parents: 47
diff changeset
   111
"
626
f359cb7eba58 version at the end
Claus Gittinger <cg@exept.de>
parents: 588
diff changeset
   112
! !
3
24d81bf47225 *** empty log message ***
claus
parents: 2
diff changeset
   113
1903
30c98b3377c5 slight tuning
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
   114
!Array class methodsFor:'instance creation'!
249
claus
parents: 220
diff changeset
   115
claus
parents: 220
diff changeset
   116
basicNew:anInteger
claus
parents: 220
diff changeset
   117
    "return an instance of myself with anInteger indexed variables.
claus
parents: 220
diff changeset
   118
     Since Array-creation is so common (all other collections use them),
claus
parents: 220
diff changeset
   119
     it seems worth to have a specially tuned version here."
claus
parents: 220
diff changeset
   120
claus
parents: 220
diff changeset
   121
%{  /* NOCONTEXT */
claus
parents: 220
diff changeset
   122
claus
parents: 220
diff changeset
   123
    OBJ newobj;
14687
e718f7219911 64bit changes
Claus Gittinger <cg@exept.de>
parents: 14657
diff changeset
   124
    unsigned INT nInstVars;
e718f7219911 64bit changes
Claus Gittinger <cg@exept.de>
parents: 14657
diff changeset
   125
    unsigned INT instsize;
249
claus
parents: 220
diff changeset
   126
    INT nindexedinstvars;
claus
parents: 220
diff changeset
   127
    REGISTER OBJ *op;
claus
parents: 220
diff changeset
   128
claus
parents: 220
diff changeset
   129
    if (__isSmallInteger(anInteger)) {
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1123
diff changeset
   130
	nindexedinstvars = __intVal(anInteger);
249
claus
parents: 220
diff changeset
   131
	if (nindexedinstvars >= 0) {
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1123
diff changeset
   132
	    nInstVars = __intVal(__ClassInstPtr(self)->c_ninstvars);
249
claus
parents: 220
diff changeset
   133
claus
parents: 220
diff changeset
   134
	    nInstVars += nindexedinstvars;
claus
parents: 220
diff changeset
   135
	    instsize = OHDR_SIZE + __OBJS2BYTES__(nInstVars);
2915
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2894
diff changeset
   136
	    if (__CanDoQuickAlignedNew(instsize)) {     /* OBJECT ALLOCATION */
357
claus
parents: 356
diff changeset
   137
		/*
claus
parents: 356
diff changeset
   138
		 * the most common case
claus
parents: 356
diff changeset
   139
		 */
835
8bd6f4aa8130 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 834
diff changeset
   140
		__qCheckedAlignedNew(newobj, instsize);
357
claus
parents: 356
diff changeset
   141
	ok: ;
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1123
diff changeset
   142
		__InstPtr(newobj)->o_class = self;
369
claus
parents: 365
diff changeset
   143
		__qSTORE(newobj, self);
claus
parents: 365
diff changeset
   144
14623
c433536ae3ab 64 bit fixes
Claus Gittinger <cg@exept.de>
parents: 14380
diff changeset
   145
#if (POINTER_SIZE == 4) && defined(memset4) && defined(FAST_ARRAY_MEMSET4)
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1123
diff changeset
   146
		memset4(__InstPtr(newobj)->i_instvars, nil, nInstVars);
249
claus
parents: 220
diff changeset
   147
#else
claus
parents: 220
diff changeset
   148
# if !defined(NEGATIVE_ADDRESSES)
claus
parents: 220
diff changeset
   149
		/*
claus
parents: 220
diff changeset
   150
		 * knowing that nil is 0
claus
parents: 220
diff changeset
   151
		 */
14657
6610eb2df25c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 14632
diff changeset
   152
#  ifdef __sparc__
6610eb2df25c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 14632
diff changeset
   153
#   define FAST_ARRAY_MEMSET_DOUBLES_UNROLLED
6610eb2df25c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 14632
diff changeset
   154
#  endif
2979
6bb06c5e49d8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2950
diff changeset
   155
14657
6610eb2df25c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 14632
diff changeset
   156
#  ifdef __VMS__
6610eb2df25c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 14632
diff changeset
   157
#   define FAST_ARRAY_MEMSET_LONGLONG_UNROLLED
6610eb2df25c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 14632
diff changeset
   158
#  endif
2979
6bb06c5e49d8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2950
diff changeset
   159
249
claus
parents: 220
diff changeset
   160
#  if defined(FAST_ARRAY_MEMSET_DOUBLES_UNROLLED)
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1123
diff changeset
   161
		op = __InstPtr(newobj)->i_instvars;
249
claus
parents: 220
diff changeset
   162
		if (nInstVars > 8) {
claus
parents: 220
diff changeset
   163
		    *op++ = nil;    /* for alignment */
claus
parents: 220
diff changeset
   164
		    nInstVars--;
claus
parents: 220
diff changeset
   165
		    while (nInstVars >= 8) {
claus
parents: 220
diff changeset
   166
			*(double *)op = 0.0;
claus
parents: 220
diff changeset
   167
			((double *)op)[1] = 0.0;
claus
parents: 220
diff changeset
   168
			((double *)op)[2] = 0.0;
claus
parents: 220
diff changeset
   169
			((double *)op)[3] = 0.0;
claus
parents: 220
diff changeset
   170
			op += 8;
claus
parents: 220
diff changeset
   171
			nInstVars -= 8;
claus
parents: 220
diff changeset
   172
		    }
claus
parents: 220
diff changeset
   173
		}
claus
parents: 220
diff changeset
   174
		while (nInstVars) {
claus
parents: 220
diff changeset
   175
		    *op++ = 0;
claus
parents: 220
diff changeset
   176
		    nInstVars--;
claus
parents: 220
diff changeset
   177
		}
claus
parents: 220
diff changeset
   178
#  else
14623
c433536ae3ab 64 bit fixes
Claus Gittinger <cg@exept.de>
parents: 14380
diff changeset
   179
#   if (POINTER_SIZE == 4) && defined(FAST_ARRAY_MEMSET_LONGLONG_UNROLLED)
2979
6bb06c5e49d8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2950
diff changeset
   180
#    ifdef INT64
6bb06c5e49d8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2950
diff changeset
   181
#     define LONGLONG INT64
6bb06c5e49d8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2950
diff changeset
   182
#    else
6bb06c5e49d8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2950
diff changeset
   183
#     define LONGLONG long long
14687
e718f7219911 64bit changes
Claus Gittinger <cg@exept.de>
parents: 14657
diff changeset
   184
#    endif
2979
6bb06c5e49d8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2950
diff changeset
   185
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1123
diff changeset
   186
		op = __InstPtr(newobj)->i_instvars;
249
claus
parents: 220
diff changeset
   187
		if (nInstVars > 8) {
claus
parents: 220
diff changeset
   188
		    *op++ = nil;    /* for alignment */
claus
parents: 220
diff changeset
   189
		    nInstVars--;
claus
parents: 220
diff changeset
   190
		    while (nInstVars >= 8) {
2979
6bb06c5e49d8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2950
diff changeset
   191
			*(LONGLONG *)op = 0;
6bb06c5e49d8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2950
diff changeset
   192
			((LONGLONG *)op)[1] = 0;
6bb06c5e49d8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2950
diff changeset
   193
			((LONGLONG *)op)[2] = 0;
6bb06c5e49d8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2950
diff changeset
   194
			((LONGLONG *)op)[3] = 0;
249
claus
parents: 220
diff changeset
   195
			op += 8;
claus
parents: 220
diff changeset
   196
			nInstVars -= 8;
claus
parents: 220
diff changeset
   197
		    }
claus
parents: 220
diff changeset
   198
		}
claus
parents: 220
diff changeset
   199
		while (nInstVars) {
claus
parents: 220
diff changeset
   200
		    *op++ = 0;
claus
parents: 220
diff changeset
   201
		    nInstVars--;
claus
parents: 220
diff changeset
   202
		}
claus
parents: 220
diff changeset
   203
#   else
claus
parents: 220
diff changeset
   204
#    if defined(FAST_ARRAY_MEMSET)
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1123
diff changeset
   205
		memset(__InstPtr(newobj)->i_instvars, 0, instsize - OHDR_SIZE);
249
claus
parents: 220
diff changeset
   206
#    else
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1123
diff changeset
   207
		op = __InstPtr(newobj)->i_instvars;
14623
c433536ae3ab 64 bit fixes
Claus Gittinger <cg@exept.de>
parents: 14380
diff changeset
   208
#     if (POINTER_SIZE == 4) && defined(INT64)
2950
d5fae0fb75d7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2915
diff changeset
   209
		while (nInstVars > 1) {
d5fae0fb75d7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2915
diff changeset
   210
		    *((INT64 *)op) = 0;
d5fae0fb75d7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2915
diff changeset
   211
		    nInstVars -= 2;
d5fae0fb75d7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2915
diff changeset
   212
		    op += 2;
d5fae0fb75d7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2915
diff changeset
   213
		}
d5fae0fb75d7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2915
diff changeset
   214
#     endif
14687
e718f7219911 64bit changes
Claus Gittinger <cg@exept.de>
parents: 14657
diff changeset
   215
		while (nInstVars >= 8) {
e718f7219911 64bit changes
Claus Gittinger <cg@exept.de>
parents: 14657
diff changeset
   216
		    nInstVars -= 8;
e718f7219911 64bit changes
Claus Gittinger <cg@exept.de>
parents: 14657
diff changeset
   217
		    op[0] = nil; op[1] = nil;
e718f7219911 64bit changes
Claus Gittinger <cg@exept.de>
parents: 14657
diff changeset
   218
		    op[2] = nil; op[3] = nil;
e718f7219911 64bit changes
Claus Gittinger <cg@exept.de>
parents: 14657
diff changeset
   219
		    op[4] = nil; op[5] = nil;
e718f7219911 64bit changes
Claus Gittinger <cg@exept.de>
parents: 14657
diff changeset
   220
		    op[6] = nil; op[7] = nil;
e718f7219911 64bit changes
Claus Gittinger <cg@exept.de>
parents: 14657
diff changeset
   221
		    op += 8;
e718f7219911 64bit changes
Claus Gittinger <cg@exept.de>
parents: 14657
diff changeset
   222
		}
249
claus
parents: 220
diff changeset
   223
		while (nInstVars--)
claus
parents: 220
diff changeset
   224
		    *op++ = nil;
claus
parents: 220
diff changeset
   225
#    endif
claus
parents: 220
diff changeset
   226
#   endif
claus
parents: 220
diff changeset
   227
#  endif
claus
parents: 220
diff changeset
   228
# else
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1123
diff changeset
   229
		op = __InstPtr(newobj)->i_instvars;
249
claus
parents: 220
diff changeset
   230
		while (nInstVars--)
claus
parents: 220
diff changeset
   231
		    *op++ = nil;
claus
parents: 220
diff changeset
   232
# endif
claus
parents: 220
diff changeset
   233
#endif
claus
parents: 220
diff changeset
   234
		RETURN ( newobj );
357
claus
parents: 356
diff changeset
   235
	    } else {
claus
parents: 356
diff changeset
   236
		/*
claus
parents: 356
diff changeset
   237
		 * a GC will happen ...
claus
parents: 356
diff changeset
   238
		 * have to protect all context stuff
claus
parents: 356
diff changeset
   239
		 * (especially for self, but also for backtrace in case of
claus
parents: 356
diff changeset
   240
		 *  allocation failure)
claus
parents: 356
diff changeset
   241
		 */
834
c68ed1088b42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   242
		__PROTECT_CONTEXT__
14687
e718f7219911 64bit changes
Claus Gittinger <cg@exept.de>
parents: 14657
diff changeset
   243
		newobj = __STX___new((INT)instsize);
834
c68ed1088b42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   244
		__UNPROTECT_CONTEXT__
357
claus
parents: 356
diff changeset
   245
		if (newobj != nil) {
claus
parents: 356
diff changeset
   246
		    goto ok;
claus
parents: 356
diff changeset
   247
		}
249
claus
parents: 220
diff changeset
   248
	    }
claus
parents: 220
diff changeset
   249
	}
claus
parents: 220
diff changeset
   250
    }
claus
parents: 220
diff changeset
   251
%}.
claus
parents: 220
diff changeset
   252
    "
claus
parents: 220
diff changeset
   253
     arrive here if something went wrong ...
claus
parents: 220
diff changeset
   254
     figure out what it was
claus
parents: 220
diff changeset
   255
    "
claus
parents: 220
diff changeset
   256
    (anInteger isMemberOf:SmallInteger) ifFalse:[
claus
parents: 220
diff changeset
   257
	"
claus
parents: 220
diff changeset
   258
	 the argument is either not an integer,
claus
parents: 220
diff changeset
   259
	 or a LargeInteger (which means that its definitely too big)
claus
parents: 220
diff changeset
   260
	"
claus
parents: 220
diff changeset
   261
	self error:'argument to new: must be Integer'.
claus
parents: 220
diff changeset
   262
	^ nil
claus
parents: 220
diff changeset
   263
    ].
claus
parents: 220
diff changeset
   264
    (anInteger < 0) ifTrue:[
claus
parents: 220
diff changeset
   265
	"
claus
parents: 220
diff changeset
   266
	 the argument is negative,
claus
parents: 220
diff changeset
   267
	"
claus
parents: 220
diff changeset
   268
	self error:'bad (negative) argument to new:'.
claus
parents: 220
diff changeset
   269
	^ nil
claus
parents: 220
diff changeset
   270
    ].
claus
parents: 220
diff changeset
   271
    "
claus
parents: 220
diff changeset
   272
     memory allocation failed.
claus
parents: 220
diff changeset
   273
     When we arrive here, there was no memory, even after
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
   274
     a garbage collect.
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
   275
     This means, that the VM wanted to get some more memory from the
249
claus
parents: 220
diff changeset
   276
     Operatingsystem, which was not kind enough to give it.
claus
parents: 220
diff changeset
   277
     Bad luck - you should increase the swap space on your machine.
claus
parents: 220
diff changeset
   278
    "
claus
parents: 220
diff changeset
   279
    ^ ObjectMemory allocationFailureSignal raise.
549
2a8e44b511c2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 543
diff changeset
   280
!
2a8e44b511c2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 543
diff changeset
   281
2a8e44b511c2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 543
diff changeset
   282
new:anInteger
2a8e44b511c2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 543
diff changeset
   283
    "return an instance of myself with anInteger indexed variables.
1266
cef9b3cd49df commentary
Claus Gittinger <cg@exept.de>
parents: 1244
diff changeset
   284
     Redefined here to save a few cycles when executed.
cef9b3cd49df commentary
Claus Gittinger <cg@exept.de>
parents: 1244
diff changeset
   285
     (Since this is often called, its worth giving it an extra ilc-slot.
cef9b3cd49df commentary
Claus Gittinger <cg@exept.de>
parents: 1244
diff changeset
   286
      Future versions of stc will do this automatically.)"
549
2a8e44b511c2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 543
diff changeset
   287
2a8e44b511c2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 543
diff changeset
   288
    ^ self basicNew:anInteger
1266
cef9b3cd49df commentary
Claus Gittinger <cg@exept.de>
parents: 1244
diff changeset
   289
cef9b3cd49df commentary
Claus Gittinger <cg@exept.de>
parents: 1244
diff changeset
   290
    "Modified: 23.4.1996 / 15:52:15 / cg"
360
claus
parents: 359
diff changeset
   291
! !
claus
parents: 359
diff changeset
   292
1903
30c98b3377c5 slight tuning
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
   293
!Array class methodsFor:'queries'!
345
claus
parents: 328
diff changeset
   294
543
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   295
isBuiltInClass
1266
cef9b3cd49df commentary
Claus Gittinger <cg@exept.de>
parents: 1244
diff changeset
   296
    "return true if this class is known by the run-time-system.
cef9b3cd49df commentary
Claus Gittinger <cg@exept.de>
parents: 1244
diff changeset
   297
     Here, true is returned for myself, false for subclasses."
345
claus
parents: 328
diff changeset
   298
543
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   299
    ^ self == Array
1243
955b7f55f7a4 commentary
Claus Gittinger <cg@exept.de>
parents: 1219
diff changeset
   300
1266
cef9b3cd49df commentary
Claus Gittinger <cg@exept.de>
parents: 1244
diff changeset
   301
    "Modified: 23.4.1996 / 15:55:06 / cg"
249
claus
parents: 220
diff changeset
   302
! !
claus
parents: 220
diff changeset
   303
17376
5c0cab0193cf class: Array
Stefan Vogel <sv@exept.de>
parents: 16387
diff changeset
   304
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   305
!Array methodsFor:'accessing'!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   306
554
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
   307
at:index
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
   308
    "return the indexed instance variable with index, anInteger.
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
   309
     Reimplemented here to avoid the additional at:->basicAt: send
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
   310
     (which we can do here, since when arriving here, #at: is obviously not
1730
e668db8cbae0 comment
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
   311
      redefined in a subclass).
577
106bfaa8db3c commentary
Claus Gittinger <cg@exept.de>
parents: 554
diff changeset
   312
     This method is the same as basicAt:."
543
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   313
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   314
%{  /* NOCONTEXT */
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   315
14687
e718f7219911 64bit changes
Claus Gittinger <cg@exept.de>
parents: 14657
diff changeset
   316
    REGISTER INT indx;
1143
27325100bdf4 can check index against low..hi with a single compare&branch
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   317
    REGISTER OBJ slf;
14687
e718f7219911 64bit changes
Claus Gittinger <cg@exept.de>
parents: 14657
diff changeset
   318
    REGISTER unsigned INT nIndex;
1143
27325100bdf4 can check index against low..hi with a single compare&branch
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   319
    REGISTER OBJ cls;
554
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
   320
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
   321
    if (__isSmallInteger(index)) {
4474
d34823aa554e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4385
diff changeset
   322
	indx = __intVal(index) - 1;
d34823aa554e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4385
diff changeset
   323
	slf = self;
18257
877a8f1b326d Optimize for fast-path in Array >> at: / at:put:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 18120
diff changeset
   324
	cls = __qClass(slf);
4474
d34823aa554e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4385
diff changeset
   325
	nIndex = __BYTES2OBJS__(__qSize(slf) - OHDR_SIZE);
18257
877a8f1b326d Optimize for fast-path in Array >> at: / at:put:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 18120
diff changeset
   326
	if (cls == Array) {
877a8f1b326d Optimize for fast-path in Array >> at: / at:put:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 18120
diff changeset
   327
	    fetch:
877a8f1b326d Optimize for fast-path in Array >> at: / at:put:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 18120
diff changeset
   328
	    if ((unsigned INT)indx < (unsigned INT)nIndex) {
877a8f1b326d Optimize for fast-path in Array >> at: / at:put:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 18120
diff changeset
   329
	        RETURN ( __InstPtr(slf)->i_instvars[indx] );
877a8f1b326d Optimize for fast-path in Array >> at: / at:put:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 18120
diff changeset
   330
	    }
877a8f1b326d Optimize for fast-path in Array >> at: / at:put:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 18120
diff changeset
   331
	    goto badIndex;
4474
d34823aa554e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4385
diff changeset
   332
	}
18257
877a8f1b326d Optimize for fast-path in Array >> at: / at:put:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 18120
diff changeset
   333
	if (indx < 0) goto badIndex;
877a8f1b326d Optimize for fast-path in Array >> at: / at:put:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 18120
diff changeset
   334
	indx += __intVal(__ClassInstPtr(cls)->c_ninstvars);	
877a8f1b326d Optimize for fast-path in Array >> at: / at:put:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 18120
diff changeset
   335
	goto fetch;
554
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
   336
    }
4385
dbe7d1e8c54c oops - subclasses with instVars allowed for index-less-than-1-access
Claus Gittinger <cg@exept.de>
parents: 4309
diff changeset
   337
badIndex: ;
554
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
   338
%}.
4474
d34823aa554e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4385
diff changeset
   339
"/    ^ super at:index
d34823aa554e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4385
diff changeset
   340
    ^ super basicAt:index   "/ knowing that super-#at: does #basicAt:
543
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   341
!
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   342
554
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
   343
at:index put:anObject
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
   344
    "store the 2nd arg, anObject as indexed instvar with index, anInteger.
1219
054f7eff0c30 commentary
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   345
     Returns anObject (sigh).
554
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
   346
     Reimplemented here to avoid the additional at:put:->basicAt:put: send
1730
e668db8cbae0 comment
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
   347
     (which we can do here, since when arriving here, #atput:: is obviously not
e668db8cbae0 comment
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
   348
      redefined in a subclass).
577
106bfaa8db3c commentary
Claus Gittinger <cg@exept.de>
parents: 554
diff changeset
   349
     This method is the same as basicAt:put:."
549
2a8e44b511c2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 543
diff changeset
   350
2a8e44b511c2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 543
diff changeset
   351
%{  /* NOCONTEXT */
2a8e44b511c2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 543
diff changeset
   352
14687
e718f7219911 64bit changes
Claus Gittinger <cg@exept.de>
parents: 14657
diff changeset
   353
    REGISTER INT indx;
1143
27325100bdf4 can check index against low..hi with a single compare&branch
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   354
    REGISTER OBJ slf;
14687
e718f7219911 64bit changes
Claus Gittinger <cg@exept.de>
parents: 14657
diff changeset
   355
    REGISTER unsigned INT nIndex;
1143
27325100bdf4 can check index against low..hi with a single compare&branch
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   356
    REGISTER OBJ cls;
554
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
   357
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
   358
    if (__isSmallInteger(index)) {
4474
d34823aa554e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4385
diff changeset
   359
	indx = __intVal(index) - 1;
d34823aa554e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4385
diff changeset
   360
	slf = self;
18257
877a8f1b326d Optimize for fast-path in Array >> at: / at:put:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 18120
diff changeset
   361
        cls = __qClass(slf);
4474
d34823aa554e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4385
diff changeset
   362
	nIndex = __BYTES2OBJS__(__qSize(slf) - OHDR_SIZE);
18257
877a8f1b326d Optimize for fast-path in Array >> at: / at:put:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 18120
diff changeset
   363
	if (cls == Array) {
877a8f1b326d Optimize for fast-path in Array >> at: / at:put:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 18120
diff changeset
   364
	    store:
877a8f1b326d Optimize for fast-path in Array >> at: / at:put:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 18120
diff changeset
   365
            if ((unsigned INT)indx < (unsigned INT)nIndex) {
877a8f1b326d Optimize for fast-path in Array >> at: / at:put:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 18120
diff changeset
   366
	        __InstPtr(slf)->i_instvars[indx] = anObject;
877a8f1b326d Optimize for fast-path in Array >> at: / at:put:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 18120
diff changeset
   367
	        __STORE(slf, anObject);
877a8f1b326d Optimize for fast-path in Array >> at: / at:put:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 18120
diff changeset
   368
	        RETURN ( anObject );
877a8f1b326d Optimize for fast-path in Array >> at: / at:put:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 18120
diff changeset
   369
	    }
877a8f1b326d Optimize for fast-path in Array >> at: / at:put:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 18120
diff changeset
   370
	    goto badIndex;
4474
d34823aa554e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4385
diff changeset
   371
	}
18257
877a8f1b326d Optimize for fast-path in Array >> at: / at:put:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 18120
diff changeset
   372
	if (indx < 0) goto badIndex;
877a8f1b326d Optimize for fast-path in Array >> at: / at:put:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 18120
diff changeset
   373
	indx += __intVal(__ClassInstPtr(cls)->c_ninstvars);	
877a8f1b326d Optimize for fast-path in Array >> at: / at:put:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 18120
diff changeset
   374
	goto store;
554
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
   375
    }
4385
dbe7d1e8c54c oops - subclasses with instVars allowed for index-less-than-1-access
Claus Gittinger <cg@exept.de>
parents: 4309
diff changeset
   376
badIndex: ;
554
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
   377
%}.
4474
d34823aa554e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4385
diff changeset
   378
"/    ^ super at:index put:anObject
d34823aa554e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4385
diff changeset
   379
    ^ super basicAt:index put:anObject  "/ knowing that super-#at:put: does #basicAt:put:
1219
054f7eff0c30 commentary
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   380
054f7eff0c30 commentary
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   381
    "Modified: 19.4.1996 / 11:16:42 / cg"
549
2a8e44b511c2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 543
diff changeset
   382
!
2a8e44b511c2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 543
diff changeset
   383
2a8e44b511c2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 543
diff changeset
   384
basicAt:index
2a8e44b511c2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 543
diff changeset
   385
    "return the indexed instance variable with index, anInteger
2a8e44b511c2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 543
diff changeset
   386
     - added here for speed"
2a8e44b511c2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 543
diff changeset
   387
2a8e44b511c2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 543
diff changeset
   388
%{  /* NOCONTEXT */
2a8e44b511c2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 543
diff changeset
   389
14687
e718f7219911 64bit changes
Claus Gittinger <cg@exept.de>
parents: 14657
diff changeset
   390
    REGISTER INT indx;
1143
27325100bdf4 can check index against low..hi with a single compare&branch
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   391
    REGISTER OBJ slf;
14687
e718f7219911 64bit changes
Claus Gittinger <cg@exept.de>
parents: 14657
diff changeset
   392
    REGISTER unsigned INT nIndex;
1143
27325100bdf4 can check index against low..hi with a single compare&branch
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   393
    REGISTER OBJ cls;
549
2a8e44b511c2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 543
diff changeset
   394
2a8e44b511c2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 543
diff changeset
   395
    if (__isSmallInteger(index)) {
4474
d34823aa554e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4385
diff changeset
   396
	indx = __intVal(index) - 1;
d34823aa554e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4385
diff changeset
   397
	slf = self;
1143
27325100bdf4 can check index against low..hi with a single compare&branch
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   398
4474
d34823aa554e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4385
diff changeset
   399
	nIndex = __BYTES2OBJS__(__qSize(slf) - OHDR_SIZE);
d34823aa554e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4385
diff changeset
   400
	if ((cls = __qClass(slf)) != Array) {
d34823aa554e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4385
diff changeset
   401
	    if (indx < 0) goto badIndex;
d34823aa554e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4385
diff changeset
   402
	    indx += __intVal(__ClassInstPtr(cls)->c_ninstvars);
d34823aa554e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4385
diff changeset
   403
	}
14687
e718f7219911 64bit changes
Claus Gittinger <cg@exept.de>
parents: 14657
diff changeset
   404
	if ((unsigned INT)indx < (unsigned INT)nIndex) {
4474
d34823aa554e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4385
diff changeset
   405
	    RETURN ( __InstPtr(slf)->i_instvars[indx] );
d34823aa554e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4385
diff changeset
   406
	}
549
2a8e44b511c2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 543
diff changeset
   407
    }
4385
dbe7d1e8c54c oops - subclasses with instVars allowed for index-less-than-1-access
Claus Gittinger <cg@exept.de>
parents: 4309
diff changeset
   408
badIndex: ;
2185
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
   409
%}.
549
2a8e44b511c2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 543
diff changeset
   410
    ^ super basicAt:index
2a8e44b511c2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 543
diff changeset
   411
!
2a8e44b511c2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 543
diff changeset
   412
77
6c38ca59927f *** empty log message ***
claus
parents: 47
diff changeset
   413
basicAt:index put:anObject
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   414
    "store the 2nd arg, anObject as indexed instvar with index, anInteger.
1219
054f7eff0c30 commentary
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   415
     Returns anObject (sigh).
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   416
     - added here for speed"
a27a279701f8 Initial revision
claus
parents:
diff changeset
   417
a27a279701f8 Initial revision
claus
parents:
diff changeset
   418
%{  /* NOCONTEXT */
a27a279701f8 Initial revision
claus
parents:
diff changeset
   419
14687
e718f7219911 64bit changes
Claus Gittinger <cg@exept.de>
parents: 14657
diff changeset
   420
    REGISTER INT indx;
1143
27325100bdf4 can check index against low..hi with a single compare&branch
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   421
    REGISTER OBJ slf;
14687
e718f7219911 64bit changes
Claus Gittinger <cg@exept.de>
parents: 14657
diff changeset
   422
    REGISTER unsigned INT nIndex;
1143
27325100bdf4 can check index against low..hi with a single compare&branch
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   423
    REGISTER OBJ cls;
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   424
249
claus
parents: 220
diff changeset
   425
    if (__isSmallInteger(index)) {
4474
d34823aa554e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4385
diff changeset
   426
	indx = __intVal(index) - 1;
d34823aa554e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4385
diff changeset
   427
	slf = self;
1143
27325100bdf4 can check index against low..hi with a single compare&branch
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   428
4474
d34823aa554e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4385
diff changeset
   429
	nIndex = __BYTES2OBJS__(__qSize(slf) - OHDR_SIZE);
d34823aa554e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4385
diff changeset
   430
	if ((cls = __qClass(slf)) != Array) {
d34823aa554e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4385
diff changeset
   431
	    if (indx < 0) goto badIndex;
d34823aa554e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4385
diff changeset
   432
	    indx += __intVal(__ClassInstPtr(cls)->c_ninstvars);
d34823aa554e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4385
diff changeset
   433
	}
14687
e718f7219911 64bit changes
Claus Gittinger <cg@exept.de>
parents: 14657
diff changeset
   434
	if ((unsigned INT)indx < (unsigned INT)nIndex) {
4474
d34823aa554e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4385
diff changeset
   435
	    __InstPtr(slf)->i_instvars[indx] = anObject;
d34823aa554e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4385
diff changeset
   436
	    __STORE(slf, anObject);
d34823aa554e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4385
diff changeset
   437
	    RETURN ( anObject );
d34823aa554e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4385
diff changeset
   438
	}
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   439
    }
4385
dbe7d1e8c54c oops - subclasses with instVars allowed for index-less-than-1-access
Claus Gittinger <cg@exept.de>
parents: 4309
diff changeset
   440
badIndex: ;
2185
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
   441
%}.
77
6c38ca59927f *** empty log message ***
claus
parents: 47
diff changeset
   442
    ^ super basicAt:index put:anObject
1219
054f7eff0c30 commentary
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   443
054f7eff0c30 commentary
Claus Gittinger <cg@exept.de>
parents: 1168
diff changeset
   444
    "Modified: 19.4.1996 / 11:14:26 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   445
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
   446
11
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
   447
!Array methodsFor:'converting'!
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
   448
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
   449
asArray
15061
fea9df1c613a class: Array
Claus Gittinger <cg@exept.de>
parents: 14995
diff changeset
   450
    "return the receiver as an array - that's the receiver itself.
fea9df1c613a class: Array
Claus Gittinger <cg@exept.de>
parents: 14995
diff changeset
   451
     Notice: Use asNewArray, if you intent to modify the returned collection."
11
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
   452
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
   453
    "could be an instance of a subclass..."
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
   454
    self class == Array ifTrue:[
18246
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
   455
	^ self
11
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
   456
    ].
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
   457
    ^ super asArray
1243
955b7f55f7a4 commentary
Claus Gittinger <cg@exept.de>
parents: 1219
diff changeset
   458
955b7f55f7a4 commentary
Claus Gittinger <cg@exept.de>
parents: 1219
diff changeset
   459
    "Modified: 22.4.1996 / 12:42:09 / cg"
12452
Claus Gittinger <cg@exept.de>
parents: 12162
diff changeset
   460
!
Claus Gittinger <cg@exept.de>
parents: 12162
diff changeset
   461
Claus Gittinger <cg@exept.de>
parents: 12162
diff changeset
   462
asImmutableArray
Claus Gittinger <cg@exept.de>
parents: 12162
diff changeset
   463
    "return a write-protected copy of myself"
Claus Gittinger <cg@exept.de>
parents: 12162
diff changeset
   464
14158
8565a6b7f00a added: #beImmutable
Claus Gittinger <cg@exept.de>
parents: 13077
diff changeset
   465
    "/ self assert:(ImmutableArray notNil).
8565a6b7f00a added: #beImmutable
Claus Gittinger <cg@exept.de>
parents: 13077
diff changeset
   466
    ^ self copy beImmutable
8565a6b7f00a added: #beImmutable
Claus Gittinger <cg@exept.de>
parents: 13077
diff changeset
   467
8565a6b7f00a added: #beImmutable
Claus Gittinger <cg@exept.de>
parents: 13077
diff changeset
   468
    "Modified: / 07-06-2012 / 11:06:48 / cg"
8565a6b7f00a added: #beImmutable
Claus Gittinger <cg@exept.de>
parents: 13077
diff changeset
   469
!
8565a6b7f00a added: #beImmutable
Claus Gittinger <cg@exept.de>
parents: 13077
diff changeset
   470
14995
3ac27883699a class: Array
Stefan Vogel <sv@exept.de>
parents: 14687
diff changeset
   471
asNewArray
3ac27883699a class: Array
Stefan Vogel <sv@exept.de>
parents: 14687
diff changeset
   472
    "return the receiver as an unique new array."
3ac27883699a class: Array
Stefan Vogel <sv@exept.de>
parents: 14687
diff changeset
   473
3ac27883699a class: Array
Stefan Vogel <sv@exept.de>
parents: 14687
diff changeset
   474
    "could be an instance of a subclass..."
3ac27883699a class: Array
Stefan Vogel <sv@exept.de>
parents: 14687
diff changeset
   475
    self class == Array ifTrue:[
18246
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
   476
	^ self copy
14995
3ac27883699a class: Array
Stefan Vogel <sv@exept.de>
parents: 14687
diff changeset
   477
    ].
3ac27883699a class: Array
Stefan Vogel <sv@exept.de>
parents: 14687
diff changeset
   478
    ^ super asArray
3ac27883699a class: Array
Stefan Vogel <sv@exept.de>
parents: 14687
diff changeset
   479
!
3ac27883699a class: Array
Stefan Vogel <sv@exept.de>
parents: 14687
diff changeset
   480
14158
8565a6b7f00a added: #beImmutable
Claus Gittinger <cg@exept.de>
parents: 13077
diff changeset
   481
beImmutable
8565a6b7f00a added: #beImmutable
Claus Gittinger <cg@exept.de>
parents: 13077
diff changeset
   482
    "make myself write-protected"
8565a6b7f00a added: #beImmutable
Claus Gittinger <cg@exept.de>
parents: 13077
diff changeset
   483
8565a6b7f00a added: #beImmutable
Claus Gittinger <cg@exept.de>
parents: 13077
diff changeset
   484
    self changeClassTo:ImmutableArray
8565a6b7f00a added: #beImmutable
Claus Gittinger <cg@exept.de>
parents: 13077
diff changeset
   485
8565a6b7f00a added: #beImmutable
Claus Gittinger <cg@exept.de>
parents: 13077
diff changeset
   486
    "Created: / 07-06-2012 / 11:06:33 / cg"
11
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
   487
! !
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
   488
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   489
!Array methodsFor:'copying'!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   490
15848
e839ccbebb14 class: Array
Claus Gittinger <cg@exept.de>
parents: 15608
diff changeset
   491
, aCollection
e839ccbebb14 class: Array
Claus Gittinger <cg@exept.de>
parents: 15608
diff changeset
   492
%{
e839ccbebb14 class: Array
Claus Gittinger <cg@exept.de>
parents: 15608
diff changeset
   493
    if (__isArray(aCollection)) {
18246
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
   494
	if (__isArray(self)) {
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
   495
	    OBJ newArray;
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
   496
	    int mySize = __arraySize(self);
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
   497
	    int otherSize = __arraySize(aCollection);
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
   498
	    REGISTER OBJ src;
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
   499
	    int srcIdx, dstIdx;
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
   500
	    newArray = __ARRAY_NEW_INT(mySize+otherSize);
15848
e839ccbebb14 class: Array
Claus Gittinger <cg@exept.de>
parents: 15608
diff changeset
   501
18246
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
   502
	    src = self;
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
   503
	    for (dstIdx=0; dstIdx<mySize; dstIdx++) {
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
   504
		OBJ el = __ArrayInstPtr(src)->a_element[dstIdx];
15848
e839ccbebb14 class: Array
Claus Gittinger <cg@exept.de>
parents: 15608
diff changeset
   505
18246
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
   506
		__ArrayInstPtr(newArray)->a_element[dstIdx] = el;
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
   507
		__STORE(newArray, el);
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
   508
	    }
15848
e839ccbebb14 class: Array
Claus Gittinger <cg@exept.de>
parents: 15608
diff changeset
   509
18246
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
   510
	    src = aCollection;
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
   511
	    for (srcIdx=0; srcIdx<otherSize; srcIdx++, dstIdx++) {
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
   512
		OBJ el = __ArrayInstPtr(src)->a_element[srcIdx];
15848
e839ccbebb14 class: Array
Claus Gittinger <cg@exept.de>
parents: 15608
diff changeset
   513
18246
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
   514
		__ArrayInstPtr(newArray)->a_element[dstIdx] = el;
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
   515
		__STORE(newArray, el);
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
   516
	    }
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
   517
	    RETURN (newArray);
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
   518
	}
15848
e839ccbebb14 class: Array
Claus Gittinger <cg@exept.de>
parents: 15608
diff changeset
   519
    }
e839ccbebb14 class: Array
Claus Gittinger <cg@exept.de>
parents: 15608
diff changeset
   520
%}.
e839ccbebb14 class: Array
Claus Gittinger <cg@exept.de>
parents: 15608
diff changeset
   521
    ^ super , aCollection
e839ccbebb14 class: Array
Claus Gittinger <cg@exept.de>
parents: 15608
diff changeset
   522
!
e839ccbebb14 class: Array
Claus Gittinger <cg@exept.de>
parents: 15608
diff changeset
   523
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   524
copyWith:something
220
9079bd965dd7 keysAndValuesDo: fix
claus
parents: 219
diff changeset
   525
    "return a new collection containing the receivers elements
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
   526
     and the single new element, newElement.
220
9079bd965dd7 keysAndValuesDo: fix
claus
parents: 219
diff changeset
   527
     This is different from concatentation, which expects another collection
9079bd965dd7 keysAndValuesDo: fix
claus
parents: 219
diff changeset
   528
     as argument, but equivalent to copy-and-addLast.
370
claus
parents: 369
diff changeset
   529
     Reimplemented for speed if receiver is an Array.
claus
parents: 369
diff changeset
   530
     (since the inherited copyWith uses replaceFromTo:, which is also
claus
parents: 369
diff changeset
   531
      tuned, it is questionable, if we need this)"
claus
parents: 369
diff changeset
   532
claus
parents: 369
diff changeset
   533
%{  /* NOCONTEXT */
4122
7e3b6b267c06 comment
Claus Gittinger <cg@exept.de>
parents: 4062
diff changeset
   534
    OBJ nObj;
14687
e718f7219911 64bit changes
Claus Gittinger <cg@exept.de>
parents: 14657
diff changeset
   535
    unsigned INT sz;
e718f7219911 64bit changes
Claus Gittinger <cg@exept.de>
parents: 14657
diff changeset
   536
    unsigned INT nIndex;
11
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
   537
    REGISTER OBJ *srcP, *dstP;
293
31df3850e98c *** empty log message ***
claus
parents: 287
diff changeset
   538
    REGISTER int spc;
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   539
328
claus
parents: 325
diff changeset
   540
    if (__qClass(self) == Array) {
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
   541
	sz = __qSize(self) + sizeof(OBJ);
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
   542
	__PROTECT2__(something, self);
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
   543
	__qAlignedNew(nObj, sz);        /* OBJECT ALLOCATION */
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
   544
	__UNPROTECT2__(self, something);
92
0c73b48551ac *** empty log message ***
claus
parents: 82
diff changeset
   545
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
   546
	if (nObj) {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
   547
	    __InstPtr(nObj)->o_class = Array;
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
   548
	    __qSTORE(nObj, Array);
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   549
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
   550
	    nIndex = __BYTES2OBJS__(sz - OHDR_SIZE - sizeof(OBJ));
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
   551
	    /*
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
   552
	     * sorry:
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
   553
	     *   cannot use bcopy, since we must take care of stores ...
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
   554
	     *   could check for: notRemembered + inOld + notLifoRem
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
   555
	     *                  + not incrGCRunning
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
   556
	     * but: copyWith is not heavily used by real programmers ...
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
   557
	     */
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
   558
	    spc = __qSpace(nObj);
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
   559
	    srcP = __arrayVal(self);
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
   560
	    dstP = __arrayVal(nObj);
1903
30c98b3377c5 slight tuning
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
   561
8919
707a9ff7f9b2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
   562
#ifdef __UNROLL_LOOPS__
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
   563
	    while (nIndex >= 4) {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
   564
		OBJ element;
4122
7e3b6b267c06 comment
Claus Gittinger <cg@exept.de>
parents: 4062
diff changeset
   565
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
   566
		element = srcP[0];
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
   567
		dstP[0] = element;
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
   568
		__STORE_SPC(nObj, element, spc);
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
   569
		element = srcP[1];
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
   570
		dstP[1] = element;
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
   571
		__STORE_SPC(nObj, element, spc);
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
   572
		element = srcP[2];
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
   573
		dstP[2] = element;
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
   574
		__STORE_SPC(nObj, element, spc);
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
   575
		element = srcP[3];
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
   576
		dstP[3] = element;
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
   577
		__STORE_SPC(nObj, element, spc);
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
   578
		srcP += 4;
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
   579
		dstP += 4;
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
   580
		nIndex -= 4;
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
   581
	    }
393
claus
parents: 388
diff changeset
   582
#endif
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
   583
	    while (nIndex--) {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
   584
		OBJ element;
4122
7e3b6b267c06 comment
Claus Gittinger <cg@exept.de>
parents: 4062
diff changeset
   585
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
   586
		element = *srcP++;
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
   587
		*dstP++ = element;
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
   588
		__STORE_SPC(nObj, element, spc);
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
   589
	    }
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
   590
	    *dstP = something;
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
   591
	    __STORE_SPC(nObj, something, spc);
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
   592
	    RETURN ( nObj );
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
   593
	}
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   594
    }
2185
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
   595
%}.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   596
    ^ super copyWith:something
a27a279701f8 Initial revision
claus
parents:
diff changeset
   597
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
   598
216
a8abff749575 *** empty log message ***
claus
parents: 155
diff changeset
   599
!Array methodsFor:'enumerating'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   600
10796
08a9ee8cf317 Do not add nil elements to a Set in #asSet and #asIdentitySet
Stefan Vogel <sv@exept.de>
parents: 10089
diff changeset
   601
addAllNonNilElementsTo:aCollection
08a9ee8cf317 Do not add nil elements to a Set in #asSet and #asIdentitySet
Stefan Vogel <sv@exept.de>
parents: 10089
diff changeset
   602
    "add all nonNil elements of the receiver to aCollection.
08a9ee8cf317 Do not add nil elements to a Set in #asSet and #asIdentitySet
Stefan Vogel <sv@exept.de>
parents: 10089
diff changeset
   603
     Return aCollection.
08a9ee8cf317 Do not add nil elements to a Set in #asSet and #asIdentitySet
Stefan Vogel <sv@exept.de>
parents: 10089
diff changeset
   604
     Redefined here for slightly more speed."
08a9ee8cf317 Do not add nil elements to a Set in #asSet and #asIdentitySet
Stefan Vogel <sv@exept.de>
parents: 10089
diff changeset
   605
08a9ee8cf317 Do not add nil elements to a Set in #asSet and #asIdentitySet
Stefan Vogel <sv@exept.de>
parents: 10089
diff changeset
   606
    |stop "{ Class: SmallInteger }"|
08a9ee8cf317 Do not add nil elements to a Set in #asSet and #asIdentitySet
Stefan Vogel <sv@exept.de>
parents: 10089
diff changeset
   607
08a9ee8cf317 Do not add nil elements to a Set in #asSet and #asIdentitySet
Stefan Vogel <sv@exept.de>
parents: 10089
diff changeset
   608
    stop := self size.
08a9ee8cf317 Do not add nil elements to a Set in #asSet and #asIdentitySet
Stefan Vogel <sv@exept.de>
parents: 10089
diff changeset
   609
    1 to:stop do:[:idx |
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
   610
	|each|
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
   611
	each := self at:idx.
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
   612
	each notNil ifTrue:[
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
   613
	    aCollection add:each.
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
   614
	].
10796
08a9ee8cf317 Do not add nil elements to a Set in #asSet and #asIdentitySet
Stefan Vogel <sv@exept.de>
parents: 10089
diff changeset
   615
    ].
08a9ee8cf317 Do not add nil elements to a Set in #asSet and #asIdentitySet
Stefan Vogel <sv@exept.de>
parents: 10089
diff changeset
   616
    ^ aCollection
08a9ee8cf317 Do not add nil elements to a Set in #asSet and #asIdentitySet
Stefan Vogel <sv@exept.de>
parents: 10089
diff changeset
   617
08a9ee8cf317 Do not add nil elements to a Set in #asSet and #asIdentitySet
Stefan Vogel <sv@exept.de>
parents: 10089
diff changeset
   618
    "
08a9ee8cf317 Do not add nil elements to a Set in #asSet and #asIdentitySet
Stefan Vogel <sv@exept.de>
parents: 10089
diff changeset
   619
     #(1 2 3 4 5 1 2 3 symbol 'string' nil) addAllNonNilElementsTo:Set new
08a9ee8cf317 Do not add nil elements to a Set in #asSet and #asIdentitySet
Stefan Vogel <sv@exept.de>
parents: 10089
diff changeset
   620
    "
08a9ee8cf317 Do not add nil elements to a Set in #asSet and #asIdentitySet
Stefan Vogel <sv@exept.de>
parents: 10089
diff changeset
   621
!
08a9ee8cf317 Do not add nil elements to a Set in #asSet and #asIdentitySet
Stefan Vogel <sv@exept.de>
parents: 10089
diff changeset
   622
554
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
   623
addAllTo:aCollection
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
   624
    "add all elements of the receiver to aCollection.
8603
9187c6f1a291 comment
Claus Gittinger <cg@exept.de>
parents: 8442
diff changeset
   625
     Return aCollection.
9187c6f1a291 comment
Claus Gittinger <cg@exept.de>
parents: 8442
diff changeset
   626
     Redefined here for slightly more speed."
554
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
   627
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
   628
    |stop "{ Class: SmallInteger }"|
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
   629
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
   630
    stop := self size.
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
   631
    1 to:stop do:[:idx |
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
   632
	aCollection add:(self at:idx)
554
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
   633
    ].
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
   634
    ^ aCollection
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
   635
!
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
   636
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
   637
do:aBlock
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
   638
    "evaluate the argument, aBlock for each element in the collection.
4122
7e3b6b267c06 comment
Claus Gittinger <cg@exept.de>
parents: 4062
diff changeset
   639
     - reimplemented for speed, since this is used by many higher
7e3b6b267c06 comment
Claus Gittinger <cg@exept.de>
parents: 4062
diff changeset
   640
       level collections"
554
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
   641
2202
Claus Gittinger <cg@exept.de>
parents: 2185
diff changeset
   642
    | sz "{ Class: SmallInteger }"|
945
b2a1dc200c42 allow redefinition of #size in subclasses (optimized methods did not work in this case)
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   643
b2a1dc200c42 allow redefinition of #size in subclasses (optimized methods did not work in this case)
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   644
    sz := self size.
554
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
   645
%{
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
   646
    REGISTER OBJFUNC codeVal;
14687
e718f7219911 64bit changes
Claus Gittinger <cg@exept.de>
parents: 14657
diff changeset
   647
    REGISTER INT index;
e718f7219911 64bit changes
Claus Gittinger <cg@exept.de>
parents: 14657
diff changeset
   648
    unsigned INT nIndex;
554
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
   649
    static struct inlineCache val = _ILC1;
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
   650
    REGISTER OBJ rHome;
14687
e718f7219911 64bit changes
Claus Gittinger <cg@exept.de>
parents: 14657
diff changeset
   651
    INT actualSize;
2357
061dadc13df1 removed WEAKPOINTER checks - WeakArray is no longer allowed to be a subclass of Array
Claus Gittinger <cg@exept.de>
parents: 2318
diff changeset
   652
061dadc13df1 removed WEAKPOINTER checks - WeakArray is no longer allowed to be a subclass of Array
Claus Gittinger <cg@exept.de>
parents: 2318
diff changeset
   653
    {
061dadc13df1 removed WEAKPOINTER checks - WeakArray is no longer allowed to be a subclass of Array
Claus Gittinger <cg@exept.de>
parents: 2318
diff changeset
   654
	OBJ mySelf = self;
554
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
   655
2357
061dadc13df1 removed WEAKPOINTER checks - WeakArray is no longer allowed to be a subclass of Array
Claus Gittinger <cg@exept.de>
parents: 2318
diff changeset
   656
	index = __intVal(__ClassInstPtr(__qClass(mySelf))->c_ninstvars);
061dadc13df1 removed WEAKPOINTER checks - WeakArray is no longer allowed to be a subclass of Array
Claus Gittinger <cg@exept.de>
parents: 2318
diff changeset
   657
	actualSize = __BYTES2OBJS__(__qSize(mySelf) - OHDR_SIZE);
061dadc13df1 removed WEAKPOINTER checks - WeakArray is no longer allowed to be a subclass of Array
Claus Gittinger <cg@exept.de>
parents: 2318
diff changeset
   658
    }
061dadc13df1 removed WEAKPOINTER checks - WeakArray is no longer allowed to be a subclass of Array
Claus Gittinger <cg@exept.de>
parents: 2318
diff changeset
   659
061dadc13df1 removed WEAKPOINTER checks - WeakArray is no longer allowed to be a subclass of Array
Claus Gittinger <cg@exept.de>
parents: 2318
diff changeset
   660
    nIndex = index + __intVal(sz);
061dadc13df1 removed WEAKPOINTER checks - WeakArray is no longer allowed to be a subclass of Array
Claus Gittinger <cg@exept.de>
parents: 2318
diff changeset
   661
    if (nIndex <= actualSize) {
945
b2a1dc200c42 allow redefinition of #size in subclasses (optimized methods did not work in this case)
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   662
2357
061dadc13df1 removed WEAKPOINTER checks - WeakArray is no longer allowed to be a subclass of Array
Claus Gittinger <cg@exept.de>
parents: 2318
diff changeset
   663
	if (__isBlockLike(aBlock)
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   664
	 && (__BlockInstPtr(aBlock)->b_nargs == __mkSmallInteger(1))) {
2357
061dadc13df1 removed WEAKPOINTER checks - WeakArray is no longer allowed to be a subclass of Array
Claus Gittinger <cg@exept.de>
parents: 2318
diff changeset
   665
	    {
2915
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2894
diff changeset
   666
		/*
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2894
diff changeset
   667
		 * the most common case: a static compiled block, with home on the stack ...
2357
061dadc13df1 removed WEAKPOINTER checks - WeakArray is no longer allowed to be a subclass of Array
Claus Gittinger <cg@exept.de>
parents: 2318
diff changeset
   668
		 */
061dadc13df1 removed WEAKPOINTER checks - WeakArray is no longer allowed to be a subclass of Array
Claus Gittinger <cg@exept.de>
parents: 2318
diff changeset
   669
		REGISTER OBJFUNC codeVal;
2185
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
   670
2915
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2894
diff changeset
   671
		if (((codeVal = __BlockInstPtr(aBlock)->b_code) != (OBJFUNC)nil)
2678
37eec0043bdb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2360
diff changeset
   672
#ifdef PARANOIA
2915
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2894
diff changeset
   673
		 && (! ((INT)(__BlockInstPtr(aBlock)->b_flags) & __MASKSMALLINT(F_DYNAMIC)))
2678
37eec0043bdb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2360
diff changeset
   674
#endif
37eec0043bdb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2360
diff changeset
   675
		) {
2254
5e3cb9e7e682 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2217
diff changeset
   676
554
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
   677
#ifdef NEW_BLOCK_CALL
2357
061dadc13df1 removed WEAKPOINTER checks - WeakArray is no longer allowed to be a subclass of Array
Claus Gittinger <cg@exept.de>
parents: 2318
diff changeset
   678
#                   define BLOCK_ARG        aBlock
554
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
   679
#else
2357
061dadc13df1 removed WEAKPOINTER checks - WeakArray is no longer allowed to be a subclass of Array
Claus Gittinger <cg@exept.de>
parents: 2318
diff changeset
   680
#                   define BLOCK_ARG        rHome
061dadc13df1 removed WEAKPOINTER checks - WeakArray is no longer allowed to be a subclass of Array
Claus Gittinger <cg@exept.de>
parents: 2318
diff changeset
   681
		    REGISTER OBJ rHome;
2185
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
   682
2357
061dadc13df1 removed WEAKPOINTER checks - WeakArray is no longer allowed to be a subclass of Array
Claus Gittinger <cg@exept.de>
parents: 2318
diff changeset
   683
		    rHome = __BlockInstPtr(aBlock)->b_home;
061dadc13df1 removed WEAKPOINTER checks - WeakArray is no longer allowed to be a subclass of Array
Claus Gittinger <cg@exept.de>
parents: 2318
diff changeset
   684
		    if ((rHome == nil) || (__qSpace(rHome) >= STACKSPACE))
2185
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
   685
#endif
2357
061dadc13df1 removed WEAKPOINTER checks - WeakArray is no longer allowed to be a subclass of Array
Claus Gittinger <cg@exept.de>
parents: 2318
diff changeset
   686
		    {
2216
e4fed6c622de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2213
diff changeset
   687
2878
71f51a44643f comment
Claus Gittinger <cg@exept.de>
parents: 2865
diff changeset
   688
			    /*
71f51a44643f comment
Claus Gittinger <cg@exept.de>
parents: 2865
diff changeset
   689
			     * boy; what an ugly looking piece of code ...
71f51a44643f comment
Claus Gittinger <cg@exept.de>
parents: 2865
diff changeset
   690
			     * however, this software pipelined thing has no taken conditional
71f51a44643f comment
Claus Gittinger <cg@exept.de>
parents: 2865
diff changeset
   691
			     * branches in the normal case and is almost twice as fast to even
71f51a44643f comment
Claus Gittinger <cg@exept.de>
parents: 2865
diff changeset
   692
			     * what an unrolling optimizing compiler produces from the loop below ...
71f51a44643f comment
Claus Gittinger <cg@exept.de>
parents: 2865
diff changeset
   693
			     * notice, that those gotos expand to forward branches (which are predicted
71f51a44643f comment
Claus Gittinger <cg@exept.de>
parents: 2865
diff changeset
   694
			     * as NOT taken by most machines ... which is exactly what we want)
71f51a44643f comment
Claus Gittinger <cg@exept.de>
parents: 2865
diff changeset
   695
			     */
2715
48beff18cec0 software pipeline element access in enumeration method
Claus Gittinger <cg@exept.de>
parents: 2683
diff changeset
   696
			    REGISTER OBJ el;
8919
707a9ff7f9b2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
   697
#ifdef __UNROLL_LOOPS__
2715
48beff18cec0 software pipeline element access in enumeration method
Claus Gittinger <cg@exept.de>
parents: 2683
diff changeset
   698
2216
e4fed6c622de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2213
diff changeset
   699
			    {
e4fed6c622de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2213
diff changeset
   700
				int i8;
e4fed6c622de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2213
diff changeset
   701
e4fed6c622de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2213
diff changeset
   702
				while ((i8 = index+8) < nIndex) {
2715
48beff18cec0 software pipeline element access in enumeration method
Claus Gittinger <cg@exept.de>
parents: 2683
diff changeset
   703
				    el = __InstPtr(self)->i_instvars[index];
2216
e4fed6c622de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2213
diff changeset
   704
				    if (InterruptPending != nil) goto interrupt0;
e4fed6c622de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2213
diff changeset
   705
		continue0:
2715
48beff18cec0 software pipeline element access in enumeration method
Claus Gittinger <cg@exept.de>
parents: 2683
diff changeset
   706
				    (*codeVal)(BLOCK_ARG, el);
48beff18cec0 software pipeline element access in enumeration method
Claus Gittinger <cg@exept.de>
parents: 2683
diff changeset
   707
				    el = __InstPtr(self)->i_instvars[index+1];
2216
e4fed6c622de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2213
diff changeset
   708
				    if (InterruptPending != nil) goto interrupt1;
e4fed6c622de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2213
diff changeset
   709
		continue1:
2715
48beff18cec0 software pipeline element access in enumeration method
Claus Gittinger <cg@exept.de>
parents: 2683
diff changeset
   710
				    (*codeVal)(BLOCK_ARG, el);
48beff18cec0 software pipeline element access in enumeration method
Claus Gittinger <cg@exept.de>
parents: 2683
diff changeset
   711
				    el = __InstPtr(self)->i_instvars[index+2];
2216
e4fed6c622de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2213
diff changeset
   712
				    if (InterruptPending != nil) goto interrupt2;
e4fed6c622de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2213
diff changeset
   713
		continue2:
2715
48beff18cec0 software pipeline element access in enumeration method
Claus Gittinger <cg@exept.de>
parents: 2683
diff changeset
   714
				    (*codeVal)(BLOCK_ARG, el);
48beff18cec0 software pipeline element access in enumeration method
Claus Gittinger <cg@exept.de>
parents: 2683
diff changeset
   715
				    el = __InstPtr(self)->i_instvars[index+3];
2216
e4fed6c622de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2213
diff changeset
   716
				    if (InterruptPending != nil) goto interrupt3;
e4fed6c622de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2213
diff changeset
   717
		continue3:
2715
48beff18cec0 software pipeline element access in enumeration method
Claus Gittinger <cg@exept.de>
parents: 2683
diff changeset
   718
				    (*codeVal)(BLOCK_ARG, el);
48beff18cec0 software pipeline element access in enumeration method
Claus Gittinger <cg@exept.de>
parents: 2683
diff changeset
   719
				    el = __InstPtr(self)->i_instvars[index+4];
2216
e4fed6c622de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2213
diff changeset
   720
				    if (InterruptPending != nil) goto interrupt4;
e4fed6c622de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2213
diff changeset
   721
		continue4:
2715
48beff18cec0 software pipeline element access in enumeration method
Claus Gittinger <cg@exept.de>
parents: 2683
diff changeset
   722
				    (*codeVal)(BLOCK_ARG, el);
48beff18cec0 software pipeline element access in enumeration method
Claus Gittinger <cg@exept.de>
parents: 2683
diff changeset
   723
				    el = __InstPtr(self)->i_instvars[index+5];
2216
e4fed6c622de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2213
diff changeset
   724
				    if (InterruptPending != nil) goto interrupt5;
e4fed6c622de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2213
diff changeset
   725
		continue5:
2715
48beff18cec0 software pipeline element access in enumeration method
Claus Gittinger <cg@exept.de>
parents: 2683
diff changeset
   726
				    (*codeVal)(BLOCK_ARG, el);
48beff18cec0 software pipeline element access in enumeration method
Claus Gittinger <cg@exept.de>
parents: 2683
diff changeset
   727
				    el = __InstPtr(self)->i_instvars[index+6];
2216
e4fed6c622de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2213
diff changeset
   728
				    if (InterruptPending != nil) goto interrupt6;
e4fed6c622de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2213
diff changeset
   729
		continue6:
2715
48beff18cec0 software pipeline element access in enumeration method
Claus Gittinger <cg@exept.de>
parents: 2683
diff changeset
   730
				    (*codeVal)(BLOCK_ARG, el);
48beff18cec0 software pipeline element access in enumeration method
Claus Gittinger <cg@exept.de>
parents: 2683
diff changeset
   731
				    el = __InstPtr(self)->i_instvars[index+7];
2216
e4fed6c622de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2213
diff changeset
   732
				    if (InterruptPending != nil) goto interrupt7;
e4fed6c622de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2213
diff changeset
   733
		continue7:
2715
48beff18cec0 software pipeline element access in enumeration method
Claus Gittinger <cg@exept.de>
parents: 2683
diff changeset
   734
				    (*codeVal)(BLOCK_ARG, el);
2216
e4fed6c622de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2213
diff changeset
   735
				    index = i8;
e4fed6c622de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2213
diff changeset
   736
				}
e4fed6c622de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2213
diff changeset
   737
			    }
8919
707a9ff7f9b2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
   738
#endif /* __UNROLL_LOOPS__ */
2216
e4fed6c622de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2213
diff changeset
   739
2185
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
   740
			    for (; index < nIndex; index++) {
2217
Claus Gittinger <cg@exept.de>
parents: 2216
diff changeset
   741
				el = __InstPtr(self)->i_instvars[index];
2715
48beff18cec0 software pipeline element access in enumeration method
Claus Gittinger <cg@exept.de>
parents: 2683
diff changeset
   742
				if (InterruptPending != nil) goto interruptX;
2915
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2894
diff changeset
   743
		continueX:
2715
48beff18cec0 software pipeline element access in enumeration method
Claus Gittinger <cg@exept.de>
parents: 2683
diff changeset
   744
				(*codeVal)(BLOCK_ARG, el);
2185
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
   745
			    }
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
   746
			    RETURN (self);
2216
e4fed6c622de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2213
diff changeset
   747
8919
707a9ff7f9b2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
   748
#ifdef __UNROLL_LOOPS__
2216
e4fed6c622de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2213
diff changeset
   749
		interrupt0:
2715
48beff18cec0 software pipeline element access in enumeration method
Claus Gittinger <cg@exept.de>
parents: 2683
diff changeset
   750
			    __interruptL(@line);
48beff18cec0 software pipeline element access in enumeration method
Claus Gittinger <cg@exept.de>
parents: 2683
diff changeset
   751
			    el = __InstPtr(self)->i_instvars[index];
48beff18cec0 software pipeline element access in enumeration method
Claus Gittinger <cg@exept.de>
parents: 2683
diff changeset
   752
			    goto continue0;
2216
e4fed6c622de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2213
diff changeset
   753
		interrupt1:
2715
48beff18cec0 software pipeline element access in enumeration method
Claus Gittinger <cg@exept.de>
parents: 2683
diff changeset
   754
			    __interruptL(@line);
48beff18cec0 software pipeline element access in enumeration method
Claus Gittinger <cg@exept.de>
parents: 2683
diff changeset
   755
			    el = __InstPtr(self)->i_instvars[index+1];
48beff18cec0 software pipeline element access in enumeration method
Claus Gittinger <cg@exept.de>
parents: 2683
diff changeset
   756
			    goto continue1;
2216
e4fed6c622de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2213
diff changeset
   757
		interrupt2:
2715
48beff18cec0 software pipeline element access in enumeration method
Claus Gittinger <cg@exept.de>
parents: 2683
diff changeset
   758
			    __interruptL(@line);
48beff18cec0 software pipeline element access in enumeration method
Claus Gittinger <cg@exept.de>
parents: 2683
diff changeset
   759
			    el = __InstPtr(self)->i_instvars[index+2];
48beff18cec0 software pipeline element access in enumeration method
Claus Gittinger <cg@exept.de>
parents: 2683
diff changeset
   760
			    goto continue2;
2216
e4fed6c622de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2213
diff changeset
   761
		interrupt3:
2715
48beff18cec0 software pipeline element access in enumeration method
Claus Gittinger <cg@exept.de>
parents: 2683
diff changeset
   762
			    __interruptL(@line);
48beff18cec0 software pipeline element access in enumeration method
Claus Gittinger <cg@exept.de>
parents: 2683
diff changeset
   763
			    el = __InstPtr(self)->i_instvars[index+3];
48beff18cec0 software pipeline element access in enumeration method
Claus Gittinger <cg@exept.de>
parents: 2683
diff changeset
   764
			    goto continue3;
2216
e4fed6c622de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2213
diff changeset
   765
		interrupt4:
2715
48beff18cec0 software pipeline element access in enumeration method
Claus Gittinger <cg@exept.de>
parents: 2683
diff changeset
   766
			    __interruptL(@line);
48beff18cec0 software pipeline element access in enumeration method
Claus Gittinger <cg@exept.de>
parents: 2683
diff changeset
   767
			    el = __InstPtr(self)->i_instvars[index+4];
48beff18cec0 software pipeline element access in enumeration method
Claus Gittinger <cg@exept.de>
parents: 2683
diff changeset
   768
			    goto continue4;
2216
e4fed6c622de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2213
diff changeset
   769
		interrupt5:
2715
48beff18cec0 software pipeline element access in enumeration method
Claus Gittinger <cg@exept.de>
parents: 2683
diff changeset
   770
			    __interruptL(@line);
48beff18cec0 software pipeline element access in enumeration method
Claus Gittinger <cg@exept.de>
parents: 2683
diff changeset
   771
			    el = __InstPtr(self)->i_instvars[index+5];
48beff18cec0 software pipeline element access in enumeration method
Claus Gittinger <cg@exept.de>
parents: 2683
diff changeset
   772
			    goto continue5;
2216
e4fed6c622de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2213
diff changeset
   773
		interrupt6:
2715
48beff18cec0 software pipeline element access in enumeration method
Claus Gittinger <cg@exept.de>
parents: 2683
diff changeset
   774
			    __interruptL(@line);
48beff18cec0 software pipeline element access in enumeration method
Claus Gittinger <cg@exept.de>
parents: 2683
diff changeset
   775
			    el = __InstPtr(self)->i_instvars[index+6];
48beff18cec0 software pipeline element access in enumeration method
Claus Gittinger <cg@exept.de>
parents: 2683
diff changeset
   776
			    goto continue6;
2216
e4fed6c622de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2213
diff changeset
   777
		interrupt7:
2715
48beff18cec0 software pipeline element access in enumeration method
Claus Gittinger <cg@exept.de>
parents: 2683
diff changeset
   778
			    __interruptL(@line);
48beff18cec0 software pipeline element access in enumeration method
Claus Gittinger <cg@exept.de>
parents: 2683
diff changeset
   779
			    el = __InstPtr(self)->i_instvars[index+7];
48beff18cec0 software pipeline element access in enumeration method
Claus Gittinger <cg@exept.de>
parents: 2683
diff changeset
   780
			    goto continue7;
8919
707a9ff7f9b2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
   781
#endif /* __UNROLL_LOOPS__ */
2715
48beff18cec0 software pipeline element access in enumeration method
Claus Gittinger <cg@exept.de>
parents: 2683
diff changeset
   782
		interruptX:
48beff18cec0 software pipeline element access in enumeration method
Claus Gittinger <cg@exept.de>
parents: 2683
diff changeset
   783
			    __interruptL(@line);
48beff18cec0 software pipeline element access in enumeration method
Claus Gittinger <cg@exept.de>
parents: 2683
diff changeset
   784
			    el = __InstPtr(self)->i_instvars[index];
48beff18cec0 software pipeline element access in enumeration method
Claus Gittinger <cg@exept.de>
parents: 2683
diff changeset
   785
			    goto continueX;
3500
90eb689740cc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
   786
		    }
2185
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
   787
		}
2357
061dadc13df1 removed WEAKPOINTER checks - WeakArray is no longer allowed to be a subclass of Array
Claus Gittinger <cg@exept.de>
parents: 2318
diff changeset
   788
	    }
2185
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
   789
2357
061dadc13df1 removed WEAKPOINTER checks - WeakArray is no longer allowed to be a subclass of Array
Claus Gittinger <cg@exept.de>
parents: 2318
diff changeset
   790
	    /*
061dadc13df1 removed WEAKPOINTER checks - WeakArray is no longer allowed to be a subclass of Array
Claus Gittinger <cg@exept.de>
parents: 2318
diff changeset
   791
	     * sorry, must check code-pointer in the loop
061dadc13df1 removed WEAKPOINTER checks - WeakArray is no longer allowed to be a subclass of Array
Claus Gittinger <cg@exept.de>
parents: 2318
diff changeset
   792
	     * it could be recompiled or flushed
061dadc13df1 removed WEAKPOINTER checks - WeakArray is no longer allowed to be a subclass of Array
Claus Gittinger <cg@exept.de>
parents: 2318
diff changeset
   793
	     */
061dadc13df1 removed WEAKPOINTER checks - WeakArray is no longer allowed to be a subclass of Array
Claus Gittinger <cg@exept.de>
parents: 2318
diff changeset
   794
#           undef BLOCK_ARG
2185
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
   795
#ifdef NEW_BLOCK_CALL
2357
061dadc13df1 removed WEAKPOINTER checks - WeakArray is no longer allowed to be a subclass of Array
Claus Gittinger <cg@exept.de>
parents: 2318
diff changeset
   796
#           define BLOCK_ARG        aBlock
061dadc13df1 removed WEAKPOINTER checks - WeakArray is no longer allowed to be a subclass of Array
Claus Gittinger <cg@exept.de>
parents: 2318
diff changeset
   797
#           define IBLOCK_ARG       nil
2185
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
   798
#else
2357
061dadc13df1 removed WEAKPOINTER checks - WeakArray is no longer allowed to be a subclass of Array
Claus Gittinger <cg@exept.de>
parents: 2318
diff changeset
   799
#           define BLOCK_ARG        (__BlockInstPtr(aBlock)->b_home)
061dadc13df1 removed WEAKPOINTER checks - WeakArray is no longer allowed to be a subclass of Array
Claus Gittinger <cg@exept.de>
parents: 2318
diff changeset
   800
#           define IBLOCK_ARG       (__BlockInstPtr(aBlock)->b_home)
2185
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
   801
#endif
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
   802
2357
061dadc13df1 removed WEAKPOINTER checks - WeakArray is no longer allowed to be a subclass of Array
Claus Gittinger <cg@exept.de>
parents: 2318
diff changeset
   803
	    for (; index < nIndex; index++) {
061dadc13df1 removed WEAKPOINTER checks - WeakArray is no longer allowed to be a subclass of Array
Claus Gittinger <cg@exept.de>
parents: 2318
diff changeset
   804
		REGISTER OBJFUNC codeVal;
061dadc13df1 removed WEAKPOINTER checks - WeakArray is no longer allowed to be a subclass of Array
Claus Gittinger <cg@exept.de>
parents: 2318
diff changeset
   805
061dadc13df1 removed WEAKPOINTER checks - WeakArray is no longer allowed to be a subclass of Array
Claus Gittinger <cg@exept.de>
parents: 2318
diff changeset
   806
		if (InterruptPending != nil) __interruptL(@line);
2185
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
   807
2357
061dadc13df1 removed WEAKPOINTER checks - WeakArray is no longer allowed to be a subclass of Array
Claus Gittinger <cg@exept.de>
parents: 2318
diff changeset
   808
		if ((codeVal = __BlockInstPtr(aBlock)->b_code) != (OBJFUNC)nil) {
061dadc13df1 removed WEAKPOINTER checks - WeakArray is no longer allowed to be a subclass of Array
Claus Gittinger <cg@exept.de>
parents: 2318
diff changeset
   809
		    (*codeVal)(BLOCK_ARG, __InstPtr(self)->i_instvars[index]);
061dadc13df1 removed WEAKPOINTER checks - WeakArray is no longer allowed to be a subclass of Array
Claus Gittinger <cg@exept.de>
parents: 2318
diff changeset
   810
		} else {
061dadc13df1 removed WEAKPOINTER checks - WeakArray is no longer allowed to be a subclass of Array
Claus Gittinger <cg@exept.de>
parents: 2318
diff changeset
   811
		    if (__BlockInstPtr(aBlock)->b_bytecodes != nil) {
061dadc13df1 removed WEAKPOINTER checks - WeakArray is no longer allowed to be a subclass of Array
Claus Gittinger <cg@exept.de>
parents: 2318
diff changeset
   812
			/*
061dadc13df1 removed WEAKPOINTER checks - WeakArray is no longer allowed to be a subclass of Array
Claus Gittinger <cg@exept.de>
parents: 2318
diff changeset
   813
			 * arg is a compiled block with bytecode -
061dadc13df1 removed WEAKPOINTER checks - WeakArray is no longer allowed to be a subclass of Array
Claus Gittinger <cg@exept.de>
parents: 2318
diff changeset
   814
			 * directly call interpreter without going through Block>>value
061dadc13df1 removed WEAKPOINTER checks - WeakArray is no longer allowed to be a subclass of Array
Claus Gittinger <cg@exept.de>
parents: 2318
diff changeset
   815
			 */
061dadc13df1 removed WEAKPOINTER checks - WeakArray is no longer allowed to be a subclass of Array
Claus Gittinger <cg@exept.de>
parents: 2318
diff changeset
   816
#ifdef PASS_ARG_POINTER
061dadc13df1 removed WEAKPOINTER checks - WeakArray is no longer allowed to be a subclass of Array
Claus Gittinger <cg@exept.de>
parents: 2318
diff changeset
   817
			__interpret(aBlock, 1, nil, IBLOCK_ARG, nil, nil, &(__InstPtr(self)->i_instvars[index]));
061dadc13df1 removed WEAKPOINTER checks - WeakArray is no longer allowed to be a subclass of Array
Claus Gittinger <cg@exept.de>
parents: 2318
diff changeset
   818
#else
061dadc13df1 removed WEAKPOINTER checks - WeakArray is no longer allowed to be a subclass of Array
Claus Gittinger <cg@exept.de>
parents: 2318
diff changeset
   819
			__interpret(aBlock, 1, nil, IBLOCK_ARG, nil, nil, __InstPtr(self)->i_instvars[index]);
061dadc13df1 removed WEAKPOINTER checks - WeakArray is no longer allowed to be a subclass of Array
Claus Gittinger <cg@exept.de>
parents: 2318
diff changeset
   820
#endif
2185
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
   821
		    } else {
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
   822
			(*val.ilc_func)(aBlock,
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
   823
					    @symbol(value:),
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
   824
					    nil, &val,
2211
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
   825
					    __InstPtr(self)->i_instvars[index]);
2185
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
   826
		    }
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
   827
		}
2211
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
   828
	    }
2185
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
   829
2357
061dadc13df1 removed WEAKPOINTER checks - WeakArray is no longer allowed to be a subclass of Array
Claus Gittinger <cg@exept.de>
parents: 2318
diff changeset
   830
#           undef BLOCK_ARG
061dadc13df1 removed WEAKPOINTER checks - WeakArray is no longer allowed to be a subclass of Array
Claus Gittinger <cg@exept.de>
parents: 2318
diff changeset
   831
#           undef IBLOCK_ARG
061dadc13df1 removed WEAKPOINTER checks - WeakArray is no longer allowed to be a subclass of Array
Claus Gittinger <cg@exept.de>
parents: 2318
diff changeset
   832
061dadc13df1 removed WEAKPOINTER checks - WeakArray is no longer allowed to be a subclass of Array
Claus Gittinger <cg@exept.de>
parents: 2318
diff changeset
   833
	    RETURN (self );
061dadc13df1 removed WEAKPOINTER checks - WeakArray is no longer allowed to be a subclass of Array
Claus Gittinger <cg@exept.de>
parents: 2318
diff changeset
   834
	}
554
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
   835
2357
061dadc13df1 removed WEAKPOINTER checks - WeakArray is no longer allowed to be a subclass of Array
Claus Gittinger <cg@exept.de>
parents: 2318
diff changeset
   836
	/*
061dadc13df1 removed WEAKPOINTER checks - WeakArray is no longer allowed to be a subclass of Array
Claus Gittinger <cg@exept.de>
parents: 2318
diff changeset
   837
	 * not a block - send it #value:
061dadc13df1 removed WEAKPOINTER checks - WeakArray is no longer allowed to be a subclass of Array
Claus Gittinger <cg@exept.de>
parents: 2318
diff changeset
   838
	 */
061dadc13df1 removed WEAKPOINTER checks - WeakArray is no longer allowed to be a subclass of Array
Claus Gittinger <cg@exept.de>
parents: 2318
diff changeset
   839
	for (; index < nIndex; index++) {
061dadc13df1 removed WEAKPOINTER checks - WeakArray is no longer allowed to be a subclass of Array
Claus Gittinger <cg@exept.de>
parents: 2318
diff changeset
   840
	    if (InterruptPending != nil) __interruptL(@line);
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
   841
	    // console_printf("el%d -> %"_lx_"\n", index, (long)(__InstPtr(self)->i_instvars[index]));
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
   842
	    (*val.ilc_func)(aBlock,
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
   843
				@symbol(value:),
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
   844
				nil, &val,
2211
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
   845
				__InstPtr(self)->i_instvars[index]);
2185
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
   846
	}
2357
061dadc13df1 removed WEAKPOINTER checks - WeakArray is no longer allowed to be a subclass of Array
Claus Gittinger <cg@exept.de>
parents: 2318
diff changeset
   847
	RETURN ( self );
554
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
   848
    }
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
   849
    /*
2357
061dadc13df1 removed WEAKPOINTER checks - WeakArray is no longer allowed to be a subclass of Array
Claus Gittinger <cg@exept.de>
parents: 2318
diff changeset
   850
     * I am something, not handled here
2185
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
   851
     */
945
b2a1dc200c42 allow redefinition of #size in subclasses (optimized methods did not work in this case)
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   852
%}.
946
35962f2a169b be prepared for cheaters, subclassing Array returning invalid sizes ...
Claus Gittinger <cg@exept.de>
parents: 945
diff changeset
   853
    ^ super do:aBlock
554
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
   854
!
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
   855
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   856
from:start to:stop do:aBlock
a27a279701f8 Initial revision
claus
parents:
diff changeset
   857
    "evaluate the argument, aBlock for the elements starting at index start
a27a279701f8 Initial revision
claus
parents:
diff changeset
   858
     up to (and including) stop in the collection.
4122
7e3b6b267c06 comment
Claus Gittinger <cg@exept.de>
parents: 4062
diff changeset
   859
     - reimplemented for speed, since this is used by many higher
7e3b6b267c06 comment
Claus Gittinger <cg@exept.de>
parents: 4062
diff changeset
   860
       level collections"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   861
a27a279701f8 Initial revision
claus
parents:
diff changeset
   862
%{
a27a279701f8 Initial revision
claus
parents:
diff changeset
   863
    REGISTER OBJFUNC codeVal;
14687
e718f7219911 64bit changes
Claus Gittinger <cg@exept.de>
parents: 14657
diff changeset
   864
    REGISTER INT index;
2
claus
parents: 1
diff changeset
   865
    REGISTER OBJ rHome;
2052
9fdab6cbecfa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1903
diff changeset
   866
    OBJ slf;
14687
e718f7219911 64bit changes
Claus Gittinger <cg@exept.de>
parents: 14657
diff changeset
   867
    INT nIndex, nInsts;
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   868
    static struct inlineCache val = _ILC1;
14687
e718f7219911 64bit changes
Claus Gittinger <cg@exept.de>
parents: 14657
diff changeset
   869
    INT indexHigh;
2184
f25db3e10530 no block-copy operations are allowed with WeakArrays
Claus Gittinger <cg@exept.de>
parents: 2145
diff changeset
   870
    OBJ myClass;
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   871
2184
f25db3e10530 no block-copy operations are allowed with WeakArrays
Claus Gittinger <cg@exept.de>
parents: 2145
diff changeset
   872
    slf = self;
f25db3e10530 no block-copy operations are allowed with WeakArrays
Claus Gittinger <cg@exept.de>
parents: 2145
diff changeset
   873
    myClass = __qClass(slf);
5347
21b418ac4cc3 oops: from:to:do: failed badly when stopIndex was < startIndex.
Claus Gittinger <cg@exept.de>
parents: 5049
diff changeset
   874
21b418ac4cc3 oops: from:to:do: failed badly when stopIndex was < startIndex.
Claus Gittinger <cg@exept.de>
parents: 5049
diff changeset
   875
    if ( __bothSmallInteger(start, stop)
21b418ac4cc3 oops: from:to:do: failed badly when stopIndex was < startIndex.
Claus Gittinger <cg@exept.de>
parents: 5049
diff changeset
   876
     && ((index = __intVal(start)) > 0) ) {
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   877
	indexHigh = __intVal(stop);
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   878
	nIndex = __BYTES2OBJS__(__qSize(slf) - OHDR_SIZE);
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   879
	if (myClass != @global(Array)) {
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   880
	    nInsts = __intVal(__ClassInstPtr(myClass)->c_ninstvars);
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   881
	    index += nInsts;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   882
	    indexHigh += nInsts;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   883
	}
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   884
	if (indexHigh <= nIndex) {
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   885
	    OBJ __aBlock = aBlock;
14687
e718f7219911 64bit changes
Claus Gittinger <cg@exept.de>
parents: 14657
diff changeset
   886
	    INT n;
2185
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
   887
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   888
	    index--;                            /* 0-based */
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   889
	    n = indexHigh - index;
3484
79a08dfa50c9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3234
diff changeset
   890
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   891
	    if (__isBlockLike(__aBlock)
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   892
	     && (__BlockInstPtr(__aBlock)->b_nargs == __mkSmallInteger(1))) {
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   893
		{
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   894
		    /*
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   895
		     * the most common case: a static compiled block, with home on the stack ...
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   896
		     */
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   897
		    REGISTER OBJFUNC codeVal;
2185
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
   898
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   899
		    if (((codeVal = __BlockInstPtr(__aBlock)->b_code) != (OBJFUNC)nil)
2678
37eec0043bdb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2360
diff changeset
   900
#ifdef PARANOIA
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   901
		     && (! ((INT)(__BlockInstPtr(__aBlock)->b_flags) & __MASKSMALLINT(F_DYNAMIC)))
2678
37eec0043bdb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2360
diff changeset
   902
#endif
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   903
		    ) {
11
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
   904
#ifdef NEW_BLOCK_CALL
2185
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
   905
#                       define BLOCK_ARG        aBlock
11
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
   906
#else
2185
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
   907
#                       define BLOCK_ARG        rHome
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   908
			REGISTER OBJ rHome;
2185
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
   909
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   910
			rHome = __BlockInstPtr(__aBlock)->b_home;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   911
			if ((rHome == nil) || (__qSpace(rHome) >= STACKSPACE))
2185
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
   912
#endif
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   913
			{
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   914
			    REGISTER OBJ el;
2715
48beff18cec0 software pipeline element access in enumeration method
Claus Gittinger <cg@exept.de>
parents: 2683
diff changeset
   915
8919
707a9ff7f9b2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
   916
#ifdef __UNROLL_LOOPS__
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   917
			    /*
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   918
			     * boy; what an ugly looking piece of code ...
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   919
			     * however, this software pipelined thing has no taken conditional
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   920
			     * branches in the normal case and is almost twice as fast to even
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   921
			     * what an unrolling optimizing compiler produces from the loop below ...
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   922
			     * notice, that those gotos expand to forward branches (which are predicted
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   923
			     * as NOT taken by most machines ... which is exactly what we want)
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   924
			     */
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   925
			    {
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   926
				while ( n >= 8) {
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   927
				    el = __InstPtr(self)->i_instvars[index];
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   928
				    if (InterruptPending != nil) goto interrupt0;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   929
		continue0:
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   930
				    (*codeVal)(BLOCK_ARG, el);
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   931
				    el = __InstPtr(self)->i_instvars[index+1];
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   932
				    if (InterruptPending != nil) goto interrupt1;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   933
		continue1:
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   934
				    (*codeVal)(BLOCK_ARG, el);
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   935
				    el = __InstPtr(self)->i_instvars[index+2];
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   936
				    if (InterruptPending != nil) goto interrupt2;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   937
		continue2:
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   938
				    (*codeVal)(BLOCK_ARG, el);
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   939
				    el = __InstPtr(self)->i_instvars[index+3];
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   940
				    if (InterruptPending != nil) goto interrupt3;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   941
		continue3:
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   942
				    (*codeVal)(BLOCK_ARG, el);
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   943
				    el = __InstPtr(self)->i_instvars[index+4];
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   944
				    if (InterruptPending != nil) goto interrupt4;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   945
		continue4:
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   946
				    (*codeVal)(BLOCK_ARG, el);
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   947
				    el = __InstPtr(self)->i_instvars[index+5];
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   948
				    if (InterruptPending != nil) goto interrupt5;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   949
		continue5:
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   950
				    (*codeVal)(BLOCK_ARG, el);
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   951
				    el = __InstPtr(self)->i_instvars[index+6];
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   952
				    if (InterruptPending != nil) goto interrupt6;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   953
		continue6:
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   954
				    (*codeVal)(BLOCK_ARG, el);
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   955
				    el = __InstPtr(self)->i_instvars[index+7];
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   956
				    if (InterruptPending != nil) goto interrupt7;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   957
		continue7:
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   958
				    (*codeVal)(BLOCK_ARG, el);
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   959
				    n -= 8;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   960
				    index += 8;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   961
				}
8919
707a9ff7f9b2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
   962
# ifdef __UNROLL_LOOPS2__ /* this makes small loops slower */
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   963
				if (n >= 4) {
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   964
				    el = __InstPtr(self)->i_instvars[index];
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   965
				    if (InterruptPending != nil) goto interrupt0b;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   966
		continue0b:
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   967
				    (*codeVal)(BLOCK_ARG, el);
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   968
				    el = __InstPtr(self)->i_instvars[index+1];
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   969
				    if (InterruptPending != nil) goto interrupt1b;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   970
		continue1b:
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   971
				    (*codeVal)(BLOCK_ARG, el);
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   972
				    el = __InstPtr(self)->i_instvars[index+2];
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   973
				    if (InterruptPending != nil) goto interrupt2b;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   974
		continue2b:
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   975
				    (*codeVal)(BLOCK_ARG, el);
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   976
				    el = __InstPtr(self)->i_instvars[index+3];
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   977
				    if (InterruptPending != nil) goto interrupt3b;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   978
		continue3b:
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   979
				    (*codeVal)(BLOCK_ARG, el);
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   980
				    n -= 4;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   981
				    index += 4;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   982
				}
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   983
				if (n >= 2) {
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   984
				    el = __InstPtr(self)->i_instvars[index];
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   985
				    if (InterruptPending != nil) goto interrupt0c;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   986
		continue0c:
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   987
				    (*codeVal)(BLOCK_ARG, el);
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   988
				    el = __InstPtr(self)->i_instvars[index+1];
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   989
				    if (InterruptPending != nil) goto interrupt1c;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   990
		continue1c:
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   991
				    (*codeVal)(BLOCK_ARG, el);
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   992
				    n -= 2;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   993
				    index += 2;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   994
				}
8919
707a9ff7f9b2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
   995
# endif /* __UNROLL_LOOPS2__ */
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   996
			    }
8919
707a9ff7f9b2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
   997
#endif /* __UNROLL_LOOPS__ */
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   998
			    while (n > 0) {
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
   999
				el = __InstPtr(self)->i_instvars[index];
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1000
				if (InterruptPending != nil) goto interruptX;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1001
		continueX:
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1002
				(*codeVal)(BLOCK_ARG, el);
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1003
				n--;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1004
				index++;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1005
			    }
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1006
			    RETURN (self);
2216
e4fed6c622de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2213
diff changeset
  1007
8919
707a9ff7f9b2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1008
#ifdef __UNROLL_LOOPS__
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1009
		interrupt0:
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1010
			    __interruptL(@line); el = __InstPtr(self)->i_instvars[index];
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1011
			    goto continue0;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1012
		interrupt1:
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1013
			    __interruptL(@line); el = __InstPtr(self)->i_instvars[index+1];
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1014
			    goto continue1;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1015
		interrupt2:
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1016
			    __interruptL(@line); el = __InstPtr(self)->i_instvars[index+2];
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1017
			    goto continue2;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1018
		interrupt3:
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1019
			    __interruptL(@line); el = __InstPtr(self)->i_instvars[index+3];
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1020
			    goto continue3;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1021
		interrupt4:
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1022
			    __interruptL(@line); el = __InstPtr(self)->i_instvars[index+4];
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1023
			    goto continue4;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1024
		interrupt5:
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1025
			    __interruptL(@line); el = __InstPtr(self)->i_instvars[index+5];
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1026
			    goto continue5;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1027
		interrupt6:
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1028
			    __interruptL(@line); el = __InstPtr(self)->i_instvars[index+6];
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1029
			    goto continue6;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1030
		interrupt7:
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1031
			    __interruptL(@line); el = __InstPtr(self)->i_instvars[index+7];
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1032
			    goto continue7;
3484
79a08dfa50c9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3234
diff changeset
  1033
8919
707a9ff7f9b2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1034
# ifdef __UNROLL_LOOPS2__
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1035
		interrupt0b:
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1036
			    __interruptL(@line); el = __InstPtr(self)->i_instvars[index];
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1037
			    goto continue0b;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1038
		interrupt1b:
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1039
			    __interruptL(@line); el = __InstPtr(self)->i_instvars[index+1];
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1040
			    goto continue1b;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1041
		interrupt2b:
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1042
			    __interruptL(@line); el = __InstPtr(self)->i_instvars[index+2];
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1043
			    goto continue2b;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1044
		interrupt3b:
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1045
			    __interruptL(@line); el = __InstPtr(self)->i_instvars[index+3];
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1046
			    goto continue3b;
3484
79a08dfa50c9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3234
diff changeset
  1047
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1048
		interrupt0c:
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1049
			    __interruptL(@line); el = __InstPtr(self)->i_instvars[index];
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1050
			    goto continue0c;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1051
		interrupt1c:
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1052
			    __interruptL(@line); el = __InstPtr(self)->i_instvars[index+1];
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1053
			    goto continue1c;
8919
707a9ff7f9b2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1054
# endif /* __UNROLL_LOOPS2__ */
707a9ff7f9b2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1055
#endif /* __UNROLL_LOOPS__ */
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1056
		interruptX:
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1057
			    __interruptL(@line); el = __InstPtr(self)->i_instvars[index];
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1058
			    goto continueX;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1059
			}
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1060
		    }
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1061
		}
370
claus
parents: 369
diff changeset
  1062
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1063
		/*
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1064
		 * sorry, must check code-pointer in the loop
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1065
		 * it could be recompiled or flushed
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1066
		 */
2185
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
  1067
#               undef BLOCK_ARG
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
  1068
#ifdef NEW_BLOCK_CALL
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
  1069
#               define BLOCK_ARG        aBlock
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
  1070
#               define IBLOCK_ARG       nil
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
  1071
#else
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
  1072
#               define BLOCK_ARG        (__BlockInstPtr(aBlock)->b_home)
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
  1073
#               define IBLOCK_ARG       (__BlockInstPtr(aBlock)->b_home)
11
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
  1074
#endif
2185
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
  1075
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1076
		while (n > 0) {
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1077
		    REGISTER OBJFUNC codeVal;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1078
		    OBJ el;
2185
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
  1079
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1080
		    el = __InstPtr(self)->i_instvars[index];
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1081
		    if (InterruptPending != nil) {
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1082
			__interruptL(@line);
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1083
			el = __InstPtr(self)->i_instvars[index];
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1084
		    }
2185
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
  1085
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1086
		    if ((codeVal = __BlockInstPtr(aBlock)->b_code) != (OBJFUNC)nil) {
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1087
			(*codeVal)(BLOCK_ARG, el);
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1088
		    } else {
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1089
			if (__BlockInstPtr(aBlock)->b_bytecodes != nil) {
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1090
			    /*
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1091
			     * arg is a compiled block with bytecode -
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1092
			     * directly call interpreter without going through Block>>value
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1093
			     */
2185
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
  1094
#ifdef PASS_ARG_POINTER
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1095
			    __interpret(aBlock, 1, nil, IBLOCK_ARG, nil, nil, &el);
2185
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
  1096
#else
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1097
			    __interpret(aBlock, 1, nil, IBLOCK_ARG, nil, nil, el);
2185
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
  1098
#endif
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1099
			} else {
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1100
			    (*val.ilc_func)(aBlock,
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1101
					    @symbol(value:),
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1102
					    nil, &val,
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1103
					    el);
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1104
			}
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1105
		    }
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1106
		    n--;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1107
		    index++;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1108
		}
2185
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
  1109
2211
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1110
#               undef BLOCK_ARG
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1111
#               undef IBLOCK_ARG
2185
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
  1112
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1113
		RETURN (self );
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1114
	    }
2185
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
  1115
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1116
	    /*
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1117
	     * not a block - send it #value:
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1118
	     */
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1119
	    while (n > 0) {
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1120
		if (InterruptPending != nil) __interruptL(@line);
2185
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
  1121
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1122
		(*val.ilc_func)(aBlock,
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1123
				@symbol(value:),
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1124
				nil, &val,
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1125
				__InstPtr(self)->i_instvars[index]);
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1126
		n--;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1127
		index++;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1128
	    }
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1129
	    RETURN ( self );
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1130
	}
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1131
    }
945
b2a1dc200c42 allow redefinition of #size in subclasses (optimized methods did not work in this case)
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  1132
%}.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1133
    ^ super from:start to:stop do:aBlock
5347
21b418ac4cc3 oops: from:to:do: failed badly when stopIndex was < startIndex.
Claus Gittinger <cg@exept.de>
parents: 5049
diff changeset
  1134
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1135
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1136
42
e33491f6f260 *** empty log message ***
claus
parents: 36
diff changeset
  1137
from:start to:stop reverseDo:aBlock
e33491f6f260 *** empty log message ***
claus
parents: 36
diff changeset
  1138
    "evaluate the argument, aBlock for the elements starting at index start
e33491f6f260 *** empty log message ***
claus
parents: 36
diff changeset
  1139
     up to (and including) stop in the collection. Step in reverse order.
e33491f6f260 *** empty log message ***
claus
parents: 36
diff changeset
  1140
     - reimplemented for speed"
e33491f6f260 *** empty log message ***
claus
parents: 36
diff changeset
  1141
e33491f6f260 *** empty log message ***
claus
parents: 36
diff changeset
  1142
%{
e33491f6f260 *** empty log message ***
claus
parents: 36
diff changeset
  1143
    REGISTER OBJFUNC codeVal;
14687
e718f7219911 64bit changes
Claus Gittinger <cg@exept.de>
parents: 14657
diff changeset
  1144
    REGISTER INT index;
42
e33491f6f260 *** empty log message ***
claus
parents: 36
diff changeset
  1145
    REGISTER OBJ rHome;
14687
e718f7219911 64bit changes
Claus Gittinger <cg@exept.de>
parents: 14657
diff changeset
  1146
    INT nIndex;
42
e33491f6f260 *** empty log message ***
claus
parents: 36
diff changeset
  1147
    static struct inlineCache val = _ILC1;
14687
e718f7219911 64bit changes
Claus Gittinger <cg@exept.de>
parents: 14657
diff changeset
  1148
    INT indexLow, indexHigh;
42
e33491f6f260 *** empty log message ***
claus
parents: 36
diff changeset
  1149
586
cab695f942a6 weakArray readBarrier for IGC
Claus Gittinger <cg@exept.de>
parents: 577
diff changeset
  1150
    if (__bothSmallInteger(start, stop)
2185
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
  1151
     && (__qClass(self) == @global(Array))
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
  1152
     && ((indexLow = __intVal(start)) > 0)) {
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
  1153
	indexHigh = __intVal(stop);
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
  1154
	nIndex = __BYTES2OBJS__(__qSize(self) - OHDR_SIZE);
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
  1155
	if (indexHigh <= nIndex) {
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
  1156
	    indexLow--;
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
  1157
	    indexHigh--;
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
  1158
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
  1159
	    if (__isBlockLike(aBlock)
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1160
	     && (__BlockInstPtr(aBlock)->b_nargs == __mkSmallInteger(1))) {
2185
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
  1161
#               undef BLOCK_ARG
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
  1162
#ifdef NEW_BLOCK_CALL
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
  1163
#               define BLOCK_ARG        aBlock
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
  1164
#               define IBLOCK_ARG       nil
42
e33491f6f260 *** empty log message ***
claus
parents: 36
diff changeset
  1165
#else
2185
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
  1166
#               define BLOCK_ARG        (__BlockInstPtr(aBlock)->b_home)
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
  1167
#               define IBLOCK_ARG       (__BlockInstPtr(aBlock)->b_home)
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
  1168
#endif
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
  1169
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
  1170
		for (index=indexHigh; index >= indexLow; index--) {
2211
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1171
		    REGISTER OBJFUNC codeVal;
2185
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
  1172
2211
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1173
		    if (InterruptPending != nil) __interruptL(@line);
2185
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
  1174
2211
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1175
		    if ((codeVal = __BlockInstPtr(aBlock)->b_code) != (OBJFUNC)nil) {
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1176
			(*codeVal)(BLOCK_ARG, __InstPtr(self)->i_instvars[index]);
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1177
		    } else {
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1178
			if (__BlockInstPtr(aBlock)->b_bytecodes != nil) {
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1179
			    /*
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1180
			     * arg is a compiled block with bytecode -
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1181
			     * directly call interpreter without going through Block>>value
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1182
			     */
2185
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
  1183
#ifdef PASS_ARG_POINTER
2211
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1184
			    __interpret(aBlock, 1, nil, IBLOCK_ARG, nil, nil, &(__InstPtr(self)->i_instvars[index]));
2185
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
  1185
#else
2211
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1186
			    __interpret(aBlock, 1, nil, IBLOCK_ARG, nil, nil, __InstPtr(self)->i_instvars[index]);
42
e33491f6f260 *** empty log message ***
claus
parents: 36
diff changeset
  1187
#endif
2211
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1188
			} else {
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1189
			    (*val.ilc_func)(aBlock,
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1190
					    @symbol(value:),
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1191
					    nil, &val,
2211
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1192
					    __InstPtr(self)->i_instvars[index]);
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1193
			}
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1194
		    }
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1195
		}
2185
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
  1196
2211
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1197
#               undef BLOCK_ARG
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1198
#               undef IBLOCK_ARG
2185
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
  1199
2211
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1200
		RETURN (self );
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1201
	    }
2185
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
  1202
2211
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1203
	    /*
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1204
	     * not a block - send it #value:
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1205
	     */
2185
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
  1206
	    for (index=indexHigh; index >= indexLow; index--) {
2211
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1207
		if (InterruptPending != nil) __interruptL(@line);
2185
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
  1208
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1209
		(*val.ilc_func)(aBlock,
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1210
				@symbol(value:),
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1211
				nil, &val,
2211
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1212
				__InstPtr(self)->i_instvars[index]);
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1213
	    }
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1214
	    RETURN ( self );
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1215
	}
42
e33491f6f260 *** empty log message ***
claus
parents: 36
diff changeset
  1216
    }
945
b2a1dc200c42 allow redefinition of #size in subclasses (optimized methods did not work in this case)
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  1217
%}.
42
e33491f6f260 *** empty log message ***
claus
parents: 36
diff changeset
  1218
    ^ super from:start to:stop reverseDo:aBlock
e33491f6f260 *** empty log message ***
claus
parents: 36
diff changeset
  1219
!
e33491f6f260 *** empty log message ***
claus
parents: 36
diff changeset
  1220
554
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1221
keysAndValuesDo:aBlock
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1222
    "evaluate the argument, aBlock for each element in the collection.
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1223
     Pass both index and element to the block.
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1224
     - reimplemented for speed"
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1225
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1226
%{
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1227
    REGISTER OBJFUNC codeVal;
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1228
    REGISTER INT index;
554
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1229
    static struct inlineCache val2 = _ILC2;
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1230
    REGISTER OBJ rHome;
14687
e718f7219911 64bit changes
Claus Gittinger <cg@exept.de>
parents: 14657
diff changeset
  1231
    INT actualSize;
2184
f25db3e10530 no block-copy operations are allowed with WeakArrays
Claus Gittinger <cg@exept.de>
parents: 2145
diff changeset
  1232
    OBJ myClass;
554
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1233
2184
f25db3e10530 no block-copy operations are allowed with WeakArrays
Claus Gittinger <cg@exept.de>
parents: 2145
diff changeset
  1234
    myClass = __qClass(self);
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1235
    if ((__ClassInstPtr(myClass)->c_ninstvars) == __mkSmallInteger(0)) {
946
35962f2a169b be prepared for cheaters, subclassing Array returning invalid sizes ...
Claus Gittinger <cg@exept.de>
parents: 945
diff changeset
  1236
2915
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2894
diff changeset
  1237
	actualSize = __BYTES2OBJS__(__qSize(self) - OHDR_SIZE);
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2894
diff changeset
  1238
	index = 0;
945
b2a1dc200c42 allow redefinition of #size in subclasses (optimized methods did not work in this case)
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  1239
2915
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2894
diff changeset
  1240
	if (index < actualSize) {
2842
1cda44a3660e oops - #keysAndValuesDo: was from for subclasses with named instVars
Claus Gittinger <cg@exept.de>
parents: 2821
diff changeset
  1241
	    if (__isBlockLike(aBlock)
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1242
	     && (__BlockInstPtr(aBlock)->b_nargs == __mkSmallInteger(2))) {
2915
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2894
diff changeset
  1243
		{
2842
1cda44a3660e oops - #keysAndValuesDo: was from for subclasses with named instVars
Claus Gittinger <cg@exept.de>
parents: 2821
diff changeset
  1244
		    /*
1cda44a3660e oops - #keysAndValuesDo: was from for subclasses with named instVars
Claus Gittinger <cg@exept.de>
parents: 2821
diff changeset
  1245
		     * the most common case: a static compiled block, with home on the stack ...
1cda44a3660e oops - #keysAndValuesDo: was from for subclasses with named instVars
Claus Gittinger <cg@exept.de>
parents: 2821
diff changeset
  1246
		     */
1cda44a3660e oops - #keysAndValuesDo: was from for subclasses with named instVars
Claus Gittinger <cg@exept.de>
parents: 2821
diff changeset
  1247
		    REGISTER OBJFUNC codeVal;
2185
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
  1248
2915
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2894
diff changeset
  1249
		    if (((codeVal = __BlockInstPtr(aBlock)->b_code) != (OBJFUNC)nil)
2678
37eec0043bdb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2360
diff changeset
  1250
#ifdef PARANOIA
2915
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2894
diff changeset
  1251
		     && (! ((INT)(__BlockInstPtr(aBlock)->b_flags) & __MASKSMALLINT(F_DYNAMIC)))
2678
37eec0043bdb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2360
diff changeset
  1252
#endif
2842
1cda44a3660e oops - #keysAndValuesDo: was from for subclasses with named instVars
Claus Gittinger <cg@exept.de>
parents: 2821
diff changeset
  1253
		    ) {
2254
5e3cb9e7e682 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2217
diff changeset
  1254
554
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1255
#ifdef NEW_BLOCK_CALL
2842
1cda44a3660e oops - #keysAndValuesDo: was from for subclasses with named instVars
Claus Gittinger <cg@exept.de>
parents: 2821
diff changeset
  1256
#                       define BLOCK_ARG        aBlock
2185
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
  1257
#else
2842
1cda44a3660e oops - #keysAndValuesDo: was from for subclasses with named instVars
Claus Gittinger <cg@exept.de>
parents: 2821
diff changeset
  1258
#                       define BLOCK_ARG        rHome
2915
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2894
diff changeset
  1259
			REGISTER OBJ rHome;
2842
1cda44a3660e oops - #keysAndValuesDo: was from for subclasses with named instVars
Claus Gittinger <cg@exept.de>
parents: 2821
diff changeset
  1260
2915
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2894
diff changeset
  1261
			rHome = __BlockInstPtr(aBlock)->b_home;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2894
diff changeset
  1262
			if ((rHome == nil) || (__qSpace(rHome) >= STACKSPACE))
2842
1cda44a3660e oops - #keysAndValuesDo: was from for subclasses with named instVars
Claus Gittinger <cg@exept.de>
parents: 2821
diff changeset
  1263
#endif
2915
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2894
diff changeset
  1264
			{
2878
71f51a44643f comment
Claus Gittinger <cg@exept.de>
parents: 2865
diff changeset
  1265
			    OBJ el;
71f51a44643f comment
Claus Gittinger <cg@exept.de>
parents: 2865
diff changeset
  1266
2842
1cda44a3660e oops - #keysAndValuesDo: was from for subclasses with named instVars
Claus Gittinger <cg@exept.de>
parents: 2821
diff changeset
  1267
			    while (index < actualSize) {
1cda44a3660e oops - #keysAndValuesDo: was from for subclasses with named instVars
Claus Gittinger <cg@exept.de>
parents: 2821
diff changeset
  1268
1cda44a3660e oops - #keysAndValuesDo: was from for subclasses with named instVars
Claus Gittinger <cg@exept.de>
parents: 2821
diff changeset
  1269
				el = __InstPtr(self)->i_instvars[index];
2915
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2894
diff changeset
  1270
				if (InterruptPending != nil) goto interruptX;
2878
71f51a44643f comment
Claus Gittinger <cg@exept.de>
parents: 2865
diff changeset
  1271
		continueX:
2915
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2894
diff changeset
  1272
				index++;
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1273
				(*codeVal)(BLOCK_ARG, __mkSmallInteger(index), el);
2842
1cda44a3660e oops - #keysAndValuesDo: was from for subclasses with named instVars
Claus Gittinger <cg@exept.de>
parents: 2821
diff changeset
  1274
			    }
1cda44a3660e oops - #keysAndValuesDo: was from for subclasses with named instVars
Claus Gittinger <cg@exept.de>
parents: 2821
diff changeset
  1275
			    RETURN (self);
2878
71f51a44643f comment
Claus Gittinger <cg@exept.de>
parents: 2865
diff changeset
  1276
71f51a44643f comment
Claus Gittinger <cg@exept.de>
parents: 2865
diff changeset
  1277
		interruptX:
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1278
			    __interruptL(@line);
2878
71f51a44643f comment
Claus Gittinger <cg@exept.de>
parents: 2865
diff changeset
  1279
			    el = __InstPtr(self)->i_instvars[index];
71f51a44643f comment
Claus Gittinger <cg@exept.de>
parents: 2865
diff changeset
  1280
			    goto continueX;
2915
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2894
diff changeset
  1281
			}
2842
1cda44a3660e oops - #keysAndValuesDo: was from for subclasses with named instVars
Claus Gittinger <cg@exept.de>
parents: 2821
diff changeset
  1282
		    }
2915
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2894
diff changeset
  1283
		}
2842
1cda44a3660e oops - #keysAndValuesDo: was from for subclasses with named instVars
Claus Gittinger <cg@exept.de>
parents: 2821
diff changeset
  1284
2915
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2894
diff changeset
  1285
		/*
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2894
diff changeset
  1286
		 * sorry, must check code-pointer in the loop
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2894
diff changeset
  1287
		 * it could be recompiled or flushed
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2894
diff changeset
  1288
		 */
2842
1cda44a3660e oops - #keysAndValuesDo: was from for subclasses with named instVars
Claus Gittinger <cg@exept.de>
parents: 2821
diff changeset
  1289
#               undef BLOCK_ARG
1cda44a3660e oops - #keysAndValuesDo: was from for subclasses with named instVars
Claus Gittinger <cg@exept.de>
parents: 2821
diff changeset
  1290
#ifdef NEW_BLOCK_CALL
1cda44a3660e oops - #keysAndValuesDo: was from for subclasses with named instVars
Claus Gittinger <cg@exept.de>
parents: 2821
diff changeset
  1291
#               define BLOCK_ARG        aBlock
1cda44a3660e oops - #keysAndValuesDo: was from for subclasses with named instVars
Claus Gittinger <cg@exept.de>
parents: 2821
diff changeset
  1292
#               define IBLOCK_ARG       nil
1cda44a3660e oops - #keysAndValuesDo: was from for subclasses with named instVars
Claus Gittinger <cg@exept.de>
parents: 2821
diff changeset
  1293
#else
1cda44a3660e oops - #keysAndValuesDo: was from for subclasses with named instVars
Claus Gittinger <cg@exept.de>
parents: 2821
diff changeset
  1294
#               define BLOCK_ARG        (__BlockInstPtr(aBlock)->b_home)
1cda44a3660e oops - #keysAndValuesDo: was from for subclasses with named instVars
Claus Gittinger <cg@exept.de>
parents: 2821
diff changeset
  1295
#               define IBLOCK_ARG       (__BlockInstPtr(aBlock)->b_home)
2185
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
  1296
#endif
2842
1cda44a3660e oops - #keysAndValuesDo: was from for subclasses with named instVars
Claus Gittinger <cg@exept.de>
parents: 2821
diff changeset
  1297
2915
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2894
diff changeset
  1298
		while (index < actualSize) {
2842
1cda44a3660e oops - #keysAndValuesDo: was from for subclasses with named instVars
Claus Gittinger <cg@exept.de>
parents: 2821
diff changeset
  1299
		    REGISTER OBJFUNC codeVal;
1cda44a3660e oops - #keysAndValuesDo: was from for subclasses with named instVars
Claus Gittinger <cg@exept.de>
parents: 2821
diff changeset
  1300
		    OBJ el;
1cda44a3660e oops - #keysAndValuesDo: was from for subclasses with named instVars
Claus Gittinger <cg@exept.de>
parents: 2821
diff changeset
  1301
1cda44a3660e oops - #keysAndValuesDo: was from for subclasses with named instVars
Claus Gittinger <cg@exept.de>
parents: 2821
diff changeset
  1302
		    if (InterruptPending != nil) __interruptL(@line);
1cda44a3660e oops - #keysAndValuesDo: was from for subclasses with named instVars
Claus Gittinger <cg@exept.de>
parents: 2821
diff changeset
  1303
1cda44a3660e oops - #keysAndValuesDo: was from for subclasses with named instVars
Claus Gittinger <cg@exept.de>
parents: 2821
diff changeset
  1304
		    el = __InstPtr(self)->i_instvars[index];
1cda44a3660e oops - #keysAndValuesDo: was from for subclasses with named instVars
Claus Gittinger <cg@exept.de>
parents: 2821
diff changeset
  1305
		    index++;
1cda44a3660e oops - #keysAndValuesDo: was from for subclasses with named instVars
Claus Gittinger <cg@exept.de>
parents: 2821
diff changeset
  1306
		    if ((codeVal = __BlockInstPtr(aBlock)->b_code) != (OBJFUNC)nil) {
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1307
			(*codeVal)(BLOCK_ARG, __mkSmallInteger(index), el);
2842
1cda44a3660e oops - #keysAndValuesDo: was from for subclasses with named instVars
Claus Gittinger <cg@exept.de>
parents: 2821
diff changeset
  1308
		    } else {
2915
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2894
diff changeset
  1309
			if (__BlockInstPtr(aBlock)->b_bytecodes != nil) {
2842
1cda44a3660e oops - #keysAndValuesDo: was from for subclasses with named instVars
Claus Gittinger <cg@exept.de>
parents: 2821
diff changeset
  1310
			    /*
1cda44a3660e oops - #keysAndValuesDo: was from for subclasses with named instVars
Claus Gittinger <cg@exept.de>
parents: 2821
diff changeset
  1311
			     * arg is a compiled block with bytecode -
1cda44a3660e oops - #keysAndValuesDo: was from for subclasses with named instVars
Claus Gittinger <cg@exept.de>
parents: 2821
diff changeset
  1312
			     * directly call interpreter without going through Block>>value
1cda44a3660e oops - #keysAndValuesDo: was from for subclasses with named instVars
Claus Gittinger <cg@exept.de>
parents: 2821
diff changeset
  1313
			     */
1cda44a3660e oops - #keysAndValuesDo: was from for subclasses with named instVars
Claus Gittinger <cg@exept.de>
parents: 2821
diff changeset
  1314
#ifdef PASS_ARG_POINTER
1cda44a3660e oops - #keysAndValuesDo: was from for subclasses with named instVars
Claus Gittinger <cg@exept.de>
parents: 2821
diff changeset
  1315
			    {
2915
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2894
diff changeset
  1316
				OBJ t[2];
554
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1317
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1318
				t[0] = __mkSmallInteger(index);
2915
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2894
diff changeset
  1319
				t[1] = el;
2842
1cda44a3660e oops - #keysAndValuesDo: was from for subclasses with named instVars
Claus Gittinger <cg@exept.de>
parents: 2821
diff changeset
  1320
2915
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2894
diff changeset
  1321
				__interpret(aBlock, 2, nil, IBLOCK_ARG, nil, nil, t);
2842
1cda44a3660e oops - #keysAndValuesDo: was from for subclasses with named instVars
Claus Gittinger <cg@exept.de>
parents: 2821
diff changeset
  1322
			    }
1cda44a3660e oops - #keysAndValuesDo: was from for subclasses with named instVars
Claus Gittinger <cg@exept.de>
parents: 2821
diff changeset
  1323
#else
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1324
			    __interpret(aBlock, 2, nil, IBLOCK_ARG, nil, nil, __mkSmallInteger(index), el);
2842
1cda44a3660e oops - #keysAndValuesDo: was from for subclasses with named instVars
Claus Gittinger <cg@exept.de>
parents: 2821
diff changeset
  1325
#endif
2915
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2894
diff changeset
  1326
			} else {
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1327
			    (*val2.ilc_func)(aBlock,
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1328
						@symbol(value:value:),
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1329
						nil, &val2,
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1330
						__mkSmallInteger(index),
2915
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2894
diff changeset
  1331
						el);
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2894
diff changeset
  1332
			}
2211
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1333
		    }
2915
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2894
diff changeset
  1334
		}
2842
1cda44a3660e oops - #keysAndValuesDo: was from for subclasses with named instVars
Claus Gittinger <cg@exept.de>
parents: 2821
diff changeset
  1335
1cda44a3660e oops - #keysAndValuesDo: was from for subclasses with named instVars
Claus Gittinger <cg@exept.de>
parents: 2821
diff changeset
  1336
#               undef BLOCK_ARG
1cda44a3660e oops - #keysAndValuesDo: was from for subclasses with named instVars
Claus Gittinger <cg@exept.de>
parents: 2821
diff changeset
  1337
#               undef IBLOCK_ARG
1cda44a3660e oops - #keysAndValuesDo: was from for subclasses with named instVars
Claus Gittinger <cg@exept.de>
parents: 2821
diff changeset
  1338
2915
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2894
diff changeset
  1339
		RETURN (self );
2357
061dadc13df1 removed WEAKPOINTER checks - WeakArray is no longer allowed to be a subclass of Array
Claus Gittinger <cg@exept.de>
parents: 2318
diff changeset
  1340
	    }
2185
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
  1341
2357
061dadc13df1 removed WEAKPOINTER checks - WeakArray is no longer allowed to be a subclass of Array
Claus Gittinger <cg@exept.de>
parents: 2318
diff changeset
  1342
	    /*
2842
1cda44a3660e oops - #keysAndValuesDo: was from for subclasses with named instVars
Claus Gittinger <cg@exept.de>
parents: 2821
diff changeset
  1343
	     * not a block - send it #value:
2357
061dadc13df1 removed WEAKPOINTER checks - WeakArray is no longer allowed to be a subclass of Array
Claus Gittinger <cg@exept.de>
parents: 2318
diff changeset
  1344
	     */
2842
1cda44a3660e oops - #keysAndValuesDo: was from for subclasses with named instVars
Claus Gittinger <cg@exept.de>
parents: 2821
diff changeset
  1345
	    while (index < actualSize) {
1cda44a3660e oops - #keysAndValuesDo: was from for subclasses with named instVars
Claus Gittinger <cg@exept.de>
parents: 2821
diff changeset
  1346
		OBJ el;
2357
061dadc13df1 removed WEAKPOINTER checks - WeakArray is no longer allowed to be a subclass of Array
Claus Gittinger <cg@exept.de>
parents: 2318
diff changeset
  1347
2915
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2894
diff changeset
  1348
		if (InterruptPending != nil) __interruptL(@line);
2357
061dadc13df1 removed WEAKPOINTER checks - WeakArray is no longer allowed to be a subclass of Array
Claus Gittinger <cg@exept.de>
parents: 2318
diff changeset
  1349
2842
1cda44a3660e oops - #keysAndValuesDo: was from for subclasses with named instVars
Claus Gittinger <cg@exept.de>
parents: 2821
diff changeset
  1350
		el = __InstPtr(self)->i_instvars[index];
2915
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2894
diff changeset
  1351
		index++;
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1352
		(*val2.ilc_func)(aBlock,
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1353
				    @symbol(value:value:),
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1354
				    nil, &val2,
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1355
				    __mkSmallInteger(index),
2842
1cda44a3660e oops - #keysAndValuesDo: was from for subclasses with named instVars
Claus Gittinger <cg@exept.de>
parents: 2821
diff changeset
  1356
				    el);
2211
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1357
	    }
2842
1cda44a3660e oops - #keysAndValuesDo: was from for subclasses with named instVars
Claus Gittinger <cg@exept.de>
parents: 2821
diff changeset
  1358
	    RETURN ( self );
2915
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2894
diff changeset
  1359
	}
554
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1360
    }
945
b2a1dc200c42 allow redefinition of #size in subclasses (optimized methods did not work in this case)
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  1361
%}.
946
35962f2a169b be prepared for cheaters, subclassing Array returning invalid sizes ...
Claus Gittinger <cg@exept.de>
parents: 945
diff changeset
  1362
    ^ super keysAndValuesDo:aBlock
554
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1363
!
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1364
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1365
modifyingTraverse:aBlock
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1366
    "Evaluate aBlock for every element that is not an Array,
11167
883813e7d746 New: #modifyingTraverse:
Stefan Vogel <sv@exept.de>
parents: 10796
diff changeset
  1367
     and recursively traverse Arrays.
883813e7d746 New: #modifyingTraverse:
Stefan Vogel <sv@exept.de>
parents: 10796
diff changeset
  1368
883813e7d746 New: #modifyingTraverse:
Stefan Vogel <sv@exept.de>
parents: 10796
diff changeset
  1369
     aBlock may return the original element or a new element.
883813e7d746 New: #modifyingTraverse:
Stefan Vogel <sv@exept.de>
parents: 10796
diff changeset
  1370
     If a new element is returned, the element is changed to the new element."
883813e7d746 New: #modifyingTraverse:
Stefan Vogel <sv@exept.de>
parents: 10796
diff changeset
  1371
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1372
    self
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1373
	keysAndValuesDo:[:eachIndex :eachElement |
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1374
	    eachElement isArray ifTrue:[
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1375
		eachElement modifyingTraverse:aBlock
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1376
	    ] ifFalse:[
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1377
		|newElement|
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1378
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1379
		newElement := aBlock value:eachElement.
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1380
		newElement ~~ eachElement ifTrue:[
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1381
		    self at:eachIndex put:newElement.
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1382
		].
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1383
	    ]
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1384
	].
11167
883813e7d746 New: #modifyingTraverse:
Stefan Vogel <sv@exept.de>
parents: 10796
diff changeset
  1385
883813e7d746 New: #modifyingTraverse:
Stefan Vogel <sv@exept.de>
parents: 10796
diff changeset
  1386
    "
883813e7d746 New: #modifyingTraverse:
Stefan Vogel <sv@exept.de>
parents: 10796
diff changeset
  1387
     example: replace all elements which are 10 with: 'changed'
883813e7d746 New: #modifyingTraverse:
Stefan Vogel <sv@exept.de>
parents: 10796
diff changeset
  1388
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1389
     #(1 2 (3 (4 5 (6 7) 8) 9 10) 11 (12 (13)) 14) copy
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1390
	 modifyingTraverse:[:el |
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1391
	    el = 10 ifTrue:['changed'] ifFalse:[el]
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1392
	 ];
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1393
	 inspect
11167
883813e7d746 New: #modifyingTraverse:
Stefan Vogel <sv@exept.de>
parents: 10796
diff changeset
  1394
    "
883813e7d746 New: #modifyingTraverse:
Stefan Vogel <sv@exept.de>
parents: 10796
diff changeset
  1395
!
883813e7d746 New: #modifyingTraverse:
Stefan Vogel <sv@exept.de>
parents: 10796
diff changeset
  1396
543
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1397
reverseDo:aBlock
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1398
    "evaluate the argument, aBlock for each element in the collection in reverse order.
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1399
     - reimplemented for speed"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1400
945
b2a1dc200c42 allow redefinition of #size in subclasses (optimized methods did not work in this case)
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  1401
    |home sz "{ Class: SmallInteger }" |
b2a1dc200c42 allow redefinition of #size in subclasses (optimized methods did not work in this case)
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  1402
b2a1dc200c42 allow redefinition of #size in subclasses (optimized methods did not work in this case)
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  1403
    sz := self size.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1404
%{
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1405
    REGISTER OBJFUNC codeVal;
14687
e718f7219911 64bit changes
Claus Gittinger <cg@exept.de>
parents: 14657
diff changeset
  1406
    REGISTER INT index;
e718f7219911 64bit changes
Claus Gittinger <cg@exept.de>
parents: 14657
diff changeset
  1407
    unsigned INT nIndex;
e718f7219911 64bit changes
Claus Gittinger <cg@exept.de>
parents: 14657
diff changeset
  1408
    INT endIndex;
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1409
    static struct inlineCache val = _ILC1;
14687
e718f7219911 64bit changes
Claus Gittinger <cg@exept.de>
parents: 14657
diff changeset
  1410
    INT actualSize;
2184
f25db3e10530 no block-copy operations are allowed with WeakArrays
Claus Gittinger <cg@exept.de>
parents: 2145
diff changeset
  1411
    OBJ myClass;
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1412
2184
f25db3e10530 no block-copy operations are allowed with WeakArrays
Claus Gittinger <cg@exept.de>
parents: 2145
diff changeset
  1413
    myClass = __qClass(self);
2357
061dadc13df1 removed WEAKPOINTER checks - WeakArray is no longer allowed to be a subclass of Array
Claus Gittinger <cg@exept.de>
parents: 2318
diff changeset
  1414
    {
2211
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1415
	endIndex = __intVal(__ClassInstPtr(myClass)->c_ninstvars);
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1416
	actualSize = __BYTES2OBJS__(__qSize(self) - OHDR_SIZE);
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1417
	nIndex = endIndex + __intVal(sz);
543
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1418
2211
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1419
	if (nIndex <= actualSize) {
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1420
	    if (__isBlockLike(aBlock)
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1421
	     && (__BlockInstPtr(aBlock)->b_nargs == __mkSmallInteger(1))) {
2185
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
  1422
#               undef BLOCK_ARG
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
  1423
#ifdef NEW_BLOCK_CALL
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
  1424
#               define BLOCK_ARG        aBlock
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
  1425
#               define IBLOCK_ARG       nil
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
  1426
#else
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
  1427
#               define BLOCK_ARG        (__BlockInstPtr(aBlock)->b_home)
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
  1428
#               define IBLOCK_ARG       (__BlockInstPtr(aBlock)->b_home)
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
  1429
#endif
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
  1430
2211
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1431
		for (index=nIndex-1; index >= endIndex; index--) {
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1432
		    REGISTER OBJFUNC codeVal;
2185
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
  1433
2211
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1434
		    if (InterruptPending != nil) __interruptL(@line);
2185
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
  1435
2211
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1436
		    if ((codeVal = __BlockInstPtr(aBlock)->b_code) != (OBJFUNC)nil) {
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1437
			(*codeVal)(BLOCK_ARG, __InstPtr(self)->i_instvars[index]);
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1438
		    } else {
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1439
			if (__BlockInstPtr(aBlock)->b_bytecodes != nil) {
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1440
			    /*
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1441
			     * arg is a compiled block with bytecode -
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1442
			     * directly call interpreter without going through Block>>value
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1443
			     */
2185
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
  1444
#ifdef PASS_ARG_POINTER
2211
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1445
			    __interpret(aBlock, 1, nil, IBLOCK_ARG, nil, nil, &(__InstPtr(self)->i_instvars[index]));
2185
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
  1446
#else
2211
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1447
			    __interpret(aBlock, 1, nil, IBLOCK_ARG, nil, nil, __InstPtr(self)->i_instvars[index]);
11
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
  1448
#endif
2211
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1449
			} else {
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1450
			    (*val.ilc_func)(aBlock,
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1451
					    @symbol(value:),
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1452
					    nil, &val,
2211
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1453
					    __InstPtr(self)->i_instvars[index]);
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1454
			}
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1455
		    }
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1456
		}
2185
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
  1457
2211
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1458
#               undef BLOCK_ARG
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1459
#               undef IBLOCK_ARG
2185
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
  1460
2211
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1461
		RETURN (self );
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1462
	    }
2185
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
  1463
2211
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1464
	    /*
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1465
	     * not a block - send it #value:
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1466
	     */
2185
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
  1467
	    for (index=nIndex-1; index >= endIndex; index--) {
2211
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1468
		if (InterruptPending != nil) __interruptL(@line);
2185
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
  1469
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1470
		(*val.ilc_func)(aBlock,
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1471
				@symbol(value:),
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1472
				nil, &val,
2211
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1473
				__InstPtr(self)->i_instvars[index]);
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1474
	    }
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1475
	    RETURN ( self );
946
35962f2a169b be prepared for cheaters, subclassing Array returning invalid sizes ...
Claus Gittinger <cg@exept.de>
parents: 945
diff changeset
  1476
	}
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1477
    }
543
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1478
%}.
946
35962f2a169b be prepared for cheaters, subclassing Array returning invalid sizes ...
Claus Gittinger <cg@exept.de>
parents: 945
diff changeset
  1479
    ^ super reverseDo:aBlock
11
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
  1480
!
6bf3080856be *** empty log message ***
claus
parents: 10
diff changeset
  1481
328
claus
parents: 325
diff changeset
  1482
traverse:aBlock
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1483
    "Evaluate aBlock for every element that is not an Array,
1123
4e79c452592f commentary
Claus Gittinger <cg@exept.de>
parents: 1083
diff changeset
  1484
     and recursively traverse Arrays.
328
claus
parents: 325
diff changeset
  1485
     Implemented here to support better search for selectors in
claus
parents: 325
diff changeset
  1486
     literal arrays - might be a good idea to move it up in the collection
claus
parents: 325
diff changeset
  1487
     hierarchy, since this may be a useful method for other collections
claus
parents: 325
diff changeset
  1488
     as well."
claus
parents: 325
diff changeset
  1489
claus
parents: 325
diff changeset
  1490
    self do: [:el |
2211
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1491
	el isArray
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1492
	    ifTrue: [el traverse: aBlock]
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1493
	    ifFalse: [aBlock value: el]]
328
claus
parents: 325
diff changeset
  1494
claus
parents: 325
diff changeset
  1495
    "
claus
parents: 325
diff changeset
  1496
     example: flattening an Array:
claus
parents: 325
diff changeset
  1497
claus
parents: 325
diff changeset
  1498
     |s|
claus
parents: 325
diff changeset
  1499
claus
parents: 325
diff changeset
  1500
     s := WriteStream on:Array new.
claus
parents: 325
diff changeset
  1501
     #(1 2 (3 (4 5 (6 7) 8) 9 10) 11 (12 (13)) 14) traverse:[:el | s nextPut:el].
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1502
     s contents
328
claus
parents: 325
diff changeset
  1503
    "
1123
4e79c452592f commentary
Claus Gittinger <cg@exept.de>
parents: 1083
diff changeset
  1504
    "
4e79c452592f commentary
Claus Gittinger <cg@exept.de>
parents: 1083
diff changeset
  1505
     example: deep search
4e79c452592f commentary
Claus Gittinger <cg@exept.de>
parents: 1083
diff changeset
  1506
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1507
     #(1 2 (3 (4 5 (6 7) 8) 9 10) 11 (12 (13)) 14) traverse:[:el |
2211
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1508
	el == 10 ifTrue:[Transcript showCR:'found']
1123
4e79c452592f commentary
Claus Gittinger <cg@exept.de>
parents: 1083
diff changeset
  1509
     ]
4e79c452592f commentary
Claus Gittinger <cg@exept.de>
parents: 1083
diff changeset
  1510
    "
4e79c452592f commentary
Claus Gittinger <cg@exept.de>
parents: 1083
diff changeset
  1511
4e79c452592f commentary
Claus Gittinger <cg@exept.de>
parents: 1083
diff changeset
  1512
    "Modified: 26.3.1996 / 17:08:10 / cg"
543
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1513
! !
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1514
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1515
!Array methodsFor:'filling & replacing'!
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1516
554
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1517
from:index1 to:index2 put:anObject
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1518
    "reimplemented for speed if receiver is an Array"
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1519
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1520
%{  /* NOCONTEXT */
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1521
14687
e718f7219911 64bit changes
Claus Gittinger <cg@exept.de>
parents: 14657
diff changeset
  1522
    REGISTER INT index;
e718f7219911 64bit changes
Claus Gittinger <cg@exept.de>
parents: 14657
diff changeset
  1523
    unsigned INT nIndex;
e718f7219911 64bit changes
Claus Gittinger <cg@exept.de>
parents: 14657
diff changeset
  1524
    unsigned INT endIndex;
554
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1525
    REGISTER OBJ *dst;
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1526
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1527
    if ((__qClass(self) == Array)
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1528
     && __bothSmallInteger(index1, index2)) {
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1123
diff changeset
  1529
	index = __intVal(index1) - 1;
554
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1530
	if (index >= 0) {
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1531
	    nIndex = __BYTES2OBJS__(__qSize(self) - OHDR_SIZE);
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1123
diff changeset
  1532
	    endIndex = __intVal(index2) - 1;
2185
790f4c380343 care for blocks being recompiled or code being flushed, while
Claus Gittinger <cg@exept.de>
parents: 2184
diff changeset
  1533
951
2dd898849a8a directly call __new if quick allocation fails;
Claus Gittinger <cg@exept.de>
parents: 946
diff changeset
  1534
	    if ((endIndex >= index) && (endIndex < nIndex)) {
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1123
diff changeset
  1535
		dst = &(__InstPtr(self)->i_instvars[index]);
554
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1536
#ifdef memset4
2865
4d09015b12cf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2842
diff changeset
  1537
		{
4d09015b12cf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2842
diff changeset
  1538
		    int n4 = endIndex-index+1;
4d09015b12cf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2842
diff changeset
  1539
4d09015b12cf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2842
diff changeset
  1540
		    memset4(dst, anObject, n4);
4d09015b12cf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2842
diff changeset
  1541
		}
554
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1542
#else
2865
4d09015b12cf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2842
diff changeset
  1543
# ifdef FAST_MEMSET
554
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1544
		if ((INT)anObject == 0) {
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1545
		    memset(dst, 0, __OBJS2BYTES__(endIndex-index+1));
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1546
		} else
2865
4d09015b12cf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2842
diff changeset
  1547
# endif
4d09015b12cf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2842
diff changeset
  1548
		{
8919
707a9ff7f9b2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1549
# ifdef __UNROLL_LOOPS__
554
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1550
		    {
14687
e718f7219911 64bit changes
Claus Gittinger <cg@exept.de>
parents: 14657
diff changeset
  1551
			INT i8;
554
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1552
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1553
			while ((i8 = index + 8) <= endIndex) {
3041
f9487e848b67 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2991
diff changeset
  1554
			    dst[3] = dst[2] = dst[1] = dst[0] = anObject;
f9487e848b67 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2991
diff changeset
  1555
			    dst[7] = dst[6] = dst[5] = dst[4] = anObject;
554
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1556
			    dst += 8;
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1557
			    index = i8;
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1558
			}
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1559
		    }
945
b2a1dc200c42 allow redefinition of #size in subclasses (optimized methods did not work in this case)
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  1560
# endif
554
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1561
		    for (; index <= endIndex; index++) {
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1562
			*dst++ = anObject;
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1563
		    }
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1564
		}
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1565
#endif
3730
375237229a8e replaceFrom... - unrolled 8 times;
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
  1566
		__STORE(self, anObject);
554
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1567
		RETURN ( self );
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1568
	    }
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1569
	}
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1570
    }
945
b2a1dc200c42 allow redefinition of #size in subclasses (optimized methods did not work in this case)
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  1571
%}.
554
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1572
    ^ super from:index1 to:index2 put:anObject
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1573
!
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1574
543
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1575
replaceFrom:start to:stop with:aCollection startingAt:repStart
1168
a8ac7ccb76db commentary
Claus Gittinger <cg@exept.de>
parents: 1158
diff changeset
  1576
    "replace elements in the receiver between index start and stop,
a8ac7ccb76db commentary
Claus Gittinger <cg@exept.de>
parents: 1158
diff changeset
  1577
     with elements  taken from replacementCollection starting at repStart.
3234
4cc58bc6a8ed comment
Claus Gittinger <cg@exept.de>
parents: 3226
diff changeset
  1578
     Return the receiver.
1168
a8ac7ccb76db commentary
Claus Gittinger <cg@exept.de>
parents: 1158
diff changeset
  1579
     Reimplemented for speed if both receiver and aCollection are Arrays"
543
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1580
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1581
%{  /* NOCONTEXT */
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1582
14687
e718f7219911 64bit changes
Claus Gittinger <cg@exept.de>
parents: 14657
diff changeset
  1583
    unsigned INT nIndex;
e718f7219911 64bit changes
Claus Gittinger <cg@exept.de>
parents: 14657
diff changeset
  1584
    unsigned INT repNIndex;
e718f7219911 64bit changes
Claus Gittinger <cg@exept.de>
parents: 14657
diff changeset
  1585
    INT startIndex, stopIndex;
543
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1586
    REGISTER OBJ *src;
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1587
    REGISTER OBJ *dst;
14687
e718f7219911 64bit changes
Claus Gittinger <cg@exept.de>
parents: 14657
diff changeset
  1588
    INT repStopIndex;
e718f7219911 64bit changes
Claus Gittinger <cg@exept.de>
parents: 14657
diff changeset
  1589
    REGISTER INT repStartIndex;
543
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1590
    REGISTER OBJ t;
14687
e718f7219911 64bit changes
Claus Gittinger <cg@exept.de>
parents: 14657
diff changeset
  1591
    REGISTER INT count;
1903
30c98b3377c5 slight tuning
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  1592
    OBJ myClass;
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1593
2210
9df9b4c48a6c weakText was wrong
Claus Gittinger <cg@exept.de>
parents: 2202
diff changeset
  1594
    if (
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1595
	(__ClassInstPtr((myClass = __qClass(self)))->c_ninstvars == __mkSmallInteger(0))
1903
30c98b3377c5 slight tuning
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  1596
     && __isNonNilObject(aCollection)
30c98b3377c5 slight tuning
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  1597
     && (((t = __qClass(aCollection)) == Array) || (t == myClass))
543
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1598
     && __bothSmallInteger(start, stop)
2210
9df9b4c48a6c weakText was wrong
Claus Gittinger <cg@exept.de>
parents: 2202
diff changeset
  1599
     && __isSmallInteger(repStart)
9df9b4c48a6c weakText was wrong
Claus Gittinger <cg@exept.de>
parents: 2202
diff changeset
  1600
    ) {
4305
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1601
	startIndex = __intVal(start) - 1;
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1602
	if (startIndex >= 0) {
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1603
	    nIndex = __BYTES2OBJS__(__qSize(self) - OHDR_SIZE);
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1604
	    stopIndex = __intVal(stop) - 1;
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1605
	    count = stopIndex - startIndex + 1;
1903
30c98b3377c5 slight tuning
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  1606
4305
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1607
	    if ((count > 0) && (stopIndex < nIndex)) {
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1608
		repStartIndex = __intVal(repStart) - 1;
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1609
		if (repStartIndex >= 0) {
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1610
		    repNIndex = __BYTES2OBJS__(__qSize(aCollection)-OHDR_SIZE);
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1611
		    repStopIndex = repStartIndex + (stopIndex - startIndex);
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1612
		    if (repStopIndex < repNIndex) {
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1613
			src = &(__InstPtr(aCollection)->i_instvars[repStartIndex]);
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1614
			dst = &(__InstPtr(self)->i_instvars[startIndex]);
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1615
			if (aCollection == self) {
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1616
			    /*
4305
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1617
			     * no need to check stores if copying
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1618
			     * from myself
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1619
			     */
1903
30c98b3377c5 slight tuning
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  1620
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1621
			    /*
4305
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1622
			     * take care of overlapping copy
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1623
			     * do not depend on memset being smart enough
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1624
			     * (some are not ;-)
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1625
			     */
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1626
			    if (src < dst) {
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1627
				/* must do a reverse copy */
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1628
				src += count;
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1629
				dst += count;
8919
707a9ff7f9b2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1630
#ifdef __UNROLL_LOOPS__
4305
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1631
				while (count > 8) {
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1632
				    dst[-1] = src[-1];
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1633
				    dst[-2] = src[-2];
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1634
				    dst[-3] = src[-3];
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1635
				    dst[-4] = src[-4];
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1636
				    dst[-5] = src[-5];
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1637
				    dst[-6] = src[-6];
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1638
				    dst[-7] = src[-7];
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1639
				    dst[-8] = src[-8];
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1640
				    dst -= 8; src -= 8;
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1641
				    count -= 8;
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1642
				}
543
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1643
#endif
4305
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1644
				while (count-- > 0) {
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1645
				    *--dst = *--src;
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1646
				}
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1647
				RETURN ( self );
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1648
			    }
1903
30c98b3377c5 slight tuning
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  1649
#ifdef SOFTWARE_PIPELINE
4305
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1650
			    {
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1651
				OBJ t1;
1903
30c98b3377c5 slight tuning
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  1652
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1653
				/*
4305
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1654
				 * the loop below fetches one longWord behind
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1655
				 * this should not be a problem
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1656
				 */
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1657
				t1 = src[0];
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1658
				count--;
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1659
				if (count) {
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1660
				    dst++; src++;
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1661
				    do {
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1662
					dst[-1] = t1;
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1663
					t1 = src[0];
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1664
					src++;
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1665
					dst++;
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1666
				    } while (count--);
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1667
				} else {
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1668
				    dst[0] = t1;
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1669
				}
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1670
			    }
543
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1671
#else
1903
30c98b3377c5 slight tuning
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  1672
30c98b3377c5 slight tuning
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  1673
# ifdef bcopy4
4305
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1674
			    bcopy4(src, dst, count);
1903
30c98b3377c5 slight tuning
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  1675
# else
30c98b3377c5 slight tuning
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  1676
#  ifdef FAST_MEMCPY
4305
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1677
			    bcopy(src, dst, __OBJS2BYTES__(count));
1903
30c98b3377c5 slight tuning
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  1678
#  else
8919
707a9ff7f9b2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1679
#   ifdef __UNROLL_LOOPS__
4305
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1680
			    while (count >= 8) {
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1681
				dst[0] = src[0];
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1682
				dst[1] = src[1];
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1683
				dst[2] = src[2];
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1684
				dst[3] = src[3];
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1685
				dst[4] = src[4];
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1686
				dst[5] = src[5];
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1687
				dst[6] = src[6];
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1688
				dst[7] = src[7];
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1689
				dst += 8; src += 8;
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1690
				count -= 8;
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1691
			    }
1903
30c98b3377c5 slight tuning
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  1692
#   endif
4305
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1693
			    while (count--) {
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1694
				*dst++ = *src++;
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1695
			    }
1903
30c98b3377c5 slight tuning
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  1696
#  endif
543
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1697
# endif
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1698
#endif
4305
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1699
			} else {
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1700
			    REGISTER int spc;
543
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1701
4305
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1702
			    spc = __qSpace(self);
8919
707a9ff7f9b2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1703
#ifdef __UNROLL_LOOPS__
4305
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1704
			    while (count >= 8) {
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1705
				t = src[0]; dst[0] = t; __STORE_SPC(self, t, spc);
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1706
				t = src[1]; dst[1] = t; __STORE_SPC(self, t, spc);
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1707
				t = src[2]; dst[2] = t; __STORE_SPC(self, t, spc);
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1708
				t = src[3]; dst[3] = t; __STORE_SPC(self, t, spc);
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1709
				t = src[4]; dst[4] = t; __STORE_SPC(self, t, spc);
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1710
				t = src[5]; dst[5] = t; __STORE_SPC(self, t, spc);
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1711
				t = src[6]; dst[6] = t; __STORE_SPC(self, t, spc);
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1712
				t = src[7]; dst[7] = t; __STORE_SPC(self, t, spc);
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1713
				count -= 8; src += 8; dst += 8;
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1714
			    }
543
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1715
#endif
4305
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1716
			    while (count-- > 0) {
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1717
				t = *src++;
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1718
				*dst++ = t;
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1719
				__STORE_SPC(self, t, spc);
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1720
			    }
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1721
			}
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1722
			RETURN ( self );
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1723
		    }
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1724
		}
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1725
	    }
1903
30c98b3377c5 slight tuning
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  1726
4305
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1727
	    if (count == 0) {
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1728
		RETURN ( self );
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1729
	    }
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  1730
	}
543
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1731
    }
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1732
%}.
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1733
    ^ super replaceFrom:start to:stop with:aCollection startingAt:repStart
1168
a8ac7ccb76db commentary
Claus Gittinger <cg@exept.de>
parents: 1158
diff changeset
  1734
a8ac7ccb76db commentary
Claus Gittinger <cg@exept.de>
parents: 1158
diff changeset
  1735
    "Modified: 13.4.1996 / 12:17:13 / cg"
543
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1736
! !
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1737
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1738
!Array methodsFor:'printing & storing'!
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1739
13077
87f8b675848f Implement display with #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 12477
diff changeset
  1740
displayStringName
87f8b675848f Implement display with #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 12477
diff changeset
  1741
    self class == Array ifTrue:[
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1742
	^ '#'
543
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1743
    ].
13077
87f8b675848f Implement display with #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 12477
diff changeset
  1744
    ^ super displayStringName.
543
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1745
!
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1746
8442
5b4f72d5e966 #printOn: prints Array as #(....) instead of Array(....)
Stefan Vogel <sv@exept.de>
parents: 8368
diff changeset
  1747
printOn:aStream
12162
32aa3e64c889 comment/format in: #printOn:
Claus Gittinger <cg@exept.de>
parents: 11797
diff changeset
  1748
    "append a printed representation of the receiver to aStream"
8442
5b4f72d5e966 #printOn: prints Array as #(....) instead of Array(....)
Stefan Vogel <sv@exept.de>
parents: 8368
diff changeset
  1749
5b4f72d5e966 #printOn: prints Array as #(....) instead of Array(....)
Stefan Vogel <sv@exept.de>
parents: 8368
diff changeset
  1750
    self isLiteral ifTrue:[
18246
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
  1751
	|limit firstOne s|
8442
5b4f72d5e966 #printOn: prints Array as #(....) instead of Array(....)
Stefan Vogel <sv@exept.de>
parents: 8368
diff changeset
  1752
18246
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
  1753
	thisContext isRecursive ifTrue:[
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
  1754
	    'Array [error]: printOn: of self referencing collection.' errorPrintCR.
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
  1755
	    aStream nextPutAll:'#("recursive")'.
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
  1756
	    ^ self
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
  1757
	].
8442
5b4f72d5e966 #printOn: prints Array as #(....) instead of Array(....)
Stefan Vogel <sv@exept.de>
parents: 8368
diff changeset
  1758
18246
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
  1759
	aStream nextPutAll:'#('.
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
  1760
	firstOne := true.
8442
5b4f72d5e966 #printOn: prints Array as #(....) instead of Array(....)
Stefan Vogel <sv@exept.de>
parents: 8368
diff changeset
  1761
18246
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
  1762
	"
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
  1763
	 if aStream is not positionable, create an temporary positionable stream
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
  1764
	 (needed for limit calculation)
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
  1765
	"
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
  1766
	aStream isPositionable ifTrue:[
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
  1767
	    s := aStream.
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
  1768
	] ifFalse:[
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
  1769
	    s := WriteStream on:(String uninitializedNew:50).
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
  1770
	].
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
  1771
	limit := s position + self maxPrint.
8442
5b4f72d5e966 #printOn: prints Array as #(....) instead of Array(....)
Stefan Vogel <sv@exept.de>
parents: 8368
diff changeset
  1772
18246
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
  1773
	self printElementsDo:[:element |
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
  1774
	    firstOne ifFalse:[
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
  1775
		s space
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
  1776
	    ] ifTrue:[
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
  1777
		firstOne := false
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
  1778
	    ].
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
  1779
	    (s position >= limit) ifTrue:[
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
  1780
		s ~~ aStream ifTrue:[
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
  1781
		    aStream nextPutAll:(s contents).
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
  1782
		].
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
  1783
		aStream nextPutAll:'...etc...)'.
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
  1784
		^ self
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
  1785
	    ] ifFalse:[
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
  1786
		element printOn:s.
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
  1787
	    ].
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
  1788
	].
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
  1789
	s ~~ aStream ifTrue:[
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
  1790
	    aStream nextPutAll:(s contents).
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
  1791
	].
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
  1792
	aStream nextPut:$)
8442
5b4f72d5e966 #printOn: prints Array as #(....) instead of Array(....)
Stefan Vogel <sv@exept.de>
parents: 8368
diff changeset
  1793
    ] ifFalse:[
18246
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
  1794
	super printOn:aStream
8442
5b4f72d5e966 #printOn: prints Array as #(....) instead of Array(....)
Stefan Vogel <sv@exept.de>
parents: 8368
diff changeset
  1795
    ]
5b4f72d5e966 #printOn: prints Array as #(....) instead of Array(....)
Stefan Vogel <sv@exept.de>
parents: 8368
diff changeset
  1796
5b4f72d5e966 #printOn: prints Array as #(....) instead of Array(....)
Stefan Vogel <sv@exept.de>
parents: 8368
diff changeset
  1797
    "
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1798
     #(1 2 $a 'hello' sym kewordSymbol:with: #'funny symbol') printString
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1799
     #(1 2 $a [1 2 3] true false nil #true #false #nil) printString
8442
5b4f72d5e966 #printOn: prints Array as #(....) instead of Array(....)
Stefan Vogel <sv@exept.de>
parents: 8368
diff changeset
  1800
    "
5b4f72d5e966 #printOn: prints Array as #(....) instead of Array(....)
Stefan Vogel <sv@exept.de>
parents: 8368
diff changeset
  1801
5b4f72d5e966 #printOn: prints Array as #(....) instead of Array(....)
Stefan Vogel <sv@exept.de>
parents: 8368
diff changeset
  1802
    "Created: 20.11.1995 / 11:16:58 / cg"
5b4f72d5e966 #printOn: prints Array as #(....) instead of Array(....)
Stefan Vogel <sv@exept.de>
parents: 8368
diff changeset
  1803
!
5b4f72d5e966 #printOn: prints Array as #(....) instead of Array(....)
Stefan Vogel <sv@exept.de>
parents: 8368
diff changeset
  1804
7600
5a3fee21c032 #storeString - omit # from Symbols and Arrays that are elements of an array.
Stefan Vogel <sv@exept.de>
parents: 6497
diff changeset
  1805
storeArrayElementOn:aStream
8368
2109093f80ff comment
Claus Gittinger <cg@exept.de>
parents: 7859
diff changeset
  1806
    "Store as element of an array. Omit the leading '#'"
7600
5a3fee21c032 #storeString - omit # from Symbols and Arrays that are elements of an array.
Stefan Vogel <sv@exept.de>
parents: 6497
diff changeset
  1807
5a3fee21c032 #storeString - omit # from Symbols and Arrays that are elements of an array.
Stefan Vogel <sv@exept.de>
parents: 6497
diff changeset
  1808
    self isLiteral ifTrue:[
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1809
	aStream nextPut:$(.
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1810
	self
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1811
	    do:[:element | element storeArrayElementOn:aStream]
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1812
	    separatedBy:[aStream space].
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1813
	aStream nextPut:$).
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1814
	^ self.
8368
2109093f80ff comment
Claus Gittinger <cg@exept.de>
parents: 7859
diff changeset
  1815
    ].
2109093f80ff comment
Claus Gittinger <cg@exept.de>
parents: 7859
diff changeset
  1816
    super storeArrayElementOn:aStream
2109093f80ff comment
Claus Gittinger <cg@exept.de>
parents: 7859
diff changeset
  1817
2109093f80ff comment
Claus Gittinger <cg@exept.de>
parents: 7859
diff changeset
  1818
    "
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1819
     #(1 2 3 4 5) storeOn:Transcript
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1820
     #(1 2 3 4 5) storeArrayElementOn:Transcript
8368
2109093f80ff comment
Claus Gittinger <cg@exept.de>
parents: 7859
diff changeset
  1821
    "
7600
5a3fee21c032 #storeString - omit # from Symbols and Arrays that are elements of an array.
Stefan Vogel <sv@exept.de>
parents: 6497
diff changeset
  1822
!
5a3fee21c032 #storeString - omit # from Symbols and Arrays that are elements of an array.
Stefan Vogel <sv@exept.de>
parents: 6497
diff changeset
  1823
543
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1824
storeOn:aStream
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1825
    "append a printed representation of the receiver to aStream,
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1826
     which allows reconstructing it via readFrom:.
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1827
     Redefined to output a somewhat more user friendly string."
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1828
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1829
    self isLiteral ifTrue:[
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1830
	aStream nextPutAll:'#('.
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1831
	self do:[:element | element storeArrayElementOn:aStream]
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1832
	     separatedBy:[aStream space].
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1833
	aStream nextPut:$)
543
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1834
    ] ifFalse:[
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1835
	super storeOn:aStream
543
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1836
    ]
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1837
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1838
    "
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1839
     #(1 2 $a 'hello' sym kewordSymbol:with: #'funny symbol') storeString
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1840
     #(1 2 $a [1 2 3] true false nil #true #false #nil) storeString
543
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1841
    "
588
ec7e2bc63d77 testing checkin
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1842
ec7e2bc63d77 testing checkin
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  1843
    "Created: 20.11.1995 / 11:16:58 / cg"
543
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1844
! !
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1845
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1846
!Array methodsFor:'queries'!
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1847
5557
f5f8d236027c category change
Claus Gittinger <cg@exept.de>
parents: 5554
diff changeset
  1848
basicSize
f5f8d236027c category change
Claus Gittinger <cg@exept.de>
parents: 5554
diff changeset
  1849
    "return the number of indexed elements in the receiver"
f5f8d236027c category change
Claus Gittinger <cg@exept.de>
parents: 5554
diff changeset
  1850
f5f8d236027c category change
Claus Gittinger <cg@exept.de>
parents: 5554
diff changeset
  1851
%{  /* NOCONTEXT */
18246
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
  1852
#ifdef __SCHTEAM__
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
  1853
    return context._RETURN (STInteger._new(self.basicSize()));
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
  1854
#else
5557
f5f8d236027c category change
Claus Gittinger <cg@exept.de>
parents: 5554
diff changeset
  1855
    REGISTER OBJ slf = self;
f5f8d236027c category change
Claus Gittinger <cg@exept.de>
parents: 5554
diff changeset
  1856
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1857
    RETURN ( __mkSmallInteger(__arraySize(slf) - __intVal(__ClassInstPtr(__qClass(slf))->c_ninstvars) ));
18246
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
  1858
#endif
5557
f5f8d236027c category change
Claus Gittinger <cg@exept.de>
parents: 5554
diff changeset
  1859
%}
f5f8d236027c category change
Claus Gittinger <cg@exept.de>
parents: 5554
diff changeset
  1860
!
f5f8d236027c category change
Claus Gittinger <cg@exept.de>
parents: 5554
diff changeset
  1861
1243
955b7f55f7a4 commentary
Claus Gittinger <cg@exept.de>
parents: 1219
diff changeset
  1862
refersToLiteral:aLiteral
955b7f55f7a4 commentary
Claus Gittinger <cg@exept.de>
parents: 1219
diff changeset
  1863
    "return true if the receiver or recursively any array element in the
16262
9bc41f1f7057 class: Array
Claus Gittinger <cg@exept.de>
parents: 15848
diff changeset
  1864
     receiver refers to aLiteral (i.e. a deep search)"
1243
955b7f55f7a4 commentary
Claus Gittinger <cg@exept.de>
parents: 1219
diff changeset
  1865
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1866
    self do: [ :el |
18246
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
  1867
	el == aLiteral ifTrue:[^true].
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
  1868
	el class == Array ifTrue:[
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
  1869
	    (el refersToLiteral: aLiteral) ifTrue: [^true]
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
  1870
	]
543
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1871
    ].
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1872
    ^ false
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1873
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1874
    "
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1875
     #(1 2 3) refersToLiteral:#foo
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1876
     #(1 2 3 foo bar baz) refersToLiteral:#foo
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1877
     #(1 2 3 (((bar foo))) bar baz) refersToLiteral:#foo
543
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1878
    "
1243
955b7f55f7a4 commentary
Claus Gittinger <cg@exept.de>
parents: 1219
diff changeset
  1879
5537
05d01dd462f6 comments
Claus Gittinger <cg@exept.de>
parents: 5531
diff changeset
  1880
    "Modified: / 18.8.2000 / 21:18:14 / cg"
5557
f5f8d236027c category change
Claus Gittinger <cg@exept.de>
parents: 5554
diff changeset
  1881
!
f5f8d236027c category change
Claus Gittinger <cg@exept.de>
parents: 5554
diff changeset
  1882
14256
45d30f2f4724 added: #refersToLiteralMatching:
Claus Gittinger <cg@exept.de>
parents: 14158
diff changeset
  1883
refersToLiteralMatching:aMatchPattern
45d30f2f4724 added: #refersToLiteralMatching:
Claus Gittinger <cg@exept.de>
parents: 14158
diff changeset
  1884
    "return true if the receiver or recursively any array element in the
45d30f2f4724 added: #refersToLiteralMatching:
Claus Gittinger <cg@exept.de>
parents: 14158
diff changeset
  1885
     receiver is symbolic and matches aMatchPattern (i.e. a deep search)"
45d30f2f4724 added: #refersToLiteralMatching:
Claus Gittinger <cg@exept.de>
parents: 14158
diff changeset
  1886
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1887
    self do:[ :el |
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1888
	(el isSymbol and:[ aMatchPattern match: el]) ifTrue:[^true].
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1889
	el class == Array ifTrue:[
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1890
	    (el refersToLiteralMatching: aMatchPattern) ifTrue: [^true]
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1891
	]
14256
45d30f2f4724 added: #refersToLiteralMatching:
Claus Gittinger <cg@exept.de>
parents: 14158
diff changeset
  1892
    ].
45d30f2f4724 added: #refersToLiteralMatching:
Claus Gittinger <cg@exept.de>
parents: 14158
diff changeset
  1893
    ^ false
45d30f2f4724 added: #refersToLiteralMatching:
Claus Gittinger <cg@exept.de>
parents: 14158
diff changeset
  1894
45d30f2f4724 added: #refersToLiteralMatching:
Claus Gittinger <cg@exept.de>
parents: 14158
diff changeset
  1895
    "
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1896
     #(1 2 3) refersToLiteralMatching:#foo
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1897
     #(1 2 3 foo bar baz) refersToLiteralMatching:#foo
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1898
     #(1 2 3 (((bar foo))) bar baz) refersToLiteralMatching:#foo
14256
45d30f2f4724 added: #refersToLiteralMatching:
Claus Gittinger <cg@exept.de>
parents: 14158
diff changeset
  1899
    "
45d30f2f4724 added: #refersToLiteralMatching:
Claus Gittinger <cg@exept.de>
parents: 14158
diff changeset
  1900
45d30f2f4724 added: #refersToLiteralMatching:
Claus Gittinger <cg@exept.de>
parents: 14158
diff changeset
  1901
    "Modified: / 18-08-2000 / 21:18:14 / cg"
45d30f2f4724 added: #refersToLiteralMatching:
Claus Gittinger <cg@exept.de>
parents: 14158
diff changeset
  1902
    "Created: / 26-07-2012 / 15:38:01 / cg"
45d30f2f4724 added: #refersToLiteralMatching:
Claus Gittinger <cg@exept.de>
parents: 14158
diff changeset
  1903
!
45d30f2f4724 added: #refersToLiteralMatching:
Claus Gittinger <cg@exept.de>
parents: 14158
diff changeset
  1904
5557
f5f8d236027c category change
Claus Gittinger <cg@exept.de>
parents: 5554
diff changeset
  1905
size
f5f8d236027c category change
Claus Gittinger <cg@exept.de>
parents: 5554
diff changeset
  1906
    "return the number of indexed elements in the receiver.
f5f8d236027c category change
Claus Gittinger <cg@exept.de>
parents: 5554
diff changeset
  1907
     Reimplemented here to avoid the additional size->basicSize send
f5f8d236027c category change
Claus Gittinger <cg@exept.de>
parents: 5554
diff changeset
  1908
     (which we can do here, since when arriving here, #size is obviously not
f5f8d236027c category change
Claus Gittinger <cg@exept.de>
parents: 5554
diff changeset
  1909
      redefined in a subclass).
f5f8d236027c category change
Claus Gittinger <cg@exept.de>
parents: 5554
diff changeset
  1910
     This method is the same as basicSize."
f5f8d236027c category change
Claus Gittinger <cg@exept.de>
parents: 5554
diff changeset
  1911
f5f8d236027c category change
Claus Gittinger <cg@exept.de>
parents: 5554
diff changeset
  1912
%{  /* NOCONTEXT */
18246
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
  1913
#ifdef __SCHTEAM__
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
  1914
    return context._RETURN (STInteger._new(self.basicSize()));
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
  1915
#else
5557
f5f8d236027c category change
Claus Gittinger <cg@exept.de>
parents: 5554
diff changeset
  1916
    REGISTER OBJ slf = self;
f5f8d236027c category change
Claus Gittinger <cg@exept.de>
parents: 5554
diff changeset
  1917
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1918
    RETURN ( __mkSmallInteger(__arraySize(slf) - __intVal(__ClassInstPtr(__qClass(slf))->c_ninstvars) ));
18246
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
  1919
#endif
5557
f5f8d236027c category change
Claus Gittinger <cg@exept.de>
parents: 5554
diff changeset
  1920
%}
543
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1921
! !
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1922
3088
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  1923
!Array methodsFor:'searching'!
543
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1924
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1925
identityIndexOf:anElement or:alternative
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1926
    "search the array for anElement or alternative;
554
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1927
     return the index of anElement if found, or the index of anAlternative,
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1928
     if not found. If anAlternative is also not found, return 0.
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1929
     This is a special interface for high-speed searching in an array
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1930
     and at the same time searching for an empty slot.
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1931
     Do not use this method for your application classes, since it is
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1932
     not portable (i.e. other smalltalks do not offer this)"
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1933
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1934
%{  /* NOCONTEXT */
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1935
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1936
    REGISTER INT index;
554
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1937
    REGISTER OBJ o, el1, el2;
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1938
    REGISTER OBJ *op;
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1939
    REGISTER unsigned INT nIndex;
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1940
    INT altIndex = 0;
14687
e718f7219911 64bit changes
Claus Gittinger <cg@exept.de>
parents: 14657
diff changeset
  1941
    INT nInsts;
554
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1942
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1943
    index = 0;
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1123
diff changeset
  1944
    nInsts = __intVal(__ClassInstPtr(__qClass(self))->c_ninstvars);
554
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1945
    index += nInsts;
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1946
    nIndex = __BYTES2OBJS__(__qSize(self) - OHDR_SIZE);
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1947
    el1 = anElement; el2 = alternative;
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1123
diff changeset
  1948
    op = & (__InstPtr(self)->i_instvars[index]);
554
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1949
    while (index++ < nIndex) {
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1950
	if ((o = *op++) == el1) {
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1951
	    RETURN ( __mkSmallInteger(index - nInsts) );
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1952
	}
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1953
	if (o == el2) {
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1954
	    if (altIndex == 0) {
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1955
		altIndex = index;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1956
	    }
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1957
	}
554
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1958
    }
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1959
    RETURN ( __mkSmallInteger(altIndex) );
5403
55cbe7c0a58f super-send fallBacks
Claus Gittinger <cg@exept.de>
parents: 5347
diff changeset
  1960
%}.
55cbe7c0a58f super-send fallBacks
Claus Gittinger <cg@exept.de>
parents: 5347
diff changeset
  1961
    ^ super identityIndexOf:anElement or:alternative
554
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1962
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1963
    "
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1964
     #(1 2 3 4 5 6 7 8 9) identityIndexOf:3 or:5
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1965
     #(1 2 0 4 5 6 7 8 9) identityIndexOf:3 or:5
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1966
     #(1 2 0 4 5 6 7 3 9) identityIndexOf:3 or:5
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1967
     #(1 2 3 4 5 nil 7 3 9) identityIndexOf:3 or:nil
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1968
     #(1 2 nil 4 5 6 7 3 9) identityIndexOf:3 or:nil
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1969
     #(1 2 nil 4 5 6 7 8 9) identityIndexOf:3 or:nil
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1970
     #() identityIndexOf:3 or:nil
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  1971
     #(1 2) identityIndexOf:3 or:nil
554
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1972
    "
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1973
!
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  1974
543
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1975
identityIndexOf:anElement startingAt:start
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1976
    "search the array for anElement; return index if found, 0 otherwise
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1977
     - reimplemented for speed"
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1978
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1979
%{  /* NOCONTEXT */
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1980
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1981
    REGISTER INT index;
543
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1982
    REGISTER OBJ el;
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1983
    REGISTER OBJ *op;
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1984
    REGISTER unsigned INT nIndex;
14687
e718f7219911 64bit changes
Claus Gittinger <cg@exept.de>
parents: 14657
diff changeset
  1985
    INT nInsts;
543
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1986
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1987
    if (__isSmallInteger(start)) {
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1988
	index = __intVal(start) - 1;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1989
	if (index >= 0) {
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1990
	    nInsts = __intVal(__ClassInstPtr(__qClass(self))->c_ninstvars);
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1991
	    index += nInsts;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1992
	    nIndex = __BYTES2OBJS__(__qSize(self) - OHDR_SIZE);
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1993
	    el = anElement;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1994
	    op = & (__InstPtr(self)->i_instvars[index]);
1903
30c98b3377c5 slight tuning
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  1995
2213
2a4a3df451bf fast memsrch4 (i386 only)
Claus Gittinger <cg@exept.de>
parents: 2211
diff changeset
  1996
#if defined(memsrch4)
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1997
	    if (index < nIndex) {
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  1998
		OBJ *p;
2213
2a4a3df451bf fast memsrch4 (i386 only)
Claus Gittinger <cg@exept.de>
parents: 2211
diff changeset
  1999
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2000
		p = memsrch4(op, (INT)el, (nIndex - index));
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2001
		if (p) {
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2002
		    index += (p - op + 1);
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2003
		    RETURN ( __mkSmallInteger(index) );
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2004
		}
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2005
	    }
2213
2a4a3df451bf fast memsrch4 (i386 only)
Claus Gittinger <cg@exept.de>
parents: 2211
diff changeset
  2006
#else
2216
e4fed6c622de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2213
diff changeset
  2007
8919
707a9ff7f9b2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  2008
# ifdef __UNROLL_LOOPS__
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2009
	    {
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2010
		/*
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2011
		 * dont argue about those gotos below - they speed up that thing by 30%;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2012
		 * its better to exit the loops below with a goto,
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2013
		 * since the generated code will then be:
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2014
		 *   compare
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2015
		 *   branch-on-equal found
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2016
		 *
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2017
		 * otherwise (with ret as if-statement), we get:
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2018
		 *   compare
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2019
		 *   branch-on-not-equal skipLabel
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2020
		 *   move-to-ret-register true
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2021
		 *   goto ret-label
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2022
		 * skipLabel
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2023
		 *
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2024
		 * therefore, WITH the so-much-blamed goto, we only branch
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2025
		 * when found; without the goto, we branch always.
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2026
		 * Pipelined CPUs do usually not like taken branches.
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2027
		 */
2216
e4fed6c622de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2213
diff changeset
  2028
14687
e718f7219911 64bit changes
Claus Gittinger <cg@exept.de>
parents: 14657
diff changeset
  2029
		unsigned INT i8;
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2030
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2031
		while ((i8 = index + 8) < nIndex) {
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2032
		    if (op[0] == el) goto found1;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2033
		    if (op[1] == el) goto found2;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2034
		    if (op[2] == el) goto found3;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2035
		    if (op[3] == el) goto found4;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2036
		    if (op[4] == el) goto found5;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2037
		    if (op[5] == el) goto found6;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2038
		    if (op[6] == el) goto found7;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2039
		    if (op[7] == el) goto found8;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2040
		    index = i8;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2041
		    op += 8;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2042
		}
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2043
		if (0) {
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2044
		    found1:
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2045
			RETURN ( __mkSmallInteger(index + 1 - nInsts) );
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2046
		    found2:
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2047
			RETURN ( __mkSmallInteger(index + 2 - nInsts) );
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2048
		    found3:
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2049
			RETURN ( __mkSmallInteger(index + 3 - nInsts) );
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2050
		    found4:
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2051
			RETURN ( __mkSmallInteger(index + 4 - nInsts) );
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2052
		    found5:
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2053
			RETURN ( __mkSmallInteger(index + 5 - nInsts) );
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2054
		    found6:
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2055
			RETURN ( __mkSmallInteger(index + 6 - nInsts) );
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2056
		    found7:
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2057
			RETURN ( __mkSmallInteger(index + 7 - nInsts) );
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2058
		    found8:
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2059
			RETURN ( __mkSmallInteger(index + 8 - nInsts) );
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2060
		}
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2061
	    }
8919
707a9ff7f9b2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  2062
# endif /* __UNROLLED_LOOPS__ */
2715
48beff18cec0 software pipeline element access in enumeration method
Claus Gittinger <cg@exept.de>
parents: 2683
diff changeset
  2063
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2064
	    while (index++ < nIndex) {
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2065
		if (*op++ == el) goto found0;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2066
	    }
2715
48beff18cec0 software pipeline element access in enumeration method
Claus Gittinger <cg@exept.de>
parents: 2683
diff changeset
  2067
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2068
	    if (0) {
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2069
		found0:
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2070
		    RETURN ( __mkSmallInteger(index - nInsts) );
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2071
	    }
2715
48beff18cec0 software pipeline element access in enumeration method
Claus Gittinger <cg@exept.de>
parents: 2683
diff changeset
  2072
#endif /* no memsrch */
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2073
	}
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2074
	RETURN ( __mkSmallInteger(0) );
543
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2075
    }
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2076
%}.
5403
55cbe7c0a58f super-send fallBacks
Claus Gittinger <cg@exept.de>
parents: 5347
diff changeset
  2077
    ^ super identityIndexOf:anElement startingAt:start
1158
bf9aec9e892c added range search (mostly for big orderedCollections)
Claus Gittinger <cg@exept.de>
parents: 1143
diff changeset
  2078
!
bf9aec9e892c added range search (mostly for big orderedCollections)
Claus Gittinger <cg@exept.de>
parents: 1143
diff changeset
  2079
bf9aec9e892c added range search (mostly for big orderedCollections)
Claus Gittinger <cg@exept.de>
parents: 1143
diff changeset
  2080
identityIndexOf:anElement startingAt:start endingAt:stop
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2081
    "search the array for anElement in the range start..stop;
1158
bf9aec9e892c added range search (mostly for big orderedCollections)
Claus Gittinger <cg@exept.de>
parents: 1143
diff changeset
  2082
     return the index if found, 0 otherwise.
bf9aec9e892c added range search (mostly for big orderedCollections)
Claus Gittinger <cg@exept.de>
parents: 1143
diff changeset
  2083
     - reimplemented for speed when searching in OrderedCollections"
bf9aec9e892c added range search (mostly for big orderedCollections)
Claus Gittinger <cg@exept.de>
parents: 1143
diff changeset
  2084
bf9aec9e892c added range search (mostly for big orderedCollections)
Claus Gittinger <cg@exept.de>
parents: 1143
diff changeset
  2085
%{  /* NOCONTEXT */
bf9aec9e892c added range search (mostly for big orderedCollections)
Claus Gittinger <cg@exept.de>
parents: 1143
diff changeset
  2086
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2087
    REGISTER INT index;
1158
bf9aec9e892c added range search (mostly for big orderedCollections)
Claus Gittinger <cg@exept.de>
parents: 1143
diff changeset
  2088
    REGISTER OBJ el;
bf9aec9e892c added range search (mostly for big orderedCollections)
Claus Gittinger <cg@exept.de>
parents: 1143
diff changeset
  2089
    REGISTER OBJ *op;
14687
e718f7219911 64bit changes
Claus Gittinger <cg@exept.de>
parents: 14657
diff changeset
  2090
    REGISTER unsigned INT lastIndex;
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2091
    unsigned INT nIndex;
14687
e718f7219911 64bit changes
Claus Gittinger <cg@exept.de>
parents: 14657
diff changeset
  2092
    INT nInsts;
1158
bf9aec9e892c added range search (mostly for big orderedCollections)
Claus Gittinger <cg@exept.de>
parents: 1143
diff changeset
  2093
bf9aec9e892c added range search (mostly for big orderedCollections)
Claus Gittinger <cg@exept.de>
parents: 1143
diff changeset
  2094
    if (__bothSmallInteger(start, stop)) {
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2095
	index = __intVal(start) - 1;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2096
	if (index >= 0) {
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2097
	    nInsts = __intVal(__ClassInstPtr(__qClass(self))->c_ninstvars);
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2098
	    index += nInsts;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2099
	    lastIndex = nInsts + __intVal(stop);
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2100
	    nIndex = __BYTES2OBJS__(__qSize(self) - OHDR_SIZE);
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2101
	    if (nIndex < lastIndex) {
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2102
		lastIndex = nIndex;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2103
	    }
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2104
	    el = anElement;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2105
	    op = & (__InstPtr(self)->i_instvars[index]);
2213
2a4a3df451bf fast memsrch4 (i386 only)
Claus Gittinger <cg@exept.de>
parents: 2211
diff changeset
  2106
2a4a3df451bf fast memsrch4 (i386 only)
Claus Gittinger <cg@exept.de>
parents: 2211
diff changeset
  2107
#if defined(memsrch4)
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2108
	    if (index < lastIndex) {
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2109
		OBJ *p;
2216
e4fed6c622de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2213
diff changeset
  2110
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2111
		p = memsrch4(op, (INT)el, (lastIndex - index));
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2112
		if (p) {
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2113
		    index += (p - op + 1);
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2114
		    RETURN ( __mkSmallInteger(index) );
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2115
		}
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2116
	    }
2216
e4fed6c622de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2213
diff changeset
  2117
#else
2213
2a4a3df451bf fast memsrch4 (i386 only)
Claus Gittinger <cg@exept.de>
parents: 2211
diff changeset
  2118
8919
707a9ff7f9b2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  2119
# ifdef __UNROLL_LOOPS__
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2120
	    {
14687
e718f7219911 64bit changes
Claus Gittinger <cg@exept.de>
parents: 14657
diff changeset
  2121
		unsigned INT i8;
1158
bf9aec9e892c added range search (mostly for big orderedCollections)
Claus Gittinger <cg@exept.de>
parents: 1143
diff changeset
  2122
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2123
		while ((i8 = index + 8) < lastIndex) {
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2124
		    if (op[0] == el) goto found1;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2125
		    if (op[1] == el) goto found2;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2126
		    if (op[2] == el) goto found3;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2127
		    if (op[3] == el) goto found4;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2128
		    if (op[4] == el) goto found5;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2129
		    if (op[5] == el) goto found6;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2130
		    if (op[6] == el) goto found7;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2131
		    if (op[7] == el) goto found8;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2132
		    index = i8;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2133
		    op += 8;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2134
		}
2715
48beff18cec0 software pipeline element access in enumeration method
Claus Gittinger <cg@exept.de>
parents: 2683
diff changeset
  2135
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2136
		if (0) {
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2137
	    found1:
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2138
		    RETURN ( __mkSmallInteger(index + 1 - nInsts) );
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2139
	    found2:
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2140
		    RETURN ( __mkSmallInteger(index + 2 - nInsts) );
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2141
	    found3:
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2142
		    RETURN ( __mkSmallInteger(index + 3 - nInsts) );
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2143
	    found4:
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2144
		    RETURN ( __mkSmallInteger(index + 4 - nInsts) );
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2145
	    found5:
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2146
		    RETURN ( __mkSmallInteger(index + 5 - nInsts) );
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2147
	    found6:
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2148
		    RETURN ( __mkSmallInteger(index + 6 - nInsts) );
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2149
	    found7:
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2150
		    RETURN ( __mkSmallInteger(index + 7 - nInsts) );
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2151
	    found8:
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2152
		    RETURN ( __mkSmallInteger(index + 8 - nInsts) );
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2153
		}
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2154
	    }
8919
707a9ff7f9b2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  2155
# endif /* __UNROLL_LOOPS__ */
2715
48beff18cec0 software pipeline element access in enumeration method
Claus Gittinger <cg@exept.de>
parents: 2683
diff changeset
  2156
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2157
	    while (index++ < lastIndex) {
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2158
		if (*op++ == el) goto found0;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2159
	    }
2715
48beff18cec0 software pipeline element access in enumeration method
Claus Gittinger <cg@exept.de>
parents: 2683
diff changeset
  2160
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2161
	    if (0) {
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2162
		found0:
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2163
		    RETURN ( __mkSmallInteger(index - nInsts) );
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2164
	    }
2213
2a4a3df451bf fast memsrch4 (i386 only)
Claus Gittinger <cg@exept.de>
parents: 2211
diff changeset
  2165
#endif
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2166
	}
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2167
	RETURN ( __mkSmallInteger(0) );
1158
bf9aec9e892c added range search (mostly for big orderedCollections)
Claus Gittinger <cg@exept.de>
parents: 1143
diff changeset
  2168
    }
bf9aec9e892c added range search (mostly for big orderedCollections)
Claus Gittinger <cg@exept.de>
parents: 1143
diff changeset
  2169
%}.
5403
55cbe7c0a58f super-send fallBacks
Claus Gittinger <cg@exept.de>
parents: 5347
diff changeset
  2170
    ^ super identityIndexOf:anElement startingAt:start endingAt:stop
1158
bf9aec9e892c added range search (mostly for big orderedCollections)
Claus Gittinger <cg@exept.de>
parents: 1143
diff changeset
  2171
543
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2172
!
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2173
554
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  2174
indexOf:anElement startingAt:start
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  2175
    "search the array for anElement; return index if found, 0 otherwise
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  2176
     - reimplemented for speed"
543
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2177
554
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  2178
    |element|
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  2179
%{
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2180
    REGISTER INT index;
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2181
    unsigned INT nIndex;
14687
e718f7219911 64bit changes
Claus Gittinger <cg@exept.de>
parents: 14657
diff changeset
  2182
    unsigned INT nInsts;
554
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  2183
    static struct inlineCache eq = _ILC1;
4130
662554f2a37c avoid refetch of void variables (if possible)
Claus Gittinger <cg@exept.de>
parents: 4122
diff changeset
  2184
    OBJ myClass, e;
543
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2185
2184
f25db3e10530 no block-copy operations are allowed with WeakArrays
Claus Gittinger <cg@exept.de>
parents: 2145
diff changeset
  2186
    myClass = __qClass(self);
2357
061dadc13df1 removed WEAKPOINTER checks - WeakArray is no longer allowed to be a subclass of Array
Claus Gittinger <cg@exept.de>
parents: 2318
diff changeset
  2187
    if ( __isSmallInteger(start) ) {
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2188
	index = __intVal(start) - 1;
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2189
	if (index >= 0) {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2190
	    nInsts = __intVal(__ClassInstPtr(myClass)->c_ninstvars);
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2191
	    index += nInsts;
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2192
	    nIndex = __BYTES2OBJS__(__qSize(self) - OHDR_SIZE);
4130
662554f2a37c avoid refetch of void variables (if possible)
Claus Gittinger <cg@exept.de>
parents: 4122
diff changeset
  2193
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2194
	    e = anElement;
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2195
	    if (e != nil) {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2196
		/*
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2197
		 * special kludge to search for a string;
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2198
		 * this is so common, that its worth a special case
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2199
		 */
825
f7b73d83b9d4 optimized search for strings (dont know if its worth it ...)
Claus Gittinger <cg@exept.de>
parents: 788
diff changeset
  2200
#define SPECIAL_STRING_OPT
f7b73d83b9d4 optimized search for strings (dont know if its worth it ...)
Claus Gittinger <cg@exept.de>
parents: 788
diff changeset
  2201
#ifdef SPECIAL_STRING_OPT
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2202
		if (__isStringLike(e)) {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2203
		    while (index < nIndex) {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2204
			element = __InstPtr(self)->i_instvars[index++];
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2205
			if (__isNonNilObject(element)) {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2206
			    if (element == e) {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2207
				RETURN ( __mkSmallInteger(index - nInsts) );
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2208
			    }
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2209
			    if (__qClass(element) == @global(String)) {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2210
				if (strcmp(__stringVal(e), __stringVal(element)) == 0) {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2211
				    RETURN ( __mkSmallInteger(index - nInsts) );
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2212
				}
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2213
			    } else {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2214
				if ((*eq.ilc_func)(e, @symbol(=), nil,&eq, element) == true) {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2215
				    RETURN ( __mkSmallInteger(index - nInsts) );
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2216
				}
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2217
				/*
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2218
				 * send of #= could have lead to a GC - refetch e
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2219
				 */
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2220
				e = anElement;
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2221
			    }
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2222
			}
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2223
		    }
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2224
		    RETURN (__mkSmallInteger(0));
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2225
		}
825
f7b73d83b9d4 optimized search for strings (dont know if its worth it ...)
Claus Gittinger <cg@exept.de>
parents: 788
diff changeset
  2226
#endif
14380
06aa294b80fa changed: #indexOf:startingAt:
Claus Gittinger <cg@exept.de>
parents: 14256
diff changeset
  2227
#ifdef MAKES_IT_SLOWER_BUT_WHY
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2228
		if (__isSmallInteger(e)) {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2229
		    /* search for a small number */
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2230
		    while (index < nIndex) {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2231
			element = __InstPtr(self)->i_instvars[index++];
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2232
			if (element == e) {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2233
			    RETURN ( __mkSmallInteger(index - nInsts) );
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2234
			}
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2235
			if (!__isSmallInteger(element)) {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2236
			    if (element != nil) {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2237
				if ((*eq.ilc_func)(e,
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2238
						   @symbol(=),
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2239
						   nil,&eq,
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2240
						   element) == true) {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2241
				    RETURN ( __mkSmallInteger(index - nInsts) );
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2242
				}
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2243
				/*
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2244
				 * send of #= could have lead to a GC - refetch e
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2245
				 */
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2246
				e = anElement;
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2247
			    }
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2248
			}
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2249
		    }
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2250
		    RETURN (__mkSmallInteger(0));
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2251
		}
14380
06aa294b80fa changed: #indexOf:startingAt:
Claus Gittinger <cg@exept.de>
parents: 14256
diff changeset
  2252
#endif /* MAKES_IT_SLOWER_BUT_WHY */
4130
662554f2a37c avoid refetch of void variables (if possible)
Claus Gittinger <cg@exept.de>
parents: 4122
diff changeset
  2253
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2254
		while (index < nIndex) {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2255
		    element = __InstPtr(self)->i_instvars[index++];
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2256
		    if (element != nil) {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2257
			if ((element == e)
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2258
			 || ((*eq.ilc_func)(e,
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2259
					    @symbol(=),
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2260
					    nil,&eq,
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2261
					    element) == true)) {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2262
			    RETURN ( __mkSmallInteger(index - nInsts) );
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2263
			}
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2264
			/*
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2265
			 * send of #= could have lead to a GC - refetch e
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2266
			 */
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2267
			e = anElement;
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2268
		    }
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2269
		}
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2270
	    } else {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2271
		OBJ slf = self;
4130
662554f2a37c avoid refetch of void variables (if possible)
Claus Gittinger <cg@exept.de>
parents: 4122
diff changeset
  2272
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2273
		/*
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2274
		 * search for nil - do an identity-search
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2275
		 */
8919
707a9ff7f9b2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  2276
#ifdef __UNROLL_LOOPS__
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2277
		{
14687
e718f7219911 64bit changes
Claus Gittinger <cg@exept.de>
parents: 14657
diff changeset
  2278
		    unsigned INT i8;
554
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  2279
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2280
		    while ((i8 = index + 8) < nIndex) {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2281
			if (__InstPtr(slf)->i_instvars[index] == nil) { RETURN ( __mkSmallInteger(index - nInsts + 1) ); }
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2282
			if (__InstPtr(slf)->i_instvars[index+1] == nil) { RETURN ( __mkSmallInteger(index - nInsts + 2) ); }
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2283
			if (__InstPtr(slf)->i_instvars[index+2] == nil) { RETURN ( __mkSmallInteger(index - nInsts + 3) ); }
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2284
			if (__InstPtr(slf)->i_instvars[index+3] == nil) { RETURN ( __mkSmallInteger(index - nInsts + 4) ); }
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2285
			if (__InstPtr(slf)->i_instvars[index+4] == nil) { RETURN ( __mkSmallInteger(index - nInsts + 5) ); }
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2286
			if (__InstPtr(slf)->i_instvars[index+5] == nil) { RETURN ( __mkSmallInteger(index - nInsts + 6) ); }
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2287
			if (__InstPtr(slf)->i_instvars[index+6] == nil) { RETURN ( __mkSmallInteger(index - nInsts + 7) ); }
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2288
			if (__InstPtr(slf)->i_instvars[index+7] == nil) { RETURN ( __mkSmallInteger(index - nInsts + 8) ); }
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2289
			index = i8;
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2290
		    }
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2291
		}
554
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  2292
#endif
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  2293
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2294
		while (index < nIndex) {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2295
		    if (__InstPtr(slf)->i_instvars[index++] == nil) {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2296
			RETURN ( __mkSmallInteger(index - nInsts) );
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2297
		    }
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2298
		}
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2299
	    }
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2300
	}
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2301
	RETURN (__mkSmallInteger(0));
543
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2302
    }
554
716dee42f589 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
  2303
%}.
2184
f25db3e10530 no block-copy operations are allowed with WeakArrays
Claus Gittinger <cg@exept.de>
parents: 2145
diff changeset
  2304
    ^ super indexOf:anElement startingAt:start
1158
bf9aec9e892c added range search (mostly for big orderedCollections)
Claus Gittinger <cg@exept.de>
parents: 1143
diff changeset
  2305
!
bf9aec9e892c added range search (mostly for big orderedCollections)
Claus Gittinger <cg@exept.de>
parents: 1143
diff changeset
  2306
bf9aec9e892c added range search (mostly for big orderedCollections)
Claus Gittinger <cg@exept.de>
parents: 1143
diff changeset
  2307
indexOf:anElement startingAt:start endingAt:stop
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2308
    "search the array for anElement in the range start..stop;
1158
bf9aec9e892c added range search (mostly for big orderedCollections)
Claus Gittinger <cg@exept.de>
parents: 1143
diff changeset
  2309
     Return the index if found, 0 otherwise.
bf9aec9e892c added range search (mostly for big orderedCollections)
Claus Gittinger <cg@exept.de>
parents: 1143
diff changeset
  2310
     - reimplemented for speed when searching in OrderedCollections"
bf9aec9e892c added range search (mostly for big orderedCollections)
Claus Gittinger <cg@exept.de>
parents: 1143
diff changeset
  2311
bf9aec9e892c added range search (mostly for big orderedCollections)
Claus Gittinger <cg@exept.de>
parents: 1143
diff changeset
  2312
    |element|
bf9aec9e892c added range search (mostly for big orderedCollections)
Claus Gittinger <cg@exept.de>
parents: 1143
diff changeset
  2313
%{
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2314
    REGISTER INT index;
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2315
    unsigned INT lastIndex, nIndex;
14687
e718f7219911 64bit changes
Claus Gittinger <cg@exept.de>
parents: 14657
diff changeset
  2316
    unsigned INT nInsts;
1158
bf9aec9e892c added range search (mostly for big orderedCollections)
Claus Gittinger <cg@exept.de>
parents: 1143
diff changeset
  2317
    static struct inlineCache eq = _ILC1;
4130
662554f2a37c avoid refetch of void variables (if possible)
Claus Gittinger <cg@exept.de>
parents: 4122
diff changeset
  2318
    OBJ myClass, e;
1158
bf9aec9e892c added range search (mostly for big orderedCollections)
Claus Gittinger <cg@exept.de>
parents: 1143
diff changeset
  2319
2184
f25db3e10530 no block-copy operations are allowed with WeakArrays
Claus Gittinger <cg@exept.de>
parents: 2145
diff changeset
  2320
    myClass = __qClass(self);
2357
061dadc13df1 removed WEAKPOINTER checks - WeakArray is no longer allowed to be a subclass of Array
Claus Gittinger <cg@exept.de>
parents: 2318
diff changeset
  2321
    if ( __bothSmallInteger(start, stop) ) {
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2322
	index = __intVal(start) - 1;
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2323
	if (index >= 0) {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2324
	    nInsts = __intVal(__ClassInstPtr(myClass)->c_ninstvars);
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2325
	    index += nInsts;
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2326
	    lastIndex = nInsts + __intVal(stop);
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2327
	    nIndex = __BYTES2OBJS__(__qSize(self) - OHDR_SIZE);
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2328
	    if (nIndex < lastIndex) {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2329
		lastIndex = nIndex;
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2330
	    }
1158
bf9aec9e892c added range search (mostly for big orderedCollections)
Claus Gittinger <cg@exept.de>
parents: 1143
diff changeset
  2331
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2332
	    e = anElement;
4130
662554f2a37c avoid refetch of void variables (if possible)
Claus Gittinger <cg@exept.de>
parents: 4122
diff changeset
  2333
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2334
	    if (e != nil) {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2335
		/*
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2336
		 * special kludge to search for a string;
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2337
		 * this is so common, that its worth a special case
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2338
		 */
4130
662554f2a37c avoid refetch of void variables (if possible)
Claus Gittinger <cg@exept.de>
parents: 4122
diff changeset
  2339
#define SPECIAL_STRING_OPT
1158
bf9aec9e892c added range search (mostly for big orderedCollections)
Claus Gittinger <cg@exept.de>
parents: 1143
diff changeset
  2340
#ifdef SPECIAL_STRING_OPT
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2341
		if (__isStringLike(e)) {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2342
		    while (index < lastIndex) {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2343
			element = __InstPtr(self)->i_instvars[index++];
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2344
			if (__isNonNilObject(element)) {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2345
			    if (element == e) {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2346
				RETURN ( __mkSmallInteger(index - nInsts) );
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2347
			    }
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2348
			    if (__qClass(element) == @global(String)) {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2349
				if (strcmp(__stringVal(e), __stringVal(element)) == 0) {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2350
				    RETURN ( __mkSmallInteger(index - nInsts) );
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2351
				}
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2352
			    } else {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2353
				if ((*eq.ilc_func)(e, @symbol(=), nil,&eq, element) == true) {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2354
				    RETURN ( __mkSmallInteger(index - nInsts) );
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2355
				}
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2356
				/*
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2357
				 * send of #= could have lead to a GC - refetch e
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2358
				 */
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2359
				e = anElement;
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2360
			    }
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2361
			}
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2362
		    }
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2363
		    RETURN (__mkSmallInteger(0));
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2364
		}
1158
bf9aec9e892c added range search (mostly for big orderedCollections)
Claus Gittinger <cg@exept.de>
parents: 1143
diff changeset
  2365
#endif
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2366
		if (__isSmallInteger(e)) {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2367
		    /* search for a small number */
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2368
		    while (index < lastIndex) {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2369
			element = __InstPtr(self)->i_instvars[index++];
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2370
			if (element == e) {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2371
			    RETURN ( __mkSmallInteger(index - nInsts) );
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2372
			}
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2373
			if (!__isSmallInteger(element)) {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2374
			    if ((*eq.ilc_func)(e,
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2375
						@symbol(=),
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2376
						nil,&eq,
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2377
						element) == true) {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2378
				RETURN ( __mkSmallInteger(index - nInsts) );
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2379
			    }
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2380
			    /*
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2381
			     * send of #= could have lead to a GC - refetch e
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2382
			     */
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2383
			    e = anElement;
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2384
			}
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2385
		    }
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2386
		    RETURN (__mkSmallInteger(0));
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2387
		}
4130
662554f2a37c avoid refetch of void variables (if possible)
Claus Gittinger <cg@exept.de>
parents: 4122
diff changeset
  2388
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2389
		while (index < lastIndex) {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2390
		    element = __InstPtr(self)->i_instvars[index++];
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2391
		    if (element != nil) {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2392
			e = anElement;
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2393
			if ((element == e)
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2394
			 || ((*eq.ilc_func)(e,
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2395
					    @symbol(=),
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2396
					    nil,&eq,
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2397
					    element) == true)) {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2398
			    RETURN ( __mkSmallInteger(index - nInsts) );
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2399
			}
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2400
		    }
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2401
		}
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2402
	    } else {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2403
		OBJ slf = self;
4130
662554f2a37c avoid refetch of void variables (if possible)
Claus Gittinger <cg@exept.de>
parents: 4122
diff changeset
  2404
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2405
		/*
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2406
		 * search for nil - do an identity-search
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2407
		 */
8919
707a9ff7f9b2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  2408
#ifdef __UNROLL_LOOPS__
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2409
		{
14687
e718f7219911 64bit changes
Claus Gittinger <cg@exept.de>
parents: 14657
diff changeset
  2410
		    unsigned INT i8;
1158
bf9aec9e892c added range search (mostly for big orderedCollections)
Claus Gittinger <cg@exept.de>
parents: 1143
diff changeset
  2411
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2412
		    while ((i8 = index + 8) < lastIndex) {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2413
			if (__InstPtr(slf)->i_instvars[index] == nil) { RETURN ( __mkSmallInteger(index - nInsts + 1) ); }
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2414
			if (__InstPtr(slf)->i_instvars[index+1] == nil) { RETURN ( __mkSmallInteger(index - nInsts + 2) ); }
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2415
			if (__InstPtr(slf)->i_instvars[index+2] == nil) { RETURN ( __mkSmallInteger(index - nInsts + 3) ); }
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2416
			if (__InstPtr(slf)->i_instvars[index+3] == nil) { RETURN ( __mkSmallInteger(index - nInsts + 4) ); }
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2417
			if (__InstPtr(slf)->i_instvars[index+4] == nil) { RETURN ( __mkSmallInteger(index - nInsts + 5) ); }
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2418
			if (__InstPtr(slf)->i_instvars[index+5] == nil) { RETURN ( __mkSmallInteger(index - nInsts + 6) ); }
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2419
			if (__InstPtr(slf)->i_instvars[index+6] == nil) { RETURN ( __mkSmallInteger(index - nInsts + 7) ); }
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2420
			if (__InstPtr(slf)->i_instvars[index+7] == nil) { RETURN ( __mkSmallInteger(index - nInsts + 8) ); }
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2421
			index = i8;
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2422
		    }
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2423
		}
1158
bf9aec9e892c added range search (mostly for big orderedCollections)
Claus Gittinger <cg@exept.de>
parents: 1143
diff changeset
  2424
#endif
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2425
		while (index < lastIndex) {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2426
		    if (__InstPtr(slf)->i_instvars[index++] == nil) {
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2427
			RETURN ( __mkSmallInteger(index - nInsts) );
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2428
		    }
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2429
		}
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2430
	    }
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2431
	}
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2432
	RETURN (__mkSmallInteger(0));
1158
bf9aec9e892c added range search (mostly for big orderedCollections)
Claus Gittinger <cg@exept.de>
parents: 1143
diff changeset
  2433
    }
bf9aec9e892c added range search (mostly for big orderedCollections)
Claus Gittinger <cg@exept.de>
parents: 1143
diff changeset
  2434
%}.
2211
289095fe875a oops - must send super indeOf...endingAt:
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  2435
    ^ super indexOf:anElement startingAt:start endingAt:stop
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2436
! !
543
09293a92bddb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2437
3088
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2438
!Array methodsFor:'testing'!
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2439
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2440
includes:anObject
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2441
    "return true, if the argument, anObject is contained in the array
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2442
     - reimplemented for speed"
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2443
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2444
    |element|
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2445
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2446
%{  /* NOCONTEXT */
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2447
    /*
3088
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2448
     * first, do a quick check using ==
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2449
     * this does not need a context or message send.
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2450
     * In many cases this will already find a match.
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2451
     */
14687
e718f7219911 64bit changes
Claus Gittinger <cg@exept.de>
parents: 14657
diff changeset
  2452
    REGISTER INT index;
3088
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2453
    REGISTER OBJ o;
14687
e718f7219911 64bit changes
Claus Gittinger <cg@exept.de>
parents: 14657
diff changeset
  2454
    unsigned INT nIndex;
3088
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2455
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2456
    nIndex = __BYTES2OBJS__(__qSize(self) - OHDR_SIZE);
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2457
    index = __intVal(__ClassInstPtr(__qClass(self))->c_ninstvars);
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2458
4309
7d8976a3abe3 bug fix
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
  2459
    o = anObject;
7d8976a3abe3 bug fix
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
  2460
3088
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2461
    /*
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2462
     * however, the search is limited to the first 500
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2463
     * elements, since otherwise, we may spend too much time
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2464
     * searching for identity if an equal value is found early
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2465
     * (except if searching for nil - there is no need for equal compare ...)
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2466
     */
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2467
    if (nIndex > 500) {
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2468
	if (o != nil)
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2469
	    nIndex = 500;
3088
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2470
    }
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2471
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2472
# ifdef memsrch4
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2473
    if (index < nIndex) {
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2474
	OBJ *p;
3088
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2475
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2476
	p = memsrch4(&(__InstPtr(self)->i_instvars[index]), (INT)o, (nIndex - index));
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2477
	if (p) {
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2478
	    RETURN ( true );
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2479
	}
3088
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2480
    }
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2481
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2482
# else
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2483
    /*
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2484
     * dont argue those gotos below - they speed up that thing by 30%
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2485
     * its better to exit the loops below with a goto,
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2486
     * since the generated code will then be:
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2487
     *   compare
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2488
     *   branch-on-equal found
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2489
     *
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2490
     * otherwise, we get:
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2491
     *   compare
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2492
     *   branch-on-not-equal skipLabel
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2493
     *   move-to-return-register true
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2494
     *   goto return-label
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2495
     * skipLabel
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2496
     *
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2497
     * therefore, WITH the so-much-blamed goto, we only branch
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2498
     * when found; without the goto, we branch always.
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2499
     * Pipelined CPUs do usually not like taken branches.
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2500
     * also, all branches are forward, which are usually predicted
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2501
     * as not taken.
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2502
     */
8919
707a9ff7f9b2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  2503
#  ifdef __UNROLL_LOOPS__
3088
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2504
    {
14687
e718f7219911 64bit changes
Claus Gittinger <cg@exept.de>
parents: 14657
diff changeset
  2505
	unsigned INT i8;
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2506
	REGISTER OBJ slf = self;
3088
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2507
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2508
	while ((i8 = index + 8) < nIndex) {
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2509
	    if (__InstPtr(slf)->i_instvars[index] == o) goto found;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2510
	    if (__InstPtr(slf)->i_instvars[index+1] == o) goto found;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2511
	    if (__InstPtr(slf)->i_instvars[index+2] == o) goto found;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2512
	    if (__InstPtr(slf)->i_instvars[index+3] == o) goto found;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2513
	    if (__InstPtr(slf)->i_instvars[index+4] == o) goto found;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2514
	    if (__InstPtr(slf)->i_instvars[index+5] == o) goto found;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2515
	    if (__InstPtr(slf)->i_instvars[index+6] == o) goto found;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2516
	    if (__InstPtr(slf)->i_instvars[index+7] == o) goto found;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2517
	    index = i8;
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2518
	}
3088
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2519
    }
8919
707a9ff7f9b2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  2520
#  endif /* __UNROLL_LOOPS__ */
3088
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2521
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2522
    while (index < nIndex) {
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2523
	if (__InstPtr(self)->i_instvars[index++] == o) goto found;
3088
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2524
    }
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2525
    if (0) {
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2526
	found:
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2527
	    RETURN (true);
3088
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2528
    }
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2529
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2530
# endif /* no memsrch */
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2531
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2532
    if (o == nil) {
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2533
	RETURN ( false );
3088
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2534
    }
5403
55cbe7c0a58f super-send fallBacks
Claus Gittinger <cg@exept.de>
parents: 5347
diff changeset
  2535
%}.
55cbe7c0a58f super-send fallBacks
Claus Gittinger <cg@exept.de>
parents: 5347
diff changeset
  2536
55cbe7c0a58f super-send fallBacks
Claus Gittinger <cg@exept.de>
parents: 5347
diff changeset
  2537
%{
14687
e718f7219911 64bit changes
Claus Gittinger <cg@exept.de>
parents: 14657
diff changeset
  2538
    REGISTER INT index;
5403
55cbe7c0a58f super-send fallBacks
Claus Gittinger <cg@exept.de>
parents: 5347
diff changeset
  2539
    REGISTER OBJ o;
14687
e718f7219911 64bit changes
Claus Gittinger <cg@exept.de>
parents: 14657
diff changeset
  2540
    unsigned INT nIndex;
5403
55cbe7c0a58f super-send fallBacks
Claus Gittinger <cg@exept.de>
parents: 5347
diff changeset
  2541
    static struct inlineCache eq = _ILC1;
3088
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2542
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2543
    /*
3088
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2544
     * then do a slow(er) check using =
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2545
     */
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2546
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2547
    /*
3088
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2548
     * sorry: cannot access the stuff from above ...
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2549
     */
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2550
    nIndex = __BYTES2OBJS__(__qSize(self) - OHDR_SIZE);
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2551
    index = __intVal(__ClassInstPtr(__qClass(self))->c_ninstvars);
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2552
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2553
    while (index < nIndex) {
6497
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2554
	element = __InstPtr(self)->i_instvars[index++];
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2555
	if (element != nil) {
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2556
	    if ((*eq.ilc_func)(anObject,
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2557
			       @symbol(=),
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2558
			       nil,&eq,
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2559
			       element)==true) {
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2560
		RETURN ( true );
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2561
	    }
786812ab9bb3 use arrayVal macro
Claus Gittinger <cg@exept.de>
parents: 5576
diff changeset
  2562
	}
3088
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2563
    }
5403
55cbe7c0a58f super-send fallBacks
Claus Gittinger <cg@exept.de>
parents: 5347
diff changeset
  2564
    RETURN (false);
3088
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2565
%}.
5403
55cbe7c0a58f super-send fallBacks
Claus Gittinger <cg@exept.de>
parents: 5347
diff changeset
  2566
    ^ super includes:anObject
5049
d8279f59df21 added #includesIdentical:
Claus Gittinger <cg@exept.de>
parents: 4681
diff changeset
  2567
!
d8279f59df21 added #includesIdentical:
Claus Gittinger <cg@exept.de>
parents: 4681
diff changeset
  2568
d8279f59df21 added #includesIdentical:
Claus Gittinger <cg@exept.de>
parents: 4681
diff changeset
  2569
includesIdentical:anObject
d8279f59df21 added #includesIdentical:
Claus Gittinger <cg@exept.de>
parents: 4681
diff changeset
  2570
    "return true, if the argument, anObject is contained in the array
d8279f59df21 added #includesIdentical:
Claus Gittinger <cg@exept.de>
parents: 4681
diff changeset
  2571
     uses #== (instead of #=) when comparing; i.e. the search is for
d8279f59df21 added #includesIdentical:
Claus Gittinger <cg@exept.de>
parents: 4681
diff changeset
  2572
     the object, not some object being equal."
d8279f59df21 added #includesIdentical:
Claus Gittinger <cg@exept.de>
parents: 4681
diff changeset
  2573
d8279f59df21 added #includesIdentical:
Claus Gittinger <cg@exept.de>
parents: 4681
diff changeset
  2574
    ^ (self identityIndexOf:anObject) ~~ 0
d8279f59df21 added #includesIdentical:
Claus Gittinger <cg@exept.de>
parents: 4681
diff changeset
  2575
d8279f59df21 added #includesIdentical:
Claus Gittinger <cg@exept.de>
parents: 4681
diff changeset
  2576
    "
d8279f59df21 added #includesIdentical:
Claus Gittinger <cg@exept.de>
parents: 4681
diff changeset
  2577
     #(1 2 3 4 5) includes:3.0
d8279f59df21 added #includesIdentical:
Claus Gittinger <cg@exept.de>
parents: 4681
diff changeset
  2578
d8279f59df21 added #includesIdentical:
Claus Gittinger <cg@exept.de>
parents: 4681
diff changeset
  2579
     #(1 2 3 4 5) includesIdentical:3.0
d8279f59df21 added #includesIdentical:
Claus Gittinger <cg@exept.de>
parents: 4681
diff changeset
  2580
    "
5554
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5537
diff changeset
  2581
!
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5537
diff changeset
  2582
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5537
diff changeset
  2583
isArray
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5537
diff changeset
  2584
    "return true, if the receiver is some kind of array (or weakArray etc).
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5537
diff changeset
  2585
     true is returned here."
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5537
diff changeset
  2586
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5537
diff changeset
  2587
    ^ true
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5537
diff changeset
  2588
!
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5537
diff changeset
  2589
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5537
diff changeset
  2590
isEmpty
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5537
diff changeset
  2591
    "return true if the receiver contains no elements.
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5537
diff changeset
  2592
     Reimplemented here for performance."
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5537
diff changeset
  2593
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5537
diff changeset
  2594
%{  /* NOCONTEXT */
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5537
diff changeset
  2595
    REGISTER OBJ slf = self;
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5537
diff changeset
  2596
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5537
diff changeset
  2597
    if (__qClass(slf) == Array) {
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5537
diff changeset
  2598
	RETURN ( (__arraySize(slf) == 0) ? true : false);
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5537
diff changeset
  2599
    }
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5537
diff changeset
  2600
%}.
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5537
diff changeset
  2601
    ^ self size == 0
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5537
diff changeset
  2602
!
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5537
diff changeset
  2603
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5537
diff changeset
  2604
isLiteral
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5537
diff changeset
  2605
    "return true, if the receiver can be used as a literal constant in ST syntax
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5537
diff changeset
  2606
     (i.e. can be used in constant arrays)"
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5537
diff changeset
  2607
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5537
diff changeset
  2608
    "/ no, simply returning true here is a mistake:
14632
6fe0dc1d5377 64bit mingw changes
Claus Gittinger <cg@exept.de>
parents: 14623
diff changeset
  2609
    "/ it could be a subclass of Array
5554
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5537
diff changeset
  2610
    "/ (of which the compiler does not know at all ...)
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5537
diff changeset
  2611
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5537
diff changeset
  2612
    self class == Array ifFalse:[^ false].
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5537
diff changeset
  2613
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5537
diff changeset
  2614
    "/
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5537
diff changeset
  2615
    "/ care for recursive arrays ...
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5537
diff changeset
  2616
    "/
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5537
diff changeset
  2617
    thisContext isRecursive ifTrue:[^ false].
10089
833fffc641ef code cleanup: use #conform instead of explicit loop
Claus Gittinger <cg@exept.de>
parents: 9360
diff changeset
  2618
    ^ self conform:[:element | element isLiteral].
5554
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5537
diff changeset
  2619
10089
833fffc641ef code cleanup: use #conform instead of explicit loop
Claus Gittinger <cg@exept.de>
parents: 9360
diff changeset
  2620
    "Modified: / 13-10-2006 / 13:00:45 / cg"
5554
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5537
diff changeset
  2621
!
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5537
diff changeset
  2622
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5537
diff changeset
  2623
notEmpty
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5537
diff changeset
  2624
    "return true if the receiver contains elements.
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5537
diff changeset
  2625
     Reimplemented here for performance."
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5537
diff changeset
  2626
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5537
diff changeset
  2627
%{  /* NOCONTEXT */
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5537
diff changeset
  2628
    REGISTER OBJ slf = self;
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5537
diff changeset
  2629
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5537
diff changeset
  2630
    if (__qClass(slf) == Array) {
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5537
diff changeset
  2631
	RETURN ( (__arraySize(slf) != 0) ? true : false);
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5537
diff changeset
  2632
    }
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5537
diff changeset
  2633
%}.
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5537
diff changeset
  2634
    ^ self size ~~ 0
3088
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2635
! !
8b7011bef899 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3041
diff changeset
  2636
4681
7bac1e0ba551 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4661
diff changeset
  2637
!Array methodsFor:'tracing'!
7bac1e0ba551 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4661
diff changeset
  2638
7bac1e0ba551 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4661
diff changeset
  2639
traceInto:aRequestor level:level from:referrer
7bac1e0ba551 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4661
diff changeset
  2640
    "double dispatch into tracer, passing my type implicitely in the selector"
7bac1e0ba551 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4661
diff changeset
  2641
7bac1e0ba551 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4661
diff changeset
  2642
    ^ aRequestor traceArray:self level:level from:referrer
7bac1e0ba551 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4661
diff changeset
  2643
7bac1e0ba551 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4661
diff changeset
  2644
7bac1e0ba551 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4661
diff changeset
  2645
! !
7bac1e0ba551 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4661
diff changeset
  2646
1903
30c98b3377c5 slight tuning
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2647
!Array class methodsFor:'documentation'!
626
f359cb7eba58 version at the end
Claus Gittinger <cg@exept.de>
parents: 588
diff changeset
  2648
f359cb7eba58 version at the end
Claus Gittinger <cg@exept.de>
parents: 588
diff changeset
  2649
version
18246
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
  2650
    ^ '$Header: /cvs/stx/stx/libbasic/Array.st,v 1.166 2015-04-20 14:04:23 cg Exp $'
12162
32aa3e64c889 comment/format in: #printOn:
Claus Gittinger <cg@exept.de>
parents: 11797
diff changeset
  2651
!
32aa3e64c889 comment/format in: #printOn:
Claus Gittinger <cg@exept.de>
parents: 11797
diff changeset
  2652
32aa3e64c889 comment/format in: #printOn:
Claus Gittinger <cg@exept.de>
parents: 11797
diff changeset
  2653
version_CVS
18246
d4d749c60f22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 17376
diff changeset
  2654
    ^ '$Header: /cvs/stx/stx/libbasic/Array.st,v 1.166 2015-04-20 14:04:23 cg Exp $'
1244
dc9dd731258c commentary
Claus Gittinger <cg@exept.de>
parents: 1243
diff changeset
  2655
! !