ByteArray.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Wed, 19 Aug 2009 17:14:36 +0100
branchjv
changeset 17728 bbc5fa73dfab
parent 17711 39faaaf888b4
child 17732 a1892eeca6c0
permissions -rw-r--r--
Merged with trunk r10466
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: 148
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
"
5425
9a2bb3d1cc82 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5355
diff changeset
    12
"{ Package: 'stx:libbasic' }"
9a2bb3d1cc82 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5355
diff changeset
    13
3208
2d71538b9fd5 now subclass of UIBytes - which contains common protocol
Claus Gittinger <cg@exept.de>
parents: 3205
diff changeset
    14
UninterpretedBytes variableByteSubclass:#ByteArray
1002
c44e50c09986 care for 16bit subclass instances (in tuned methods)
Claus Gittinger <cg@exept.de>
parents: 931
diff changeset
    15
	instanceVariableNames:''
c44e50c09986 care for 16bit subclass instances (in tuned methods)
Claus Gittinger <cg@exept.de>
parents: 931
diff changeset
    16
	classVariableNames:''
c44e50c09986 care for 16bit subclass instances (in tuned methods)
Claus Gittinger <cg@exept.de>
parents: 931
diff changeset
    17
	poolDictionaries:''
c44e50c09986 care for 16bit subclass instances (in tuned methods)
Claus Gittinger <cg@exept.de>
parents: 931
diff changeset
    18
	category:'Collections-Arrayed'
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    19
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
    20
1883
d3fbf4b36be7 renamed #normalize to #compressed (ST_80 compat)
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
    21
!ByteArray class methodsFor:'documentation'!
88
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    22
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
    23
copyright
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
    24
"
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
    25
 COPYRIGHT (c) 1989 by Claus Gittinger
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
    26
	      All Rights Reserved
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
    27
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
    28
 This software is furnished under a license and may be used
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
    29
 only in accordance with the terms of that license and with the
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
    30
 inclusion of the above copyright notice.   This software may not
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
    31
 be provided or otherwise made available to, or used by, any
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
    32
 other person.  No title to or ownership of the software is
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
    33
 hereby transferred.
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
    34
"
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
    35
!
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
    36
88
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    37
documentation
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    38
"
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    39
    ByteArrays store integers in the range 0..255.
129
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
    40
    In contrast to normal arrays (which store pointers to their elements),
362
claus
parents: 359
diff changeset
    41
    byteArrays store the values in a dense & compact way. ByteArrays can
129
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
    42
    be used to hold the data for bitmaps, images and other bulk data.
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
    43
    ByteArrays are also used to store the bytecode-instructions of an
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
    44
    interpreted method and are used as superclass for Strings.
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
    45
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
    46
    ByteArrays can be used as literals i.e. you can enter ByteArray-constants
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
    47
    as #[ element1 element2 .... elementN] and also use byteArray constants
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
    48
    as elements in a constant array.
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
    49
    As in: #( #[1 1 1] #[2 2 2] #[3 3 3])
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
    50
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
    51
    If you have to communicate structure-data (in the C-sense) with external
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
    52
    programs/data-bases, see a companion class (Structure) in the goodies directory.
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
    53
    It allows the definition of subclasses of ByteArray, which transparently fetch
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
    54
    and store C-structure fields.
1266
cef9b3cd49df commentary
Claus Gittinger <cg@exept.de>
parents: 1261
diff changeset
    55
4062
4959de96b06f documentation
Claus Gittinger <cg@exept.de>
parents: 4050
diff changeset
    56
    [memory requirements:]
4661
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
    57
	OBJ-HEADER + size
4062
4959de96b06f documentation
Claus Gittinger <cg@exept.de>
parents: 4050
diff changeset
    58
2145
d243ffafeae3 more docu
Claus Gittinger <cg@exept.de>
parents: 1974
diff changeset
    59
    [warning:]
4661
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
    60
	read the warning about 'growing fixed size collection'
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
    61
	in ArrayedCollection's documentation
2145
d243ffafeae3 more docu
Claus Gittinger <cg@exept.de>
parents: 1974
diff changeset
    62
1290
15ba3221b89b documentation
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
    63
    [author:]
4661
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
    64
	Claus Gittinger
1290
15ba3221b89b documentation
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
    65
1266
cef9b3cd49df commentary
Claus Gittinger <cg@exept.de>
parents: 1261
diff changeset
    66
    [See also:]
4661
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
    67
	Array CharacterArray String
88
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    68
"
2
claus
parents: 1
diff changeset
    69
! !
claus
parents: 1
diff changeset
    70
1883
d3fbf4b36be7 renamed #normalize to #compressed (ST_80 compat)
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
    71
!ByteArray class methodsFor:'instance creation'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    72
a27a279701f8 Initial revision
claus
parents:
diff changeset
    73
uninitializedNew:anInteger
a27a279701f8 Initial revision
claus
parents:
diff changeset
    74
    "return a new instance of the receiver with uninitialized
a27a279701f8 Initial revision
claus
parents:
diff changeset
    75
     (i.e. undefined) contents. The indexed elements have any random
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
    76
     value. However, any named instance variables are still nilled.
75
2c61e28412de *** empty log message ***
claus
parents: 68
diff changeset
    77
     For use, when contents will be set anyway shortly after - this
2c61e28412de *** empty log message ***
claus
parents: 68
diff changeset
    78
     is a bit faster than the regular basicNew:, which clears the bytes.
2c61e28412de *** empty log message ***
claus
parents: 68
diff changeset
    79
     Of course, it only makes a difference for very big ByteArrays, such
2c61e28412de *** empty log message ***
claus
parents: 68
diff changeset
    80
     as used for images/bitmaps.
2c61e28412de *** empty log message ***
claus
parents: 68
diff changeset
    81
2c61e28412de *** empty log message ***
claus
parents: 68
diff changeset
    82
     Notice: if you want to port code using uninitializedNew: to another
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
    83
     smalltalk, you have to add an 'uninitializedNew: -> basicNew:'-calling
75
2c61e28412de *** empty log message ***
claus
parents: 68
diff changeset
    84
     method to the ByteArray class of the other smalltalk."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    85
a27a279701f8 Initial revision
claus
parents:
diff changeset
    86
%{  /* NOCONTEXT */
a27a279701f8 Initial revision
claus
parents:
diff changeset
    87
    OBJ newobj;
a27a279701f8 Initial revision
claus
parents:
diff changeset
    88
    INT instsize, nInstVars, nindexedinstvars;
a27a279701f8 Initial revision
claus
parents:
diff changeset
    89
    REGISTER OBJ *op;
a27a279701f8 Initial revision
claus
parents:
diff changeset
    90
249
claus
parents: 221
diff changeset
    91
    if (__isSmallInteger(anInteger)) {
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
    92
	nindexedinstvars = __intVal(anInteger);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
    93
	if (nindexedinstvars >= 0) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
    94
	    if (self == ByteArray) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
    95
		/*
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
    96
		 * the most common case
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
    97
		 */
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
    98
		instsize = OHDR_SIZE + nindexedinstvars;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
    99
		if (__CanDoQuickNew(instsize)) {        /* OBJECT ALLOCATION */
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   100
		    __qCheckedNew(newobj, instsize);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   101
		    __InstPtr(newobj)->o_class = self;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   102
		    __qSTORE(newobj, self);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   103
		    RETURN (newobj );
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   104
		}
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   105
	    } else {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   106
		/*
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   107
		 * Take care for subclasses like TwoByteString
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   108
		 */
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   109
		switch (__smallIntegerVal(__ClassInstPtr(self)->c_flags) & ARRAYMASK) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   110
		case BYTEARRAY:
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   111
		    break;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   112
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   113
		case WORDARRAY:
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   114
		case SWORDARRAY:
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   115
		    nindexedinstvars *= 2;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   116
		    break;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   117
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   118
		case LONGARRAY:
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   119
		case SLONGARRAY:
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   120
		    nindexedinstvars *= 4;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   121
		    break;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   122
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   123
		default:
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   124
		    /* don't know about this array type, delegate to super */
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   125
		    goto out;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   126
		}
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   127
	    }
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   128
	    nInstVars = __intVal(__ClassInstPtr(self)->c_ninstvars);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   129
	    instsize = OHDR_SIZE + __OBJS2BYTES__(nInstVars) + nindexedinstvars;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   130
	    __PROTECT_CONTEXT__
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   131
	    __qNew(newobj, instsize);   /* OBJECT ALLOCATION */
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   132
	    __UNPROTECT_CONTEXT__
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   133
	    if (newobj != nil) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   134
		__InstPtr(newobj)->o_class = self;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   135
		__qSTORE(newobj, self);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   136
		if (nInstVars) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   137
		    /*
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   138
		     * still have to nil out named instvars ...
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   139
		     */
788
e80f1c42b87b dont use memset4 if its undefined
Claus Gittinger <cg@exept.de>
parents: 628
diff changeset
   140
#if defined(memset4) && defined(FAST_OBJECT_MEMSET4)
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   141
		    memset4(__InstPtr(newobj)->i_instvars, nil, nInstVars);
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   142
#else
249
claus
parents: 221
diff changeset
   143
# if defined(FAST_MEMSET) && !defined(NEGATIVE_ADDRESSES)
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   144
		    /*
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   145
		     * knowing that nil is 0
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   146
		     */
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   147
		    memset(__InstPtr(newobj)->i_instvars, 0, instsize - OHDR_SIZE);
249
claus
parents: 221
diff changeset
   148
# else
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   149
		    op = __InstPtr(newobj)->i_instvars;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   150
		    while (nInstVars--)
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   151
			*op++ = nil;
249
claus
parents: 221
diff changeset
   152
# endif
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   153
#endif
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   154
		}
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   155
		RETURN ( newobj );
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   156
	    }
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   157
	}
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   158
    }
8159
ac6725a62e17 #uninitializedNew: - take care of WORDARRAYS etc.
Stefan Vogel <sv@exept.de>
parents: 8096
diff changeset
   159
out:;
5425
9a2bb3d1cc82 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5355
diff changeset
   160
%}.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   161
    ^ self basicNew:anInteger
a27a279701f8 Initial revision
claus
parents:
diff changeset
   162
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
   163
11502
64d1cb6c2062 changed #bitAt:
Claus Gittinger <cg@exept.de>
parents: 11265
diff changeset
   164
1883
d3fbf4b36be7 renamed #normalize to #compressed (ST_80 compat)
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
   165
!ByteArray class methodsFor:'queries'!
550
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   166
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   167
isBuiltInClass
1266
cef9b3cd49df commentary
Claus Gittinger <cg@exept.de>
parents: 1261
diff changeset
   168
    "return true if this class is known by the run-time-system.
cef9b3cd49df commentary
Claus Gittinger <cg@exept.de>
parents: 1261
diff changeset
   169
     Here, true is returned for myself, false for subclasses."
550
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   170
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   171
    ^ self == ByteArray
1266
cef9b3cd49df commentary
Claus Gittinger <cg@exept.de>
parents: 1261
diff changeset
   172
cef9b3cd49df commentary
Claus Gittinger <cg@exept.de>
parents: 1261
diff changeset
   173
    "Modified: 23.4.1996 / 15:56:25 / cg"
550
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   174
! !
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   175
10884
36e93aa5e790 +copyfromByteArray:
Claus Gittinger <cg@exept.de>
parents: 10821
diff changeset
   176
!ByteArray methodsFor:'Compatibility-Squeak'!
36e93aa5e790 +copyfromByteArray:
Claus Gittinger <cg@exept.de>
parents: 10821
diff changeset
   177
36e93aa5e790 +copyfromByteArray:
Claus Gittinger <cg@exept.de>
parents: 10821
diff changeset
   178
copyFromByteArray:aByteArray
36e93aa5e790 +copyfromByteArray:
Claus Gittinger <cg@exept.de>
parents: 10821
diff changeset
   179
    "copy as much as possible from aByteArray"
36e93aa5e790 +copyfromByteArray:
Claus Gittinger <cg@exept.de>
parents: 10821
diff changeset
   180
36e93aa5e790 +copyfromByteArray:
Claus Gittinger <cg@exept.de>
parents: 10821
diff changeset
   181
    self replaceFrom:1 to:(self size min:aByteArray size) with:aByteArray startingAt:1
36e93aa5e790 +copyfromByteArray:
Claus Gittinger <cg@exept.de>
parents: 10821
diff changeset
   182
! !
36e93aa5e790 +copyfromByteArray:
Claus Gittinger <cg@exept.de>
parents: 10821
diff changeset
   183
550
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   184
!ByteArray methodsFor:'accessing'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   185
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   186
basicAt:index
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   187
    "return the indexed instance variable with index, anInteger
1019
db8afc103e37 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1002
diff changeset
   188
     - redefined here to be slighly faster than the default in Object.
db8afc103e37 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1002
diff changeset
   189
     Q: is it worth the extra code ?"
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   190
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   191
%{  /* NOCONTEXT */
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   192
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   193
    REGISTER int indx;
1147
a83c86d02b59 can do low..hi index check with one compare
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   194
    REGISTER OBJ slf;
a83c86d02b59 can do low..hi index check with one compare
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   195
    REGISTER OBJ cls;
a83c86d02b59 can do low..hi index check with one compare
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   196
    REGISTER int nIndex;
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   197
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   198
    if (__isSmallInteger(index)) {
4661
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   199
	indx = __intVal(index) - 1;
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   200
	slf = self;
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   201
	if ((cls = __qClass(slf)) != @global(ByteArray)) {
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   202
	    if (((INT)__ClassInstPtr(cls)->c_flags & __MASKSMALLINT(ARRAYMASK))
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   203
		!= __MASKSMALLINT(BYTEARRAY)) {
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   204
		goto fail;
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   205
	    }
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   206
	    if (indx < 0) goto fail;
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   207
	    indx += __OBJS2BYTES__(__intVal(__ClassInstPtr(cls)->c_ninstvars));
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   208
	}
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   209
	nIndex = __byteArraySize(slf);
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   210
	if ((unsigned)indx < (unsigned)nIndex) {
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8908
diff changeset
   211
	    RETURN ( __mkSmallInteger((__ByteArrayInstPtr(slf)->ba_element[indx])) );
4661
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   212
	}
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   213
    }
1019
db8afc103e37 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1002
diff changeset
   214
  fail: ;
db8afc103e37 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1002
diff changeset
   215
%}.
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   216
    ^ super basicAt:index
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   217
!
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   218
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   219
basicAt:index put:value
1230
c349c4e9e594 commentary
Claus Gittinger <cg@exept.de>
parents: 1213
diff changeset
   220
    "set the indexed instance variable with index, anInteger to value.
c349c4e9e594 commentary
Claus Gittinger <cg@exept.de>
parents: 1213
diff changeset
   221
     Returns value (sigh).
1019
db8afc103e37 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1002
diff changeset
   222
     - redefined here to be slighly faster than the default in Object.
db8afc103e37 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1002
diff changeset
   223
     Q: is it worth the extra code ?"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   224
a27a279701f8 Initial revision
claus
parents:
diff changeset
   225
%{  /* NOCONTEXT */
a27a279701f8 Initial revision
claus
parents:
diff changeset
   226
a27a279701f8 Initial revision
claus
parents:
diff changeset
   227
    REGISTER int indx;
a27a279701f8 Initial revision
claus
parents:
diff changeset
   228
    int nIndex;
a27a279701f8 Initial revision
claus
parents:
diff changeset
   229
    int val;
1147
a83c86d02b59 can do low..hi index check with one compare
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   230
    REGISTER OBJ slf;
a83c86d02b59 can do low..hi index check with one compare
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   231
    REGISTER OBJ cls;
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   232
249
claus
parents: 221
diff changeset
   233
    if (__bothSmallInteger(index, value)) {
4661
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   234
	val = __intVal(value);
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   235
	if ((unsigned)(val) <= 0xFF /* i.e. (val >= 0) && (val <= 255) */) {
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   236
	    indx = __intVal(index) - 1;
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   237
	    slf = self;
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   238
	    if ((cls = __qClass(slf)) != @global(ByteArray)) {
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   239
		if (((INT)__ClassInstPtr(cls)->c_flags & __MASKSMALLINT(ARRAYMASK))
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   240
		    != __MASKSMALLINT(BYTEARRAY)) {
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   241
		    goto fail;
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   242
		}
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   243
		if (indx < 0) goto fail;
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   244
		indx += __OBJS2BYTES__(__intVal(__ClassInstPtr(cls)->c_ninstvars));
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   245
	    }
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   246
	    nIndex = __byteArraySize(slf);
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   247
	    if ((unsigned)indx < (unsigned)nIndex) {
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   248
		__ByteArrayInstPtr(slf)->ba_element[indx] = val;
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   249
		RETURN ( value );
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   250
	    }
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   251
	}
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   252
    }
1019
db8afc103e37 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1002
diff changeset
   253
  fail: ;
db8afc103e37 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1002
diff changeset
   254
%}.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   255
    ^ super basicAt:index put:value
1230
c349c4e9e594 commentary
Claus Gittinger <cg@exept.de>
parents: 1213
diff changeset
   256
c349c4e9e594 commentary
Claus Gittinger <cg@exept.de>
parents: 1213
diff changeset
   257
    "Modified: 19.4.1996 / 11:14:40 / cg"
2
claus
parents: 1
diff changeset
   258
!
claus
parents: 1
diff changeset
   259
4128
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   260
bitAt:index
11502
64d1cb6c2062 changed #bitAt:
Claus Gittinger <cg@exept.de>
parents: 11265
diff changeset
   261
    "return the bit at index (1 based index) as 0 or 1"
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   262
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   263
    |byteIndex bitIndex0 byte|
4128
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   264
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   265
%{  /* NOCONTEXT */
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   266
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   267
    REGISTER int indx;
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   268
    REGISTER int byte;
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   269
    int nIndex;
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   270
    REGISTER OBJ slf;
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   271
    REGISTER OBJ cls;
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   272
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   273
    if (__isSmallInteger(index)) {
11502
64d1cb6c2062 changed #bitAt:
Claus Gittinger <cg@exept.de>
parents: 11265
diff changeset
   274
        indx = __intVal(index) - 1;
64d1cb6c2062 changed #bitAt:
Claus Gittinger <cg@exept.de>
parents: 11265
diff changeset
   275
        slf = self;
64d1cb6c2062 changed #bitAt:
Claus Gittinger <cg@exept.de>
parents: 11265
diff changeset
   276
64d1cb6c2062 changed #bitAt:
Claus Gittinger <cg@exept.de>
parents: 11265
diff changeset
   277
        byte = indx / 8;
64d1cb6c2062 changed #bitAt:
Claus Gittinger <cg@exept.de>
parents: 11265
diff changeset
   278
        indx = indx % 8;
64d1cb6c2062 changed #bitAt:
Claus Gittinger <cg@exept.de>
parents: 11265
diff changeset
   279
64d1cb6c2062 changed #bitAt:
Claus Gittinger <cg@exept.de>
parents: 11265
diff changeset
   280
        if ((cls = __qClass(slf)) != @global(ByteArray)) {
64d1cb6c2062 changed #bitAt:
Claus Gittinger <cg@exept.de>
parents: 11265
diff changeset
   281
            if (indx < 0) goto badIndex;
64d1cb6c2062 changed #bitAt:
Claus Gittinger <cg@exept.de>
parents: 11265
diff changeset
   282
            byte += __OBJS2BYTES__(__intVal(__ClassInstPtr(cls)->c_ninstvars));
64d1cb6c2062 changed #bitAt:
Claus Gittinger <cg@exept.de>
parents: 11265
diff changeset
   283
        }
64d1cb6c2062 changed #bitAt:
Claus Gittinger <cg@exept.de>
parents: 11265
diff changeset
   284
        nIndex = __byteArraySize(slf);
64d1cb6c2062 changed #bitAt:
Claus Gittinger <cg@exept.de>
parents: 11265
diff changeset
   285
        if ((unsigned)byte < (unsigned)nIndex) {
64d1cb6c2062 changed #bitAt:
Claus Gittinger <cg@exept.de>
parents: 11265
diff changeset
   286
            RETURN ( __mkSmallInteger(((__ByteArrayInstPtr(slf)->ba_element[byte] & (1 << indx)) != 0)) );
64d1cb6c2062 changed #bitAt:
Claus Gittinger <cg@exept.de>
parents: 11265
diff changeset
   287
        }
4128
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   288
    }
4386
ecc88f1c1169 oops - subclasses with instVars allowed for index-less-than-1-access
Claus Gittinger <cg@exept.de>
parents: 4367
diff changeset
   289
badIndex: ;
4128
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   290
%}.
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   291
    byteIndex := ((index-1) // 8) + 1.
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   292
    bitIndex0 := ((index-1) \\ 8).
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   293
    byte := self at:byteIndex.
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   294
    ^  byte bitTest:(1 bitShift:bitIndex0).
4128
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   295
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   296
   "
11502
64d1cb6c2062 changed #bitAt:
Claus Gittinger <cg@exept.de>
parents: 11265
diff changeset
   297
     #[ 1 1 1 1 ] bitAt:9     
4128
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   298
     #[ 1 1 1 1 ] bitAt:11
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   299
     #[ 2 2 2 2 ] bitAt:10
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   300
   "
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   301
!
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   302
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   303
bitClearAt:index
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   304
    "clear the bit at index (index starts with 1)"
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   305
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   306
    |byteIndex bitIndex0 byte|
4128
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   307
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   308
%{  /* NOCONTEXT */
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   309
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   310
    REGISTER int indx;
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   311
    REGISTER int byte;
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   312
    int nIndex;
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   313
    REGISTER OBJ slf;
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   314
    REGISTER OBJ cls;
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   315
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   316
    if (0 /* __isSmallInteger(index) */) {
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   317
	indx = __intVal(index) - 1;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   318
	slf = self;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   319
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   320
	byte = indx / 8;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   321
	indx = indx % 8;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   322
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   323
	if ((cls = __qClass(slf)) != @global(ByteArray)) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   324
	    if (indx < 0) goto badIndex;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   325
	    byte += __OBJS2BYTES__(__intVal(__ClassInstPtr(cls)->c_ninstvars));
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   326
	}
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   327
	nIndex = __byteArraySize(slf);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   328
	if ((unsigned)byte < (unsigned)nIndex) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   329
	    __ByteArrayInstPtr(slf)->ba_element[byte] &= ~(1 << indx);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   330
	    RETURN (slf);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   331
	}
4128
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   332
    }
4386
ecc88f1c1169 oops - subclasses with instVars allowed for index-less-than-1-access
Claus Gittinger <cg@exept.de>
parents: 4367
diff changeset
   333
badIndex: ;
4128
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   334
%}.
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   335
    byteIndex := ((index-1) // 8) + 1.
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   336
    bitIndex0 := ((index-1) \\ 8).
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   337
    byte := self at:byteIndex.
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   338
    byte := byte bitClear:(1 bitShift:bitIndex0).
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   339
    self at:byteIndex put:byte.
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   340
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   341
    "
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   342
     #[0 0 0 0] copy bitClearAt:1
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   343
     #[0 0 0 0] copy bitClearAt:7
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   344
     #[0 0 0 0] copy bitClearAt:8
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   345
     #[0 0 0 0] copy bitClearAt:9
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   346
    "
4128
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   347
   "
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   348
     #[ 0 0 0 0 ] bitSetAt:1
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   349
     #[ 0 0 0 0 ] bitSetAt:4
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   350
     #[ 0 0 0 0 ] bitSetAt:8
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   351
     #[ 0 0 0 0 ] bitSetAt:9
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   352
     #[ 0 0 0 0 ] bitSetAt:10
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   353
     #[ 0 0 0 0 ] bitSetAt:11
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   354
   "
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   355
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   356
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   357
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   358
!
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   359
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   360
bitSetAt:index
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   361
    "set the bit at index (index starts with 1)"
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   362
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   363
    |byteIndex bitIndex0 byte|
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   364
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   365
%{  /* NOCONTEXT */
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   366
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   367
    REGISTER int indx;
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   368
    REGISTER int byte;
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   369
    int nIndex;
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   370
    REGISTER OBJ slf;
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   371
    REGISTER OBJ cls;
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   372
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   373
    if (0 /* __isSmallInteger(index) */) {
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   374
	indx = __intVal(index) - 1;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   375
	slf = self;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   376
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   377
	byte = indx / 8;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   378
	indx = indx % 8;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   379
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   380
	if ((cls = __qClass(slf)) != @global(ByteArray)) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   381
	    if (indx < 0) goto badIndex;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   382
	    byte += __OBJS2BYTES__(__intVal(__ClassInstPtr(cls)->c_ninstvars));
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   383
	}
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   384
	nIndex = __byteArraySize(slf);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   385
	if ((unsigned)byte < (unsigned)nIndex) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   386
	    __ByteArrayInstPtr(slf)->ba_element[byte] |= (1 << indx);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   387
	    RETURN (slf);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   388
	}
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   389
    }
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   390
badIndex: ;
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   391
%}.
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   392
    byteIndex := ((index-1) // 8) + 1.
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   393
    bitIndex0 := ((index-1) \\ 8).
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   394
    byte := self at:byteIndex.
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   395
    byte := byte bitOr:(1 bitShift:bitIndex0).
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   396
    self at:byteIndex put:byte.
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   397
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   398
    "
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   399
     #[0 0 0 0] copy bitSetAt:1
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   400
     #[0 0 0 0] copy bitSetAt:7
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   401
     #[0 0 0 0] copy bitSetAt:8
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   402
     #[0 0 0 0] copy bitSetAt:9
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   403
    "
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   404
   "
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   405
     #[ 0 0 0 0 ] bitSetAt:1
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   406
     #[ 0 0 0 0 ] bitSetAt:4
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   407
     #[ 0 0 0 0 ] bitSetAt:8
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   408
     #[ 0 0 0 0 ] bitSetAt:9
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   409
     #[ 0 0 0 0 ] bitSetAt:10
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   410
     #[ 0 0 0 0 ] bitSetAt:11
4128
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   411
   "
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   412
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   413
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   414
5554
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5549
diff changeset
   415
! !
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5549
diff changeset
   416
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5549
diff changeset
   417
!ByteArray methodsFor:'accessing-bytes'!
4128
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
   418
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 37
diff changeset
   419
byteAt:index
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   420
    "return the byte at index.
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   421
     For ByteArray, this is the same as basicAt:;
249
claus
parents: 221
diff changeset
   422
     however, for strings or symbols, this returns a numeric byteValue
claus
parents: 221
diff changeset
   423
     instead of a character."
claus
parents: 221
diff changeset
   424
claus
parents: 221
diff changeset
   425
%{  /* NOCONTEXT */
claus
parents: 221
diff changeset
   426
claus
parents: 221
diff changeset
   427
    REGISTER int indx;
claus
parents: 221
diff changeset
   428
    int nIndex;
1147
a83c86d02b59 can do low..hi index check with one compare
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   429
    REGISTER OBJ slf;
a83c86d02b59 can do low..hi index check with one compare
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   430
    REGISTER OBJ cls;
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 37
diff changeset
   431
249
claus
parents: 221
diff changeset
   432
    if (__isSmallInteger(index)) {
4661
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   433
	indx = __intVal(index) - 1;
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   434
	slf = self;
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   435
	if ((cls = __qClass(slf)) != @global(ByteArray)) {
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   436
	    if (indx < 0) goto badIndex;
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   437
	    indx += __OBJS2BYTES__(__intVal(__ClassInstPtr(cls)->c_ninstvars));
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   438
	}
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   439
	nIndex = __byteArraySize(slf);
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   440
	if ((unsigned)indx < (unsigned)nIndex) {
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8908
diff changeset
   441
	    RETURN ( __mkSmallInteger((__ByteArrayInstPtr(slf)->ba_element[indx])) );
4661
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   442
	}
249
claus
parents: 221
diff changeset
   443
    }
4386
ecc88f1c1169 oops - subclasses with instVars allowed for index-less-than-1-access
Claus Gittinger <cg@exept.de>
parents: 4367
diff changeset
   444
badIndex: ;
1147
a83c86d02b59 can do low..hi index check with one compare
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   445
%}.
249
claus
parents: 221
diff changeset
   446
    ^ (super basicAt:index) asInteger
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 37
diff changeset
   447
!
06dbdeeed4f9 *** empty log message ***
claus
parents: 37
diff changeset
   448
249
claus
parents: 221
diff changeset
   449
byteAt:index put:value
claus
parents: 221
diff changeset
   450
    "set the byte at index. For ByteArray, this is the same as basicAt:put:.
claus
parents: 221
diff changeset
   451
     However, for Strings, this expects a byteValue to be stored."
claus
parents: 221
diff changeset
   452
claus
parents: 221
diff changeset
   453
%{  /* NOCONTEXT */
claus
parents: 221
diff changeset
   454
claus
parents: 221
diff changeset
   455
    REGISTER int indx;
claus
parents: 221
diff changeset
   456
    int nIndex;
claus
parents: 221
diff changeset
   457
    int val;
1147
a83c86d02b59 can do low..hi index check with one compare
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   458
    REGISTER OBJ slf;
a83c86d02b59 can do low..hi index check with one compare
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   459
    REGISTER OBJ cls;
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 37
diff changeset
   460
249
claus
parents: 221
diff changeset
   461
    if (__bothSmallInteger(index, value)) {
4661
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   462
	val = __intVal(value);
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   463
	if ((unsigned)(val) <= 0xFF /* i.e. (val >= 0) && (val <= 255) */) {
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   464
	    indx = __intVal(index) - 1;
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   465
	    slf = self;
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   466
	    if ((cls = __qClass(slf)) != ByteArray) {
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   467
		if (indx < 0) goto badIndex;
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   468
		indx += __OBJS2BYTES__(__intVal(__ClassInstPtr(cls)->c_ninstvars));
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   469
	    }
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   470
	    nIndex = __byteArraySize(slf);
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   471
	    if ((unsigned)indx < (unsigned)nIndex) {
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   472
		__ByteArrayInstPtr(slf)->ba_element[indx] = val;
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   473
		RETURN ( value );
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   474
	    }
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
   475
	}
249
claus
parents: 221
diff changeset
   476
    }
4386
ecc88f1c1169 oops - subclasses with instVars allowed for index-less-than-1-access
Claus Gittinger <cg@exept.de>
parents: 4367
diff changeset
   477
badIndex: ;
1147
a83c86d02b59 can do low..hi index check with one compare
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   478
%}.
249
claus
parents: 221
diff changeset
   479
    ^ super basicAt:index put:value
5554
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5549
diff changeset
   480
! !
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5549
diff changeset
   481
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5549
diff changeset
   482
!ByteArray methodsFor:'accessing-longs'!
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 37
diff changeset
   483
2
claus
parents: 1
diff changeset
   484
doubleWordAt:index put:value
claus
parents: 1
diff changeset
   485
    "set the 4-bytes starting at index from the (unsigned) Integer value.
359
claus
parents: 343
diff changeset
   486
     The value should be in the range 0 to 16rFFFFFFFF
claus
parents: 343
diff changeset
   487
     (for negative values, the stored value is not defined).
claus
parents: 343
diff changeset
   488
     The value is stored in the machines natural byte order.
claus
parents: 343
diff changeset
   489
     Q: should it store signed values ? (see ByteArray signedDoubleWordAt:put:)"
claus
parents: 343
diff changeset
   490
claus
parents: 343
diff changeset
   491
    |t|
claus
parents: 343
diff changeset
   492
claus
parents: 343
diff changeset
   493
%{  /* NOCONTEXT */
claus
parents: 343
diff changeset
   494
claus
parents: 343
diff changeset
   495
    REGISTER int indx;
claus
parents: 343
diff changeset
   496
    int nIndex;
claus
parents: 343
diff changeset
   497
    union {
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   498
	unsigned char u_char[4];
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   499
	unsigned int u_uint;
359
claus
parents: 343
diff changeset
   500
    } val;
claus
parents: 343
diff changeset
   501
    OBJ cls;
2950
d5fae0fb75d7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2915
diff changeset
   502
    unsigned char *byteP;
359
claus
parents: 343
diff changeset
   503
claus
parents: 343
diff changeset
   504
    if (__isSmallInteger(index)) {
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   505
	if (__isSmallInteger(value)) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   506
	    val.u_uint = __intVal(value);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   507
	} else {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   508
	    val.u_uint = __longIntVal(value);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   509
	    if (val.u_uint == 0) goto error;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   510
	}
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   511
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   512
	indx = __intVal(index);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   513
	if (indx > 0) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   514
	    if ((cls = __qClass(self)) != @global(ByteArray))
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   515
		indx += __OBJS2BYTES__(__intVal(__ClassInstPtr(cls)->c_ninstvars));
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   516
	    nIndex = __qSize(self) - OHDR_SIZE;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   517
	    if ((indx+3) <= nIndex) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   518
		byteP = (unsigned char *)(__ByteArrayInstPtr(self)->ba_element) + indx - 1;
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8623
diff changeset
   519
#if defined(__i386__) || defined(UNALIGNED_FETCH_OK)
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   520
		((unsigned int *)byteP)[0] = val.u_uint;
3422
09c13ab58bb2 i386 can do unaligned accesses
Claus Gittinger <cg@exept.de>
parents: 3345
diff changeset
   521
#else
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   522
		if (((unsigned INT)byteP & 3) == 0) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   523
		    ((unsigned int *)byteP)[0] = val.u_uint;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   524
		} else {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   525
		    byteP[0] = val.u_char[0];
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   526
		    byteP[1] = val.u_char[1];
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   527
		    byteP[2] = val.u_char[2];
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   528
		    byteP[3] = val.u_char[3];
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   529
		}
3422
09c13ab58bb2 i386 can do unaligned accesses
Claus Gittinger <cg@exept.de>
parents: 3345
diff changeset
   530
#endif
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   531
		RETURN ( value );
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   532
	    }
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   533
	}
359
claus
parents: 343
diff changeset
   534
    }
claus
parents: 343
diff changeset
   535
  error: ;
claus
parents: 343
diff changeset
   536
%}.
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   537
    ^ super doubleWordAt:index put:value.
359
claus
parents: 343
diff changeset
   538
claus
parents: 343
diff changeset
   539
    "
claus
parents: 343
diff changeset
   540
     |b|
claus
parents: 343
diff changeset
   541
     b := ByteArray new:4.
claus
parents: 343
diff changeset
   542
     b doubleWordAt:1 put:16r04030201.
claus
parents: 343
diff changeset
   543
     b inspect
claus
parents: 343
diff changeset
   544
    "
claus
parents: 343
diff changeset
   545
!
claus
parents: 343
diff changeset
   546
claus
parents: 343
diff changeset
   547
doubleWordAt:index put:value MSB:msb
claus
parents: 343
diff changeset
   548
    "set the 4-bytes starting at index from the (unsigned) Integer value.
129
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
   549
     The value must be in the range 0 to 16rFFFFFFFF.
359
claus
parents: 343
diff changeset
   550
     The value is stored MSB-first if msb is true; LSB-first otherwise.
129
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
   551
     question: should it store signed values ? (see ByteArray signedDoubleWordAt:put:)"
2
claus
parents: 1
diff changeset
   552
claus
parents: 1
diff changeset
   553
    |t|
claus
parents: 1
diff changeset
   554
claus
parents: 1
diff changeset
   555
%{  /* NOCONTEXT */
claus
parents: 1
diff changeset
   556
claus
parents: 1
diff changeset
   557
    REGISTER int indx;
claus
parents: 1
diff changeset
   558
    int nIndex;
claus
parents: 1
diff changeset
   559
    int val;
249
claus
parents: 221
diff changeset
   560
    OBJ cls;
2950
d5fae0fb75d7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2915
diff changeset
   561
    unsigned char *byteP;
2
claus
parents: 1
diff changeset
   562
359
claus
parents: 343
diff changeset
   563
    if (__isSmallInteger(index)) {
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   564
	if (__isSmallInteger(value)) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   565
	    val = __intVal(value);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   566
	} else {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   567
	    val = __longIntVal(value);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   568
	    if (val == 0) goto error;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   569
	}
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   570
	indx = __intVal(index);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   571
	if (indx > 0) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   572
	    if ((cls = __qClass(self)) != @global(ByteArray))
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   573
		indx += __OBJS2BYTES__(__intVal(__ClassInstPtr(cls)->c_ninstvars));
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   574
	    nIndex = __qSize(self) - OHDR_SIZE;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   575
	    if ((indx+3) <= nIndex) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   576
		byteP = (unsigned char *)(__ByteArrayInstPtr(self)->ba_element) + indx - 1;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   577
		if (msb == true) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   578
		    /*
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   579
		     * most significant byte first (i.e sparc order)
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   580
		     */
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8623
diff changeset
   581
#if defined(__MSBFIRST__)
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   582
		    if (((INT)byteP & 3) == 0) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   583
			((int *)byteP)[0] = val;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   584
		    } else
4274
52fe89c37b2e tuned wordAt/doubleWordAt & atPut methods
Claus Gittinger <cg@exept.de>
parents: 4269
diff changeset
   585
#endif
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   586
		    {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   587
			byteP[3] = val & 0xFF;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   588
			val >>= 8;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   589
			byteP[2] = val & 0xFF;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   590
			val >>= 8;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   591
			byteP[1] = val & 0xFF;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   592
			val >>= 8;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   593
			byteP[0] = val & 0xFF;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   594
		    }
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   595
		} else {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   596
		    /*
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   597
		     * least significant byte first (i.e i386/alpha order)
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   598
		     */
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8623
diff changeset
   599
#if defined(__i386__) || (defined(__LSBFIRST__) && defined(UNALIGNED_FETCH_OK))
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   600
		    ((int *)byteP)[0] = val;
3425
f7faef75f0d8 tuned word & doubleWord access for i386
Claus Gittinger <cg@exept.de>
parents: 3422
diff changeset
   601
#else
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8623
diff changeset
   602
# if defined(__LSBFIRST__)
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   603
		    if (((unsigned INT)byteP & 3) == 0) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   604
			((int *)byteP)[0] = val;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   605
		    } else
4274
52fe89c37b2e tuned wordAt/doubleWordAt & atPut methods
Claus Gittinger <cg@exept.de>
parents: 4269
diff changeset
   606
# endif
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   607
		    {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   608
			byteP[0] = val & 0xFF;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   609
			val >>= 8;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   610
			byteP[1] = val & 0xFF;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   611
			val >>= 8;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   612
			byteP[2] = val & 0xFF;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   613
			val >>= 8;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   614
			byteP[3] = val & 0xFF;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   615
		    }
3425
f7faef75f0d8 tuned word & doubleWord access for i386
Claus Gittinger <cg@exept.de>
parents: 3422
diff changeset
   616
#endif
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   617
		}
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   618
		RETURN ( value );
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   619
	    }
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   620
	}
2
claus
parents: 1
diff changeset
   621
    }
359
claus
parents: 343
diff changeset
   622
  error: ;
claus
parents: 343
diff changeset
   623
%}.
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   624
    ^ super doubleWordAt:index put:value MSB:msb
129
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
   625
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
   626
    "
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
   627
     |b|
359
claus
parents: 343
diff changeset
   628
     b := ByteArray new:8.
claus
parents: 343
diff changeset
   629
     b doubleWordAt:1 put:16r04030201 MSB:true.
claus
parents: 343
diff changeset
   630
     b doubleWordAt:5 put:16r04030201 MSB:false.
129
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
   631
     b inspect
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
   632
    "
5554
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5549
diff changeset
   633
! !
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5549
diff changeset
   634
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5549
diff changeset
   635
!ByteArray methodsFor:'accessing-shorts'!
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 37
diff changeset
   636
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   637
wordAt:index
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   638
    "return the 2-bytes starting at index as an (unsigned) Integer.
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   639
     The value is retrieved in the machines natural byte order
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   640
     Question: should it be retrieve signed values ? (see ByteArray>>signedWordAt:)"
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   641
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   642
%{  /* NOCONTEXT */
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 37
diff changeset
   643
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   644
    REGISTER int indx;
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   645
    int nIndex;
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   646
    union {
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   647
	unsigned char u_char[2];
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   648
	unsigned short u_ushort;
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   649
    } val;
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   650
    OBJ cls;
2950
d5fae0fb75d7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2915
diff changeset
   651
    unsigned char *byteP;
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 37
diff changeset
   652
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   653
    if (__isSmallInteger(index)) {
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   654
	indx = __intVal(index);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   655
	if (indx > 0) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   656
	    if ((cls = __qClass(self)) != @global(ByteArray))
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   657
		indx += __OBJS2BYTES__(__intVal(__ClassInstPtr(cls)->c_ninstvars));
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   658
	    nIndex = __byteArraySize(self);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   659
	    if ((indx+1) <= nIndex) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   660
		byteP = (unsigned char *)(__ByteArrayInstPtr(self)->ba_element) + indx - 1;
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8623
diff changeset
   661
#if defined(__i386__) || defined(UNALIGNED_FETCH_OK)
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   662
		val.u_ushort = ((unsigned short *)byteP)[0];
3422
09c13ab58bb2 i386 can do unaligned accesses
Claus Gittinger <cg@exept.de>
parents: 3345
diff changeset
   663
#else
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   664
		/*
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   665
		 * mhmh to be measured:
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   666
		 *   the if may hurt more than the additional
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   667
		 *   memory cycles on some machines ...
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   668
		 */
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   669
		if (((INT)byteP & 1) == 0) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   670
		    /* aligned */
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   671
		    val.u_ushort = ((unsigned short *)byteP)[0];
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   672
		} else {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   673
		    val.u_char[0] = byteP[0];
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   674
		    val.u_char[1] = byteP[1];
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   675
		}
3422
09c13ab58bb2 i386 can do unaligned accesses
Claus Gittinger <cg@exept.de>
parents: 3345
diff changeset
   676
#endif
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8908
diff changeset
   677
		RETURN ( __mkSmallInteger((val.u_ushort)) );
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   678
	    }
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   679
	}
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   680
    }
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   681
%}.
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   682
    ^ super wordAt:index
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 37
diff changeset
   683
!
06dbdeeed4f9 *** empty log message ***
claus
parents: 37
diff changeset
   684
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   685
wordAt:index MSB:msb
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   686
    "return the 2-bytes starting at index as an (unsigned) Integer.
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   687
     The value is retrieved MSB (high 8 bits at lower index) if msb is true;
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   688
     LSB-first (i.e. low 8-bits at lower byte index) if its false.
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   689
     Question: should it be retrieve signed values ? (see ByteArray>>signedWordAt:)"
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   690
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   691
%{  /* NOCONTEXT */
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   692
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   693
    REGISTER int indx;
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   694
    int nIndex;
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   695
    int val;
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   696
    OBJ cls;
2950
d5fae0fb75d7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2915
diff changeset
   697
    unsigned char *byteP;
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 37
diff changeset
   698
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   699
    if (__isSmallInteger(index)) {
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   700
	indx = __intVal(index);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   701
	if (indx > 0) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   702
	    if ((cls = __qClass(self)) != @global(ByteArray))
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   703
		indx += __OBJS2BYTES__(__intVal(__ClassInstPtr(cls)->c_ninstvars));
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   704
	    nIndex = __byteArraySize(self);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   705
	    if ((indx+1) <= nIndex) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   706
		byteP = (unsigned char *)(__ByteArrayInstPtr(self)->ba_element) + indx - 1;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   707
		if (msb == true) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   708
		    /*
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   709
		     * most significant byte first (i.e sparc order)
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   710
		     */
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8623
diff changeset
   711
#if defined(__MSBFIRST__)
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   712
		    /*
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   713
		     * mhmh to be measured:
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   714
		     *   the if may hurt more than the additional
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   715
		     *   memory cycles on some machines ...
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   716
		     */
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   717
		    if (((INT)byteP & 1) == 0) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   718
			/* aligned */
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   719
			val = ((unsigned short *)byteP)[0];
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   720
		    } else
4274
52fe89c37b2e tuned wordAt/doubleWordAt & atPut methods
Claus Gittinger <cg@exept.de>
parents: 4269
diff changeset
   721
#endif
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   722
		    {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   723
			val = byteP[0];
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   724
			val = (val << 8) + byteP[1];
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   725
		    }
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   726
		} else {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   727
		    /*
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   728
		     * least significant byte first (i.e i386/alpha order)
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   729
		     */
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8623
diff changeset
   730
#if defined(__i386__) || (defined(__LSBFIRST__) && defined(UNALIGNED_FETCH_OK))
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   731
		    val = ((unsigned short *)byteP)[0];
3425
f7faef75f0d8 tuned word & doubleWord access for i386
Claus Gittinger <cg@exept.de>
parents: 3422
diff changeset
   732
#else
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8623
diff changeset
   733
# if defined(__LSBFIRST__)
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   734
		    /*
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   735
		     * mhmh to be measured:
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   736
		     *   the if may hurt more than the additional
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   737
		     *   memory cycles on some machines ...
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   738
		     */
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   739
		    if (((INT)byteP & 1) == 0) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   740
			/* aligned */
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   741
			val = ((unsigned short *)byteP)[0];
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   742
		    } else
4274
52fe89c37b2e tuned wordAt/doubleWordAt & atPut methods
Claus Gittinger <cg@exept.de>
parents: 4269
diff changeset
   743
# endif
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   744
		    {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   745
			val = byteP[1];
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   746
			val = (val << 8) + byteP[0];
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   747
		    }
3425
f7faef75f0d8 tuned word & doubleWord access for i386
Claus Gittinger <cg@exept.de>
parents: 3422
diff changeset
   748
#endif
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   749
		}
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8908
diff changeset
   750
		RETURN ( __mkSmallInteger(val) );
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   751
	    }
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   752
	}
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   753
    }
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   754
%}.
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   755
    ^ super wordAt:index MSB:msb
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   756
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 37
diff changeset
   757
!
06dbdeeed4f9 *** empty log message ***
claus
parents: 37
diff changeset
   758
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   759
wordAt:index put:value
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   760
    "set the 2-bytes starting at index from the (unsigned) Integer value.
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   761
     The stored value must be in the range 0 .. 16rFFFF.
4274
52fe89c37b2e tuned wordAt/doubleWordAt & atPut methods
Claus Gittinger <cg@exept.de>
parents: 4269
diff changeset
   762
     The value is stored in the machines natural byteorder,
52fe89c37b2e tuned wordAt/doubleWordAt & atPut methods
Claus Gittinger <cg@exept.de>
parents: 4269
diff changeset
   763
     i.e. this method should only be used to fill byteArrays which are
52fe89c37b2e tuned wordAt/doubleWordAt & atPut methods
Claus Gittinger <cg@exept.de>
parents: 4269
diff changeset
   764
     used internally (not passed to other machines).
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   765
     Question: should it accept signed values ? (see ByteArray>>signedWordAt:put:)"
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   766
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   767
%{  /* NOCONTEXT */
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 37
diff changeset
   768
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   769
    REGISTER int indx;
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   770
    int nIndex;
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   771
    int v;
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   772
    union {
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   773
	unsigned char u_char[2];
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   774
	unsigned short u_ushort;
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   775
    } val;
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   776
    OBJ cls;
2950
d5fae0fb75d7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2915
diff changeset
   777
    unsigned char *byteP;
129
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
   778
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   779
    if (__bothSmallInteger(index, value)) {
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   780
	indx = __intVal(index);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   781
	if (indx > 0) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   782
	    if ((cls = __qClass(self)) != @global(ByteArray))
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   783
		indx += __OBJS2BYTES__(__intVal(__ClassInstPtr(cls)->c_ninstvars));
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   784
	    nIndex = __byteArraySize(self);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   785
	    if ((indx+1) <= nIndex) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   786
		val.u_ushort = v = __intVal(value);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   787
		if ((v & ~0xFFFF) == 0 /* i.e. (val >= 0) && (val <= 0xFFFF) */) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   788
		    byteP = (unsigned char *)(__ByteArrayInstPtr(self)->ba_element) + indx - 1;
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8623
diff changeset
   789
#if defined(__i386__) || defined(UNALIGNED_FETCH_OK)
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   790
		    ((unsigned short *)byteP)[0] = val.u_ushort;
3422
09c13ab58bb2 i386 can do unaligned accesses
Claus Gittinger <cg@exept.de>
parents: 3345
diff changeset
   791
#else
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   792
		    /*
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   793
		     * mhmh to be measured:
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   794
		     *   the if may hurt more than the additional
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   795
		     *   memory cycles on some machines ...
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   796
		     */
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   797
		    if (((INT)byteP & 1) == 0) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   798
			/* aligned */
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   799
			((unsigned short *)byteP)[0] = val.u_ushort;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   800
		    } else {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   801
			byteP[0] = val.u_char[0];
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   802
			byteP[1] = val.u_char[1];
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   803
		    }
3422
09c13ab58bb2 i386 can do unaligned accesses
Claus Gittinger <cg@exept.de>
parents: 3345
diff changeset
   804
#endif
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   805
		    RETURN ( value );
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   806
		}
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   807
	    }
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   808
	}
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   809
    }
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   810
%}.
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   811
    ^ super wordAt:index put:value
129
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
   812
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
   813
    "
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   814
     |b|
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   815
     b := ByteArray new:4.
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   816
     b wordAt:1 put:16r0102.
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   817
     b wordAt:3 put:16r0304.
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   818
     b inspect
129
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
   819
    "
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
   820
!
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
   821
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   822
wordAt:index put:value MSB:msb
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   823
    "set the 2-bytes starting at index from the (unsigned) Integer value.
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   824
     The stored value must be in the range 0 .. 16rFFFF.
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   825
     The value is stored LSB-first (i.e. the low 8bits are stored at the
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   826
     lower index) if msb is false, MSB-first otherwise.
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   827
     Question: should it accept signed values ? (see ByteArray>>signedWordAt:put:)"
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   828
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   829
%{  /* NOCONTEXT */
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   830
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   831
    REGISTER int indx;
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   832
    int nIndex;
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   833
    int val;
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   834
    OBJ cls;
2950
d5fae0fb75d7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2915
diff changeset
   835
    unsigned char *byteP;
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   836
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   837
    if (__bothSmallInteger(index, value)) {
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   838
	indx = __intVal(index);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   839
	if (indx > 0) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   840
	    if ((cls = __qClass(self)) != @global(ByteArray))
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   841
		indx += __OBJS2BYTES__(__intVal(__ClassInstPtr(cls)->c_ninstvars));
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   842
	    nIndex = __byteArraySize(self);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   843
	    if ((indx+1) <= nIndex) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   844
		val = __intVal(value);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   845
		if ((val & ~0xFFFF) == 0 /* i.e. (val >= 0) && (val <= 0xFFFF) */) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   846
		    byteP = (unsigned char *)(__ByteArrayInstPtr(self)->ba_element) + indx - 1;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   847
		    if (msb == true) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   848
			/*
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   849
			 * most significant byte first (i.e sparc order)
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   850
			 */
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8623
diff changeset
   851
#if defined(__MSBFIRST__)
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   852
			/*
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   853
			 * mhmh to be measured:
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   854
			 *   the if may hurt more than the additional
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   855
			 *   memory cycles on some machines ...
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   856
			 */
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   857
			if (((INT)byteP & 1) == 0) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   858
			    /* aligned */
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   859
			    ((unsigned short *)byteP)[0] = val;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   860
			} else
4274
52fe89c37b2e tuned wordAt/doubleWordAt & atPut methods
Claus Gittinger <cg@exept.de>
parents: 4269
diff changeset
   861
#endif
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   862
			{
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   863
			    byteP[1] = val & 0xFF;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   864
			    byteP[0] = (val>>8) & 0xFF;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   865
			}
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   866
		    } else {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   867
			/*
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   868
			 * least significant byte first (i.e i386/alpha order)
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   869
			 */
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8623
diff changeset
   870
#if defined(__i386__) || (defined(__LSBFIRST__) && defined(UNALIGNED_FETCH_OK))
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   871
			((unsigned short *)byteP)[0] = val;
3425
f7faef75f0d8 tuned word & doubleWord access for i386
Claus Gittinger <cg@exept.de>
parents: 3422
diff changeset
   872
#else
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8623
diff changeset
   873
# if defined(__LSBFIRST__)
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   874
			/*
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   875
			 * mhmh to be measured:
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   876
			 *   the if may hurt more than the additional
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   877
			 *   memory cycles on some machines ...
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   878
			 */
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   879
			if (((INT)byteP & 1) == 0) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   880
			    /* aligned */
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   881
			    ((unsigned short *)byteP)[0] = val;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   882
			} else
4274
52fe89c37b2e tuned wordAt/doubleWordAt & atPut methods
Claus Gittinger <cg@exept.de>
parents: 4269
diff changeset
   883
# endif
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   884
			{
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   885
			    byteP[0] = val & 0xFF;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   886
			    byteP[1] = (val>>8) & 0xFF;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   887
			}
3425
f7faef75f0d8 tuned word & doubleWord access for i386
Claus Gittinger <cg@exept.de>
parents: 3422
diff changeset
   888
#endif
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   889
		    }
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   890
		    RETURN ( value );
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   891
		}
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   892
	    }
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   893
	}
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   894
    }
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   895
%}.
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
   896
    ^ super wordAt:index put:value MSB:msb
129
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
   897
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
   898
    "
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   899
     |b|
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   900
     b := ByteArray new:8.
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   901
     b wordAt:1 put:16r0102 MSB:false.
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   902
     b wordAt:3 put:16r0304 MSB:false.
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   903
     b wordAt:5 put:16r0102 MSB:true.
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
   904
     b wordAt:7 put:16r0304 MSB:true.
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
   905
     b inspect
129
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
   906
    "
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   907
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
   908
11502
64d1cb6c2062 changed #bitAt:
Claus Gittinger <cg@exept.de>
parents: 11265
diff changeset
   909
3345
6cbaa948a813 added tuned version of #=
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
   910
!ByteArray methodsFor:'comparing'!
6cbaa948a813 added tuned version of #=
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
   911
6cbaa948a813 added tuned version of #=
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
   912
= aByteArray
6cbaa948a813 added tuned version of #=
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
   913
    "Compare the receiver with the argument and return true if the
6cbaa948a813 added tuned version of #=
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
   914
     receiver is equal to the argument (i.e. has the same size and elements).
6cbaa948a813 added tuned version of #=
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
   915
     Otherwise return false."
6cbaa948a813 added tuned version of #=
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
   916
6cbaa948a813 added tuned version of #=
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
   917
%{  /* NOCONTEXT */
6cbaa948a813 added tuned version of #=
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
   918
6cbaa948a813 added tuned version of #=
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
   919
    int l1, l2;
6cbaa948a813 added tuned version of #=
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
   920
    REGISTER OBJ s = aByteArray;
6cbaa948a813 added tuned version of #=
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
   921
    unsigned char *cp1, *cp2;
6cbaa948a813 added tuned version of #=
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
   922
    OBJ cls;
6cbaa948a813 added tuned version of #=
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
   923
    OBJ myCls;
6cbaa948a813 added tuned version of #=
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
   924
    INT addrDelta;
6cbaa948a813 added tuned version of #=
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
   925
6cbaa948a813 added tuned version of #=
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
   926
    if (s == self) {
11509
a4de3b9de9ec tuned '='
Claus Gittinger <cg@exept.de>
parents: 11502
diff changeset
   927
        RETURN ( true );
3345
6cbaa948a813 added tuned version of #=
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
   928
    }
6cbaa948a813 added tuned version of #=
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
   929
    if (! __isNonNilObject(s)) {
11509
a4de3b9de9ec tuned '='
Claus Gittinger <cg@exept.de>
parents: 11502
diff changeset
   930
        RETURN ( false );
3345
6cbaa948a813 added tuned version of #=
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
   931
    }
6cbaa948a813 added tuned version of #=
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
   932
6cbaa948a813 added tuned version of #=
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
   933
    cls = __qClass(s);
6cbaa948a813 added tuned version of #=
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
   934
    myCls = __qClass(self);
6cbaa948a813 added tuned version of #=
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
   935
6cbaa948a813 added tuned version of #=
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
   936
    if (cls == myCls) {
11509
a4de3b9de9ec tuned '='
Claus Gittinger <cg@exept.de>
parents: 11502
diff changeset
   937
        l2 = __byteArraySize(s);
a4de3b9de9ec tuned '='
Claus Gittinger <cg@exept.de>
parents: 11502
diff changeset
   938
        l1 = __byteArraySize(self);
a4de3b9de9ec tuned '='
Claus Gittinger <cg@exept.de>
parents: 11502
diff changeset
   939
        if (l1 != l2) {
a4de3b9de9ec tuned '='
Claus Gittinger <cg@exept.de>
parents: 11502
diff changeset
   940
            RETURN ( false );
a4de3b9de9ec tuned '='
Claus Gittinger <cg@exept.de>
parents: 11502
diff changeset
   941
        }
a4de3b9de9ec tuned '='
Claus Gittinger <cg@exept.de>
parents: 11502
diff changeset
   942
a4de3b9de9ec tuned '='
Claus Gittinger <cg@exept.de>
parents: 11502
diff changeset
   943
        cp1 = __stringVal(self);
a4de3b9de9ec tuned '='
Claus Gittinger <cg@exept.de>
parents: 11502
diff changeset
   944
        cp2 = __stringVal(s);
a4de3b9de9ec tuned '='
Claus Gittinger <cg@exept.de>
parents: 11502
diff changeset
   945
a4de3b9de9ec tuned '='
Claus Gittinger <cg@exept.de>
parents: 11502
diff changeset
   946
        /*
a4de3b9de9ec tuned '='
Claus Gittinger <cg@exept.de>
parents: 11502
diff changeset
   947
         * care for instances of subclasses ...
a4de3b9de9ec tuned '='
Claus Gittinger <cg@exept.de>
parents: 11502
diff changeset
   948
         */
a4de3b9de9ec tuned '='
Claus Gittinger <cg@exept.de>
parents: 11502
diff changeset
   949
        if (cls != ByteArray) {
a4de3b9de9ec tuned '='
Claus Gittinger <cg@exept.de>
parents: 11502
diff changeset
   950
            int n = __OBJS2BYTES__(__intVal(__ClassInstPtr(cls)->c_ninstvars));
a4de3b9de9ec tuned '='
Claus Gittinger <cg@exept.de>
parents: 11502
diff changeset
   951
a4de3b9de9ec tuned '='
Claus Gittinger <cg@exept.de>
parents: 11502
diff changeset
   952
            cp2 += n;
a4de3b9de9ec tuned '='
Claus Gittinger <cg@exept.de>
parents: 11502
diff changeset
   953
            cp1 += n;
a4de3b9de9ec tuned '='
Claus Gittinger <cg@exept.de>
parents: 11502
diff changeset
   954
            l1 -= n;
a4de3b9de9ec tuned '='
Claus Gittinger <cg@exept.de>
parents: 11502
diff changeset
   955
        }
a4de3b9de9ec tuned '='
Claus Gittinger <cg@exept.de>
parents: 11502
diff changeset
   956
a4de3b9de9ec tuned '='
Claus Gittinger <cg@exept.de>
parents: 11502
diff changeset
   957
        addrDelta = cp2 - cp1;
a4de3b9de9ec tuned '='
Claus Gittinger <cg@exept.de>
parents: 11502
diff changeset
   958
        while (l1 >= (sizeof(unsigned INT) * 4)) {
a4de3b9de9ec tuned '='
Claus Gittinger <cg@exept.de>
parents: 11502
diff changeset
   959
            if (((unsigned INT *)cp1)[0] != ((unsigned INT *)(cp1+addrDelta))[0]) {
a4de3b9de9ec tuned '='
Claus Gittinger <cg@exept.de>
parents: 11502
diff changeset
   960
                RETURN (false);
a4de3b9de9ec tuned '='
Claus Gittinger <cg@exept.de>
parents: 11502
diff changeset
   961
            }
a4de3b9de9ec tuned '='
Claus Gittinger <cg@exept.de>
parents: 11502
diff changeset
   962
            if (((unsigned INT *)cp1)[1] != ((unsigned INT *)(cp1+addrDelta))[1]) {
a4de3b9de9ec tuned '='
Claus Gittinger <cg@exept.de>
parents: 11502
diff changeset
   963
                RETURN (false);
a4de3b9de9ec tuned '='
Claus Gittinger <cg@exept.de>
parents: 11502
diff changeset
   964
            }
a4de3b9de9ec tuned '='
Claus Gittinger <cg@exept.de>
parents: 11502
diff changeset
   965
            if (((unsigned INT *)cp1)[2] != ((unsigned INT *)(cp1+addrDelta))[2]) {
a4de3b9de9ec tuned '='
Claus Gittinger <cg@exept.de>
parents: 11502
diff changeset
   966
                RETURN (false);
a4de3b9de9ec tuned '='
Claus Gittinger <cg@exept.de>
parents: 11502
diff changeset
   967
            }
a4de3b9de9ec tuned '='
Claus Gittinger <cg@exept.de>
parents: 11502
diff changeset
   968
            if (((unsigned INT *)cp1)[3] != ((unsigned INT *)(cp1+addrDelta))[3]) {
a4de3b9de9ec tuned '='
Claus Gittinger <cg@exept.de>
parents: 11502
diff changeset
   969
                RETURN (false);
a4de3b9de9ec tuned '='
Claus Gittinger <cg@exept.de>
parents: 11502
diff changeset
   970
            }
a4de3b9de9ec tuned '='
Claus Gittinger <cg@exept.de>
parents: 11502
diff changeset
   971
            l1 -= sizeof(unsigned INT)*4;
a4de3b9de9ec tuned '='
Claus Gittinger <cg@exept.de>
parents: 11502
diff changeset
   972
            cp1 += sizeof(unsigned INT)*4;
a4de3b9de9ec tuned '='
Claus Gittinger <cg@exept.de>
parents: 11502
diff changeset
   973
        }
a4de3b9de9ec tuned '='
Claus Gittinger <cg@exept.de>
parents: 11502
diff changeset
   974
        while (l1 >= sizeof(unsigned INT)) {
a4de3b9de9ec tuned '='
Claus Gittinger <cg@exept.de>
parents: 11502
diff changeset
   975
            if (*((unsigned INT *)cp1) != *((unsigned INT *)(cp1+addrDelta))) {
a4de3b9de9ec tuned '='
Claus Gittinger <cg@exept.de>
parents: 11502
diff changeset
   976
                RETURN (false);
a4de3b9de9ec tuned '='
Claus Gittinger <cg@exept.de>
parents: 11502
diff changeset
   977
            }
a4de3b9de9ec tuned '='
Claus Gittinger <cg@exept.de>
parents: 11502
diff changeset
   978
            l1 -= sizeof(unsigned INT);
a4de3b9de9ec tuned '='
Claus Gittinger <cg@exept.de>
parents: 11502
diff changeset
   979
            cp1 += sizeof(unsigned INT);
a4de3b9de9ec tuned '='
Claus Gittinger <cg@exept.de>
parents: 11502
diff changeset
   980
        }
a4de3b9de9ec tuned '='
Claus Gittinger <cg@exept.de>
parents: 11502
diff changeset
   981
        if (l1 >= sizeof(unsigned short)) {
a4de3b9de9ec tuned '='
Claus Gittinger <cg@exept.de>
parents: 11502
diff changeset
   982
            if (*((unsigned short *)cp1) != *((unsigned short *)(cp1+addrDelta))) {
a4de3b9de9ec tuned '='
Claus Gittinger <cg@exept.de>
parents: 11502
diff changeset
   983
                RETURN (false);
a4de3b9de9ec tuned '='
Claus Gittinger <cg@exept.de>
parents: 11502
diff changeset
   984
            }
a4de3b9de9ec tuned '='
Claus Gittinger <cg@exept.de>
parents: 11502
diff changeset
   985
            l1 -= sizeof(unsigned short);
a4de3b9de9ec tuned '='
Claus Gittinger <cg@exept.de>
parents: 11502
diff changeset
   986
            cp1 += sizeof(unsigned short);
a4de3b9de9ec tuned '='
Claus Gittinger <cg@exept.de>
parents: 11502
diff changeset
   987
        }
a4de3b9de9ec tuned '='
Claus Gittinger <cg@exept.de>
parents: 11502
diff changeset
   988
        while (l1) {
a4de3b9de9ec tuned '='
Claus Gittinger <cg@exept.de>
parents: 11502
diff changeset
   989
            if (*cp1 != *(cp1+addrDelta)) {
a4de3b9de9ec tuned '='
Claus Gittinger <cg@exept.de>
parents: 11502
diff changeset
   990
                RETURN (false);
a4de3b9de9ec tuned '='
Claus Gittinger <cg@exept.de>
parents: 11502
diff changeset
   991
            }
a4de3b9de9ec tuned '='
Claus Gittinger <cg@exept.de>
parents: 11502
diff changeset
   992
            l1--;
a4de3b9de9ec tuned '='
Claus Gittinger <cg@exept.de>
parents: 11502
diff changeset
   993
            cp1++;
a4de3b9de9ec tuned '='
Claus Gittinger <cg@exept.de>
parents: 11502
diff changeset
   994
        }
a4de3b9de9ec tuned '='
Claus Gittinger <cg@exept.de>
parents: 11502
diff changeset
   995
a4de3b9de9ec tuned '='
Claus Gittinger <cg@exept.de>
parents: 11502
diff changeset
   996
        RETURN (true);
3345
6cbaa948a813 added tuned version of #=
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
   997
    }
6cbaa948a813 added tuned version of #=
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
   998
%}.
6cbaa948a813 added tuned version of #=
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
   999
    ^ super = aByteArray
6cbaa948a813 added tuned version of #=
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
  1000
! !
6cbaa948a813 added tuned version of #=
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
  1001
12
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
  1002
!ByteArray methodsFor:'converting'!
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
  1003
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
  1004
asByteArray
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
  1005
    "return the receiver as a byteArray"
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
  1006
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
  1007
    "could be an instance of a subclass..."
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
  1008
    self class == ByteArray ifTrue:[
155
edd7fc34e104 *** empty log message ***
claus
parents: 148
diff changeset
  1009
	^ self
12
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
  1010
    ].
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
  1011
    ^ super asByteArray
129
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  1012
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  1013
    "
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1014
     'hello world' asByteArray
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1015
     #(1 2 3 4 5 6 7) asByteArray
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1016
     #(1 2 256 4 5 6 7) asByteArray
129
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  1017
    "
4778
df6189d4909e literalArrayEncoding is self.
Stefan Vogel <sv@exept.de>
parents: 4777
diff changeset
  1018
!
df6189d4909e literalArrayEncoding is self.
Stefan Vogel <sv@exept.de>
parents: 4777
diff changeset
  1019
7117
9c008ffeeb75 comments
Claus Gittinger <cg@exept.de>
parents: 7049
diff changeset
  1020
asPackedString
9c008ffeeb75 comments
Claus Gittinger <cg@exept.de>
parents: 7049
diff changeset
  1021
    "ST-80 compatibility: encode the receiver into an ascii String
9c008ffeeb75 comments
Claus Gittinger <cg@exept.de>
parents: 7049
diff changeset
  1022
     with 6bits encoded per character. Each group of 6 bits is encoded
9c008ffeeb75 comments
Claus Gittinger <cg@exept.de>
parents: 7049
diff changeset
  1023
     as a corresponding character (32+value) and the resulting string
9c008ffeeb75 comments
Claus Gittinger <cg@exept.de>
parents: 7049
diff changeset
  1024
     is returned. The resulting string is always a multiple of 4 (since
9c008ffeeb75 comments
Claus Gittinger <cg@exept.de>
parents: 7049
diff changeset
  1025
     24 is the lcm of 6 and 8) and the number of remaining characters is
9c008ffeeb75 comments
Claus Gittinger <cg@exept.de>
parents: 7049
diff changeset
  1026
     encoded in the last character.
9c008ffeeb75 comments
Claus Gittinger <cg@exept.de>
parents: 7049
diff changeset
  1027
     ST-80 uses this encoding for Images ...
9c008ffeeb75 comments
Claus Gittinger <cg@exept.de>
parents: 7049
diff changeset
  1028
     This is very similar (but not equal) to the algorithm used in RFC1421.
9c008ffeeb75 comments
Claus Gittinger <cg@exept.de>
parents: 7049
diff changeset
  1029
     PS: I dont like it ;-)"
9c008ffeeb75 comments
Claus Gittinger <cg@exept.de>
parents: 7049
diff changeset
  1030
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1031
    |outStream
7117
9c008ffeeb75 comments
Claus Gittinger <cg@exept.de>
parents: 7049
diff changeset
  1032
     index     "{ Class:SmallInteger}"
9c008ffeeb75 comments
Claus Gittinger <cg@exept.de>
parents: 7049
diff changeset
  1033
     nextIndex "{ Class:SmallInteger}"
9c008ffeeb75 comments
Claus Gittinger <cg@exept.de>
parents: 7049
diff changeset
  1034
     stop      "{ Class:SmallInteger}"
9c008ffeeb75 comments
Claus Gittinger <cg@exept.de>
parents: 7049
diff changeset
  1035
     n         "{ Class:SmallInteger}"
9c008ffeeb75 comments
Claus Gittinger <cg@exept.de>
parents: 7049
diff changeset
  1036
     mod       "{ Class:SmallInteger}"
9c008ffeeb75 comments
Claus Gittinger <cg@exept.de>
parents: 7049
diff changeset
  1037
     cpl|
9c008ffeeb75 comments
Claus Gittinger <cg@exept.de>
parents: 7049
diff changeset
  1038
9c008ffeeb75 comments
Claus Gittinger <cg@exept.de>
parents: 7049
diff changeset
  1039
    outStream := WriteStream on:String new.
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1040
    index := 1.
7117
9c008ffeeb75 comments
Claus Gittinger <cg@exept.de>
parents: 7049
diff changeset
  1041
    stop := self size.
9c008ffeeb75 comments
Claus Gittinger <cg@exept.de>
parents: 7049
diff changeset
  1042
9c008ffeeb75 comments
Claus Gittinger <cg@exept.de>
parents: 7049
diff changeset
  1043
    stop > 100 ifTrue:[
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1044
	"/ cg:
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1045
	"/ initial lineBreak
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1046
	outStream cr.
7117
9c008ffeeb75 comments
Claus Gittinger <cg@exept.de>
parents: 7049
diff changeset
  1047
    ].
9c008ffeeb75 comments
Claus Gittinger <cg@exept.de>
parents: 7049
diff changeset
  1048
    cpl := 0.
9c008ffeeb75 comments
Claus Gittinger <cg@exept.de>
parents: 7049
diff changeset
  1049
9c008ffeeb75 comments
Claus Gittinger <cg@exept.de>
parents: 7049
diff changeset
  1050
    [index <= stop] whileTrue:[
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1051
	"take 3 source bytes"
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1052
	n := (self at:index) bitShift:16.
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1053
	(index < stop) ifTrue:[
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1054
	    nextIndex := index + 1.
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1055
	    n := n bitOr:((self at:nextIndex) bitShift:8).
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1056
	    (nextIndex < stop) ifTrue:[
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1057
		n := n bitOr:(self at:(index + 2)).
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1058
	    ].
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1059
	].
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1060
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1061
	"took me a while to find that one out ..."
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1062
	n := n bitXor:16r820820.
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1063
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1064
	outStream nextPut:(Character value:(n bitShift:-18) + 32).
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1065
	outStream nextPut:(Character value:((n bitShift:-12) bitAnd:16r3F) + 32).
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1066
	outStream nextPut:(Character value:((n bitShift:-6) bitAnd:16r3F) + 32).
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1067
	outStream nextPut:(Character value:(n bitAnd:16r3F) + 32).
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1068
	index := index + 3.
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1069
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1070
	"/ cg:
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1071
	"/ lineBreak after every 120 characters
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1072
	"/ fromPackedString will ignore those
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1073
	cpl := cpl + 4.
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1074
	cpl >= 120 ifTrue:[
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1075
	    outStream cr.
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1076
	    cpl := 0.
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1077
	].
7117
9c008ffeeb75 comments
Claus Gittinger <cg@exept.de>
parents: 7049
diff changeset
  1078
    ].
9c008ffeeb75 comments
Claus Gittinger <cg@exept.de>
parents: 7049
diff changeset
  1079
    (mod := stop \\ 3) ~~ 0 ifTrue:[
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1080
	outStream backStep.
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1081
	outStream nextPut:(Character value:(mod + 96)).
7117
9c008ffeeb75 comments
Claus Gittinger <cg@exept.de>
parents: 7049
diff changeset
  1082
    ].
9c008ffeeb75 comments
Claus Gittinger <cg@exept.de>
parents: 7049
diff changeset
  1083
    ^ outStream contents
9c008ffeeb75 comments
Claus Gittinger <cg@exept.de>
parents: 7049
diff changeset
  1084
9c008ffeeb75 comments
Claus Gittinger <cg@exept.de>
parents: 7049
diff changeset
  1085
    "Modified: 12.11.1996 / 15:45:02 / cg"
9c008ffeeb75 comments
Claus Gittinger <cg@exept.de>
parents: 7049
diff changeset
  1086
!
9c008ffeeb75 comments
Claus Gittinger <cg@exept.de>
parents: 7049
diff changeset
  1087
5900
3c3aba588e94 Speedup ByteArray>>asString
Stefan Vogel <sv@exept.de>
parents: 5554
diff changeset
  1088
asString
3c3aba588e94 Speedup ByteArray>>asString
Stefan Vogel <sv@exept.de>
parents: 5554
diff changeset
  1089
    "speed up string conversions"
3c3aba588e94 Speedup ByteArray>>asString
Stefan Vogel <sv@exept.de>
parents: 5554
diff changeset
  1090
3c3aba588e94 Speedup ByteArray>>asString
Stefan Vogel <sv@exept.de>
parents: 5554
diff changeset
  1091
    |size|
3c3aba588e94 Speedup ByteArray>>asString
Stefan Vogel <sv@exept.de>
parents: 5554
diff changeset
  1092
5901
Stefan Vogel <sv@exept.de>
parents: 5900
diff changeset
  1093
    self class == ByteArray ifTrue:[
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1094
	size := self size.
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1095
	^ (String uninitializedNew:size) replaceBytesFrom:1 to:size with:self startingAt:1.
5901
Stefan Vogel <sv@exept.de>
parents: 5900
diff changeset
  1096
    ].
Stefan Vogel <sv@exept.de>
parents: 5900
diff changeset
  1097
    ^ super asString
5900
3c3aba588e94 Speedup ByteArray>>asString
Stefan Vogel <sv@exept.de>
parents: 5554
diff changeset
  1098
3c3aba588e94 Speedup ByteArray>>asString
Stefan Vogel <sv@exept.de>
parents: 5554
diff changeset
  1099
    "
3c3aba588e94 Speedup ByteArray>>asString
Stefan Vogel <sv@exept.de>
parents: 5554
diff changeset
  1100
      #[60 61 62 63] asString
3c3aba588e94 Speedup ByteArray>>asString
Stefan Vogel <sv@exept.de>
parents: 5554
diff changeset
  1101
    "
3c3aba588e94 Speedup ByteArray>>asString
Stefan Vogel <sv@exept.de>
parents: 5554
diff changeset
  1102
!
3c3aba588e94 Speedup ByteArray>>asString
Stefan Vogel <sv@exept.de>
parents: 5554
diff changeset
  1103
4807
Claus Gittinger <cg@exept.de>
parents: 4783
diff changeset
  1104
decodeAsLiteralArray
Claus Gittinger <cg@exept.de>
parents: 4783
diff changeset
  1105
    "given a literalEncoding in the receiver,
Claus Gittinger <cg@exept.de>
parents: 4783
diff changeset
  1106
     create & return the corresponding object.
Claus Gittinger <cg@exept.de>
parents: 4783
diff changeset
  1107
     The inverse operation to #literalArrayEncoding."
Claus Gittinger <cg@exept.de>
parents: 4783
diff changeset
  1108
Claus Gittinger <cg@exept.de>
parents: 4783
diff changeset
  1109
    ^ self
Claus Gittinger <cg@exept.de>
parents: 4783
diff changeset
  1110
Claus Gittinger <cg@exept.de>
parents: 4783
diff changeset
  1111
!
Claus Gittinger <cg@exept.de>
parents: 4783
diff changeset
  1112
4778
df6189d4909e literalArrayEncoding is self.
Stefan Vogel <sv@exept.de>
parents: 4777
diff changeset
  1113
literalArrayEncoding
df6189d4909e literalArrayEncoding is self.
Stefan Vogel <sv@exept.de>
parents: 4777
diff changeset
  1114
    "encode myself as an array literal, from which a copy of the receiver
df6189d4909e literalArrayEncoding is self.
Stefan Vogel <sv@exept.de>
parents: 4777
diff changeset
  1115
     can be reconstructed with #decodeAsLiteralArray."
df6189d4909e literalArrayEncoding is self.
Stefan Vogel <sv@exept.de>
parents: 4777
diff changeset
  1116
11063
ca134030dff4 changed #literalArrayEncoding: self is onlz ok for realByteArrays
fm
parents: 11010
diff changeset
  1117
    self class == ByteArray ifTrue:[
ca134030dff4 changed #literalArrayEncoding: self is onlz ok for realByteArrays
fm
parents: 11010
diff changeset
  1118
        ^ self
ca134030dff4 changed #literalArrayEncoding: self is onlz ok for realByteArrays
fm
parents: 11010
diff changeset
  1119
    ].
ca134030dff4 changed #literalArrayEncoding: self is onlz ok for realByteArrays
fm
parents: 11010
diff changeset
  1120
    ^ super literalArrayEncoding
4778
df6189d4909e literalArrayEncoding is self.
Stefan Vogel <sv@exept.de>
parents: 4777
diff changeset
  1121
df6189d4909e literalArrayEncoding is self.
Stefan Vogel <sv@exept.de>
parents: 4777
diff changeset
  1122
    "
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1123
     #[1 2 3] literalArrayEncoding
4778
df6189d4909e literalArrayEncoding is self.
Stefan Vogel <sv@exept.de>
parents: 4777
diff changeset
  1124
    "
12
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
  1125
! !
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
  1126
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1127
!ByteArray methodsFor:'copying'!
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1128
5024
abff1ede34d1 faster copy/shallowCopy
Claus Gittinger <cg@exept.de>
parents: 5019
diff changeset
  1129
copy
abff1ede34d1 faster copy/shallowCopy
Claus Gittinger <cg@exept.de>
parents: 5019
diff changeset
  1130
    "redefined for a bit more speed"
abff1ede34d1 faster copy/shallowCopy
Claus Gittinger <cg@exept.de>
parents: 5019
diff changeset
  1131
abff1ede34d1 faster copy/shallowCopy
Claus Gittinger <cg@exept.de>
parents: 5019
diff changeset
  1132
    self class == ByteArray ifTrue:[
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1133
	^ self copyFrom:1 to:(self size)
5024
abff1ede34d1 faster copy/shallowCopy
Claus Gittinger <cg@exept.de>
parents: 5019
diff changeset
  1134
    ].
abff1ede34d1 faster copy/shallowCopy
Claus Gittinger <cg@exept.de>
parents: 5019
diff changeset
  1135
    ^ super copy
abff1ede34d1 faster copy/shallowCopy
Claus Gittinger <cg@exept.de>
parents: 5019
diff changeset
  1136
!
abff1ede34d1 faster copy/shallowCopy
Claus Gittinger <cg@exept.de>
parents: 5019
diff changeset
  1137
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1138
copyFrom:start to:stop
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1139
    "return the subcollection starting at index start, anInteger and ending
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1140
     at stop, anInteger.
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1141
     - reimplemented here for speed"
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1142
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1143
%{  /* NOCONTEXT */
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1144
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1145
    REGISTER unsigned char *srcp;
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1146
    REGISTER unsigned char *dstp;
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1147
    REGISTER int count;
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1148
    int len, index1, index2, sz;
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1149
    OBJ newByteArray;
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1150
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1151
    if (__isByteArray(self)
249
claus
parents: 221
diff changeset
  1152
     && __bothSmallInteger(start, stop)) {
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1153
	len = __byteArraySize(self);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1154
	index1 = __intVal(start);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1155
	index2 = __intVal(stop);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1156
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1157
	if ((index1 <= index2) && (index1 > 0)) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1158
	    if (index2 <= len) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1159
		count = index2 - index1 + 1;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1160
		__PROTECT_CONTEXT__
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1161
		sz = OHDR_SIZE + count;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1162
		__qNew(newByteArray, sz);       /* OBJECT ALLOCATION */
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1163
		__UNPROTECT_CONTEXT__
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1164
		if (newByteArray != nil) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1165
		    __InstPtr(newByteArray)->o_class = ByteArray;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1166
		    __qSTORE(newByteArray, ByteArray);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1167
		    dstp = __ByteArrayInstPtr(newByteArray)->ba_element;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1168
		    srcp = __ByteArrayInstPtr(self)->ba_element + index1 - 1;
2648
a544a64491a7 better use of bcopy4
Claus Gittinger <cg@exept.de>
parents: 2585
diff changeset
  1169
a544a64491a7 better use of bcopy4
Claus Gittinger <cg@exept.de>
parents: 2585
diff changeset
  1170
#ifdef bcopy4
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1171
		    if (((unsigned INT)srcp & 3) == ((unsigned INT)dstp & 3)) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1172
			int nW;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1173
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1174
			/* copy unaligned part */
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1175
			while (count && (((unsigned INT)srcp & 3) != 0)) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1176
			    *dstp++ = *srcp++;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1177
			    count--;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1178
			}
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1179
			if (count) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1180
			    /* copy aligned part */
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1181
			    nW = count >> 2;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1182
			    if (count & 3) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1183
				nW++;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1184
			    }
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1185
			    bcopy4(srcp, dstp, nW);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1186
			}
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1187
			RETURN ( newByteArray );
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1188
		    }
2648
a544a64491a7 better use of bcopy4
Claus Gittinger <cg@exept.de>
parents: 2585
diff changeset
  1189
#endif /* bcopy4 */
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8623
diff changeset
  1190
#if __POINTER_SIZE__ == 8
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1191
		    if (((unsigned INT)srcp & 7) == ((unsigned INT)dstp & 7)) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1192
			int nW;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1193
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1194
			/* copy unaligned part */
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1195
			while (count && (((unsigned INT)srcp & 7) != 0)) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1196
			    *dstp++ = *srcp++;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1197
			    count--;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1198
			}
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1199
			/* copy aligned part */
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1200
			while (count >= 8) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1201
			    ((unsigned INT *)dstp)[0] = ((unsigned INT *)srcp)[0];
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1202
			    dstp += 8;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1203
			    srcp += 8;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1204
			    count -= 8;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1205
			}
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1206
			/* copy remaining part */
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1207
			while (count) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1208
			    *dstp++ = *srcp++;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1209
			    count--;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1210
			}
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1211
			RETURN ( newByteArray );
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1212
		    }
4943
8e51d34f2b3a slightly tuned #copyFrom:to: and #replaceBytesFrom:to:with:startingAt:
Claus Gittinger <cg@exept.de>
parents: 4941
diff changeset
  1213
#endif /* bcopy4 */
2648
a544a64491a7 better use of bcopy4
Claus Gittinger <cg@exept.de>
parents: 2585
diff changeset
  1214
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1215
#ifdef FAST_MEMCPY
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1216
		    bcopy(srcp, dstp, count);
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1217
#else
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1218
		    while (count--) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1219
			*dstp++ = *srcp++;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1220
		    }
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1221
#endif
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1222
		    RETURN ( newByteArray );
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1223
		}
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1224
	    }
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1225
	}
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1226
    }
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1227
%}.
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1228
    "
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1229
     fall back in case of non-integer index or out-of-bound index;
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1230
     will eventually lead to an out-of-bound signal raise
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1231
    "
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1232
    ^ super copyFrom:start to:stop
4941
7674fdddb1db better byteArray copy on Intel
Claus Gittinger <cg@exept.de>
parents: 4931
diff changeset
  1233
7674fdddb1db better byteArray copy on Intel
Claus Gittinger <cg@exept.de>
parents: 4931
diff changeset
  1234
    "
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1235
     #[1 2 3 4 5 6 7 8 9 10] copyFrom:1 to:10
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1236
     #[1 2 3 4 5 6 7 8 9 10] copyFrom:5 to:7
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1237
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1238
     #[1 2 3 4 5 6 7 8 9 10] copyFrom:5 to:11
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1239
     #[1 2 3 4 5 6 7 8 9 10] copyFrom:0 to:10
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1240
     #[1 2 3 4 5 6 7 8 9 10] copyFrom:0 to:9
4941
7674fdddb1db better byteArray copy on Intel
Claus Gittinger <cg@exept.de>
parents: 4931
diff changeset
  1241
    "
3325
e958a341f41d Add #from: and #with:form:to class methods.
Stefan Vogel <sv@exept.de>
parents: 3234
diff changeset
  1242
!
e958a341f41d Add #from: and #with:form:to class methods.
Stefan Vogel <sv@exept.de>
parents: 3234
diff changeset
  1243
5024
abff1ede34d1 faster copy/shallowCopy
Claus Gittinger <cg@exept.de>
parents: 5019
diff changeset
  1244
shallowCopy
abff1ede34d1 faster copy/shallowCopy
Claus Gittinger <cg@exept.de>
parents: 5019
diff changeset
  1245
    "redefined for a bit more speed"
abff1ede34d1 faster copy/shallowCopy
Claus Gittinger <cg@exept.de>
parents: 5019
diff changeset
  1246
abff1ede34d1 faster copy/shallowCopy
Claus Gittinger <cg@exept.de>
parents: 5019
diff changeset
  1247
    self class == ByteArray ifTrue:[
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1248
	^ self copyFrom:1 to:(self size)
5024
abff1ede34d1 faster copy/shallowCopy
Claus Gittinger <cg@exept.de>
parents: 5019
diff changeset
  1249
    ].
abff1ede34d1 faster copy/shallowCopy
Claus Gittinger <cg@exept.de>
parents: 5019
diff changeset
  1250
    ^ super shallowCopy
abff1ede34d1 faster copy/shallowCopy
Claus Gittinger <cg@exept.de>
parents: 5019
diff changeset
  1251
!
abff1ede34d1 faster copy/shallowCopy
Claus Gittinger <cg@exept.de>
parents: 5019
diff changeset
  1252
3325
e958a341f41d Add #from: and #with:form:to class methods.
Stefan Vogel <sv@exept.de>
parents: 3234
diff changeset
  1253
symbolFrom:start to:stop
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1254
    "make a symbol from the characters of the subcollection starting
3325
e958a341f41d Add #from: and #with:form:to class methods.
Stefan Vogel <sv@exept.de>
parents: 3234
diff changeset
  1255
     at index start, anInteger and ending at stop, anInteger.
e958a341f41d Add #from: and #with:form:to class methods.
Stefan Vogel <sv@exept.de>
parents: 3234
diff changeset
  1256
     This saves us garbage and character copying."
e958a341f41d Add #from: and #with:form:to class methods.
Stefan Vogel <sv@exept.de>
parents: 3234
diff changeset
  1257
e958a341f41d Add #from: and #with:form:to class methods.
Stefan Vogel <sv@exept.de>
parents: 3234
diff changeset
  1258
    |sym|
e958a341f41d Add #from: and #with:form:to class methods.
Stefan Vogel <sv@exept.de>
parents: 3234
diff changeset
  1259
e958a341f41d Add #from: and #with:form:to class methods.
Stefan Vogel <sv@exept.de>
parents: 3234
diff changeset
  1260
%{  /* STACK:1024 */
e958a341f41d Add #from: and #with:form:to class methods.
Stefan Vogel <sv@exept.de>
parents: 3234
diff changeset
  1261
e958a341f41d Add #from: and #with:form:to class methods.
Stefan Vogel <sv@exept.de>
parents: 3234
diff changeset
  1262
    REGISTER unsigned char *srcp;
e958a341f41d Add #from: and #with:form:to class methods.
Stefan Vogel <sv@exept.de>
parents: 3234
diff changeset
  1263
    REGISTER unsigned char *endp;
e958a341f41d Add #from: and #with:form:to class methods.
Stefan Vogel <sv@exept.de>
parents: 3234
diff changeset
  1264
    REGISTER int count;
e958a341f41d Add #from: and #with:form:to class methods.
Stefan Vogel <sv@exept.de>
parents: 3234
diff changeset
  1265
    int len, index1, index2;
4086
4b3a61a4e35d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4062
diff changeset
  1266
    unsigned char scratchBuffer[1024], savec;
3325
e958a341f41d Add #from: and #with:form:to class methods.
Stefan Vogel <sv@exept.de>
parents: 3234
diff changeset
  1267
e958a341f41d Add #from: and #with:form:to class methods.
Stefan Vogel <sv@exept.de>
parents: 3234
diff changeset
  1268
    if (__isByteArray(self) && __bothSmallInteger(start, stop)) {
4661
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
  1269
	len = __byteArraySize(self);
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
  1270
	index1 = __intVal(start);
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
  1271
	index2 = __intVal(stop);
3325
e958a341f41d Add #from: and #with:form:to class methods.
Stefan Vogel <sv@exept.de>
parents: 3234
diff changeset
  1272
4661
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
  1273
	if ((index1 <= index2) && (index1 > 0) && (index2 <= len)) {
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
  1274
	    count = index2 - index1 + 1;
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
  1275
	    srcp = __ByteArrayInstPtr(self)->ba_element + index1 - 1;
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
  1276
	    if (index2 < len) {
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
  1277
		/* temporarily stuff in a '\0' */
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
  1278
		endp = srcp + count + 1;
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
  1279
		savec = *endp;
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
  1280
		*endp = '\0';
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
  1281
		sym = __MKSYMBOL(srcp, 0);
4086
4b3a61a4e35d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4062
diff changeset
  1282
		/* must refetch endp (in case of a GC */
4661
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
  1283
		endp = __ByteArrayInstPtr(self)->ba_element + index1 + count;
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
  1284
		*endp = savec;
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
  1285
	    } else {
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
  1286
		/* not enough space for '\0', copy the bytes */
4128
05106536fc3a New: #bitAt: and #bitSetAt:
Stefan Vogel <sv@exept.de>
parents: 4087
diff changeset
  1287
		if (count < sizeof(scratchBuffer)) {
4661
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
  1288
		    bcopy(srcp, scratchBuffer, count);
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
  1289
		    scratchBuffer[count] = '\0';
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
  1290
		    sym = __MKSYMBOL(scratchBuffer, 0);
4086
4b3a61a4e35d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4062
diff changeset
  1291
		}
4661
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
  1292
	    }
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
  1293
	}
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
  1294
	if (sym != nil)
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
  1295
	    RETURN(sym);
3325
e958a341f41d Add #from: and #with:form:to class methods.
Stefan Vogel <sv@exept.de>
parents: 3234
diff changeset
  1296
    }
e958a341f41d Add #from: and #with:form:to class methods.
Stefan Vogel <sv@exept.de>
parents: 3234
diff changeset
  1297
%}.
e958a341f41d Add #from: and #with:form:to class methods.
Stefan Vogel <sv@exept.de>
parents: 3234
diff changeset
  1298
    "
e958a341f41d Add #from: and #with:form:to class methods.
Stefan Vogel <sv@exept.de>
parents: 3234
diff changeset
  1299
     fall back in case of non-integer index or out-of-bound index
4086
4b3a61a4e35d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4062
diff changeset
  1300
     or not enough stack-memory available;
4b3a61a4e35d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4062
diff changeset
  1301
     may eventually lead to an out-of-bound signal raise
3325
e958a341f41d Add #from: and #with:form:to class methods.
Stefan Vogel <sv@exept.de>
parents: 3234
diff changeset
  1302
    "
e958a341f41d Add #from: and #with:form:to class methods.
Stefan Vogel <sv@exept.de>
parents: 3234
diff changeset
  1303
    ^ (super copyFrom:start to:stop) asString asSymbol
e958a341f41d Add #from: and #with:form:to class methods.
Stefan Vogel <sv@exept.de>
parents: 3234
diff changeset
  1304
e958a341f41d Add #from: and #with:form:to class methods.
Stefan Vogel <sv@exept.de>
parents: 3234
diff changeset
  1305
e958a341f41d Add #from: and #with:form:to class methods.
Stefan Vogel <sv@exept.de>
parents: 3234
diff changeset
  1306
    "
e958a341f41d Add #from: and #with:form:to class methods.
Stefan Vogel <sv@exept.de>
parents: 3234
diff changeset
  1307
     'abcdefghijklmnop' symbolFrom:1 to:3
e958a341f41d Add #from: and #with:form:to class methods.
Stefan Vogel <sv@exept.de>
parents: 3234
diff changeset
  1308
     'abcdefghijklmnop' symbolFrom:3 to:16
e958a341f41d Add #from: and #with:form:to class methods.
Stefan Vogel <sv@exept.de>
parents: 3234
diff changeset
  1309
     'abcdefghijklmnop' symbolFrom:3 to:17
e958a341f41d Add #from: and #with:form:to class methods.
Stefan Vogel <sv@exept.de>
parents: 3234
diff changeset
  1310
    "
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1311
! !
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1312
4154
6938d9274ee4 category rename
Claus Gittinger <cg@exept.de>
parents: 4128
diff changeset
  1313
!ByteArray methodsFor:'filling & replacing'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1314
155
edd7fc34e104 *** empty log message ***
claus
parents: 148
diff changeset
  1315
from:start to:stop put:aNumber
edd7fc34e104 *** empty log message ***
claus
parents: 148
diff changeset
  1316
    "fill part of the receiver with aNumber.
edd7fc34e104 *** empty log message ***
claus
parents: 148
diff changeset
  1317
     - reimplemented here for speed"
edd7fc34e104 *** empty log message ***
claus
parents: 148
diff changeset
  1318
edd7fc34e104 *** empty log message ***
claus
parents: 148
diff changeset
  1319
%{  /* NOCONTEXT */
edd7fc34e104 *** empty log message ***
claus
parents: 148
diff changeset
  1320
edd7fc34e104 *** empty log message ***
claus
parents: 148
diff changeset
  1321
    REGISTER unsigned char *dstp;
edd7fc34e104 *** empty log message ***
claus
parents: 148
diff changeset
  1322
    REGISTER int count, value;
249
claus
parents: 221
diff changeset
  1323
    int len, index1, index2;
claus
parents: 221
diff changeset
  1324
    OBJ cls;
155
edd7fc34e104 *** empty log message ***
claus
parents: 148
diff changeset
  1325
249
claus
parents: 221
diff changeset
  1326
    if (__isSmallInteger(aNumber)
1002
c44e50c09986 care for 16bit subclass instances (in tuned methods)
Claus Gittinger <cg@exept.de>
parents: 931
diff changeset
  1327
     && __bothSmallInteger(start, stop)
c44e50c09986 care for 16bit subclass instances (in tuned methods)
Claus Gittinger <cg@exept.de>
parents: 931
diff changeset
  1328
     && __isBytes(self)) {
4969
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1329
	len = __byteArraySize(self);
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1330
	index1 = __intVal(start);
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1331
	index2 = __intVal(stop);
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1332
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1333
	dstp = __ByteArrayInstPtr(self)->ba_element + index1 - 1;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1334
	if ((cls = __qClass(self)) != @global(ByteArray)) {
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1335
	    int nInst;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1336
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1337
	    nInst = __OBJS2BYTES__(__intVal(__ClassInstPtr(cls)->c_ninstvars));
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1338
	    dstp += nInst;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1339
	    len -= nInst;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1340
	}
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1341
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1342
	value = __intVal(aNumber);
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1343
	if (((unsigned)value <= 0xFF) /* i.e. (value >= 0) && (value <= 255) */
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1344
	 && (index1 <= index2)
4969
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1345
	 && (index1 > 0)) {
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1346
	    if (index2 <= len) {
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1347
		count = index2 - index1 + 1;
2579
7e0783458c2f much faster #from:to:put: and #replaceBytes on i386 platforms
Claus Gittinger <cg@exept.de>
parents: 2464
diff changeset
  1348
7e0783458c2f much faster #from:to:put: and #replaceBytes on i386 platforms
Claus Gittinger <cg@exept.de>
parents: 2464
diff changeset
  1349
#ifdef memset4
4969
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1350
		if (count > 20) {
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1351
		    /* fill unaligned part */
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1352
		    while (((unsigned INT)dstp & 3) != 0) {
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1353
			*dstp++ = value;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1354
			count--;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1355
		    }
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1356
		    /* fill aligned part */
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1357
		    {
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1358
			int n4 = count & ~3;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1359
			int v4, nW;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1360
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1361
			v4 = (value << 8) | value;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1362
			v4 = (v4 << 16) | v4;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1363
			nW = n4>>2;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1364
			memset4(dstp, v4, nW);
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1365
			count -= n4;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1366
			dstp += n4;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1367
		    }
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1368
		    while (count--) {
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1369
			*dstp++ = value;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1370
		    }
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1371
		    RETURN (self);
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1372
		}
2579
7e0783458c2f much faster #from:to:put: and #replaceBytes on i386 platforms
Claus Gittinger <cg@exept.de>
parents: 2464
diff changeset
  1373
#endif /* memset4 */
7e0783458c2f much faster #from:to:put: and #replaceBytes on i386 platforms
Claus Gittinger <cg@exept.de>
parents: 2464
diff changeset
  1374
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1375
#if (__POINTER_SIZE__ == 8)
4969
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1376
		{
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1377
		    INT v8;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1378
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1379
		    v8 = (value << 8) | value;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1380
		    v8 = (v8 << 16) | v8;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1381
		    v8 = (v8 << 32) | v8;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1382
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1383
		    /* fill unaligned part */
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1384
		    while ((count > 0) && (((unsigned INT)dstp & 3) != 0)) {
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1385
			*dstp++ = value;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1386
			count--;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1387
		    }
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1388
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1389
		    if ((count >= 4) && (((unsigned INT)dstp & 7) != 0)) {
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1390
			((unsigned int *)dstp)[0] = v8;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1391
			dstp += 4;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1392
			count -= 4;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1393
		    }
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1394
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1395
		    /* fill aligned part */
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1396
		    while (count >= 8) {
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1397
			((unsigned INT *)dstp)[0] = v8;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1398
			dstp += 8;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1399
			count -= 8;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1400
		    }
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1401
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1402
		    /* fill rest */
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1403
		    if (count >= 4) {
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1404
			((unsigned int *)dstp)[0] = v8;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1405
			dstp += 4;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1406
			count -= 4;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1407
		    }
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1408
		    if (count >= 2) {
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1409
			((unsigned short *)dstp)[0] = v8;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1410
			dstp += 2;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1411
			count -= 2;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1412
		    }
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1413
		    if (count) {
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1414
			*dstp = value;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1415
		    }
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1416
		    RETURN (self);
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1417
		}
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1418
#endif /* 64bit */
4945
2e67ed09d194 tuned filling for alpha
Claus Gittinger <cg@exept.de>
parents: 4944
diff changeset
  1419
155
edd7fc34e104 *** empty log message ***
claus
parents: 148
diff changeset
  1420
#ifdef FAST_MEMSET
4969
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1421
		memset(dstp, value, count);
155
edd7fc34e104 *** empty log message ***
claus
parents: 148
diff changeset
  1422
#else
8919
707a9ff7f9b2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1423
# ifdef __UNROLL_LOOPS__
4969
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1424
		while (count >= 8) {
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1425
		    dstp[0] = dstp[1] = dstp[2] = dstp[3] =
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1426
		    dstp[4] = dstp[5] = dstp[6] = dstp[7] = value;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1427
		    dstp += 8;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1428
		    count -= 8;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1429
		}
8919
707a9ff7f9b2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1430
# endif /* __UNROLL_LOOPS__ */
4969
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1431
		while (count--) {
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1432
		    *dstp++ = value;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1433
		}
155
edd7fc34e104 *** empty log message ***
claus
parents: 148
diff changeset
  1434
#endif
4969
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1435
		RETURN (self);
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1436
	    }
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1437
	}
155
edd7fc34e104 *** empty log message ***
claus
parents: 148
diff changeset
  1438
    }
edd7fc34e104 *** empty log message ***
claus
parents: 148
diff changeset
  1439
%}.
edd7fc34e104 *** empty log message ***
claus
parents: 148
diff changeset
  1440
    "
edd7fc34e104 *** empty log message ***
claus
parents: 148
diff changeset
  1441
     fall back in case of non-integer index or out-of-bound index/value;
edd7fc34e104 *** empty log message ***
claus
parents: 148
diff changeset
  1442
     will eventually lead to an out-of-bound signal raise
edd7fc34e104 *** empty log message ***
claus
parents: 148
diff changeset
  1443
    "
edd7fc34e104 *** empty log message ***
claus
parents: 148
diff changeset
  1444
    ^ super from:start to:stop put:aNumber
4945
2e67ed09d194 tuned filling for alpha
Claus Gittinger <cg@exept.de>
parents: 4944
diff changeset
  1445
2e67ed09d194 tuned filling for alpha
Claus Gittinger <cg@exept.de>
parents: 4944
diff changeset
  1446
    "
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1447
     (ByteArray new:10) from:1 to:10 put:1
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1448
     (ByteArray new:20) from:10 to:20 put:1
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1449
     (ByteArray new:20) from:1 to:10 put:1
4945
2e67ed09d194 tuned filling for alpha
Claus Gittinger <cg@exept.de>
parents: 4944
diff changeset
  1450
    "
155
edd7fc34e104 *** empty log message ***
claus
parents: 148
diff changeset
  1451
!
edd7fc34e104 *** empty log message ***
claus
parents: 148
diff changeset
  1452
249
claus
parents: 221
diff changeset
  1453
replaceBytesFrom:start to:stop with:aCollection startingAt:repStart
3676
140bdb21d859 comments;
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
  1454
    "replace elements from another collection, which must be a ByteArray-
140bdb21d859 comments;
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
  1455
     like collection.
140bdb21d859 comments;
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
  1456
140bdb21d859 comments;
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
  1457
     Notice: This operation modifies the receiver, NOT a copy;
140bdb21d859 comments;
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
  1458
     therefore the change may affect all others referencing the receiver."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1459
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 37
diff changeset
  1460
%{  /* NOCONTEXT */
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1461
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 37
diff changeset
  1462
    int nIndex, repNIndex;
06dbdeeed4f9 *** empty log message ***
claus
parents: 37
diff changeset
  1463
    int startIndex, stopIndex;
06dbdeeed4f9 *** empty log message ***
claus
parents: 37
diff changeset
  1464
    REGISTER unsigned char *src;
06dbdeeed4f9 *** empty log message ***
claus
parents: 37
diff changeset
  1465
    REGISTER int repStartIndex;
06dbdeeed4f9 *** empty log message ***
claus
parents: 37
diff changeset
  1466
    int repStopIndex, count;
06dbdeeed4f9 *** empty log message ***
claus
parents: 37
diff changeset
  1467
    REGISTER unsigned char *dst;
249
claus
parents: 221
diff changeset
  1468
    OBJ cls;
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1469
2894
344aec8ba014 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2890
diff changeset
  1470
#ifndef NO_PRIM_BYTEARR
7194
8c36a414a4e7 replaceBytesFrom:to:with tuned replacing from externalBytes.
Claus Gittinger <cg@exept.de>
parents: 7172
diff changeset
  1471
    if ((__isBytes(aCollection) || __isExternalBytesLike(aCollection))
1002
c44e50c09986 care for 16bit subclass instances (in tuned methods)
Claus Gittinger <cg@exept.de>
parents: 931
diff changeset
  1472
     && __isBytes(self)
249
claus
parents: 221
diff changeset
  1473
     && __bothSmallInteger(start, stop)
claus
parents: 221
diff changeset
  1474
     && __isSmallInteger(repStart)) {
11078
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1475
        startIndex = __intVal(start) - 1;
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1476
        if (startIndex >= 0) {
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1477
            dst = (__ByteArrayInstPtr(self)->ba_element) + startIndex;
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1478
            nIndex = __byteArraySize(self);
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1479
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1480
            if ((cls = __qClass(self)) != @global(ByteArray)) {
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1481
                int nInst;
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1482
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1483
                nInst = __OBJS2BYTES__(__intVal(__ClassInstPtr(cls)->c_ninstvars));
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1484
                dst += nInst;
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1485
                nIndex -= nInst;
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1486
            }
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1487
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1488
            stopIndex = __intVal(stop) - 1;
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1489
            count = stopIndex - startIndex + 1;
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1490
            if (count == 0) {
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1491
                RETURN ( self );
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1492
            }
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1493
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1494
            if ((count > 0) && (stopIndex < nIndex)) {
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1495
                repStartIndex = __intVal(repStart) - 1;
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1496
                if (repStartIndex >= 0) {
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1497
                    if (__isExternalBytesLike(aCollection)) {
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1498
                        OBJ sz;
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1499
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1500
                        src = __externalAddressVal(aCollection);
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1501
                        if (src == 0) goto fallBack;
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1502
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1503
                        sz = __externalBytesSize(aCollection);
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1504
                        if (__isSmallInteger(sz)) {
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1505
                            repNIndex = __smallIntegerVal(sz);
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1506
                        } else {
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1507
                            repNIndex = repStopIndex+1; /* always enough */
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1508
                        }
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1509
                        src = src + repStartIndex;
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1510
                    } else {
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1511
                        if (__isString(aCollection)) {
11081
6aa0cdf2f1c3 changed #replaceBytesFrom:to:with:startingAt:
Michael Beyl <mb@exept.de>
parents: 11078
diff changeset
  1512
                            repNIndex = __stringSize(aCollection);
11078
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1513
                        } else {
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1514
                            repNIndex = __qSize(aCollection) - OHDR_SIZE;
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1515
                        }
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1516
                        src = (__ByteArrayInstPtr(aCollection)->ba_element) + repStartIndex;
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1517
                        if ((cls = __qClass(aCollection)) != @global(ByteArray)) {
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1518
                            int nInst;
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1519
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1520
                            nInst = __OBJS2BYTES__(__intVal(__ClassInstPtr(cls)->c_ninstvars));
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1521
                            src += nInst;
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1522
                            repNIndex -= nInst;
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1523
                        }
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1524
                    }
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1525
                    repStopIndex = repStartIndex + (stopIndex - startIndex);
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1526
                    if (repStopIndex < repNIndex) {
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1527
                        if (aCollection == self) {
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1528
                            /* take care of overlapping copy */
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1529
                            if (src < dst) {
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1530
                                /* must do a reverse copy */
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1531
                                src += count;
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1532
                                dst += count;
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1533
                                while (count-- > 0) {
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1534
                                    *--dst = *--src;
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1535
                                }
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1536
                                RETURN ( self );
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1537
                            }
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1538
                        }
7194
8c36a414a4e7 replaceBytesFrom:to:with tuned replacing from externalBytes.
Claus Gittinger <cg@exept.de>
parents: 7172
diff changeset
  1539
8c36a414a4e7 replaceBytesFrom:to:with tuned replacing from externalBytes.
Claus Gittinger <cg@exept.de>
parents: 7172
diff changeset
  1540
# ifdef bcopy4
11078
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1541
                        if (((unsigned INT)src & 3) == ((unsigned INT)dst & 3)) {
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1542
                            int nW;
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1543
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1544
                            /* copy unaligned part */
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1545
                            while (count && ((unsigned INT)src & 3)) {
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1546
                                *dst++ = *src++;
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1547
                                count--;
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1548
                            }
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1549
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1550
                            if (count > 0) {
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1551
                                /* copy aligned part */
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1552
                                nW = count >> 2;
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1553
                                bcopy4(src, dst, nW);
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1554
                                if ((count = count & 3) != 0) {
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1555
                                    /* copy any remaining part */
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1556
                                    src += (nW<<2);
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1557
                                    dst += (nW<<2);
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1558
                                    while (count--) {
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1559
                                        *dst++ = *src++;
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1560
                                    }
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1561
                                }
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1562
                            }
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1563
                            RETURN ( self );
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1564
                        }
7194
8c36a414a4e7 replaceBytesFrom:to:with tuned replacing from externalBytes.
Claus Gittinger <cg@exept.de>
parents: 7172
diff changeset
  1565
# else
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8623
diff changeset
  1566
#  if __POINTER_SIZE__ == 8
11078
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1567
                        if (((unsigned INT)src & 7) == ((unsigned INT)dst & 7)) {
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1568
                            /* copy unaligned part */
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1569
                            while (count && ((unsigned INT)src & 7)) {
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1570
                                *dst++ = *src++;
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1571
                                count--;
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1572
                            }
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1573
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1574
                            /* copy aligned part */
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1575
                            while (count >= 8) {
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1576
                                ((unsigned INT *)dst)[0] = ((unsigned INT *)src)[0];
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1577
                                dst += 8;
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1578
                                src += 8;
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1579
                                count -= 8;
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1580
                            }
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1581
                            while (count--) {
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1582
                                *dst++ = *src++;
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1583
                            }
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1584
                            RETURN ( self );
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1585
                        }
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1586
#  endif /* 64bit */
7194
8c36a414a4e7 replaceBytesFrom:to:with tuned replacing from externalBytes.
Claus Gittinger <cg@exept.de>
parents: 7172
diff changeset
  1587
# endif /* bcopy4 */
8c36a414a4e7 replaceBytesFrom:to:with tuned replacing from externalBytes.
Claus Gittinger <cg@exept.de>
parents: 7172
diff changeset
  1588
8c36a414a4e7 replaceBytesFrom:to:with tuned replacing from externalBytes.
Claus Gittinger <cg@exept.de>
parents: 7172
diff changeset
  1589
# ifdef FAST_MEMCPY
11078
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1590
                        bcopy(src, dst, count);
7194
8c36a414a4e7 replaceBytesFrom:to:with tuned replacing from externalBytes.
Claus Gittinger <cg@exept.de>
parents: 7172
diff changeset
  1591
# else
8919
707a9ff7f9b2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1592
#  ifdef __UNROLL_LOOPS__
11078
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1593
                        while (count >= 8) {
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1594
                            dst[0] = src[0]; dst[1] = src[1];
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1595
                            dst[2] = src[2]; dst[3] = src[3];
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1596
                            dst[4] = src[4]; dst[5] = src[5];
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1597
                            dst[6] = src[6]; dst[7] = src[7];
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1598
                            dst += 8; src += 8;
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1599
                            count -= 8;
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1600
                        }
8919
707a9ff7f9b2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  1601
#  endif /* __UNROLL_LOOPS__ */
11078
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1602
                        while (count-- > 0) {
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1603
                            *dst++ = *src++;
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1604
                        }
7194
8c36a414a4e7 replaceBytesFrom:to:with tuned replacing from externalBytes.
Claus Gittinger <cg@exept.de>
parents: 7172
diff changeset
  1605
# endif
11078
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1606
                        RETURN ( self );
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1607
                    }
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1608
                }
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1609
            }
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1610
        }
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 37
diff changeset
  1611
    }
7194
8c36a414a4e7 replaceBytesFrom:to:with tuned replacing from externalBytes.
Claus Gittinger <cg@exept.de>
parents: 7172
diff changeset
  1612
fallBack: ;
2894
344aec8ba014 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2890
diff changeset
  1613
#endif
437
claus
parents: 422
diff changeset
  1614
%}.
claus
parents: 422
diff changeset
  1615
    "
claus
parents: 422
diff changeset
  1616
     fall back in case of non-ByteArray argument,
claus
parents: 422
diff changeset
  1617
     or for the error report if any index is invalid
claus
parents: 422
diff changeset
  1618
    "
7194
8c36a414a4e7 replaceBytesFrom:to:with tuned replacing from externalBytes.
Claus Gittinger <cg@exept.de>
parents: 7172
diff changeset
  1619
    ^ super replaceBytesFrom:start to:stop with:aCollection startingAt:repStart
4943
8e51d34f2b3a slightly tuned #copyFrom:to: and #replaceBytesFrom:to:with:startingAt:
Claus Gittinger <cg@exept.de>
parents: 4941
diff changeset
  1620
8e51d34f2b3a slightly tuned #copyFrom:to: and #replaceBytesFrom:to:with:startingAt:
Claus Gittinger <cg@exept.de>
parents: 4941
diff changeset
  1621
    "
8e51d34f2b3a slightly tuned #copyFrom:to: and #replaceBytesFrom:to:with:startingAt:
Claus Gittinger <cg@exept.de>
parents: 4941
diff changeset
  1622
     #[1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16]
11078
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1623
        copy
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1624
            replaceFrom:1 to:8
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1625
            with:#[10 20 30 40 50 60 70 80 90 100 110 120 130 140 150 160]
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1626
            startingAt:1
4943
8e51d34f2b3a slightly tuned #copyFrom:to: and #replaceBytesFrom:to:with:startingAt:
Claus Gittinger <cg@exept.de>
parents: 4941
diff changeset
  1627
8e51d34f2b3a slightly tuned #copyFrom:to: and #replaceBytesFrom:to:with:startingAt:
Claus Gittinger <cg@exept.de>
parents: 4941
diff changeset
  1628
     #[1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16]
11078
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1629
        copy
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1630
            replaceFrom:3 to:10
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1631
            with:#[10 20 30 40 50 60 70 80 90 100 110 120 130 140 150 160]
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1632
            startingAt:1
4943
8e51d34f2b3a slightly tuned #copyFrom:to: and #replaceBytesFrom:to:with:startingAt:
Claus Gittinger <cg@exept.de>
parents: 4941
diff changeset
  1633
8e51d34f2b3a slightly tuned #copyFrom:to: and #replaceBytesFrom:to:with:startingAt:
Claus Gittinger <cg@exept.de>
parents: 4941
diff changeset
  1634
     #[1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16]
11078
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1635
        copy
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1636
            replaceFrom:3 to:4
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1637
            with:#[10 20 30 40 50 60 70 80 90 100 110 120 130 140 150 160]
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1638
            startingAt:1
4943
8e51d34f2b3a slightly tuned #copyFrom:to: and #replaceBytesFrom:to:with:startingAt:
Claus Gittinger <cg@exept.de>
parents: 4941
diff changeset
  1639
8e51d34f2b3a slightly tuned #copyFrom:to: and #replaceBytesFrom:to:with:startingAt:
Claus Gittinger <cg@exept.de>
parents: 4941
diff changeset
  1640
     #[1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16]
11078
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1641
        copy
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1642
            replaceFrom:0 to:9
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1643
            with:#[10 20 30 40 50 60 70 80 90 100 110 120 130 140 150 160]
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1644
            startingAt:1
4943
8e51d34f2b3a slightly tuned #copyFrom:to: and #replaceBytesFrom:to:with:startingAt:
Claus Gittinger <cg@exept.de>
parents: 4941
diff changeset
  1645
8e51d34f2b3a slightly tuned #copyFrom:to: and #replaceBytesFrom:to:with:startingAt:
Claus Gittinger <cg@exept.de>
parents: 4941
diff changeset
  1646
     #[1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16]
11078
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1647
        copy
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1648
            replaceFrom:1 to:10
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1649
            with:#[10 20 30 40 50 60 70 80 90 100 110 120 130 140 150 160]
37a8b2522762 oops - replaceBytesFrom:to:with:startingAt: was wrong for Strings (inherited)
Claus Gittinger <cg@exept.de>
parents: 11063
diff changeset
  1650
            startingAt:0
4943
8e51d34f2b3a slightly tuned #copyFrom:to: and #replaceBytesFrom:to:with:startingAt:
Claus Gittinger <cg@exept.de>
parents: 4941
diff changeset
  1651
    "
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  1652
!
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  1653
3676
140bdb21d859 comments;
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
  1654
replaceBytesFrom:startIndex with:replacementCollection startingAt:repStartIndex
140bdb21d859 comments;
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
  1655
    "replace elements from another collection, which must be
140bdb21d859 comments;
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
  1656
     byte-array-like.
140bdb21d859 comments;
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
  1657
140bdb21d859 comments;
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
  1658
     Notice: This operation modifies the receiver, NOT a copy;
140bdb21d859 comments;
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
  1659
     therefore the change may affect all others referencing the receiver."
140bdb21d859 comments;
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
  1660
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1661
    ^ self
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1662
	replaceBytesFrom:startIndex
4661
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
  1663
	to:(startIndex + replacementCollection size - repStartIndex)
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
  1664
	with:replacementCollection
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
  1665
	startingAt:repStartIndex
3676
140bdb21d859 comments;
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
  1666
140bdb21d859 comments;
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
  1667
    "
140bdb21d859 comments;
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
  1668
     args:    startIndex            : <integer>
4661
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
  1669
	      replacementCollection : <collection of <bytes> >
9ebc7608738d comment
Claus Gittinger <cg@exept.de>
parents: 4386
diff changeset
  1670
	      repStartIndex         : <integer>
3676
140bdb21d859 comments;
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
  1671
140bdb21d859 comments;
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
  1672
     returns: self
140bdb21d859 comments;
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
  1673
    "
140bdb21d859 comments;
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
  1674
140bdb21d859 comments;
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
  1675
    "Created: / 27.7.1998 / 16:56:46 / cg"
140bdb21d859 comments;
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
  1676
    "Modified: / 27.7.1998 / 16:58:38 / cg"
140bdb21d859 comments;
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
  1677
!
140bdb21d859 comments;
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
  1678
140bdb21d859 comments;
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
  1679
replaceFrom:startIndex to:stopIndex with:aCollection startingAt:repStartIndex
1169
6b6e228d22e0 commentary
Claus Gittinger <cg@exept.de>
parents: 1147
diff changeset
  1680
    "replace elements in the receiver between index start and stop,
3234
4cc58bc6a8ed comment
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  1681
     with elements  taken from replacementCollection starting at repStart.
3676
140bdb21d859 comments;
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
  1682
     Return the receiver.
140bdb21d859 comments;
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
  1683
140bdb21d859 comments;
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
  1684
     Notice: This operation modifies the receiver, NOT a copy;
140bdb21d859 comments;
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
  1685
     therefore the change may affect all others referencing the receiver."
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  1686
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1687
    ((aCollection class == self class)
17728
bbc5fa73dfab Merged with trunk r10466
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 17711
diff changeset
  1688
     or:[aCollection isByteCollection]) ifTrue:[
bbc5fa73dfab Merged with trunk r10466
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 17711
diff changeset
  1689
        ^ self replaceBytesFrom:startIndex to:stopIndex with:aCollection startingAt:repStartIndex
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  1690
    ].
3676
140bdb21d859 comments;
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
  1691
    ^ super replaceFrom:startIndex to:stopIndex with:aCollection startingAt:repStartIndex
1169
6b6e228d22e0 commentary
Claus Gittinger <cg@exept.de>
parents: 1147
diff changeset
  1692
3676
140bdb21d859 comments;
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
  1693
    "
140bdb21d859 comments;
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
  1694
     args:    startIndex            : <integer>
17728
bbc5fa73dfab Merged with trunk r10466
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 17711
diff changeset
  1695
              stopIndex             : <integer>
bbc5fa73dfab Merged with trunk r10466
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 17711
diff changeset
  1696
              replacementCollection : <collection of <bytes> >
bbc5fa73dfab Merged with trunk r10466
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 17711
diff changeset
  1697
              repStartIndex         : <integer>
3676
140bdb21d859 comments;
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
  1698
140bdb21d859 comments;
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
  1699
     returns: self
140bdb21d859 comments;
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
  1700
    "
140bdb21d859 comments;
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
  1701
140bdb21d859 comments;
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
  1702
    "Modified: / 27.7.1998 / 16:58:33 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1703
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1704
129
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  1705
!ByteArray methodsFor:'image manipulation support'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1706
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1707
bitAndBytesFrom:dstStart to:dstEnd with:sourceBytes startingAt:sourceStart
4919
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1708
    "replace bytes in the receiver with the result of a bitAnd operation.
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1709
     Warning: this is a destructive operation - elements in the receiver are overwritten."
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1710
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1711
    ^ self bitBlitBytesFrom:dstStart to:dstEnd with:sourceBytes startingAt:sourceStart rule:#bitAnd:
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1712
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1713
    "
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1714
     #[1 2 3 4 5 6 7 8]
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1715
	bitAndBytesFrom:1 to:8 with:#[1 2 3 4 5 6 7 8] startingAt:1
4919
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1716
     #[1 2 3 4 5 6 7 8]
4969
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  1717
	bitAndBytesFrom:1 to:8 with:#[1 1 1 1 1 1 1 1] startingAt:1
4919
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1718
    "
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1719
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1720
!
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1721
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1722
bitBlitBytesFrom:dstStart to:dstEnd with:sourceBytes startingAt:sourceStart rule:ruleSymbol
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1723
    "perform a special case of an aligned bitBlit operation.
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1724
     Bytes in the receiver from dstStart to dstEnd are destructively replaced by the result
4919
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1725
     of some logical operation, as specified by the ruleSymbol.
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1726
     SourceBytes are fetched starting at sourceOffset.
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1727
     Valid rule symbols are:
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1728
	#copy    - trivial;  same as replaceBytesFrom:to:with:startingAt:
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1729
	#bitXor: - xoring;   byte[dI] = byte[dI] bitXor:(srcByte[sI])
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1730
	#bitAnd: - anding;   byte[dI] = byte[dI] bitAnd:(srcByte[sI])
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1731
	#bitOr:  - oring;    byte[dI] = byte[dI] bitOr:(srcByte[sI])
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1732
	#+       - adding;   byte[dI] = (byte[dI] + (srcByte[sI])) mod: 256
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1733
	#-       - subtract; byte[dI] = (byte[dI] - (srcByte[sI])) mod: 256
4919
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1734
     Warning: this is a destructive operation - elements in the receiver are overwritten.
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1735
    "
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1736
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1737
    |srcIdx|
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1738
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1739
%{
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1740
    if ((__isByteArray(sourceBytes))
4919
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1741
     && (__qClass(self) == ByteArray)
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1742
     && __isSmallInteger(dstStart)
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1743
     && __isSmallInteger(dstEnd)
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1744
     && __isSmallInteger(sourceStart)) {
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1745
	unsigned char *srcP = __ByteArrayInstPtr(sourceBytes)->ba_element;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1746
	unsigned char *dstP = __ByteArrayInstPtr(self)->ba_element;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1747
	int srcLen = __byteArraySize(sourceBytes);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1748
	int dstLen = __byteArraySize(self);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1749
	int __srcStart = __intVal(sourceStart);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1750
	int __dstStart = __intVal(dstStart);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1751
	int count = __intVal(dstEnd) - __dstStart + 1;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1752
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1753
	if ((__dstStart >= 1)
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1754
	 && (__srcStart >= 1)
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1755
	 && ((__dstStart + count - 1) <= dstLen)
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1756
	 && ((__srcStart + count - 1) <= srcLen)) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1757
	    srcP += __srcStart - 1;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1758
	    dstP += __dstStart - 1;
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1759
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1760
#define OP_LOOP_BYTES(OP) \
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1761
    while (count > 0) {                                              \
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1762
	*dstP OP (*srcP);                                            \
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1763
	srcP++;                                                      \
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1764
	dstP++;                                                      \
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1765
	count--;                                                     \
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1766
    }
4919
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1767
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1768
#define OP_LOOP(OP) \
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1769
    while (count >= 16) {                                            \
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1770
	((unsigned int *)dstP)[0] OP (((unsigned int *)srcP)[0]);    \
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1771
	((unsigned int *)dstP)[1] OP (((unsigned int *)srcP)[1]);    \
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1772
	((unsigned int *)dstP)[2] OP (((unsigned int *)srcP)[2]);    \
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1773
	((unsigned int *)dstP)[3] OP (((unsigned int *)srcP)[3]);    \
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1774
	srcP += 16;                                                  \
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1775
	dstP += 16;                                                  \
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1776
	count -= 16;                                                 \
4919
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1777
    }                                                                \
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1778
    while (count >= 4) {                                             \
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1779
	((unsigned int *)dstP)[0] OP (((unsigned int *)srcP)[0]);    \
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1780
	srcP += 4;                                                   \
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1781
	dstP += 4;                                                   \
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1782
	count -= 4;                                                  \
4919
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1783
    }                                                                \
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1784
    while (count > 0) {                                              \
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1785
	*dstP OP (*srcP);                                            \
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1786
	srcP++;                                                      \
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1787
	dstP++;                                                      \
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1788
	count--;                                                     \
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1789
    }
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1790
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1791
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1792
	    if (ruleSymbol == @symbol(bitXor:)) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1793
		OP_LOOP( ^= )
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1794
		RETURN (self);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1795
	    }
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1796
	    if (ruleSymbol == @symbol(bitXorNot:)) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1797
		OP_LOOP( ^=~ )
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1798
		RETURN (self);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1799
	    }
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1800
	    if (ruleSymbol == @symbol(bitAnd:)) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1801
		OP_LOOP( &= )
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1802
		RETURN (self);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1803
	    }
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1804
	    if (ruleSymbol == @symbol(bitAndNot:)) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1805
		OP_LOOP( &=~ )
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1806
		RETURN (self);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1807
	    }
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1808
	    if (ruleSymbol == @symbol(bitOr:)) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1809
		OP_LOOP( |= )
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1810
		RETURN (self);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1811
	    }
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1812
	    if (ruleSymbol == @symbol(bitOrNot:)) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1813
		OP_LOOP( |=~ )
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1814
		RETURN (self);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1815
	    }
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1816
	    if (ruleSymbol == @symbol(copy)) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1817
		OP_LOOP( = )
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1818
		RETURN (self);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1819
	    }
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1820
	    if (ruleSymbol == @symbol(copyNot)) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1821
		OP_LOOP( =~ )
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1822
		RETURN (self);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1823
	    }
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1824
	    if (ruleSymbol == @symbol(+)) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1825
		OP_LOOP_BYTES( += )
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1826
		RETURN (self);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1827
	    }
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1828
	    if (ruleSymbol == @symbol(-)) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1829
		OP_LOOP_BYTES( -= )
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1830
		RETURN (self);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1831
	    }
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1832
	}
4919
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1833
    }
5549
30a2dde72cf5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5468
diff changeset
  1834
#undef OP_LOOP_BYTES
30a2dde72cf5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5468
diff changeset
  1835
#undef OP_LOOP
30a2dde72cf5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5468
diff changeset
  1836
4919
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1837
%}.
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1838
    ruleSymbol == #copy ifTrue:[
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1839
	self replaceFrom:dstStart to:dstEnd with:sourceBytes startingAt:sourceStart.
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1840
	^ self
4919
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1841
    ].
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1842
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1843
    srcIdx := sourceStart.
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1844
    dstStart to:dstEnd do:[:dstIdx |
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1845
	self at:dstIdx put:((self at:dstIdx) perform:ruleSymbol with:(sourceBytes at:srcIdx)).
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1846
	srcIdx := srcIdx + 1.
4919
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1847
    ].
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1848
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1849
    "
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1850
     #[1 2 3 4 5 6 7 8]
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1851
	bitBlitBytesFrom:1 to:3 with:#[1 2 3 4 5 6 7 8] startingAt:1 rule:#bitXor:
4919
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1852
     #[1 2 3 4 5 6 7 8]
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1853
	bitBlitBytesFrom:1 to:8 with:#[1 2 3 4 5 6 7 8] startingAt:1 rule:#bitXor:
4919
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1854
     #[1 2 3 4 5 6 7 8]
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1855
	bitBlitBytesFrom:1 to:8 with:#[1 1 1 1 1 1 1 1] startingAt:1 rule:#bitAnd:
4919
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1856
     #[1 2 3 4 5 6 7 8]
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1857
	bitBlitBytesFrom:1 to:8 with:#[1 2 3 4 5 6 7 8] startingAt:1 rule:#+
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1858
     #[255 0 0 0 0 0 0 0]
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1859
	bitBlitBytesFrom:1 to:8 with:#[1 2 3 4 5 6 7 8] startingAt:1 rule:#+
4919
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1860
     #[1 2 3 4 5 6 7 8]
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1861
	bitBlitBytesFrom:1 to:4 with:#[1 1 1 1 1 1 1 1] startingAt:1 rule:#+
4924
9bec9689f646 reverse - 50% speedup on i386; 30% on all others
Claus Gittinger <cg@exept.de>
parents: 4919
diff changeset
  1862
     #[1 2 3 4 5 6 7 8]
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1863
	bitBlitBytesFrom:1 to:4 with:#[1 1 1 1 2 2 2 2] startingAt:5 rule:#+
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1864
     #[1 2 3 4 5 6 7 8]
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1865
	bitBlitBytesFrom:1 to:4 with:#[1 1 1 1 2 2 2 2] startingAt:5 rule:#copyNot
4919
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1866
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  1867
     #[1 2 3 4 5 6 7 8]
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1868
	bitBlitBytesFrom:1 to:8 with:(1 to:8) startingAt:1 rule:#+
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1869
    "
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1870
!
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1871
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1872
bitBlitBytesFrom:dstStart to:dstEnd withConstant:sourceByte rule:ruleSymbol
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1873
    "perform a special case of an aligned bitBlit operation.
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1874
     Bytes in the receiver from dstStart to dstEnd are destructively replaced by the result
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1875
     of some logical operation, as specified by the ruleSymbol.
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1876
     Valid rule symbols are:
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1877
	#copy    - trivial;  same as from:to:put:
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1878
	#bitXor: - xoring;   byte[dI] = byte[dI] bitXor:sourceConst
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1879
	#bitAnd: - anding;   byte[dI] = byte[dI] bitAnd:sourceConst
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1880
	#bitOr:  - oring;    byte[dI] = byte[dI] bitOr:sourceConst
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1881
	#+       - adding;   byte[dI] = (byte[dI] + sourceConst) mod: 256
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1882
	#-       - subtract; byte[dI] = (byte[dI] - sourceConst) mod: 256
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1883
     Warning: this is a destructive operation - elements in the receiver are overwritten.
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1884
    "
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1885
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1886
    |srcIdx|
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1887
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1888
%{
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1889
    if ((__qClass(self) == ByteArray)
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1890
     && __isSmallInteger(dstStart)
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1891
     && __isSmallInteger(dstEnd)
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1892
     && __isSmallInteger(sourceByte)) {
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1893
	unsigned char srcByte = __intVal(sourceByte);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1894
	unsigned srcWord;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1895
	unsigned char *dstP = __ByteArrayInstPtr(self)->ba_element;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1896
	int dstLen = __byteArraySize(self);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1897
	int __dstStart = __intVal(dstStart);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1898
	int count = __intVal(dstEnd) - __dstStart + 1;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1899
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1900
	srcWord = (srcByte << 8) | srcByte;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1901
	srcWord = (srcWord << 16) | srcWord;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1902
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1903
	if ((__dstStart >= 1)
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1904
	 && ((__dstStart + count - 1) <= dstLen)) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1905
	    dstP += __dstStart - 1;
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1906
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1907
#define OP_LOOP_BYTES(OP) \
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1908
    while (count > 0) {                          \
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1909
	*dstP OP srcByte;                        \
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1910
	dstP++;                                  \
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1911
	count--;                                 \
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1912
    }
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1913
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1914
#define OP_LOOP(OP) \
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1915
    while (count >= 16) {                        \
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1916
	((unsigned int *)dstP)[0] OP srcWord;    \
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1917
	((unsigned int *)dstP)[1] OP srcWord;    \
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1918
	((unsigned int *)dstP)[2] OP srcWord;    \
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1919
	((unsigned int *)dstP)[3] OP srcWord;    \
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1920
	dstP += 16;                              \
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1921
	count -= 16;                             \
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1922
    }                                            \
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1923
    while (count >= 4) {                         \
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1924
	((unsigned int *)dstP)[0] OP srcWord;    \
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1925
	dstP += 4;                               \
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1926
	count -= 4;                              \
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1927
    }                                            \
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1928
    while (count > 0) {                          \
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1929
	*dstP OP srcByte;                        \
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1930
	dstP++;                                  \
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1931
	count--;                                 \
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1932
    }
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1933
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1934
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1935
	    if (ruleSymbol == @symbol(bitXor:)) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1936
		OP_LOOP( ^= )
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1937
		RETURN (self);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1938
	    }
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1939
	    if (ruleSymbol == @symbol(bitXorNot:)) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1940
		OP_LOOP( ^=~ )
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1941
		RETURN (self);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1942
	    }
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1943
	    if (ruleSymbol == @symbol(bitAnd:)) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1944
		OP_LOOP( &= )
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1945
		RETURN (self);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1946
	    }
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1947
	    if (ruleSymbol == @symbol(bitAndNot:)) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1948
		OP_LOOP( &=~ )
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1949
		RETURN (self);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1950
	    }
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1951
	    if (ruleSymbol == @symbol(bitOr:)) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1952
		OP_LOOP( |= )
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1953
		RETURN (self);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1954
	    }
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1955
	    if (ruleSymbol == @symbol(bitOrNot:)) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1956
		OP_LOOP( |=~ )
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1957
		RETURN (self);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1958
	    }
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1959
	    if (ruleSymbol == @symbol(copy)) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1960
		OP_LOOP( = )
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1961
		RETURN (self);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1962
	    }
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1963
	    if (ruleSymbol == @symbol(copyNot)) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1964
		OP_LOOP( =~ )
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1965
		RETURN (self);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1966
	    }
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1967
	    if (ruleSymbol == @symbol(+)) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1968
		OP_LOOP_BYTES( += )
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1969
		RETURN (self);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1970
	    }
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1971
	    if (ruleSymbol == @symbol(-)) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1972
		OP_LOOP_BYTES( -= )
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1973
		RETURN (self);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1974
	    }
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1975
	}
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1976
    }
5549
30a2dde72cf5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5468
diff changeset
  1977
#undef OP_LOOP_BYTES
30a2dde72cf5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5468
diff changeset
  1978
#undef OP_LOOP
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1979
%}.
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1980
    ruleSymbol == #copy ifTrue:[
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1981
	self from:dstStart to:dstEnd put:sourceByte.
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1982
	^ self
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1983
    ].
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1984
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1985
    dstStart to:dstEnd do:[:dstIdx |
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1986
	self at:dstIdx put:((self at:dstIdx) perform:ruleSymbol with:sourceByte).
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1987
    ].
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1988
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1989
    "
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1990
     #[1 2 3 4 5 6 7 8]
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1991
	bitBlitBytesFrom:1 to:3 withConstant:1 rule:#bitXor:
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1992
     #[1 2 3 4 5 6 7 8]
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1993
	bitBlitBytesFrom:1 to:8 withConstant:1 rule:#bitXor:
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1994
     #[1 2 3 4 5 6 7 8]
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1995
	bitBlitBytesFrom:1 to:8 withConstant:1 rule:#bitAnd:
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1996
     #[1 2 3 4 5 6 7 8]
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1997
	bitBlitBytesFrom:1 to:8 withConstant:1 rule:#+
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  1998
     #[255 0 0 0 0 0 0 0]
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  1999
	bitBlitBytesFrom:1 to:8 withConstant:1 rule:#+
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  2000
     #[1 2 3 4 5 6 7 8]
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2001
	bitBlitBytesFrom:1 to:4 withConstant:1 rule:#+
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  2002
     #[1 2 3 4 5 6 7 8]
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2003
	bitBlitBytesFrom:1 to:4 withConstant:1 rule:#-
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  2004
     #[1 2 3 4 5 6 7 8]
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2005
	bitBlitBytesFrom:1 to:4 withConstant:1 rule:#copyNot
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  2006
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  2007
     #[1 2 3 4 5 6 7 8]
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2008
	bitBlitBytesFrom:1 to:8 withConstant:1 rule:#+
4919
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  2009
    "
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  2010
!
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  2011
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2012
bitOrBytesFrom:dstStart to:dstEnd with:sourceBytes startingAt:sourceStart
4919
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  2013
    "replace bytes in the receiver with the result of a bitOr operation.
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  2014
     Warning: this is a destructive operation - elements in the receiver are overwritten."
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  2015
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  2016
    ^ self bitBlitBytesFrom:dstStart to:dstEnd with:sourceBytes startingAt:sourceStart rule:#bitOr:
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  2017
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  2018
    "
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  2019
     #[1 2 3 4 5 6 7 8]
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2020
	bitOrBytesFrom:1 to:8 with:#[1 2 3 4 5 6 7 8] startingAt:1
4919
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  2021
     #[1 2 3 4 5 6 7 8]
4969
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2022
	bitOrBytesFrom:1 to:8 with:#[1 1 1 1 1 1 1 1] startingAt:1
4919
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  2023
    "
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  2024
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  2025
!
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  2026
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2027
bitXorBytesFrom:dstStart to:dstEnd with:sourceBytes startingAt:sourceStart
4919
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  2028
    "replace bytes in the receiver with the result of an bitXor operation.
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  2029
     Warning: this is a destructive operation - elements in the receiver are overwritten."
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  2030
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  2031
    ^ self bitBlitBytesFrom:dstStart to:dstEnd with:sourceBytes startingAt:sourceStart rule:#bitXor:
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  2032
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  2033
    "
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  2034
     #[1 2 3 4 5 6 7 8]
4969
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2035
	bitXorBytesFrom:1 to:3 with:#[1 2 3 4 5 6 7 8] startingAt:1
4919
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  2036
     #[1 2 3 4 5 6 7 8]
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2037
	bitXorBytesFrom:1 to:8 with:#[1 2 3 4 5 6 7 8] startingAt:1
4919
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  2038
     #[1 2 3 4 5 6 7 8]
4969
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2039
	bitXorBytesFrom:1 to:8 with:#[1 1 1 1 1 1 1 1] startingAt:1
4919
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  2040
    "
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  2041
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  2042
!
ba0dbdaceab1 special cased bitBlit.
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  2043
2866
0d1b10026aa8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2782
diff changeset
  2044
compressPixels:nBitsPerPixel width:width height:height into:aByteArray mapping:aMapByteArray
129
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2045
    "given the receiver with 8-bit pixels, compress them into aByteArray
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2046
     with nBitsPerPixel-depth pixels. The width/height-arguments are needed
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2047
     to allow for any padding. On the fly, the source bytes are translated
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2048
     using aMapByteArray (if non-nil).
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2049
     Notice that smalltalk indexing begins at 1; thus the map-index for a byte
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2050
     value of n is found in map at:(n + 1).
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2051
     Output bits are filled left-to right, i.e. the first byte in the input
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2052
     corresponds to the high bit(s) if the first byte in the input.
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2053
     This method can be used to convert 8-bit image data to mono, 2-bit and 4-bit
129
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2054
     bitmaps.
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2055
     It can also be used to compress byte-arrays into bitArrays."
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2056
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2057
%{  /* NOCONTEXT */
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2058
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2059
    REGISTER unsigned char *src, *dst;
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2060
    REGISTER int wrun;
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2061
    unsigned char *dstNext;
1472
abaa73dc0e9a check for destination overrun
Claus Gittinger <cg@exept.de>
parents: 1459
diff changeset
  2062
    unsigned char *dstEnd;
129
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2063
    int bytesPerRow, mask, shift0, shift;
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2064
    int w, h, hrun;
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2065
    int srcBytes, dstBytes;
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2066
    int bitsPerPixel;
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2067
    int bits;
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2068
    int ncells;
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2069
    unsigned char *map;
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2070
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2071
    if ((__qClass(self) == @global(ByteArray))
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1082
diff changeset
  2072
     && (__qClass(aByteArray) == @global(ByteArray))
249
claus
parents: 221
diff changeset
  2073
     && __isSmallInteger(nBitsPerPixel)
claus
parents: 221
diff changeset
  2074
     && __bothSmallInteger(height, width)) {
2915
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2075
	if ((aMapByteArray != nil)
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2076
	 && (__Class(aMapByteArray) == @global(ByteArray))) {
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2077
	    map = __ByteArrayInstPtr(aMapByteArray)->ba_element;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2078
	} else {
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2079
	    map = (unsigned char *)0;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2080
	}
129
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2081
2915
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2082
	bitsPerPixel = __intVal(nBitsPerPixel);
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2083
	w = __intVal(width);
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2084
	h = __intVal(height);
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2085
	src = __ByteArrayInstPtr(self)->ba_element;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2086
	dst = __ByteArrayInstPtr(aByteArray)->ba_element;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2087
	dstEnd = dst + __byteArraySize(aByteArray);
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2088
	switch (bitsPerPixel) {
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2089
	    case 1:
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2090
		mask = 0x01;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2091
		break;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2092
	    case 2:
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2093
		mask = 0x03;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2094
		break;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2095
	    case 4:
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2096
		mask = 0x0F;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2097
		break;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2098
	    case 8:
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2099
		mask = 0xFF;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2100
		break;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2101
	    default:
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2102
		printf("invalid depth in compressPixels\n");
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2103
		goto fail;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2104
	}
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2105
	if (map) {
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2106
	    /*
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2107
	     * if a map is present, it must have entries for
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2108
	     * all possible byte-values (i.e. its size must be >= 256)
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2109
	     */
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2110
	    if ((__qSize(aMapByteArray) - OHDR_SIZE) < 256) {
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2111
		printf("invalid map in compressPixels\n");
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2112
		goto fail;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2113
	    }
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2114
	}
129
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2115
2915
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2116
	bytesPerRow = (w * bitsPerPixel + 7) / 8;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2117
	dstBytes = bytesPerRow * h;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2118
	srcBytes = w * h;
2866
0d1b10026aa8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2782
diff changeset
  2119
2915
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2120
	if ((__byteArraySize(self) >= srcBytes)
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2121
	 && (__byteArraySize(aByteArray) >= dstBytes)) {
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2122
	    for (hrun=h; hrun; hrun--) {
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2123
		dstNext = dst + bytesPerRow;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2124
		bits = 0; shift = 8;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2125
		if (map) {
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2126
		    for (wrun=w; wrun; wrun--) {
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2127
			bits = (bits << bitsPerPixel) | (map[*src++] & mask);
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2128
			shift -= bitsPerPixel;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2129
			if (shift == 0) {
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2130
			    if (dst == dstEnd) goto fail;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2131
			    *dst++ = bits;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2132
			    bits = 0; shift = 8;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2133
			}
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2134
		    }
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2135
		} else {
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2136
		    for (wrun=w; wrun; wrun--) {
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2137
			bits = (bits << bitsPerPixel) | (*src++ & mask);
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2138
			shift -= bitsPerPixel;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2139
			if (shift == 0) {
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2140
			    if (dst == dstEnd) goto fail;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2141
			    *dst++ = bits;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2142
			    bits = 0; shift = 8;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2143
			}
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2144
		    }
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2145
		}
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2146
		if (shift != 8) {
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2147
		    if (dst == dstEnd) goto fail;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2148
		    *dst = bits;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2149
		}
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2150
		dst = dstNext;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2151
	    }
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2152
	    RETURN ( self );
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2153
	}
129
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2154
    }
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2155
fail: ;
2866
0d1b10026aa8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2782
diff changeset
  2156
%}.
129
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2157
    self primitiveFailed
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2158
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2159
    "Example1:
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2160
     compress 1 byte-per-pixel bitmap to 1-bit-per-pixel bitmap
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2161
    "
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2162
    "
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2163
     |inBits outBits|
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2164
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2165
     inBits := #[0 0 0 0 1 1 1 1
2915
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2166
		 0 0 1 1 0 0 1 1
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2167
		 0 1 0 1 0 1 0 1
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2168
		 1 1 1 1 0 0 0 0].
129
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2169
     outBits := ByteArray new:4.
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2170
     inBits compressPixels:1 width:8 height:4
2915
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2171
		    into:outBits mapping:nil.
129
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2172
     outBits inspect
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2173
    "
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2174
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2175
    "Example2:
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2176
     compress byte-array into a bitArray, translating 99 to 0-bits,
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2177
     and 176 to 1-bits. (just a stupid example)
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2178
    "
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2179
    "
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2180
     |inBits outBits map|
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2181
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2182
     inBits := #[176 176 176 176 99 99 99 99 176 176 99 99 176 99 176 99].
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2183
     map := ByteArray new:256.
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2184
     map at:176+1 put:1.
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2185
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2186
     outBits := ByteArray new:2.
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2187
     inBits compressPixels:1 width:16 height:1
2915
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2188
		    into:outBits mapping:map.
129
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2189
     outBits inspect
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2190
    "
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2191
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2192
    "Example3:
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2193
     compress byte-array into a bitArray, translating everything below 128 to 0-bits,
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2194
     and 128 to 255 to 1-bits.99 to 0-bits (another stupid example)
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2195
    "
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2196
    "
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2197
     |inBits outBits map|
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2198
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2199
     inBits := #[176 176 176 176 99 99 99 99 176 176 99 99 176 99 176 99].
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2200
     map := ByteArray new:256.
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2201
     map atAll:(128+1 to:255+1) put:1.
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2202
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2203
     outBits := ByteArray new:2.
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2204
     inBits compressPixels:1 width:16 height:1
2915
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2205
		    into:outBits mapping:map.
129
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2206
     outBits inspect
e451571780b7 added compressPixels;
claus
parents: 92
diff changeset
  2207
    "
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2208
!
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2209
4829
b0791306880b New: #copyReverse
Claus Gittinger <cg@exept.de>
parents: 4809
diff changeset
  2210
copyReverse
4927
9d67bf3f4009 made the BSWAP macro public
Claus Gittinger <cg@exept.de>
parents: 4925
diff changeset
  2211
    "create a copy of myself with elements reversed in order"
9d67bf3f4009 made the BSWAP macro public
Claus Gittinger <cg@exept.de>
parents: 4925
diff changeset
  2212
9d67bf3f4009 made the BSWAP macro public
Claus Gittinger <cg@exept.de>
parents: 4925
diff changeset
  2213
    ^ self copy reverse
4829
b0791306880b New: #copyReverse
Claus Gittinger <cg@exept.de>
parents: 4809
diff changeset
  2214
b0791306880b New: #copyReverse
Claus Gittinger <cg@exept.de>
parents: 4809
diff changeset
  2215
    "
b0791306880b New: #copyReverse
Claus Gittinger <cg@exept.de>
parents: 4809
diff changeset
  2216
     #[1 2 3 4 5] copyReverse
b0791306880b New: #copyReverse
Claus Gittinger <cg@exept.de>
parents: 4809
diff changeset
  2217
     #[1 2 3 4] copyReverse
b0791306880b New: #copyReverse
Claus Gittinger <cg@exept.de>
parents: 4809
diff changeset
  2218
    "
b0791306880b New: #copyReverse
Claus Gittinger <cg@exept.de>
parents: 4809
diff changeset
  2219
!
b0791306880b New: #copyReverse
Claus Gittinger <cg@exept.de>
parents: 4809
diff changeset
  2220
2866
0d1b10026aa8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2782
diff changeset
  2221
expandPixels:nBitsPerPixel width:width height:height into:aByteArray mapping:aMapByteArray
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2222
    "given the receiver with nBitsPerPixel-depth pixels, expand them into
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2223
     aByteArray with 8-bit pixels. The width/height-arguments are needed
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2224
     to skip any padded src-bits. On the fly, the destination pixels
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2225
     are translated using aMapByteArray (if non-nil).
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2226
     Input bits are read left-to right, i.e. the first byte in the output
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2227
     corresponds to the high bit(s) in the inputs first byte.
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2228
     This is used to display mono, 2-bit and 4-bit bitmaps on grey-scale/color
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2229
     machines. With nBitsPerPixel==8, this is a translate operation.
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2230
     Notice that smalltalk indexing begins at 1; thus the map-index for a byte
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2231
     value of n is found in map at:(n + 1).
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2232
     It can also be used to expand bit-arrays into byteArrays.
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2233
     This method is specialized for ByteArray arguments - it will not handle
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2234
     anything else."
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2235
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2236
%{  /* NOCONTEXT */
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2237
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2238
    REGISTER unsigned char *src, *dst;
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2239
    REGISTER int wrun;
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2240
    unsigned char *srcNext;
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2241
    int bytesPerRow, mask, shift0, shift;
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2242
    int w, h, hrun;
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2243
    int srcBytes, dstBytes;
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2244
    int bitsPerPixel;
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2245
    int bits;
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2246
    int ncells;
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2247
    unsigned char *map;
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2248
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2249
    if ((__qClass(self) == @global(ByteArray))
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1082
diff changeset
  2250
     && (__qClass(aByteArray) == @global(ByteArray))
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2251
     && __isSmallInteger(nBitsPerPixel)
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2252
     && __bothSmallInteger(height, width)) {
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2253
	if ((aMapByteArray != nil)
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2254
	 && (__Class(aMapByteArray) == @global(ByteArray))) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2255
	    map = __ByteArrayInstPtr(aMapByteArray)->ba_element;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2256
	} else {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2257
	    map = (unsigned char *)0;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2258
	}
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2259
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2260
	bitsPerPixel = __intVal(nBitsPerPixel);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2261
	w = __intVal(width);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2262
	h = __intVal(height);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2263
	src = __ByteArrayInstPtr(self)->ba_element;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2264
	dst = __ByteArrayInstPtr(aByteArray)->ba_element;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2265
	switch (bitsPerPixel) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2266
	    case 1:
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2267
		mask = 0x01;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2268
		break;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2269
	    case 2:
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2270
		mask = 0x03;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2271
		break;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2272
	    case 4:
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2273
		mask = 0x0F;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2274
		break;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2275
	    case 8:
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2276
		mask = 0xFF;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2277
		break;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2278
	    default:
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2279
		printf("invalid depth in expandPixels\n");
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2280
		goto fail;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2281
	}
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2282
	ncells = mask + 1;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2283
	if (map) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2284
	    /*
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2285
	     * if a map is present, it must have the correct size
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2286
	     * (i.e. 2 raisedTo:nBitsPerPixel)
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2287
	     */
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2288
	    if ((__qSize(aMapByteArray) - OHDR_SIZE) < ncells) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2289
		printf("invalid map in expandPixels\n");
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2290
		goto fail;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2291
	    }
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2292
	}
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2293
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2294
	bytesPerRow = (w * bitsPerPixel + 7) / 8;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2295
	shift0 = 8 - bitsPerPixel;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2296
	srcBytes = bytesPerRow * h;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2297
	dstBytes = w * h;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2298
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2299
	if ((__byteArraySize(self) >= srcBytes)
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2300
	 && (__byteArraySize(aByteArray) >= dstBytes)) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2301
	    for (hrun=h; hrun; hrun--) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2302
		srcNext = src + bytesPerRow;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2303
		shift = shift0;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2304
		if (map) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2305
		    if (shift0 == 0) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2306
			/* translate only */
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2307
			for (wrun=w; wrun; wrun--) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2308
			    bits = *src++;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2309
			    *dst++ = map[bits];
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2310
			}
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2311
		    } else {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2312
			for (wrun=w; wrun; wrun--) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2313
			    if (shift == shift0) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2314
				bits = *src++;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2315
			    }
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2316
			    *dst++ = map[(bits >> shift) & mask];
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2317
			    shift -= bitsPerPixel;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2318
			    if (shift < 0) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2319
				shift = shift0;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2320
			    }
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2321
			}
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2322
		    }
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2323
		} else {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2324
		    for (wrun=w; wrun; wrun--) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2325
			if (shift == shift0) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2326
			    bits = *src++;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2327
			}
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2328
			*dst++ = (bits >> shift) & mask;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2329
			shift -= bitsPerPixel;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2330
			if (shift < 0) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2331
			    shift = shift0;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2332
			}
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2333
		    }
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2334
		}
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2335
		src = srcNext;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2336
	    }
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2337
	    RETURN ( self );
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2338
	}
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2339
	printf("buffer size: self:%d expect at least:%d\n",
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2340
		__byteArraySize(self), srcBytes);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2341
	printf("buffer size: arg:%d expect at least:%d\n",
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2342
		__byteArraySize(aByteArray), dstBytes);
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2343
    }
2866
0d1b10026aa8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2782
diff changeset
  2344
    printf("invalid args\n");
1527
af119b16aa16 better handle the translate-only case in #expandPixels:
ca
parents: 1505
diff changeset
  2345
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2346
fail: ;
2866
0d1b10026aa8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2782
diff changeset
  2347
%}.
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2348
    self primitiveFailed
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2349
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2350
    "Example1:
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2351
     expand 1-bit-per-pixel bitmap into a 1byte-per-pixel byteArray
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2352
    "
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2353
    "
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2354
     |inBits outBits|
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2355
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2356
     inBits := #[2r11110000
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2357
		 2r11001100
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2358
		 2r01010101
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2359
		 2r00001111].
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2360
     outBits := ByteArray new:(8*4).
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2361
     inBits expandPixels:1 width:8 height:4
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2362
		    into:outBits mapping:nil.
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2363
     outBits inspect
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2364
    "
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2365
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2366
    "Example2:
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2367
     expand bit-array into a byteArray, translating 0-bits to 99,
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2368
     1-bits to 176. (just a stupid example)
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2369
    "
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2370
    "
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2371
     |inBits outBits|
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2372
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2373
     inBits := #[2r11110000 2r11001100].
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2374
     outBits := ByteArray new:16.
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2375
     inBits expandPixels:1 width:16 height:1
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2376
		    into:outBits mapping:#[99 176].
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2377
     outBits inspect
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2378
    "
4978
0d75a92f1e56 comment
Claus Gittinger <cg@exept.de>
parents: 4969
diff changeset
  2379
0d75a92f1e56 comment
Claus Gittinger <cg@exept.de>
parents: 4969
diff changeset
  2380
    "This Can also be used to extract nibbles ..."
0d75a92f1e56 comment
Claus Gittinger <cg@exept.de>
parents: 4969
diff changeset
  2381
    "
0d75a92f1e56 comment
Claus Gittinger <cg@exept.de>
parents: 4969
diff changeset
  2382
     |inBits outBits|
0d75a92f1e56 comment
Claus Gittinger <cg@exept.de>
parents: 4969
diff changeset
  2383
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2384
     inBits := #[ 16r12 16r34 16r56 16r78 16r9A 16rBC 16rDE 16rF0 ].
4978
0d75a92f1e56 comment
Claus Gittinger <cg@exept.de>
parents: 4969
diff changeset
  2385
     outBits := ByteArray new:(inBits size * 2).
0d75a92f1e56 comment
Claus Gittinger <cg@exept.de>
parents: 4969
diff changeset
  2386
     inBits expandPixels:4 width:outBits size height:1 into:outBits mapping:nil.
0d75a92f1e56 comment
Claus Gittinger <cg@exept.de>
parents: 4969
diff changeset
  2387
     outBits inspect
0d75a92f1e56 comment
Claus Gittinger <cg@exept.de>
parents: 4969
diff changeset
  2388
    "
0d75a92f1e56 comment
Claus Gittinger <cg@exept.de>
parents: 4969
diff changeset
  2389
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2390
!
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2391
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2392
invert
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2393
    "invert all bytes - used with image manipulations
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2394
     written as a primitive for speed.
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2395
     Q: is this really needed ?"
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2396
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2397
%{  /* NOCONTEXT */
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2398
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2399
    REGISTER unsigned char *dst;
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2400
    REGISTER unsigned long *ldst;
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2401
    REGISTER int cnt;
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2402
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1082
diff changeset
  2403
    if (__qClass(self) == @global(ByteArray)) {
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2404
	cnt = __byteArraySize(self);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2405
	dst = __ByteArrayInstPtr(self)->ba_element;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2406
	if (! ((INT)dst & (sizeof(long)-1))) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2407
	    ldst = (unsigned long *)dst;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2408
	    while (cnt >= (sizeof(long))*4) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2409
		ldst[0] = ~(ldst[0]);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2410
		ldst[1] = ~(ldst[1]);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2411
		ldst[2] = ~(ldst[2]);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2412
		ldst[3] = ~(ldst[3]);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2413
		ldst += 4;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2414
		cnt -= (sizeof(long))*4;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2415
	    }
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2416
	    while (cnt >= sizeof(long)) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2417
		*ldst = ~(*ldst);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2418
		ldst++;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2419
		cnt -= sizeof(long);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2420
	    }
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2421
	    dst = (unsigned char *)ldst;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2422
	}
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2423
	while (cnt--) {
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2424
	    *dst = ~(*dst);
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2425
	    dst++;
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2426
	}
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2427
	RETURN ( self );
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2428
    }
4927
9d67bf3f4009 made the BSWAP macro public
Claus Gittinger <cg@exept.de>
parents: 4925
diff changeset
  2429
%}.
5439
956c8095c4ff rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5425
diff changeset
  2430
    self bitBlitBytesFrom:1 to:self size withConstant:16rFF rule:#bitXor:
4927
9d67bf3f4009 made the BSWAP macro public
Claus Gittinger <cg@exept.de>
parents: 4925
diff changeset
  2431
9d67bf3f4009 made the BSWAP macro public
Claus Gittinger <cg@exept.de>
parents: 4925
diff changeset
  2432
    "
9d67bf3f4009 made the BSWAP macro public
Claus Gittinger <cg@exept.de>
parents: 4925
diff changeset
  2433
     #[1 2 3 4 5 6 7 8 9 10] copy invert
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2434
     #[1 2 3 4 5 6 7 8 9 10] copy
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2435
	bitBlitBytesFrom:1 to:10 withConstant:16rFF rule:#bitXor:
4927
9d67bf3f4009 made the BSWAP macro public
Claus Gittinger <cg@exept.de>
parents: 4925
diff changeset
  2436
    "
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2437
!
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2438
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2439
reverse
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2440
    "reverse the order of my elements inplace -
7338
7a1a2514b6aa comment
Claus Gittinger <cg@exept.de>
parents: 7245
diff changeset
  2441
     WARNING: this is a destructive operation, which modifies the receiver.
11263
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2442
              Please use reversed (with a d) for a functional version.
7338
7a1a2514b6aa comment
Claus Gittinger <cg@exept.de>
parents: 7245
diff changeset
  2443
     Written as a primitive for speed on image manipulations (mirror)"
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2444
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2445
%{  /* NOCONTEXT */
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2446
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2447
    REGISTER unsigned char *p1, *p2;
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2448
    REGISTER int cnt;
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2449
    REGISTER unsigned t;
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2450
    OBJ cls;
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2451
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1082
diff changeset
  2452
    if (__qClass(self) == @global(ByteArray)) {
11263
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2453
        cnt = __byteArraySize(self);
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2454
        p1 = __ByteArrayInstPtr(self)->ba_element;
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2455
        p2 = p1 + cnt - 1;
4924
9bec9689f646 reverse - 50% speedup on i386; 30% on all others
Claus Gittinger <cg@exept.de>
parents: 4919
diff changeset
  2456
4927
9d67bf3f4009 made the BSWAP macro public
Claus Gittinger <cg@exept.de>
parents: 4925
diff changeset
  2457
#if defined(__BSWAP)
11263
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2458
        /*
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2459
         * can we use the bswap instruction ?
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2460
         * notice - not all CPUs have it (the HAS_BSWAP checks this).
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2461
         */
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2462
        if (__HAS_BSWAP()
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2463
         && ((cnt & 3) == 0)) {
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2464
            unsigned int *ip1, *ip2;
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2465
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2466
            ip1 = (unsigned int *)p1;
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2467
            ip2 = (unsigned int *)(p2 - 3);
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2468
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2469
            ip2 -= 7;
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2470
            while (ip1 <= ip2) {
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2471
                int t1, t2;
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2472
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2473
                t1 = ip1[0];
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2474
                t2 = ip2[7];
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2475
                ip2[7] = __BSWAP(t1);
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2476
                ip1[0] = __BSWAP(t2);
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2477
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2478
                t1 = ip1[1];
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2479
                t2 = ip2[6];
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2480
                ip2[6] = __BSWAP(t1);
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2481
                ip1[1] = __BSWAP(t2);
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2482
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2483
                t1 = ip1[2];
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2484
                t2 = ip2[5];
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2485
                ip2[5] = __BSWAP(t1);
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2486
                ip1[2] = __BSWAP(t2);
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2487
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2488
                t1 = ip1[3];
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2489
                t2 = ip2[4];
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2490
                ip2[4] = __BSWAP(t1);
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2491
                ip1[3] = __BSWAP(t2);
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2492
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2493
                ip1 += 4;
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2494
                ip2 -= 4;
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2495
            }
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2496
            ip2 += 7;
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2497
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2498
            while (ip1 < ip2) {
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2499
                int t;
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2500
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2501
                t = __BSWAP(*ip1);
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2502
                *ip1++ = __BSWAP(*ip2);
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2503
                *ip2-- = t;
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2504
            }
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2505
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2506
            if (ip1 == ip2) {
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2507
                int t;
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2508
                t = *ip1;
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2509
                t = __BSWAP(t);
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2510
                *ip1 = t;
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2511
            }
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2512
            RETURN ( self );
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2513
        }
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8623
diff changeset
  2514
#endif /* __i386__ && __GNUC__ */
4927
9d67bf3f4009 made the BSWAP macro public
Claus Gittinger <cg@exept.de>
parents: 4925
diff changeset
  2515
11263
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2516
        p2 -= 7;
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2517
        while (p1 <= p2) {
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2518
            t = p1[0];
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2519
            p1[0] = p2[7];
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2520
            p2[7] = t;
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2521
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2522
            t = p1[1];
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2523
            p1[1] = p2[6];
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2524
            p2[6] = t;
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2525
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2526
            t = p1[2];
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2527
            p1[2] = p2[5];
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2528
            p2[5] = t;
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2529
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2530
            t = p1[3];
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2531
            p1[3] = p2[4];
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2532
            p2[4] = t;
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2533
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2534
            p1 += 4;
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2535
            p2 -= 4;
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2536
        }
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2537
        p2 += 7;
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2538
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2539
        while (p1 < p2) {
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2540
            t = *p1;
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2541
            *p1++ = *p2;
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2542
            *p2-- = t;
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2543
        }
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2544
        RETURN ( self );
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2545
    }
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2546
%}.
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2547
    ^ super reverse
2585
6c25622320aa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2579
diff changeset
  2548
6c25622320aa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2579
diff changeset
  2549
    "
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2550
     #[1 2 3 4 5] reverse
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2551
     #[1 2 3 4] reverse
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2552
     #[1 2 3 4 5] reverse
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2553
     #[1 2 3 4 5 6] reverse
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2554
     #[1 2 3 4 5 6 7] reverse
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2555
     #[1 2 3 4 5 6 7 8] reverse
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2556
     #[1 2 3 4 5 6 7 8 9] reverse
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2557
     #[1 2 3 4 5 6 7 8 9 10] reverse
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2558
     #[1 2 3 4 5 6 7 8 9 10 11 12] reverse
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2559
     #[1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16] reverse
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2560
     #[1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20] reverse
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2561
     (1 to:255) asByteArray reverse
4924
9bec9689f646 reverse - 50% speedup on i386; 30% on all others
Claus Gittinger <cg@exept.de>
parents: 4919
diff changeset
  2562
9bec9689f646 reverse - 50% speedup on i386; 30% on all others
Claus Gittinger <cg@exept.de>
parents: 4919
diff changeset
  2563
     1 to:1024 do:[:i|
11263
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2564
        |bytes test rBytes|
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2565
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2566
        bytes := ((1 to:i) asArray collect:[:i | i bitAnd:255]) asByteArray.
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2567
        test := ((i to:1 by:-1) asArray collect:[:i | i bitAnd:255]) asByteArray.
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2568
        rBytes := bytes copy.
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2569
        rBytes reverse ~= test ifTrue:[
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2570
            self halt
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2571
        ].
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2572
        rBytes := bytes copy.
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2573
        rBytes reverse reverse ~= bytes ifTrue:[
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2574
            self halt
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2575
        ]
4924
9bec9689f646 reverse - 50% speedup on i386; 30% on all others
Claus Gittinger <cg@exept.de>
parents: 4919
diff changeset
  2576
     ].
9bec9689f646 reverse - 50% speedup on i386; 30% on all others
Claus Gittinger <cg@exept.de>
parents: 4919
diff changeset
  2577
9bec9689f646 reverse - 50% speedup on i386; 30% on all others
Claus Gittinger <cg@exept.de>
parents: 4919
diff changeset
  2578
     Time millisecondsToRun:[
11263
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2579
        10000000 timesRepeat:[
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2580
            #[1 2 3 4 5 6 7 8] reverse
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2581
        ]
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2582
     ]
4924
9bec9689f646 reverse - 50% speedup on i386; 30% on all others
Claus Gittinger <cg@exept.de>
parents: 4919
diff changeset
  2583
9bec9689f646 reverse - 50% speedup on i386; 30% on all others
Claus Gittinger <cg@exept.de>
parents: 4919
diff changeset
  2584
     |b|
9bec9689f646 reverse - 50% speedup on i386; 30% on all others
Claus Gittinger <cg@exept.de>
parents: 4919
diff changeset
  2585
     b := (0 to:255) asByteArray.
9bec9689f646 reverse - 50% speedup on i386; 30% on all others
Claus Gittinger <cg@exept.de>
parents: 4919
diff changeset
  2586
     Time millisecondsToRun:[
11263
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2587
        10000000 timesRepeat:[
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2588
            b reverse
6e6fe9b0b02a comment
Claus Gittinger <cg@exept.de>
parents: 11081
diff changeset
  2589
        ]
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2590
     ]
2585
6c25622320aa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2579
diff changeset
  2591
    "
930
dd2ba4051d6a added swapBytes & swapLongs (needed when grabbing depth8/depth16 image from screen)
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  2592
!
dd2ba4051d6a added swapBytes & swapLongs (needed when grabbing depth8/depth16 image from screen)
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  2593
dd2ba4051d6a added swapBytes & swapLongs (needed when grabbing depth8/depth16 image from screen)
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  2594
swapBytes
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2595
    "swap bytes inplace -
930
dd2ba4051d6a added swapBytes & swapLongs (needed when grabbing depth8/depth16 image from screen)
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  2596
     written as a primitive for speed on image grabbing (if display order is different)"
dd2ba4051d6a added swapBytes & swapLongs (needed when grabbing depth8/depth16 image from screen)
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  2597
dd2ba4051d6a added swapBytes & swapLongs (needed when grabbing depth8/depth16 image from screen)
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  2598
%{  /* NOCONTEXT */
dd2ba4051d6a added swapBytes & swapLongs (needed when grabbing depth8/depth16 image from screen)
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  2599
dd2ba4051d6a added swapBytes & swapLongs (needed when grabbing depth8/depth16 image from screen)
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  2600
    REGISTER unsigned char *p;
dd2ba4051d6a added swapBytes & swapLongs (needed when grabbing depth8/depth16 image from screen)
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  2601
    REGISTER int cnt;
dd2ba4051d6a added swapBytes & swapLongs (needed when grabbing depth8/depth16 image from screen)
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  2602
    REGISTER unsigned t;
dd2ba4051d6a added swapBytes & swapLongs (needed when grabbing depth8/depth16 image from screen)
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  2603
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1082
diff changeset
  2604
    if (__qClass(self) == @global(ByteArray)) {
930
dd2ba4051d6a added swapBytes & swapLongs (needed when grabbing depth8/depth16 image from screen)
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  2605
	cnt = __byteArraySize(self);
dd2ba4051d6a added swapBytes & swapLongs (needed when grabbing depth8/depth16 image from screen)
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  2606
	cnt = cnt & ~1; /* make it even */
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1082
diff changeset
  2607
	p = __ByteArrayInstPtr(self)->ba_element;
930
dd2ba4051d6a added swapBytes & swapLongs (needed when grabbing depth8/depth16 image from screen)
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  2608
	while (cnt > 0) {
4274
52fe89c37b2e tuned wordAt/doubleWordAt & atPut methods
Claus Gittinger <cg@exept.de>
parents: 4269
diff changeset
  2609
#ifdef OLD
930
dd2ba4051d6a added swapBytes & swapLongs (needed when grabbing depth8/depth16 image from screen)
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  2610
	    t = p[0];
dd2ba4051d6a added swapBytes & swapLongs (needed when grabbing depth8/depth16 image from screen)
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  2611
	    p[0] = p[1];
dd2ba4051d6a added swapBytes & swapLongs (needed when grabbing depth8/depth16 image from screen)
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  2612
	    p[1] = t;
4274
52fe89c37b2e tuned wordAt/doubleWordAt & atPut methods
Claus Gittinger <cg@exept.de>
parents: 4269
diff changeset
  2613
#else
52fe89c37b2e tuned wordAt/doubleWordAt & atPut methods
Claus Gittinger <cg@exept.de>
parents: 4269
diff changeset
  2614
	    unsigned short s;
52fe89c37b2e tuned wordAt/doubleWordAt & atPut methods
Claus Gittinger <cg@exept.de>
parents: 4269
diff changeset
  2615
52fe89c37b2e tuned wordAt/doubleWordAt & atPut methods
Claus Gittinger <cg@exept.de>
parents: 4269
diff changeset
  2616
	    s = ((unsigned short *)p)[0];
52fe89c37b2e tuned wordAt/doubleWordAt & atPut methods
Claus Gittinger <cg@exept.de>
parents: 4269
diff changeset
  2617
	    s = (s >> 8) | (s << 8);
52fe89c37b2e tuned wordAt/doubleWordAt & atPut methods
Claus Gittinger <cg@exept.de>
parents: 4269
diff changeset
  2618
	    ((unsigned short *)p)[0] = s;
52fe89c37b2e tuned wordAt/doubleWordAt & atPut methods
Claus Gittinger <cg@exept.de>
parents: 4269
diff changeset
  2619
#endif
930
dd2ba4051d6a added swapBytes & swapLongs (needed when grabbing depth8/depth16 image from screen)
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  2620
	    p += 2;
dd2ba4051d6a added swapBytes & swapLongs (needed when grabbing depth8/depth16 image from screen)
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  2621
	    cnt -= 2;
dd2ba4051d6a added swapBytes & swapLongs (needed when grabbing depth8/depth16 image from screen)
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  2622
	}
dd2ba4051d6a added swapBytes & swapLongs (needed when grabbing depth8/depth16 image from screen)
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  2623
	RETURN ( self );
dd2ba4051d6a added swapBytes & swapLongs (needed when grabbing depth8/depth16 image from screen)
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  2624
    }
dd2ba4051d6a added swapBytes & swapLongs (needed when grabbing depth8/depth16 image from screen)
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  2625
%}.
dd2ba4051d6a added swapBytes & swapLongs (needed when grabbing depth8/depth16 image from screen)
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  2626
    ^ super swapBytes "/ rubbish - there is no one currenly
dd2ba4051d6a added swapBytes & swapLongs (needed when grabbing depth8/depth16 image from screen)
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  2627
dd2ba4051d6a added swapBytes & swapLongs (needed when grabbing depth8/depth16 image from screen)
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  2628
    "
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2629
     #[1 2 3 4 5 6 7 8 9 10] copy swapBytes
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2630
     #[1 2 3 4 5 6 7 8 9 10 11] copy swapBytes
930
dd2ba4051d6a added swapBytes & swapLongs (needed when grabbing depth8/depth16 image from screen)
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  2631
    "
dd2ba4051d6a added swapBytes & swapLongs (needed when grabbing depth8/depth16 image from screen)
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  2632
!
dd2ba4051d6a added swapBytes & swapLongs (needed when grabbing depth8/depth16 image from screen)
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  2633
4983
07e6aab900d9 #swapIndex:and:
Stefan Vogel <sv@exept.de>
parents: 4978
diff changeset
  2634
swapIndex:i1 and:i2
07e6aab900d9 #swapIndex:and:
Stefan Vogel <sv@exept.de>
parents: 4978
diff changeset
  2635
   "spap the bytes with i1 and i2"
07e6aab900d9 #swapIndex:and:
Stefan Vogel <sv@exept.de>
parents: 4978
diff changeset
  2636
07e6aab900d9 #swapIndex:and:
Stefan Vogel <sv@exept.de>
parents: 4978
diff changeset
  2637
%{  /* NOCONTEXT */
07e6aab900d9 #swapIndex:and:
Stefan Vogel <sv@exept.de>
parents: 4978
diff changeset
  2638
07e6aab900d9 #swapIndex:and:
Stefan Vogel <sv@exept.de>
parents: 4978
diff changeset
  2639
    REGISTER unsigned char *p;
07e6aab900d9 #swapIndex:and:
Stefan Vogel <sv@exept.de>
parents: 4978
diff changeset
  2640
    unsigned int __i1, __i2;
07e6aab900d9 #swapIndex:and:
Stefan Vogel <sv@exept.de>
parents: 4978
diff changeset
  2641
    int cnt;
07e6aab900d9 #swapIndex:and:
Stefan Vogel <sv@exept.de>
parents: 4978
diff changeset
  2642
    unsigned int t;
07e6aab900d9 #swapIndex:and:
Stefan Vogel <sv@exept.de>
parents: 4978
diff changeset
  2643
07e6aab900d9 #swapIndex:and:
Stefan Vogel <sv@exept.de>
parents: 4978
diff changeset
  2644
    if (__qClass(self) == @global(ByteArray) && __bothSmallInteger(i1, i2)) {
11265
dd57cc0a379b comment
Claus Gittinger <cg@exept.de>
parents: 11263
diff changeset
  2645
        __i1 = __intVal(i1) - 1;
dd57cc0a379b comment
Claus Gittinger <cg@exept.de>
parents: 11263
diff changeset
  2646
        __i2 = __intVal(i2) - 1;
dd57cc0a379b comment
Claus Gittinger <cg@exept.de>
parents: 11263
diff changeset
  2647
        cnt = __byteArraySize(self);
dd57cc0a379b comment
Claus Gittinger <cg@exept.de>
parents: 11263
diff changeset
  2648
        p = __ByteArrayInstPtr(self)->ba_element;
dd57cc0a379b comment
Claus Gittinger <cg@exept.de>
parents: 11263
diff changeset
  2649
        if (__i1 < cnt && __i2 < cnt) {
dd57cc0a379b comment
Claus Gittinger <cg@exept.de>
parents: 11263
diff changeset
  2650
            t = p[__i1];
dd57cc0a379b comment
Claus Gittinger <cg@exept.de>
parents: 11263
diff changeset
  2651
            p[__i1] = p[__i2];
dd57cc0a379b comment
Claus Gittinger <cg@exept.de>
parents: 11263
diff changeset
  2652
            p[__i2] = t;
dd57cc0a379b comment
Claus Gittinger <cg@exept.de>
parents: 11263
diff changeset
  2653
        }
dd57cc0a379b comment
Claus Gittinger <cg@exept.de>
parents: 11263
diff changeset
  2654
        RETURN ( self );
4983
07e6aab900d9 #swapIndex:and:
Stefan Vogel <sv@exept.de>
parents: 4978
diff changeset
  2655
    }
07e6aab900d9 #swapIndex:and:
Stefan Vogel <sv@exept.de>
parents: 4978
diff changeset
  2656
%}.
11265
dd57cc0a379b comment
Claus Gittinger <cg@exept.de>
parents: 11263
diff changeset
  2657
    ^ super swapIndex:i1 and:i2 "/ rubbish - there is no one currently
4983
07e6aab900d9 #swapIndex:and:
Stefan Vogel <sv@exept.de>
parents: 4978
diff changeset
  2658
07e6aab900d9 #swapIndex:and:
Stefan Vogel <sv@exept.de>
parents: 4978
diff changeset
  2659
    "
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2660
     #[1 2 3 4 5 6 7 8 9 10] copy swapIndex:1 and:10
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2661
     #[1 2 3 4 5 6 7 8 9 10 11] copy swapIndex:5 and:6
4983
07e6aab900d9 #swapIndex:and:
Stefan Vogel <sv@exept.de>
parents: 4978
diff changeset
  2662
    "
07e6aab900d9 #swapIndex:and:
Stefan Vogel <sv@exept.de>
parents: 4978
diff changeset
  2663
!
07e6aab900d9 #swapIndex:and:
Stefan Vogel <sv@exept.de>
parents: 4978
diff changeset
  2664
930
dd2ba4051d6a added swapBytes & swapLongs (needed when grabbing depth8/depth16 image from screen)
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  2665
swapLongs
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2666
    "swap long bytes inplace
4927
9d67bf3f4009 made the BSWAP macro public
Claus Gittinger <cg@exept.de>
parents: 4925
diff changeset
  2667
     - any partial longs at the end are not swapped."
9d67bf3f4009 made the BSWAP macro public
Claus Gittinger <cg@exept.de>
parents: 4925
diff changeset
  2668
9d67bf3f4009 made the BSWAP macro public
Claus Gittinger <cg@exept.de>
parents: 4925
diff changeset
  2669
    self swapLongsFrom:1 to:self size
930
dd2ba4051d6a added swapBytes & swapLongs (needed when grabbing depth8/depth16 image from screen)
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  2670
dd2ba4051d6a added swapBytes & swapLongs (needed when grabbing depth8/depth16 image from screen)
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  2671
    "
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2672
     #[1 2 3 4 5 6 7 8 9] copy swapLongs
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2673
     #[1 2 3 4 5 6 7 8 9 10] copy swapLongs
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2674
     #[1 2 3 4 5 6 7 8 9 10 11] copy swapLongs
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2675
     #[1 2 3 4 5 6 7 8 9 10 11 12] copy swapLongs
930
dd2ba4051d6a added swapBytes & swapLongs (needed when grabbing depth8/depth16 image from screen)
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  2676
    "
4365
da0d377442c8 added #swapLongsFrom:to:
Claus Gittinger <cg@exept.de>
parents: 4275
diff changeset
  2677
!
da0d377442c8 added #swapLongsFrom:to:
Claus Gittinger <cg@exept.de>
parents: 4275
diff changeset
  2678
da0d377442c8 added #swapLongsFrom:to:
Claus Gittinger <cg@exept.de>
parents: 4275
diff changeset
  2679
swapLongsFrom:startIndex to:endIndex
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2680
    "swap longs inplace
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2681
     - any partial longs at the end are not swapped.
4367
3d481db099ec oops - swapLongsFrom:to: was wrong
Claus Gittinger <cg@exept.de>
parents: 4365
diff changeset
  2682
     Swapping is from startIndex to (exclusiv) endIndex;
3d481db099ec oops - swapLongsFrom:to: was wrong
Claus Gittinger <cg@exept.de>
parents: 4365
diff changeset
  2683
     indexing starts at 1."
4365
da0d377442c8 added #swapLongsFrom:to:
Claus Gittinger <cg@exept.de>
parents: 4275
diff changeset
  2684
da0d377442c8 added #swapLongsFrom:to:
Claus Gittinger <cg@exept.de>
parents: 4275
diff changeset
  2685
%{  /* NOCONTEXT */
da0d377442c8 added #swapLongsFrom:to:
Claus Gittinger <cg@exept.de>
parents: 4275
diff changeset
  2686
da0d377442c8 added #swapLongsFrom:to:
Claus Gittinger <cg@exept.de>
parents: 4275
diff changeset
  2687
    REGISTER unsigned char *p;
da0d377442c8 added #swapLongsFrom:to:
Claus Gittinger <cg@exept.de>
parents: 4275
diff changeset
  2688
    REGISTER int limit;
da0d377442c8 added #swapLongsFrom:to:
Claus Gittinger <cg@exept.de>
parents: 4275
diff changeset
  2689
    REGISTER unsigned t;
da0d377442c8 added #swapLongsFrom:to:
Claus Gittinger <cg@exept.de>
parents: 4275
diff changeset
  2690
da0d377442c8 added #swapLongsFrom:to:
Claus Gittinger <cg@exept.de>
parents: 4275
diff changeset
  2691
    if ((__qClass(self) == @global(ByteArray))
da0d377442c8 added #swapLongsFrom:to:
Claus Gittinger <cg@exept.de>
parents: 4275
diff changeset
  2692
     && __isSmallInteger(startIndex)
da0d377442c8 added #swapLongsFrom:to:
Claus Gittinger <cg@exept.de>
parents: 4275
diff changeset
  2693
     && __isSmallInteger(endIndex)) {
4969
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2694
	int __idx = __intVal(startIndex);
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2695
	int __endIdx = __intVal(endIndex);
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2696
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2697
	limit = __byteArraySize(self);
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2698
	if (__endIdx < limit) {
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2699
	    limit = __endIdx;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2700
	}
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2701
	p = __ByteArrayInstPtr(self)->ba_element;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2702
	p = p + __idx - 1;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2703
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2704
	limit = limit - 4 + 1;
4927
9d67bf3f4009 made the BSWAP macro public
Claus Gittinger <cg@exept.de>
parents: 4925
diff changeset
  2705
9d67bf3f4009 made the BSWAP macro public
Claus Gittinger <cg@exept.de>
parents: 4925
diff changeset
  2706
#if defined(__BSWAP)
4969
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2707
	/*
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2708
	 * can we use the bswap instruction ?
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2709
	 * notice - not all CPUs have it (the HAS_BSWAP checks this).
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2710
	 */
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2711
	if (__HAS_BSWAP()
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2712
	 && (((unsigned int)p & 3) == 0)) {
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2713
	    unsigned int *ip;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2714
	    ip = (unsigned int *)p;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2715
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2716
	    while (__idx <= limit) {
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2717
		*ip = __BSWAP(*ip);
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2718
		ip++;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2719
		__idx += 4;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2720
	    }
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2721
	    RETURN (self);
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2722
	}
4927
9d67bf3f4009 made the BSWAP macro public
Claus Gittinger <cg@exept.de>
parents: 4925
diff changeset
  2723
#endif /* __BSWAP */
9d67bf3f4009 made the BSWAP macro public
Claus Gittinger <cg@exept.de>
parents: 4925
diff changeset
  2724
4969
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2725
	while (__idx <= limit) {
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2726
	    t = p[0];
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2727
	    p[0] = p[3];
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2728
	    p[3] = t;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2729
	    t = p[1];
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2730
	    p[1] = p[2];
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2731
	    p[2] = t;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2732
	    p += 4;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2733
	    __idx += 4;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2734
	}
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2735
	RETURN ( self );
4365
da0d377442c8 added #swapLongsFrom:to:
Claus Gittinger <cg@exept.de>
parents: 4275
diff changeset
  2736
    }
da0d377442c8 added #swapLongsFrom:to:
Claus Gittinger <cg@exept.de>
parents: 4275
diff changeset
  2737
%}.
da0d377442c8 added #swapLongsFrom:to:
Claus Gittinger <cg@exept.de>
parents: 4275
diff changeset
  2738
    ^ super swapLongsFrom:startIndex to:endIndex "/ rubbish - there is no one currenly
da0d377442c8 added #swapLongsFrom:to:
Claus Gittinger <cg@exept.de>
parents: 4275
diff changeset
  2739
da0d377442c8 added #swapLongsFrom:to:
Claus Gittinger <cg@exept.de>
parents: 4275
diff changeset
  2740
    "
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2741
     #[1 2 3 4 5 6 7 8 9] copy swapLongsFrom:1 to:3
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2742
     #[1 2 3 4 5 6 7 8 9] copy swapLongsFrom:1 to:4
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2743
     #[1 2 3 4 5 6 7 8 9] copy swapLongsFrom:1 to:5
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2744
     #[1 2 3 4 5 6 7 8 9] copy swapLongsFrom:1 to:6
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2745
     #[1 2 3 4 5 6 7 8 9] copy swapLongsFrom:1 to:7
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2746
     #[1 2 3 4 5 6 7 8 9] copy swapLongsFrom:1 to:8
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2747
     #[1 2 3 4 5 6 7 8 9 10] copy swapLongsFrom:1 to:11
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2748
     #[1 2 3 4 5 6 7 8 9 10 11] copy swapLongsFrom:1 to:12
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2749
     #[1 2 3 4 5 6 7 8 9 10 11 12] copy swapLongsFrom:1 to:13
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2750
     #[1 2 3 4 5 6 7 8 9] copy swapLongsFrom:5 to:10
4365
da0d377442c8 added #swapLongsFrom:to:
Claus Gittinger <cg@exept.de>
parents: 4275
diff changeset
  2751
    "
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2752
! !
550
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2753
10028
f43a291eabd6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9659
diff changeset
  2754
550
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2755
!ByteArray methodsFor:'printing & storing'!
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2756
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2757
displayString
1244
dc9dd731258c commentary
Claus Gittinger <cg@exept.de>
parents: 1230
diff changeset
  2758
    "return a printed representation of the receiver for displaying"
dc9dd731258c commentary
Claus Gittinger <cg@exept.de>
parents: 1230
diff changeset
  2759
6513
d7bc1d1dab4b displayString fix for subclasses
Claus Gittinger <cg@exept.de>
parents: 6125
diff changeset
  2760
    self class == ByteArray ifTrue:[
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2761
	^ self storeString
6513
d7bc1d1dab4b displayString fix for subclasses
Claus Gittinger <cg@exept.de>
parents: 6125
diff changeset
  2762
    ].
d7bc1d1dab4b displayString fix for subclasses
Claus Gittinger <cg@exept.de>
parents: 6125
diff changeset
  2763
    ^ super displayString
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2764
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2765
    "Created: 25.10.1995 / 13:33:26 / cg"
1244
dc9dd731258c commentary
Claus Gittinger <cg@exept.de>
parents: 1230
diff changeset
  2766
    "Modified: 22.4.1996 / 12:54:06 / cg"
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2767
!
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2768
7172
0eae969b6ff5 #hexPrintOn:
Stefan Vogel <sv@exept.de>
parents: 7117
diff changeset
  2769
hexPrintOn:aStream
7245
0a085a2048e1 comments
Claus Gittinger <cg@exept.de>
parents: 7194
diff changeset
  2770
    "print as hex string, eg: 'FF0243'.
0a085a2048e1 comments
Claus Gittinger <cg@exept.de>
parents: 7194
diff changeset
  2771
     This string can be used in #fromHexString: to recreate the byteArray"
7172
0eae969b6ff5 #hexPrintOn:
Stefan Vogel <sv@exept.de>
parents: 7117
diff changeset
  2772
0eae969b6ff5 #hexPrintOn:
Stefan Vogel <sv@exept.de>
parents: 7117
diff changeset
  2773
    self do:[:byte|
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2774
	byte printOn:aStream base:16 size:2 fill:$0.
7172
0eae969b6ff5 #hexPrintOn:
Stefan Vogel <sv@exept.de>
parents: 7117
diff changeset
  2775
    ].
0eae969b6ff5 #hexPrintOn:
Stefan Vogel <sv@exept.de>
parents: 7117
diff changeset
  2776
0eae969b6ff5 #hexPrintOn:
Stefan Vogel <sv@exept.de>
parents: 7117
diff changeset
  2777
    "
0eae969b6ff5 #hexPrintOn:
Stefan Vogel <sv@exept.de>
parents: 7117
diff changeset
  2778
      #[1 2 3 4 10 17] hexPrintOn:Transcript
0eae969b6ff5 #hexPrintOn:
Stefan Vogel <sv@exept.de>
parents: 7117
diff changeset
  2779
    "
7245
0a085a2048e1 comments
Claus Gittinger <cg@exept.de>
parents: 7194
diff changeset
  2780
0a085a2048e1 comments
Claus Gittinger <cg@exept.de>
parents: 7194
diff changeset
  2781
    "
0a085a2048e1 comments
Claus Gittinger <cg@exept.de>
parents: 7194
diff changeset
  2782
     |s|
0a085a2048e1 comments
Claus Gittinger <cg@exept.de>
parents: 7194
diff changeset
  2783
     s := String streamContents:[:s | #[1 2 3 4 10 17] hexPrintOn:s].
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2784
     ByteArray fromHexString:s
7245
0a085a2048e1 comments
Claus Gittinger <cg@exept.de>
parents: 7194
diff changeset
  2785
    "
7172
0eae969b6ff5 #hexPrintOn:
Stefan Vogel <sv@exept.de>
parents: 7117
diff changeset
  2786
!
0eae969b6ff5 #hexPrintOn:
Stefan Vogel <sv@exept.de>
parents: 7117
diff changeset
  2787
9379
b7e6cbe411f7 #hexPrintXX:withSeparator:
Stefan Vogel <sv@exept.de>
parents: 9368
diff changeset
  2788
hexPrintOn:aStream withSeparator:aSeparatorStringOrCharacter
b7e6cbe411f7 #hexPrintXX:withSeparator:
Stefan Vogel <sv@exept.de>
parents: 9368
diff changeset
  2789
    "print as hex string, eg: 'FF:02:43'"
b7e6cbe411f7 #hexPrintXX:withSeparator:
Stefan Vogel <sv@exept.de>
parents: 9368
diff changeset
  2790
b7e6cbe411f7 #hexPrintXX:withSeparator:
Stefan Vogel <sv@exept.de>
parents: 9368
diff changeset
  2791
    self do:[:byte|
b7e6cbe411f7 #hexPrintXX:withSeparator:
Stefan Vogel <sv@exept.de>
parents: 9368
diff changeset
  2792
        byte printOn:aStream base:16 size:2 fill:$0.
b7e6cbe411f7 #hexPrintXX:withSeparator:
Stefan Vogel <sv@exept.de>
parents: 9368
diff changeset
  2793
    ] separatedBy:[
b7e6cbe411f7 #hexPrintXX:withSeparator:
Stefan Vogel <sv@exept.de>
parents: 9368
diff changeset
  2794
        aSeparatorStringOrCharacter printOn:aStream
b7e6cbe411f7 #hexPrintXX:withSeparator:
Stefan Vogel <sv@exept.de>
parents: 9368
diff changeset
  2795
    ].
b7e6cbe411f7 #hexPrintXX:withSeparator:
Stefan Vogel <sv@exept.de>
parents: 9368
diff changeset
  2796
b7e6cbe411f7 #hexPrintXX:withSeparator:
Stefan Vogel <sv@exept.de>
parents: 9368
diff changeset
  2797
    "
b7e6cbe411f7 #hexPrintXX:withSeparator:
Stefan Vogel <sv@exept.de>
parents: 9368
diff changeset
  2798
      #[1 2 3 4 10 17] hexPrintOn:Transcript withSeparator:$:
b7e6cbe411f7 #hexPrintXX:withSeparator:
Stefan Vogel <sv@exept.de>
parents: 9368
diff changeset
  2799
    "
b7e6cbe411f7 #hexPrintXX:withSeparator:
Stefan Vogel <sv@exept.de>
parents: 9368
diff changeset
  2800
!
b7e6cbe411f7 #hexPrintXX:withSeparator:
Stefan Vogel <sv@exept.de>
parents: 9368
diff changeset
  2801
9368
c5a70cfa0f18 New: #hexPrintString
Stefan Vogel <sv@exept.de>
parents: 8996
diff changeset
  2802
hexPrintString
c5a70cfa0f18 New: #hexPrintString
Stefan Vogel <sv@exept.de>
parents: 8996
diff changeset
  2803
    "print as hex string, eg: 'FF0243'.
c5a70cfa0f18 New: #hexPrintString
Stefan Vogel <sv@exept.de>
parents: 8996
diff changeset
  2804
     This string can be used in #fromHexString: to recreate the byteArray"
c5a70cfa0f18 New: #hexPrintString
Stefan Vogel <sv@exept.de>
parents: 8996
diff changeset
  2805
c5a70cfa0f18 New: #hexPrintString
Stefan Vogel <sv@exept.de>
parents: 8996
diff changeset
  2806
    |s|
c5a70cfa0f18 New: #hexPrintString
Stefan Vogel <sv@exept.de>
parents: 8996
diff changeset
  2807
c5a70cfa0f18 New: #hexPrintString
Stefan Vogel <sv@exept.de>
parents: 8996
diff changeset
  2808
    s := '' writeStream.
c5a70cfa0f18 New: #hexPrintString
Stefan Vogel <sv@exept.de>
parents: 8996
diff changeset
  2809
    self do:[:byte|
c5a70cfa0f18 New: #hexPrintString
Stefan Vogel <sv@exept.de>
parents: 8996
diff changeset
  2810
        byte printOn:s base:16 size:2 fill:$0.
c5a70cfa0f18 New: #hexPrintString
Stefan Vogel <sv@exept.de>
parents: 8996
diff changeset
  2811
    ].
c5a70cfa0f18 New: #hexPrintString
Stefan Vogel <sv@exept.de>
parents: 8996
diff changeset
  2812
    ^ s contents.
c5a70cfa0f18 New: #hexPrintString
Stefan Vogel <sv@exept.de>
parents: 8996
diff changeset
  2813
c5a70cfa0f18 New: #hexPrintString
Stefan Vogel <sv@exept.de>
parents: 8996
diff changeset
  2814
    "
c5a70cfa0f18 New: #hexPrintString
Stefan Vogel <sv@exept.de>
parents: 8996
diff changeset
  2815
      #[1 2 3 4 10 17] hexPrintString
c5a70cfa0f18 New: #hexPrintString
Stefan Vogel <sv@exept.de>
parents: 8996
diff changeset
  2816
    "
c5a70cfa0f18 New: #hexPrintString
Stefan Vogel <sv@exept.de>
parents: 8996
diff changeset
  2817
c5a70cfa0f18 New: #hexPrintString
Stefan Vogel <sv@exept.de>
parents: 8996
diff changeset
  2818
    "
c5a70cfa0f18 New: #hexPrintString
Stefan Vogel <sv@exept.de>
parents: 8996
diff changeset
  2819
     ByteArray fromHexString:#[1 2 3 4 10 17] hexPrintString
c5a70cfa0f18 New: #hexPrintString
Stefan Vogel <sv@exept.de>
parents: 8996
diff changeset
  2820
    "
c5a70cfa0f18 New: #hexPrintString
Stefan Vogel <sv@exept.de>
parents: 8996
diff changeset
  2821
!
c5a70cfa0f18 New: #hexPrintString
Stefan Vogel <sv@exept.de>
parents: 8996
diff changeset
  2822
9379
b7e6cbe411f7 #hexPrintXX:withSeparator:
Stefan Vogel <sv@exept.de>
parents: 9368
diff changeset
  2823
hexPrintStringWithSeparator:aSeparatorStringOrCharacter
b7e6cbe411f7 #hexPrintXX:withSeparator:
Stefan Vogel <sv@exept.de>
parents: 9368
diff changeset
  2824
    "print as hex string, eg: 'FF:02:43'."
b7e6cbe411f7 #hexPrintXX:withSeparator:
Stefan Vogel <sv@exept.de>
parents: 9368
diff changeset
  2825
b7e6cbe411f7 #hexPrintXX:withSeparator:
Stefan Vogel <sv@exept.de>
parents: 9368
diff changeset
  2826
    |s|
b7e6cbe411f7 #hexPrintXX:withSeparator:
Stefan Vogel <sv@exept.de>
parents: 9368
diff changeset
  2827
b7e6cbe411f7 #hexPrintXX:withSeparator:
Stefan Vogel <sv@exept.de>
parents: 9368
diff changeset
  2828
    s := '' writeStream.
b7e6cbe411f7 #hexPrintXX:withSeparator:
Stefan Vogel <sv@exept.de>
parents: 9368
diff changeset
  2829
    self hexPrintOn:s withSeparator:aSeparatorStringOrCharacter.
b7e6cbe411f7 #hexPrintXX:withSeparator:
Stefan Vogel <sv@exept.de>
parents: 9368
diff changeset
  2830
    ^ s contents.
b7e6cbe411f7 #hexPrintXX:withSeparator:
Stefan Vogel <sv@exept.de>
parents: 9368
diff changeset
  2831
b7e6cbe411f7 #hexPrintXX:withSeparator:
Stefan Vogel <sv@exept.de>
parents: 9368
diff changeset
  2832
    "
b7e6cbe411f7 #hexPrintXX:withSeparator:
Stefan Vogel <sv@exept.de>
parents: 9368
diff changeset
  2833
      #[1 2 3 4 10 17] hexPrintStringWithSeparator:$:
17728
bbc5fa73dfab Merged with trunk r10466
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 17711
diff changeset
  2834
      #[1 2 3 4 10 17] hexPrintStringWithSeparator:Character space
9379
b7e6cbe411f7 #hexPrintXX:withSeparator:
Stefan Vogel <sv@exept.de>
parents: 9368
diff changeset
  2835
    "
b7e6cbe411f7 #hexPrintXX:withSeparator:
Stefan Vogel <sv@exept.de>
parents: 9368
diff changeset
  2836
!
b7e6cbe411f7 #hexPrintXX:withSeparator:
Stefan Vogel <sv@exept.de>
parents: 9368
diff changeset
  2837
5019
4cd8b02e26e1 Redefine #PrintOn: to print in #[] notation.
Stefan Vogel <sv@exept.de>
parents: 4983
diff changeset
  2838
printOn:aStream
4cd8b02e26e1 Redefine #PrintOn: to print in #[] notation.
Stefan Vogel <sv@exept.de>
parents: 4983
diff changeset
  2839
    "append a printed representation to aStream"
4cd8b02e26e1 Redefine #PrintOn: to print in #[] notation.
Stefan Vogel <sv@exept.de>
parents: 4983
diff changeset
  2840
4cd8b02e26e1 Redefine #PrintOn: to print in #[] notation.
Stefan Vogel <sv@exept.de>
parents: 4983
diff changeset
  2841
    self class == ByteArray ifTrue:[    "/ care for subclasses
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2842
	aStream nextPutAll:'#['.
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2843
	self
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2844
	    do:[:byte | byte printOn:aStream]
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2845
	    separatedBy:[aStream space].
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2846
	aStream nextPut:$].
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2847
	^ self
5019
4cd8b02e26e1 Redefine #PrintOn: to print in #[] notation.
Stefan Vogel <sv@exept.de>
parents: 4983
diff changeset
  2848
    ].
4cd8b02e26e1 Redefine #PrintOn: to print in #[] notation.
Stefan Vogel <sv@exept.de>
parents: 4983
diff changeset
  2849
    ^ super printOn:aStream
4cd8b02e26e1 Redefine #PrintOn: to print in #[] notation.
Stefan Vogel <sv@exept.de>
parents: 4983
diff changeset
  2850
4cd8b02e26e1 Redefine #PrintOn: to print in #[] notation.
Stefan Vogel <sv@exept.de>
parents: 4983
diff changeset
  2851
    "
4cd8b02e26e1 Redefine #PrintOn: to print in #[] notation.
Stefan Vogel <sv@exept.de>
parents: 4983
diff changeset
  2852
     #[1 2 3 4 5] printOn:Transcript
4cd8b02e26e1 Redefine #PrintOn: to print in #[] notation.
Stefan Vogel <sv@exept.de>
parents: 4983
diff changeset
  2853
4cd8b02e26e1 Redefine #PrintOn: to print in #[] notation.
Stefan Vogel <sv@exept.de>
parents: 4983
diff changeset
  2854
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2855
     #[1 2 3 4 5] storeString
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2856
     #[1 2 3 4 5] displayString
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2857
     #[1 2 3 4 5] printString
5019
4cd8b02e26e1 Redefine #PrintOn: to print in #[] notation.
Stefan Vogel <sv@exept.de>
parents: 4983
diff changeset
  2858
    "
4cd8b02e26e1 Redefine #PrintOn: to print in #[] notation.
Stefan Vogel <sv@exept.de>
parents: 4983
diff changeset
  2859
4cd8b02e26e1 Redefine #PrintOn: to print in #[] notation.
Stefan Vogel <sv@exept.de>
parents: 4983
diff changeset
  2860
    "Modified: / 12.9.1997 / 22:11:33 / cg"
4cd8b02e26e1 Redefine #PrintOn: to print in #[] notation.
Stefan Vogel <sv@exept.de>
parents: 4983
diff changeset
  2861
    "Modified: / 17.3.1999 / 17:01:31 / stefan"
4cd8b02e26e1 Redefine #PrintOn: to print in #[] notation.
Stefan Vogel <sv@exept.de>
parents: 4983
diff changeset
  2862
!
4cd8b02e26e1 Redefine #PrintOn: to print in #[] notation.
Stefan Vogel <sv@exept.de>
parents: 4983
diff changeset
  2863
4050
463c0355416d New method printOn:base:
Stefan Vogel <sv@exept.de>
parents: 4019
diff changeset
  2864
printOn:aStream base:radix
463c0355416d New method printOn:base:
Stefan Vogel <sv@exept.de>
parents: 4019
diff changeset
  2865
    "append a printed representation to aStream in the given number base."
463c0355416d New method printOn:base:
Stefan Vogel <sv@exept.de>
parents: 4019
diff changeset
  2866
6125
f5ca6209cd4d + printOn:radix:showRadix:
Claus Gittinger <cg@exept.de>
parents: 5901
diff changeset
  2867
    ^ self printOn:aStream base:radix showRadix:false
f5ca6209cd4d + printOn:radix:showRadix:
Claus Gittinger <cg@exept.de>
parents: 5901
diff changeset
  2868
f5ca6209cd4d + printOn:radix:showRadix:
Claus Gittinger <cg@exept.de>
parents: 5901
diff changeset
  2869
    "
f5ca6209cd4d + printOn:radix:showRadix:
Claus Gittinger <cg@exept.de>
parents: 5901
diff changeset
  2870
     #[1 2 3 4 5] printOn:Transcript base:2
f5ca6209cd4d + printOn:radix:showRadix:
Claus Gittinger <cg@exept.de>
parents: 5901
diff changeset
  2871
     'Hello World' printOn:Transcript base:2
f5ca6209cd4d + printOn:radix:showRadix:
Claus Gittinger <cg@exept.de>
parents: 5901
diff changeset
  2872
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2873
     #[1 2 3 4 5] storeString
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2874
     #[1 2 3 4 5] displayString
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2875
     #[1 2 3 4 5] printString
6125
f5ca6209cd4d + printOn:radix:showRadix:
Claus Gittinger <cg@exept.de>
parents: 5901
diff changeset
  2876
    "
f5ca6209cd4d + printOn:radix:showRadix:
Claus Gittinger <cg@exept.de>
parents: 5901
diff changeset
  2877
f5ca6209cd4d + printOn:radix:showRadix:
Claus Gittinger <cg@exept.de>
parents: 5901
diff changeset
  2878
    "Modified: / 17.3.1999 / 17:01:31 / stefan"
f5ca6209cd4d + printOn:radix:showRadix:
Claus Gittinger <cg@exept.de>
parents: 5901
diff changeset
  2879
    "Modified: / 31.10.2001 / 09:43:56 / cg"
f5ca6209cd4d + printOn:radix:showRadix:
Claus Gittinger <cg@exept.de>
parents: 5901
diff changeset
  2880
!
f5ca6209cd4d + printOn:radix:showRadix:
Claus Gittinger <cg@exept.de>
parents: 5901
diff changeset
  2881
f5ca6209cd4d + printOn:radix:showRadix:
Claus Gittinger <cg@exept.de>
parents: 5901
diff changeset
  2882
printOn:aStream base:radix showRadix:showRadix
f5ca6209cd4d + printOn:radix:showRadix:
Claus Gittinger <cg@exept.de>
parents: 5901
diff changeset
  2883
    "append a printed representation to aStream in the given number base."
f5ca6209cd4d + printOn:radix:showRadix:
Claus Gittinger <cg@exept.de>
parents: 5901
diff changeset
  2884
4050
463c0355416d New method printOn:base:
Stefan Vogel <sv@exept.de>
parents: 4019
diff changeset
  2885
    self class == ByteArray ifTrue:[    "/ care for subclasses
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2886
	aStream nextPutAll:'#['.
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2887
	self
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2888
	    do:[:byte | byte printOn:aStream base:radix showRadix:showRadix]
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2889
	    separatedBy:[aStream space].
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2890
	aStream nextPut:$].
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2891
	^ self
4050
463c0355416d New method printOn:base:
Stefan Vogel <sv@exept.de>
parents: 4019
diff changeset
  2892
    ].
5019
4cd8b02e26e1 Redefine #PrintOn: to print in #[] notation.
Stefan Vogel <sv@exept.de>
parents: 4983
diff changeset
  2893
    ^ self printOn:aStream
4050
463c0355416d New method printOn:base:
Stefan Vogel <sv@exept.de>
parents: 4019
diff changeset
  2894
463c0355416d New method printOn:base:
Stefan Vogel <sv@exept.de>
parents: 4019
diff changeset
  2895
    "
5019
4cd8b02e26e1 Redefine #PrintOn: to print in #[] notation.
Stefan Vogel <sv@exept.de>
parents: 4983
diff changeset
  2896
     #[1 2 3 4 5] printOn:Transcript base:2
4cd8b02e26e1 Redefine #PrintOn: to print in #[] notation.
Stefan Vogel <sv@exept.de>
parents: 4983
diff changeset
  2897
     'Hello World' printOn:Transcript base:2
4050
463c0355416d New method printOn:base:
Stefan Vogel <sv@exept.de>
parents: 4019
diff changeset
  2898
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2899
     #[1 2 3 4 5] storeString
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2900
     #[1 2 3 4 5] displayString
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2901
     #[1 2 3 4 5] printString
4050
463c0355416d New method printOn:base:
Stefan Vogel <sv@exept.de>
parents: 4019
diff changeset
  2902
    "
463c0355416d New method printOn:base:
Stefan Vogel <sv@exept.de>
parents: 4019
diff changeset
  2903
463c0355416d New method printOn:base:
Stefan Vogel <sv@exept.de>
parents: 4019
diff changeset
  2904
    "Modified: / 12.9.1997 / 22:11:33 / cg"
463c0355416d New method printOn:base:
Stefan Vogel <sv@exept.de>
parents: 4019
diff changeset
  2905
    "Modified: / 17.3.1999 / 17:01:31 / stefan"
6125
f5ca6209cd4d + printOn:radix:showRadix:
Claus Gittinger <cg@exept.de>
parents: 5901
diff changeset
  2906
    "Created: / 31.10.2001 / 09:43:41 / cg"
4050
463c0355416d New method printOn:base:
Stefan Vogel <sv@exept.de>
parents: 4019
diff changeset
  2907
!
463c0355416d New method printOn:base:
Stefan Vogel <sv@exept.de>
parents: 4019
diff changeset
  2908
7599
188489aaaacd #storeString - omit # from Symbols and Arrays that are elements of an array.
Stefan Vogel <sv@exept.de>
parents: 7338
diff changeset
  2909
storeArrayElementOn:aStream
8368
2109093f80ff comment
Claus Gittinger <cg@exept.de>
parents: 8159
diff changeset
  2910
    "Store as element of an array. Omit the leading '#'"
7599
188489aaaacd #storeString - omit # from Symbols and Arrays that are elements of an array.
Stefan Vogel <sv@exept.de>
parents: 7338
diff changeset
  2911
188489aaaacd #storeString - omit # from Symbols and Arrays that are elements of an array.
Stefan Vogel <sv@exept.de>
parents: 7338
diff changeset
  2912
    self class == ByteArray ifTrue:[    "/ care for subclasses
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2913
	aStream nextPut:$[.
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2914
	self
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2915
	    do:[:byte | byte storeOn:aStream]
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2916
	    separatedBy:[aStream space].
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2917
	aStream nextPut:$].
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2918
	^ self
7599
188489aaaacd #storeString - omit # from Symbols and Arrays that are elements of an array.
Stefan Vogel <sv@exept.de>
parents: 7338
diff changeset
  2919
    ].
8368
2109093f80ff comment
Claus Gittinger <cg@exept.de>
parents: 8159
diff changeset
  2920
    super storeArrayElementOn:aStream
7599
188489aaaacd #storeString - omit # from Symbols and Arrays that are elements of an array.
Stefan Vogel <sv@exept.de>
parents: 7338
diff changeset
  2921
188489aaaacd #storeString - omit # from Symbols and Arrays that are elements of an array.
Stefan Vogel <sv@exept.de>
parents: 7338
diff changeset
  2922
    "
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2923
     #[1 2 3 4 5] storeOn:Transcript
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2924
     #[1 2 3 4 5] storeArrayElementOn:Transcript
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2925
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2926
     #[1 2 3 4 5] storeString
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2927
     #[1 2 3 4 5] displayString
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2928
     #[1 2 3 4 5] printString
7599
188489aaaacd #storeString - omit # from Symbols and Arrays that are elements of an array.
Stefan Vogel <sv@exept.de>
parents: 7338
diff changeset
  2929
    "
188489aaaacd #storeString - omit # from Symbols and Arrays that are elements of an array.
Stefan Vogel <sv@exept.de>
parents: 7338
diff changeset
  2930
188489aaaacd #storeString - omit # from Symbols and Arrays that are elements of an array.
Stefan Vogel <sv@exept.de>
parents: 7338
diff changeset
  2931
    "Modified: 12.9.1997 / 22:11:33 / cg"
188489aaaacd #storeString - omit # from Symbols and Arrays that are elements of an array.
Stefan Vogel <sv@exept.de>
parents: 7338
diff changeset
  2932
!
188489aaaacd #storeString - omit # from Symbols and Arrays that are elements of an array.
Stefan Vogel <sv@exept.de>
parents: 7338
diff changeset
  2933
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2934
storeOn:aStream
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2935
    "append a printed representation from which the receiver can be
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2936
     reconstructed to aStream. (reimplemented to make it look better)"
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2937
1082
b186a68fff0e category change
Claus Gittinger <cg@exept.de>
parents: 1019
diff changeset
  2938
    self class == ByteArray ifTrue:[    "/ care for subclasses
2579
7e0783458c2f much faster #from:to:put: and #replaceBytes on i386 platforms
Claus Gittinger <cg@exept.de>
parents: 2464
diff changeset
  2939
	aStream nextPutAll:'#['.
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2940
	self
2915
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2941
	    do:[:byte | byte storeOn:aStream]
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2942
	    separatedBy:[aStream space].
2579
7e0783458c2f much faster #from:to:put: and #replaceBytes on i386 platforms
Claus Gittinger <cg@exept.de>
parents: 2464
diff changeset
  2943
	aStream nextPutAll:']'.
7e0783458c2f much faster #from:to:put: and #replaceBytes on i386 platforms
Claus Gittinger <cg@exept.de>
parents: 2464
diff changeset
  2944
	^ self
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2945
    ].
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2946
    ^ super storeOn:aStream
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2947
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2948
    "
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2949
     #[1 2 3 4 5] storeOn:Transcript
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2950
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2951
     #[1 2 3 4 5] storeString
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2952
     #[1 2 3 4 5] displayString
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2953
     #[1 2 3 4 5] printString
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2954
    "
1082
b186a68fff0e category change
Claus Gittinger <cg@exept.de>
parents: 1019
diff changeset
  2955
2915
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  2956
    "Modified: 12.9.1997 / 22:11:33 / cg"
550
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2957
! !
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2958
7822
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  2959
!ByteArray methodsFor:'queries'!
1082
b186a68fff0e category change
Claus Gittinger <cg@exept.de>
parents: 1019
diff changeset
  2960
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2961
max
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2962
    "return the maximum value in the receiver -
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2963
     redefined to speedup image processing and sound-player
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2964
     (which need a fast method for this on byteArrays)"
550
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2965
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2966
%{  /* NOCONTEXT */
550
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2967
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2968
    REGISTER unsigned char *cp;
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2969
    REGISTER int index, max;
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2970
    int len;
550
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2971
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1082
diff changeset
  2972
    if (__qClass(self) == @global(ByteArray)) {
4969
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2973
	max = 0;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2974
	index = 0;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2975
	len = __qSize(self) - OHDR_SIZE;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2976
	cp = &(__ByteArrayInstPtr(self)->ba_element[0]);
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2977
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2978
	while (++index <= len) {
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2979
	    unsigned int byte;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2980
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2981
	    byte = *cp;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2982
	    cp++;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2983
	    if (byte > max) {
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2984
		max = byte;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2985
		if (byte == 255) break;
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2986
	    }
bd9f02a6a74f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4945
diff changeset
  2987
	}
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8908
diff changeset
  2988
	RETURN ( __mkSmallInteger(max) );
550
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2989
    }
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2990
%}.
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  2991
    ^ super max
550
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2992
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2993
    "
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2994
     #[1 2 3 1 2 3 1 2 19] max
550
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2995
    "
5554
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5549
diff changeset
  2996
!
550
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2997
10819
3d7bea065ca5 faster referencesAny
Claus Gittinger <cg@exept.de>
parents: 10029
diff changeset
  2998
referencesAny:aCollection
10821
2b017f37f185 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10819
diff changeset
  2999
    "redefined to speed up searching when many byteArray instances are present"
2b017f37f185 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10819
diff changeset
  3000
10819
3d7bea065ca5 faster referencesAny
Claus Gittinger <cg@exept.de>
parents: 10029
diff changeset
  3001
    self class == ByteArray ifTrue:[^ false].
3d7bea065ca5 faster referencesAny
Claus Gittinger <cg@exept.de>
parents: 10029
diff changeset
  3002
    ^ super referencesAny:aCollection
3d7bea065ca5 faster referencesAny
Claus Gittinger <cg@exept.de>
parents: 10029
diff changeset
  3003
!
3d7bea065ca5 faster referencesAny
Claus Gittinger <cg@exept.de>
parents: 10029
diff changeset
  3004
550
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3005
usageCounts
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3006
    "return an array filled with value-counts -
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3007
     This is needed in the bitmap/image classes to get info on color usage.
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3008
     (i.e. to build up a histogram of color usage within an image)."
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3009
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3010
    |counts|
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3011
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3012
    counts := Array basicNew:256.
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3013
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3014
%{  /* STACK: 2000 */
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3015
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3016
    REGISTER unsigned char *cp;
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3017
    REGISTER int nByte;
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3018
    REGISTER int index;
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8908
diff changeset
  3019
    INT icounts[256];
550
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3020
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1082
diff changeset
  3021
    if ((__qClass(self) == @global(ByteArray)) && __isArray(counts)) {
550
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3022
	/*
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3023
	 * zero counts
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3024
	 */
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3025
	for (index=0; index<256; index++) {
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3026
	    icounts[index] = 0;
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3027
	}
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3028
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3029
	/*
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3030
	 * count
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3031
	 */
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3032
	nByte = __qSize(self) - OHDR_SIZE;
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1082
diff changeset
  3033
	cp = &(__ByteArrayInstPtr(self)->ba_element[0]);
550
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3034
	while (nByte--) {
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3035
	    icounts[*cp++]++;
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3036
	}
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3037
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3038
	/*
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3039
	 * make it real counts
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3040
	 */
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3041
	for (index=0; index<256; index++) {
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8908
diff changeset
  3042
	    __ArrayInstPtr(counts)->a_element[index] = __mkSmallInteger(icounts[index]);
550
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3043
	}
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3044
	RETURN ( counts );
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3045
    }
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3046
%}
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3047
.
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3048
    self primitiveFailed
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3049
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3050
    "
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  3051
     #[1 2 3 1 2 3 1 2 250 251 250 251 255] usageCounts
550
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3052
    "
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3053
!
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3054
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  3055
usedValues
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  3056
    "return a new ByteArray with all used values (actually a kind of Set);
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  3057
     This is needed specially in the bitmap/Imageclasses to find used colors
2866
0d1b10026aa8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2782
diff changeset
  3058
     of an image."
550
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3059
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  3060
%{  /* STACK: 400 */
550
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3061
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3062
    REGISTER unsigned char *cp;
2866
0d1b10026aa8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2782
diff changeset
  3063
    unsigned char *endp;
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  3064
    REGISTER int len;
2890
fa0418a0f896 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2866
diff changeset
  3065
    OBJ result;
2866
0d1b10026aa8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2782
diff changeset
  3066
    union {
2915
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  3067
	unsigned char flags[256];
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  3068
	int toForceAlignmentOfFlags;
2866
0d1b10026aa8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2782
diff changeset
  3069
    } f;
0d1b10026aa8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2782
diff changeset
  3070
0d1b10026aa8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2782
diff changeset
  3071
#ifdef TO_BE_MEASURED
0d1b10026aa8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2782
diff changeset
  3072
    int coverage = 0;
0d1b10026aa8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2782
diff changeset
  3073
#endif
550
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3074
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1082
diff changeset
  3075
    if (__qClass(self) == @global(ByteArray)) {
2915
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  3076
	memset(f.flags, 0, sizeof(f.flags));
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  3077
	len = __qSize(self) - OHDR_SIZE;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  3078
	cp = &(__ByteArrayInstPtr(self)->ba_element[0]);
2866
0d1b10026aa8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2782
diff changeset
  3079
2915
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  3080
	/* for each used byte, set flag */
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  3081
	while (len > 0) {
2866
0d1b10026aa8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2782
diff changeset
  3082
#ifdef TO_BE_MEASURED
2915
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  3083
	    unsigned  byte;
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  3084
2915
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  3085
	    byte = *cp;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  3086
	    if (! f.flags[byte]) {
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  3087
		f.flags[byte] = 1;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  3088
		coverage++;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  3089
		if (coverage == 256) {
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  3090
		    /* no need to scan rest */
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  3091
		    break;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  3092
		}
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  3093
	    }
2866
0d1b10026aa8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2782
diff changeset
  3094
#else
2915
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  3095
	    f.flags[*cp] = 1;
2866
0d1b10026aa8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2782
diff changeset
  3096
#endif
2915
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  3097
	    cp++;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  3098
	    len--;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  3099
	}
563
593f73e7c52c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 550
diff changeset
  3100
2915
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  3101
	/* count 1's */
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  3102
	len = 0;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  3103
	for (cp=f.flags, endp=f.flags+256; cp < endp;) {
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  3104
	    if ( *((unsigned int *)cp)) {
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  3105
		if (cp[0]) len++;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  3106
		if (cp[1]) len++;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  3107
		if (cp[2]) len++;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  3108
		if (cp[3]) len++;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  3109
	    }
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  3110
	    cp += 4;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  3111
	}
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 1082
diff changeset
  3112
2915
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  3113
	/* create ByteArray of used values */
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  3114
	result = __BYTEARRAY_UNINITIALIZED_NEW_INT(len);
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  3115
	if (result) {
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  3116
	    cp = __ByteArrayInstPtr(result)->ba_element;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  3117
	    for (len=0; len < 256; len++) {
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  3118
		if (f.flags[len])
2915
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  3119
		    *cp++ = len;
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  3120
	    }
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  3121
	    RETURN ( result );
fdfc6c64bf60 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2898
diff changeset
  3122
	}
550
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3123
    }
2866
0d1b10026aa8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2782
diff changeset
  3124
%}.
0d1b10026aa8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2782
diff changeset
  3125
    ^ self asIdentitySet asByteArray
550
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3126
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3127
    "
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  3128
     #[1 2 3 1 2 3 1 2 3 1 2 3 4 5 6 4 5 6] usedValues
550
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3129
    "
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3130
! !
b40ca6a280c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  3131
7822
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  3132
!ByteArray methodsFor:'searching'!
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  3133
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  3134
indexOf:aByte startingAt:start
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  3135
    "return the index of the first occurrence of the argument, aByte
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  3136
     in the receiver starting at start, anInteger; return 0 if not found.
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  3137
     - reimplemented here for speed"
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  3138
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  3139
%{  /* NOCONTEXT */
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  3140
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  3141
    REGISTER unsigned char *cp;
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8908
diff changeset
  3142
    REGISTER INT index;
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8908
diff changeset
  3143
    REGISTER int byteValue;
7822
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  3144
    REGISTER int len;
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  3145
    OBJ cls;
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  3146
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  3147
    if (__isSmallInteger(aByte) &&__isBytes(self)) {
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  3148
	byteValue = __intVal(aByte);
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  3149
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  3150
	if (byteValue & ~0xFF /* i.e. (byteValue < 0) || (byteValue > 255) */) {
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  3151
	    /*
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  3152
	     * searching for something which cannot be found
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  3153
	     */
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8908
diff changeset
  3154
	    RETURN ( __mkSmallInteger(0) );
7822
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  3155
	}
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  3156
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  3157
	if (__isSmallInteger(start)) {
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  3158
	    index = __intVal(start);
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  3159
	    len = __byteArraySize(self);
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  3160
	    cp = __ByteArrayInstPtr(self)->ba_element;
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  3161
	    if ((cls = __qClass(self)) != @global(ByteArray)) {
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  3162
		int nInst;
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  3163
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  3164
		nInst = __OBJS2BYTES__(__intVal(__ClassInstPtr(cls)->c_ninstvars));
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  3165
		cp += nInst;
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  3166
		len -= nInst;
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  3167
	    }
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  3168
	    cp += index - 1;
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  3169
	    while (index <= len) {
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  3170
		if (*cp == byteValue) {
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8908
diff changeset
  3171
		    RETURN ( __mkSmallInteger(index) );
7822
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  3172
		}
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  3173
		index++;
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  3174
		cp++;
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  3175
	    }
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8908
diff changeset
  3176
	    RETURN ( __mkSmallInteger(0) );
7822
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  3177
	}
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  3178
    }
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  3179
%}.
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  3180
    ^ super indexOf:aByte startingAt:start
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  3181
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  3182
    "
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  3183
     #[1 2 3 4 5 6 7 8 9 0 1 2 3 4 5] indexOf:0
7822
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  3184
    "
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  3185
! !
2e2141fffed2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7685
diff changeset
  3186
5554
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5549
diff changeset
  3187
!ByteArray methodsFor:'testing'!
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5549
diff changeset
  3188
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5549
diff changeset
  3189
isByteArray
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5549
diff changeset
  3190
    "return true, if the receiver is some kind of bytearray;
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5549
diff changeset
  3191
     true is returned here - the method is redefined from Object."
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5549
diff changeset
  3192
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5549
diff changeset
  3193
    ^ true
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5549
diff changeset
  3194
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5549
diff changeset
  3195
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5549
diff changeset
  3196
!
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5549
diff changeset
  3197
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5549
diff changeset
  3198
isLiteral
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5549
diff changeset
  3199
    "return true, if the receiver can be used as a literal constant in ST syntax
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5549
diff changeset
  3200
     (i.e. can be used in constant arrays)"
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5549
diff changeset
  3201
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5549
diff changeset
  3202
    "/ no, simply returning true here is a mistake:
8908
68017b13590b 64bit cleanup
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  3203
    "/ it could be a subclass of ByteArray
5554
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5549
diff changeset
  3204
    "/ (of which the compiler does not know at all ...)
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5549
diff changeset
  3205
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5549
diff changeset
  3206
    ^ self class == ByteArray
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5549
diff changeset
  3207
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5549
diff changeset
  3208
    "Modified: 22.4.1996 / 12:55:30 / cg"
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5549
diff changeset
  3209
! !
28520e96cca9 category changes
Claus Gittinger <cg@exept.de>
parents: 5549
diff changeset
  3210
1883
d3fbf4b36be7 renamed #normalize to #compressed (ST_80 compat)
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3211
!ByteArray class methodsFor:'documentation'!
628
7aa563e4c64a version at the end
Claus Gittinger <cg@exept.de>
parents: 563
diff changeset
  3212
7aa563e4c64a version at the end
Claus Gittinger <cg@exept.de>
parents: 563
diff changeset
  3213
version
17728
bbc5fa73dfab Merged with trunk r10466
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 17711
diff changeset
  3214
    ^ '$Id: ByteArray.st 10467 2009-08-19 16:14:36Z vranyj1 $'
628
7aa563e4c64a version at the end
Claus Gittinger <cg@exept.de>
parents: 563
diff changeset
  3215
! !