ByteCodeCompiler.st
author Jan Vrany <jan.vrany@labware.com>
Thu, 27 Oct 2022 14:53:59 +0100
branchjv
changeset 4735 3b11fb3ede98
parent 4723 524785227024
permissions -rw-r--r--
Allow single underscore as method / block argument and temporaries This commit is a follow up for 38b221e.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
     1
"
4
f6fd83437415 *** empty log message ***
claus
parents: 3
diff changeset
     2
 COPYRIGHT (c) 1989 by Claus Gittinger
4275
e06f4b087e47 Copyright updates
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4259
diff changeset
     3
 COPYRIGHT (c) 2015 Jan Vrany
45
e8331ba8ad5d *** empty log message ***
claus
parents: 39
diff changeset
     4
	      All Rights Reserved
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
     5
7ad01559b262 Initial revision
claus
parents:
diff changeset
     6
 This software is furnished under a license and may be used
7ad01559b262 Initial revision
claus
parents:
diff changeset
     7
 only in accordance with the terms of that license and with the
7ad01559b262 Initial revision
claus
parents:
diff changeset
     8
 inclusion of the above copyright notice.   This software may not
7ad01559b262 Initial revision
claus
parents:
diff changeset
     9
 be provided or otherwise made available to, or used by, any
7ad01559b262 Initial revision
claus
parents:
diff changeset
    10
 other person.  No title to or ownership of the software is
7ad01559b262 Initial revision
claus
parents:
diff changeset
    11
 hereby transferred.
7ad01559b262 Initial revision
claus
parents:
diff changeset
    12
"
1046
8e5818442eb9 newCode (for rel5)
Claus Gittinger <cg@exept.de>
parents: 1031
diff changeset
    13
"{ Package: 'stx:libcomp' }"
8e5818442eb9 newCode (for rel5)
Claus Gittinger <cg@exept.de>
parents: 1031
diff changeset
    14
3564
7e6207c98120 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3532
diff changeset
    15
"{ NameSpace: Smalltalk }"
7e6207c98120 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3532
diff changeset
    16
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
    17
Parser subclass:#ByteCodeCompiler
253
759ba0ddb672 oops - must check for receiver when attempting built-in basicNew
Claus Gittinger <cg@exept.de>
parents: 247
diff changeset
    18
	instanceVariableNames:'codeBytes codeIndex litArray stackDelta extra lineno extraLiteral
1094
745ec90c42c9 allow parametrizing the method class
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
    19
		maxStackDepth relocList methodTempVars numTemp maxNumTemp
2091
18bcd32044c0 preparations for breakpointed lines
Claus Gittinger <cg@exept.de>
parents: 2084
diff changeset
    20
		methodClass extraOP allLiterals allIdenticalLiterals
4384
aee25576d864 DBG: teach `ByteCodeCompiler` to generate Smalltalk/X debug info
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4275
diff changeset
    21
		breakpointedLines currentLineNumber diinfo'
1667
d8979b5429de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1666
diff changeset
    22
	classVariableNames:'JumpToAbsJump ShareCode ListCompiledMethods NewCodeSet
d8979b5429de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1666
diff changeset
    23
		NewPrimitives'
172
85ad12831217 give user a chance to choose between trapCode and original code if compilation to binary is not possible
Claus Gittinger <cg@exept.de>
parents: 162
diff changeset
    24
	poolDictionaries:''
85ad12831217 give user a chance to choose between trapCode and original code if compilation to binary is not possible
Claus Gittinger <cg@exept.de>
parents: 162
diff changeset
    25
	category:'System-Compiler'
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
    26
!
7ad01559b262 Initial revision
claus
parents:
diff changeset
    27
372
98da4d230a8d prepare support for 16-bit lineNumbers
Claus Gittinger <cg@exept.de>
parents: 357
diff changeset
    28
!ByteCodeCompiler class methodsFor:'documentation'!
3
b63b8a6b71fb *** empty log message ***
claus
parents: 1
diff changeset
    29
1030
6ff51c965fd2 byteCodes commented
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    30
byteCode
6ff51c965fd2 byteCodes commented
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    31
"
6ff51c965fd2 byteCodes commented
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    32
    TOS   - top of stack
6ff51c965fd2 byteCodes commented
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    33
    NOS   - next on stack
6ff51c965fd2 byteCodes commented
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    34
    uu    - byte-valued unsigned (0..16rFF)
6ff51c965fd2 byteCodes commented
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    35
    uuuu  - twoByte-valued unsigned (0..16rFFFF); msb-first
6ff51c965fd2 byteCodes commented
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    36
    ll    - byte-valued literal index (0..16rFF)
6ff51c965fd2 byteCodes commented
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    37
    nn    - byte-valued signed (-128..+127)
6ff51c965fd2 byteCodes commented
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    38
    nnnn  - twoByte-valued signed (16r-8000 .. 16r7FFF)
6ff51c965fd2 byteCodes commented
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    39
1815
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
    40
    Notes:
3161
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
    41
        - bytecode optimized for space, not interpreter speed,
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
    42
          since JITTER is assumed to be present and compensate for decoding
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
    43
          overhead.
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
    44
        - number assignments due to backward compatible extensions of the
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
    45
          bytecode set - reassignment & cleanup would be nice.
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
    46
        - codes marked with (*) make the minimal set; all others duplicate
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
    47
          the functionality of a minimalSet code, but provides dense encoding
1030
6ff51c965fd2 byteCodes commented
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    48
6ff51c965fd2 byteCodes commented
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    49
    definition of ST/X byteCode:
6ff51c965fd2 byteCodes commented
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    50
6ff51c965fd2 byteCodes commented
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    51
    *   00          RET_TOP         return TOS from current context
3161
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
    52
        01          RET_NIL         return nil from current context
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
    53
        02          RET_TRUE        return true from current context
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
    54
        03          RET_FALSE       return false from current context
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
    55
        04          RET_0           return 0 (zero) from current context
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
    56
        05          RET_SELF        return the current receiver from current context
1030
6ff51c965fd2 byteCodes commented
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    57
    *   06          DUP_OVER        push NOS (used with inlined loops)
6ff51c965fd2 byteCodes commented
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    58
    *   07          HOME_RET_TOP    return TOS from home context (method return from block)
3161
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
    59
        08 uu       LINENO          line number information dummy
1030
6ff51c965fd2 byteCodes commented
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    60
    *   09 uuuu     LINENO16        line number information dummy
3161
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
    61
        0A          PUSH_NIL        push nil onto stack
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
    62
        0B          PUSH_TRUE       push true onto stack
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
    63
        0C          PUSH_FALSE      push false onto stack
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
    64
        0D          SEND_SELF       self-send
1030
6ff51c965fd2 byteCodes commented
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    65
    *   0E ll       PUSH_LIT        push a literal
3161
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
    66
        0F          PUSH_SELF       push the current receiver onto stack
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
    67
        10 nn       PUSH_NUM        push a byte-valued smallInteger onto stack
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
    68
        11 nnnn     PUSH_NUM16      push a twoByte-valued smallInteger onto stack
1030
6ff51c965fd2 byteCodes commented
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    69
    *   12          DROP            pop & forget
1815
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
    70
    *   13          SEND            send
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
    71
    *   14          SUPER_SEND      super-send (actually: directed send)
3161
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
    72
        15          SEND0           send 0-arg message
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
    73
        16          SEND1           send 1-arg message
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
    74
        17          SEND2           send 2-arg message
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
    75
        18          SEND3           send 3-arg message
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
    76
        19          SEND_DROP       send & forget result
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
    77
        1A          SEND0_DROP      send 0-arg message & forget result
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
    78
        1B          SEND1_DROP      send 1-arg message & forget result
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
    79
        1C          SEND2_DROP      send 2-arg message & forget result
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
    80
        1D          SEND3_DROP      send 3-arg message & forget result
1030
6ff51c965fd2 byteCodes commented
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    81
    *   1E          PUSH_MARG       push method arg
6ff51c965fd2 byteCodes commented
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    82
    *   1F          PUSH_MVAR       push method variable
6ff51c965fd2 byteCodes commented
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    83
    *   20          PUSH_BARG       push block arg
6ff51c965fd2 byteCodes commented
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    84
    *   21          PUSH_BVAR       push block variable
6ff51c965fd2 byteCodes commented
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    85
    *   22          PUSH_IVAR       push instance variable
3161
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
    86
        23          PUSH_CVAR       -- obsolete -- no longer used.
1030
6ff51c965fd2 byteCodes commented
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    87
    *   24          PUSH_GLOB       push global
6ff51c965fd2 byteCodes commented
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    88
    *   25          STORE_MVAR      pop and store into method variable
6ff51c965fd2 byteCodes commented
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    89
    *   26          STORE_BVAR      pop and store into block variable
6ff51c965fd2 byteCodes commented
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    90
    *   27          STORE_IVAR      pop and store into instance variable
3161
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
    91
        28          STORE_CVAR      -- obsolete -- no longer used.
1030
6ff51c965fd2 byteCodes commented
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    92
    *   29          STORE_GLOB      pop and store into global
6ff51c965fd2 byteCodes commented
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    93
    *   2A          PUSH_OBARG      push outer block arg (n levels)
3161
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
    94
        2B          PUSH_OBARG1     push outer block arg (1 level)
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
    95
        2C          PUSH_OBARG2     push outer block arg (2 levels)
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
    96
        2D          EQEQ            == -> pop a,b; push a==b
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
    97
        2E          NENE            ~~ -> pop a,b; push a~~b
1030
6ff51c965fd2 byteCodes commented
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    98
    *   2F          DUP             duplicate TOS
3161
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
    99
        30          EQEQ0           ==0 -> pop a; push a==0
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   100
        31          NENE0           ~~0 -> pop a; push a~~0
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   101
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   102
        32          JMP_FALSE       pop; branch if false
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   103
        33          JMP_TRUE        pop; branch if true
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   104
        34          JMP_NIL         pop; branch if nil
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   105
        35          JMP_NOTNIL      pop; branch if not nil
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   106
        36          JMP             branch always
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   107
        37          MAKE_BLOCK      make a block
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   108
        38          JMP_ZERO        pop; branch if ==0
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   109
        39          JMP_NOTZERO     pop; branch if ~~0
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   110
        3A          JMP_EQEQ        pop a,b; branch if a==b
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   111
        3B          JMP_NENE        pop a,b; branch if a~~b
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   112
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   113
        3C          JMPL_FALSE      like above, extended branch delta, (add +128/-128 to offs)
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   114
        ...          ...
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   115
        45          JMPL_NENE       like above, extended branch delta, (add +128/-128 to offs)
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   116
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   117
        46          JMPVL_FALSE     like above, extended branch delta, (add +256/-256 to offs)
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   118
        ...          ...
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   119
        4F          JMPVL_NENE      like above, extended branch delta, (add +256/-256 to offs)
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   120
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   121
        50          PUSH_MVAR1      push method variable 1 (first variable)
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   122
        51          PUSH_MVAR2      push method variable 2
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   123
        52          PUSH_MVAR3      push method variable 3
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   124
        53          PUSH_MVAR4      push method variable 4
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   125
        54          PUSH_MVAR5      push method variable 5
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   126
        55          PUSH_MVAR6      push method variable 6
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   127
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   128
        56          PUSH_MARG1      push method arg 1
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   129
        57          PUSH_MARG2      push method arg 2
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   130
        58          PUSH_MARG3      push method arg 3
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   131
        59          PUSH_MARG4      push method arg 4
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   132
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   133
        5A          PUSH_IVAR1      push inst variable 1 (first variable)
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   134
        5B          PUSH_IVAR2      push inst variable 2
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   135
        5C          PUSH_IVAR3      push inst variable 3
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   136
        5D          PUSH_IVAR4      push inst variable 4
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   137
        5E          PUSH_IVAR5      push inst variable 5
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   138
        5F          PUSH_IVAR6      push inst variable 6
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   139
        60          PUSH_IVAR7      push inst variable 7
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   140
        61          PUSH_IVAR8      push inst variable 8
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   141
        62          PUSH_IVAR9      push inst variable 9
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   142
        63          PUSH_IVAR10     push inst variable 10
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   143
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   144
        64          STORE_MVAR1     pop and store into method variable 1 (first variable)
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   145
        65          STORE_MVAR2     pop and store into method variable 2
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   146
        66          STORE_MVAR3     pop and store into method variable 3
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   147
        67          STORE_MVAR4     pop and store into method variable 4
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   148
        68          STORE_MVAR5     pop and store into method variable 5
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   149
        69          STORE_MVAR6     pop and store into method variable 6
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   150
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   151
        6A          unused
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   152
        6B          unused
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   153
        6C          unused
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   154
        6D          unused
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   155
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   156
        6E          STORE_IVAR1     pop and store into inst variable 1 (first variable)
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   157
        6F          STORE_IVAR2     pop and store into inst variable 2
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   158
        70          STORE_IVAR3     pop and store into inst variable 3
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   159
        71          STORE_IVAR4     pop and store into inst variable 4
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   160
        72          STORE_IVAR5     pop and store into inst variable 5
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   161
        73          STORE_IVAR6     pop and store into inst variable 6
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   162
        74          STORE_IVAR7     pop and store into inst variable 7
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   163
        75          STORE_IVAR8     pop and store into inst variable 8
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   164
        76          STORE_IVAR9     pop and store into inst variable 9
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   165
        77          STORE_IVAR10    pop and store into inst variable 10
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   166
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   167
        78          PUSH_0          push smallinteger 0 constant
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   168
        79          PUSH_1          push smallinteger 1 constant
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   169
        7A          PUSH_M1         push smallinteger -1 constant
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   170
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   171
        7B          SEND_PLUS1      send '+ 1' to TOS; replace TOS by result
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   172
        7C          SEND_MINUS1     send '- 1' to TOS; replace TOS by result
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   173
        7D          INC_MVAR        send '+ 1' to a method variable; store result into same mvar (for inlined loops)
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   174
        7E          DEC_MVAR        send '- 1' to a method variable; store result into same mvar (for inlined loops)
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   175
        7F nn       RET_NUM         return a smallInteger from current context
1030
6ff51c965fd2 byteCodes commented
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   176
    *   80          PUSH_OBVAR      push outer block variable
6ff51c965fd2 byteCodes commented
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   177
    *   81          STORE_OBVAR     pop and store into outer block variable
6ff51c965fd2 byteCodes commented
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   178
3161
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   179
        82          SEND_EQ         send #=
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   180
        83          SEND_PLUS       send #+
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   181
        84          SEND_NE         send #~=
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   182
        85          SEND_MINUS      send #-
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   183
        86          SEND_CLASS      send #class
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   184
        87          SEND_AT         send #at:
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   185
        88          SEND_ATPUT      send #at:put:
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   186
        89          SEND_BITAND     send #bitAnd:
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   187
        8A          SEND_BITOR      send #bitOr:
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   188
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   189
        8B          PUSH_2          push constant 2
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   190
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   191
        8C          PUSH_BARG1      push block argument 1
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   192
        8D          PUSH_BARG2
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   193
        8E          PUSH_BARG3
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   194
        8F          PUSH_BARG4
1031
a6c0c0b7d355 byteCodes commented
Claus Gittinger <cg@exept.de>
parents: 1030
diff changeset
   195
a6c0c0b7d355 byteCodes commented
Claus Gittinger <cg@exept.de>
parents: 1030
diff changeset
   196
    *   90          PUSH_CONTEXT    push thisContext
a6c0c0b7d355 byteCodes commented
Claus Gittinger <cg@exept.de>
parents: 1030
diff changeset
   197
3161
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   198
        91          SEND_GT         send >
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   199
        92          SEND_GE         send >=
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   200
        93          SEND_LT         send <
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   201
        94          SEND_LE         send <=
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   202
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   203
        95          UNUSED_149      obsolete; was: send #next
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   204
        96          UNUSED_150      obsolete; was: send #peek
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   205
        97          SEND_VALUE      send #value
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   206
        98          SEND_VALUE1     send #value:
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   207
        99          SEND_SIZE       send #size
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   208
        9A          UNUSED_154
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   209
        9B          UNUSED_155
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   210
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   211
        9C          MK0BLOCK        make a 0-returning block
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   212
        9D          MKNILBLOCK      make a nil-returning block
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   213
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   214
        9E          UNUSED_158      obsolete; was: send #asInteger */
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   215
        9F          UNUSED_159      obsolete; was: send #rounded */
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   216
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   217
        A0          RET_MVAR1       return method variable 1 from current context
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   218
        A1          RET_MVAR2       return method variable 2 from current context
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   219
        A2          RET_MVAR3
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   220
        A3          RET_MVAR4
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   221
        A4          RET_MVAR5
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   222
        A5          RET_MVAR6       return method variable 6 from current context
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   223
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   224
        A6          RET_IVAR1       return instance variable 1 from current context
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   225
        A7          RET_IVAR2       return instance variable 2 from current context
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   226
        A8          RET_IVAR3
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   227
        A9          RET_IVAR4
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   228
        AA          RET_IVAR5
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   229
        AB          RET_IVAR6
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   230
        AC          RET_IVAR7
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   231
        AD          RET_IVAR8       return instance variable 8 from current context
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   232
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   233
        AE          RET_MARG1       return method arg 1 from current context
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   234
        AF          RET_MARG2       return method arg 1 from current context
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   235
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   236
        B0          PUSH_CIVAR      obsolete; push class instance variable
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   237
        B1          STORE_CIVAR     obsolete; store top of stack in class instance variable
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   238
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   239
        B2          SEND_VALUE2     send #value:value:
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   240
        B3          SEND_NOT        send #not
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   241
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   242
        B4          SEND_SELF0      send a 0-arg message to self
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   243
        B5          SEND_SELF1      send a 1-arg message to self
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   244
        B6          SEND_SELF2      send a 2-arg message to self
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   245
        B7          SEND_SELF3      send a 3-arg message to self
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   246
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   247
        B8          SEND_SELF_DROP0 send a 0-arg message to self forget result
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   248
        B9          SEND_SELF_DROP1 send a 1-arg message to self forget result
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   249
        BA          SEND_SELF_DROP2 send a 2-arg message to self forget result
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   250
        BB          SEND_SELF_DROP3 send a 3-arg message to self forget result
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   251
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   252
        BC          ISNIL           replace TOS by 'TOS isNil'
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   253
        BD          NOTNIL          replace TOS by 'TOS notNil'
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   254
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   255
        BE uuuu     JMPA_FALSE      jumps to absolute offset (2 byte hi-lo)
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   256
        BF uuuu     JMPA_TRUE
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   257
        C0 uuuu     JMPA_NIL
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   258
        C1 uuuu     JMPA_NOTNIL
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   259
        C2 uuuu     JMPA
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   260
        C3          MAKE_ABLOCK
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   261
        C4 uuuu     JMPA_ZERO
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   262
        C5 uuuu     JMPA_NOTZERO
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   263
        C6 uuuu     JMPA_EQ
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   264
        C7 uuuu     JMPA_NOTEQ
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   265
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   266
        C8 xx       PUSH_GSPECIAL   push a special global; xx specifies what:
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   267
           00        Array   (push 'Smalltalk at:#Array'; i.e. the Array class)
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   268
           01        String  (push 'Smalltalk at:#String'; i.e. the String class)
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   269
           02        FloatArray
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   270
           03        DoubleArray
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   271
           04        Point
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   272
           05        Symbol
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   273
           06        Smalltalk
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   274
           07        Processor
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   275
           08        SmallInteger
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   276
           09        Character
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   277
           0A        Float
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   278
           0B        Process
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   279
           0C        Set
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   280
           0D        IdentitySet
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   281
           0E        Dictionary
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   282
           0F        IdentityDictionary
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   283
           10        Semaphore
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   284
           11        OrderedCollection
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   285
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   286
        C9 uuuu     PUSH_LLIT       push a literal (2-byte literal-number)
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   287
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   288
        CA nn       JMP_FALSE_L     jump if top is false (+127 .. -128)
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   289
        CB nn       JMP_TRUE_L      jump if top is true
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   290
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   291
        CC          UNUSED_204
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   292
        CD          LSEND_MSG       send with 16 bit literal index */
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   293
        CE          LSUPERSEND_MSG  super send with 16 bit literal index */
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   294
        CF          LSEND_SELF      self-send send with 16 bit literal index */
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   295
        D0          PUSH_GT0        push 'TOS > 0'; leaves original TOS as NOS
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   296
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   297
        D1          UNUSED_209
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   298
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   299
        D2          SEND_ARRAY_NEW  use for new/basicNew; top is size (0 for Array new)
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   300
        D3          SEND_BASICNEW   top is class (receiver)
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   301
        D4          SEND_GT0        replace TOS by result of send 'TOS > 0'
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   302
        D5          SEND_NEW        top is class (receiver)
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   303
        D6          SEND_BASICNEWN  top is class (receiver) and arg
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   304
        D7          SEND_NEWN       top is class (receiver) and arg
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   305
        D8          SEND_LOGAND     send &
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   306
        D9          SEND_LOGOR      send |
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   307
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   308
        DA uuuu     PUSH_LGLOB      push global variable word index literal
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   309
        DB uuuu     STORE_LGLOB     store global with word index literal
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   310
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   311
        DC          UNUSED_220
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   312
        DE          UNUSED_221
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   313
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   314
        DF          PUSH_LIT1       push 1st literal
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   315
        E0          PUSH_LIT2       push 2nd literal
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   316
        E1          PUSH_LIT3       push literal 3
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   317
        E2          PUSH_LIT4       push literal 4
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   318
        E3          PUSH_LIT5       push literal 5
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   319
        E4          PUSH_LIT6       push literal 6
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   320
        E5          PUSH_LIT7       push literal 7
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   321
        E6          PUSH_LIT8       push literal 8
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   322
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   323
        E7          SEND_MUL        send #*
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   324
        E8 xx       SEND_SPECIAL    special send; as specified by xx:
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   325
           00         top           send #top
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   326
           01         bottom        send #bottom
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   327
           02         left          send #left
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   328
           03         right         send #right
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   329
           04         x             send #x
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   330
           05         y             send #y
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   331
           06         width         send #width
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   332
           07         height        send #height
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   333
           08         origin        send #origin
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   334
           09         extent        send #extent
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   335
           0A         asInteger     send #asInteger
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   336
           0B         rounded       send #rounded
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   337
           0C         next          send #next
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   338
           0D         peek          send #peek
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   339
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   340
        E9          PUSH_BVAR1      push block variable 1
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   341
        EA          PUSH_BVAR2      push block variable 2
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   342
        EB          PUSH_BVAR3      push block variable 3
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   343
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   344
        EC          STORE_BVAR1     store TOS in block variable 1 and drop
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   345
        ED          STORE_BVAR2     store TOS in block variable 2 and drop
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   346
        EE          STORE_BVAR3     store TOS in block variable 3 and drop
1031
a6c0c0b7d355 byteCodes commented
Claus Gittinger <cg@exept.de>
parents: 1030
diff changeset
   347
a6c0c0b7d355 byteCodes commented
Claus Gittinger <cg@exept.de>
parents: 1030
diff changeset
   348
     *  EF          BLOCK_REF       internal - check if a block is referenced by TOS
a6c0c0b7d355 byteCodes commented
Claus Gittinger <cg@exept.de>
parents: 1030
diff changeset
   349
3161
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   350
        F0          PUSH_LVAR       push local variable 0..numArgs-1 for args; numArgs..numArgs+nLocal-1 for mVars
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   351
        F1          STORE_LVAR      store local variable 0..numArgs-1 for args; numArgs..numArgs+nLocal-1 for mVars
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   352
        F2          STORE_OUTBLOCK_LVAR store local variable in outer context 0..numArgs-1 for args; numArgs..numArgs+nLocal-1 for bVars
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   353
        F3          SWAP            swap TOS with NOS
3162
d7d32920c1b4 Emit #lineno16 byte codes only, if line number really changes
Stefan Vogel <sv@exept.de>
parents: 3161
diff changeset
   354
3645
695fc26d7207 Block source position support [1/2]: generate SOURCEPOS pseudoinstruction before each MAKE_BLOCK insn
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3641
diff changeset
   355
        F4          SOURCEPOS8 uu   source position information (offset in source, dummy) 
695fc26d7207 Block source position support [1/2]: generate SOURCEPOS pseudoinstruction before each MAKE_BLOCK insn
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3641
diff changeset
   356
        F5          SOURCEPOS16 uuuu  source position information (offset in source, dummy) 
695fc26d7207 Block source position support [1/2]: generate SOURCEPOS pseudoinstruction before each MAKE_BLOCK insn
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3641
diff changeset
   357
        F6          SOURCEPOS32 uuuuuuuu source position information (offset in source, dummy) 
3161
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   358
        F7          UNUSED_247
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   359
        F8          UNUSED_248
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   360
        F9          UNUSED_249
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   361
        FA          UNUSED_250
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   362
        FB          UNUSED_251
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   363
        FC          UNUSED_252
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   364
        FD          UNUSED_253
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   365
        FE          UNUSED_254
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   366
        FF          UNUSED_255
1030
6ff51c965fd2 byteCodes commented
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   367
6ff51c965fd2 byteCodes commented
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   368
    [author:]
3161
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
   369
        Claus Gittinger
1030
6ff51c965fd2 byteCodes commented
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   370
6ff51c965fd2 byteCodes commented
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   371
"
6ff51c965fd2 byteCodes commented
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   372
!
6ff51c965fd2 byteCodes commented
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   373
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   374
copyright
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   375
"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   376
 COPYRIGHT (c) 1989 by Claus Gittinger
4275
e06f4b087e47 Copyright updates
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4259
diff changeset
   377
 COPYRIGHT (c) 2015 Jan Vrany
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   378
	      All Rights Reserved
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   379
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   380
 This software is furnished under a license and may be used
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   381
 only in accordance with the terms of that license and with the
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   382
 inclusion of the above copyright notice.   This software may not
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   383
 be provided or otherwise made available to, or used by, any
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   384
 other person.  No title to or ownership of the software is
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   385
 hereby transferred.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   386
"
135
aa4f7b8f121e uff - version methods changed to return stings
Claus Gittinger <cg@exept.de>
parents: 128
diff changeset
   387
!
20
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   388
3
b63b8a6b71fb *** empty log message ***
claus
parents: 1
diff changeset
   389
documentation
b63b8a6b71fb *** empty log message ***
claus
parents: 1
diff changeset
   390
"
19
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
   391
    This class performs compilation into ByteCodes.
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
   392
    First, parsing is done using superclass methods,
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
   393
    then the parse-tree is converted into an array of symbolic codes
1815
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   394
    and a relocation table;
19
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
   395
    these two are finally combined into a byteArray of the codes.
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   396
19
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
   397
    (the intermediate step through symbolic codes is for debugging
556
4a3775ada5d2 preps to move variables of inlined blocks into outer context
Claus Gittinger <cg@exept.de>
parents: 549
diff changeset
   398
     only - it may vanish in future releases)
19
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
   399
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
   400
    There are many dependencies to the run-time-system (especially the
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
   401
    interpreter) in here - be careful when playing around ...
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   402
259
a469695d8d19 commentary
Claus Gittinger <cg@exept.de>
parents: 256
diff changeset
   403
    [Instance variables:]
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   404
1815
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   405
	codeBytes       <ByteArry>              bytecodes
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   406
	codeIndex       <SmallInteger>          next index to put into code array
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   407
	litArray        <OrderedCollection>     literals
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   408
	stackDelta      <SmallInteger>          return value of byteCodeFor:
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   409
	extra           <Symbol>                return value of byteCodeFor:
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   410
	lineno          <Boolean>               return value of byteCodeFor:
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   411
	extraLiteral    <Symbol>                return value of byteCodeFor:
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   412
	maxStackDepth   <SmallInteger>          stack need of method
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   413
	relocList       <Array>                 used temporary for relocation
19
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
   414
259
a469695d8d19 commentary
Claus Gittinger <cg@exept.de>
parents: 256
diff changeset
   415
    [Class variables:]
19
84a1ddf215a5 *** empty log message ***
claus
parents: 15
diff changeset
   416
1815
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   417
	JumpToAbsJump   <Dictionary>            internal table to map opcodes
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   418
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   419
	STCCompilationDefines                   passed to stc as command line arguments
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   420
	STCCompilationIncludes
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   421
	STCCompilationOptions
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   422
			<String>
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   423
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   424
	STCCompilation  <Symbol>                #always, #primitiveOnly or #never
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   425
						controls when stc compilation is wanted
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   426
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   427
	ShareCode       <Boolean>               reuse byteArrays for common (simple) code sequences
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   428
						This is normally a 'good' optimization,
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   429
						except if you plan to modify the byteCodes.
263
3b21d0991eff documentation
Claus Gittinger <cg@exept.de>
parents: 259
diff changeset
   430
3b21d0991eff documentation
Claus Gittinger <cg@exept.de>
parents: 259
diff changeset
   431
    [author:]
1815
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   432
	Claus Gittinger
263
3b21d0991eff documentation
Claus Gittinger <cg@exept.de>
parents: 259
diff changeset
   433
3
b63b8a6b71fb *** empty log message ***
claus
parents: 1
diff changeset
   434
"
3681
4db107dbec8a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3661
diff changeset
   435
!
4db107dbec8a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3661
diff changeset
   436
4db107dbec8a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3661
diff changeset
   437
examples
4db107dbec8a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3661
diff changeset
   438
"
4db107dbec8a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3661
diff changeset
   439
    a GNU-Smalltalk method:                                                                    
4db107dbec8a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3661
diff changeset
   440
                                                                        [exBegin]
4db107dbec8a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3661
diff changeset
   441
    Compiler 
4db107dbec8a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3661
diff changeset
   442
        compile:'bla
4db107dbec8a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3661
diff changeset
   443
    <category: ''tests''>
4db107dbec8a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3661
diff changeset
   444
4db107dbec8a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3661
diff changeset
   445
    ^ 123
4db107dbec8a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3661
diff changeset
   446
'
4db107dbec8a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3661
diff changeset
   447
        forClass: Object
4db107dbec8a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3661
diff changeset
   448
                                                                        [exEnd]
4db107dbec8a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3661
diff changeset
   449
"
98
claus
parents: 97
diff changeset
   450
! !
claus
parents: 97
diff changeset
   451
372
98da4d230a8d prepare support for 16-bit lineNumbers
Claus Gittinger <cg@exept.de>
parents: 357
diff changeset
   452
!ByteCodeCompiler class methodsFor:'initialization'!
209
b858b6a6880f compare categoryStrings equal before writing a change record
Claus Gittinger <cg@exept.de>
parents: 199
diff changeset
   453
b858b6a6880f compare categoryStrings equal before writing a change record
Claus Gittinger <cg@exept.de>
parents: 199
diff changeset
   454
initialize
1050
c6306361ec19 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1049
diff changeset
   455
    Smalltalk vmMajorVersionNr >= 5 ifTrue:[
3393
8fbe6ede03c6 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3284
diff changeset
   456
        NewCodeSet := true.
8fbe6ede03c6 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3284
diff changeset
   457
        NewPrimitives := true.
1050
c6306361ec19 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1049
diff changeset
   458
    ] ifFalse:[
3393
8fbe6ede03c6 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3284
diff changeset
   459
        NewCodeSet := false.
8fbe6ede03c6 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3284
diff changeset
   460
        NewPrimitives := false.
1050
c6306361ec19 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1049
diff changeset
   461
    ].
209
b858b6a6880f compare categoryStrings equal before writing a change record
Claus Gittinger <cg@exept.de>
parents: 199
diff changeset
   462
    ShareCode := true.
603
021722b8a427 correctly scan trailing period after a number in a block (as in x := x + 1.]
Claus Gittinger <cg@exept.de>
parents: 600
diff changeset
   463
    ListCompiledMethods := false.
021722b8a427 correctly scan trailing period after a number in a block (as in x := x + 1.]
Claus Gittinger <cg@exept.de>
parents: 600
diff changeset
   464
1219
e5c891489441 support compilation restart (after a fix)
Claus Gittinger <cg@exept.de>
parents: 1216
diff changeset
   465
    "Modified: / 15.11.2001 / 17:20:51 / cg"
1046
8e5818442eb9 newCode (for rel5)
Claus Gittinger <cg@exept.de>
parents: 1031
diff changeset
   466
!
8e5818442eb9 newCode (for rel5)
Claus Gittinger <cg@exept.de>
parents: 1031
diff changeset
   467
8e5818442eb9 newCode (for rel5)
Claus Gittinger <cg@exept.de>
parents: 1031
diff changeset
   468
newCodeSet
1815
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   469
    ^ NewCodeSet
1046
8e5818442eb9 newCode (for rel5)
Claus Gittinger <cg@exept.de>
parents: 1031
diff changeset
   470
8e5818442eb9 newCode (for rel5)
Claus Gittinger <cg@exept.de>
parents: 1031
diff changeset
   471
!
8e5818442eb9 newCode (for rel5)
Claus Gittinger <cg@exept.de>
parents: 1031
diff changeset
   472
8e5818442eb9 newCode (for rel5)
Claus Gittinger <cg@exept.de>
parents: 1031
diff changeset
   473
newCodeSet:aBoolean
8e5818442eb9 newCode (for rel5)
Claus Gittinger <cg@exept.de>
parents: 1031
diff changeset
   474
    NewCodeSet := aBoolean.
8e5818442eb9 newCode (for rel5)
Claus Gittinger <cg@exept.de>
parents: 1031
diff changeset
   475
8e5818442eb9 newCode (for rel5)
Claus Gittinger <cg@exept.de>
parents: 1031
diff changeset
   476
    "
8e5818442eb9 newCode (for rel5)
Claus Gittinger <cg@exept.de>
parents: 1031
diff changeset
   477
     ByteCodeCompiler newCodeSet:true
8e5818442eb9 newCode (for rel5)
Claus Gittinger <cg@exept.de>
parents: 1031
diff changeset
   478
    "
1049
0b69b110f150 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1047
diff changeset
   479
!
0b69b110f150 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1047
diff changeset
   480
0b69b110f150 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1047
diff changeset
   481
newPrimitives
1815
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   482
    ^ NewPrimitives
1049
0b69b110f150 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1047
diff changeset
   483
0b69b110f150 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1047
diff changeset
   484
!
0b69b110f150 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1047
diff changeset
   485
0b69b110f150 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1047
diff changeset
   486
newPrimitives:aBoolean
0b69b110f150 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1047
diff changeset
   487
    NewPrimitives := aBoolean.
0b69b110f150 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1047
diff changeset
   488
0b69b110f150 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1047
diff changeset
   489
    "
0b69b110f150 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1047
diff changeset
   490
     ByteCodeCompiler newPrimitives:true
0b69b110f150 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1047
diff changeset
   491
    "
209
b858b6a6880f compare categoryStrings equal before writing a change record
Claus Gittinger <cg@exept.de>
parents: 199
diff changeset
   492
! !
b858b6a6880f compare categoryStrings equal before writing a change record
Claus Gittinger <cg@exept.de>
parents: 199
diff changeset
   493
3428
eaf3ac065bf9 Added breakpoint support.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3416
diff changeset
   494
!ByteCodeCompiler class methodsFor:'instance creation'!
eaf3ac065bf9 Added breakpoint support.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3416
diff changeset
   495
eaf3ac065bf9 Added breakpoint support.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3416
diff changeset
   496
new
3436
874d31b00f8a Comment in ByteCodeCompiler>>#new
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3428
diff changeset
   497
874d31b00f8a Comment in ByteCodeCompiler>>#new
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3428
diff changeset
   498
    "/ Pretty ugly hack. A caller to compiler may provide a set of breakpoints
874d31b00f8a Comment in ByteCodeCompiler>>#new
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3428
diff changeset
   499
    "/ that has to be injected to the code. However, since breakpoint injection
874d31b00f8a Comment in ByteCodeCompiler>>#new
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3428
diff changeset
   500
    "/ is actually done by a subclass or me, so we have to return this subclass here.
874d31b00f8a Comment in ByteCodeCompiler>>#new
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3428
diff changeset
   501
    "/ This subclass-to-tranform API is bit unfortunate.
3428
eaf3ac065bf9 Added breakpoint support.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3416
diff changeset
   502
    ^ self ~~ ByteCodeCompiler ifTrue:[ 
eaf3ac065bf9 Added breakpoint support.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3416
diff changeset
   503
        super new.
eaf3ac065bf9 Added breakpoint support.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3416
diff changeset
   504
    ] ifFalse:[ 
eaf3ac065bf9 Added breakpoint support.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3416
diff changeset
   505
        | breakpoints |
eaf3ac065bf9 Added breakpoint support.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3416
diff changeset
   506
eaf3ac065bf9 Added breakpoint support.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3416
diff changeset
   507
        breakpoints := BreakpointQuery query.
eaf3ac065bf9 Added breakpoint support.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3416
diff changeset
   508
        breakpoints notEmptyOrNil ifTrue:[ 
eaf3ac065bf9 Added breakpoint support.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3416
diff changeset
   509
            ByteCodeCompilerWithBreakpointSupport new
eaf3ac065bf9 Added breakpoint support.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3416
diff changeset
   510
                breakpoints: breakpoints;
eaf3ac065bf9 Added breakpoint support.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3416
diff changeset
   511
                yourself.
eaf3ac065bf9 Added breakpoint support.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3416
diff changeset
   512
        ] ifFalse:[ 
eaf3ac065bf9 Added breakpoint support.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3416
diff changeset
   513
            super new.
eaf3ac065bf9 Added breakpoint support.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3416
diff changeset
   514
        ].
eaf3ac065bf9 Added breakpoint support.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3416
diff changeset
   515
    ].
eaf3ac065bf9 Added breakpoint support.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3416
diff changeset
   516
eaf3ac065bf9 Added breakpoint support.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3416
diff changeset
   517
    "Created: / 08-05-2014 / 11:01:29 / Jan Vrany <jan.vrany@fit.cvut.cz>"
eaf3ac065bf9 Added breakpoint support.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3416
diff changeset
   518
! !
eaf3ac065bf9 Added breakpoint support.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3416
diff changeset
   519
372
98da4d230a8d prepare support for 16-bit lineNumbers
Claus Gittinger <cg@exept.de>
parents: 357
diff changeset
   520
!ByteCodeCompiler class methodsFor:'compiling methods'!
98
claus
parents: 97
diff changeset
   521
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   522
compile:methodText forClass:classToCompileFor
890
bc5c9b3bf477 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 833
diff changeset
   523
    "compile a source-string for a method in classToCompileFor.
bc5c9b3bf477 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 833
diff changeset
   524
     Returns the new method, #Error or nil."
bc5c9b3bf477 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 833
diff changeset
   525
1815
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   526
    ^ self
3281
b4b91a50efc4 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
   527
        compile:methodText
b4b91a50efc4 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
   528
        forClass:classToCompileFor
b4b91a50efc4 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
   529
        inCategory:(self asYetUncategorizedMethodCategory)
b4b91a50efc4 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
   530
        notifying:nil
b4b91a50efc4 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
   531
        install:true
b4b91a50efc4 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
   532
        skipIfSame:false
b4b91a50efc4 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
   533
        silent:false
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   534
!
7ad01559b262 Initial revision
claus
parents:
diff changeset
   535
7ad01559b262 Initial revision
claus
parents:
diff changeset
   536
compile:aString forClass:aClass inCategory:cat
7ad01559b262 Initial revision
claus
parents:
diff changeset
   537
    "compile a source-string for a method in classToCompileFor.
890
bc5c9b3bf477 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 833
diff changeset
   538
     The method will get cat as category.
bc5c9b3bf477 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 833
diff changeset
   539
     Returns the new method, #Error or nil."
bc5c9b3bf477 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 833
diff changeset
   540
1815
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   541
    ^ self
2735
1989b1b9173a added: #compile:forClass:inCategory:
Claus Gittinger <cg@exept.de>
parents: 2714
diff changeset
   542
        compile:aString
1989b1b9173a added: #compile:forClass:inCategory:
Claus Gittinger <cg@exept.de>
parents: 2714
diff changeset
   543
        forClass:aClass
1989b1b9173a added: #compile:forClass:inCategory:
Claus Gittinger <cg@exept.de>
parents: 2714
diff changeset
   544
        inCategory:cat
1989b1b9173a added: #compile:forClass:inCategory:
Claus Gittinger <cg@exept.de>
parents: 2714
diff changeset
   545
        notifying:nil
1989b1b9173a added: #compile:forClass:inCategory:
Claus Gittinger <cg@exept.de>
parents: 2714
diff changeset
   546
        install:true
1989b1b9173a added: #compile:forClass:inCategory:
Claus Gittinger <cg@exept.de>
parents: 2714
diff changeset
   547
        skipIfSame:false
1989b1b9173a added: #compile:forClass:inCategory:
Claus Gittinger <cg@exept.de>
parents: 2714
diff changeset
   548
        silent:false
1989b1b9173a added: #compile:forClass:inCategory:
Claus Gittinger <cg@exept.de>
parents: 2714
diff changeset
   549
        foldConstants:true
1989b1b9173a added: #compile:forClass:inCategory:
Claus Gittinger <cg@exept.de>
parents: 2714
diff changeset
   550
1989b1b9173a added: #compile:forClass:inCategory:
Claus Gittinger <cg@exept.de>
parents: 2714
diff changeset
   551
    "Modified: / 30-09-2011 / 12:44:23 / cg"
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   552
!
7ad01559b262 Initial revision
claus
parents:
diff changeset
   553
84
claus
parents: 78
diff changeset
   554
compile:aString forClass:aClass inCategory:cat notifying:requestor
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   555
    "compile a source-string for a method in classToCompileFor.
84
claus
parents: 78
diff changeset
   556
     errors are forwarded to requestor.
890
bc5c9b3bf477 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 833
diff changeset
   557
     The method will get cat as category.
bc5c9b3bf477 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 833
diff changeset
   558
     Returns the new method, #Error or nil."
bc5c9b3bf477 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 833
diff changeset
   559
1815
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   560
    ^ self
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   561
	compile:aString
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   562
	forClass:aClass
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   563
	inCategory:cat
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   564
	notifying:requestor
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   565
	install:true
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   566
	skipIfSame:false
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   567
	silent:false
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   568
!
7ad01559b262 Initial revision
claus
parents:
diff changeset
   569
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   570
compile:aString forClass:aClass inCategory:cat notifying:requestor install:install
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   571
    "compile a source-string for a method in classToCompileFor.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   572
     The install-argument controls if the method is to be installed into the
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   573
     classes method-dictionary, or just to be compiled and a method object to be returned.
890
bc5c9b3bf477 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 833
diff changeset
   574
     Errors are forwarded to requestor. The method will get cat as category.
bc5c9b3bf477 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 833
diff changeset
   575
     Returns the new method, #Error or nil."
bc5c9b3bf477 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 833
diff changeset
   576
1815
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   577
    ^ self
2091
18bcd32044c0 preparations for breakpointed lines
Claus Gittinger <cg@exept.de>
parents: 2084
diff changeset
   578
        compile:aString
18bcd32044c0 preparations for breakpointed lines
Claus Gittinger <cg@exept.de>
parents: 2084
diff changeset
   579
        forClass:aClass
18bcd32044c0 preparations for breakpointed lines
Claus Gittinger <cg@exept.de>
parents: 2084
diff changeset
   580
        inCategory:cat
18bcd32044c0 preparations for breakpointed lines
Claus Gittinger <cg@exept.de>
parents: 2084
diff changeset
   581
        notifying:requestor
18bcd32044c0 preparations for breakpointed lines
Claus Gittinger <cg@exept.de>
parents: 2084
diff changeset
   582
        install:install
18bcd32044c0 preparations for breakpointed lines
Claus Gittinger <cg@exept.de>
parents: 2084
diff changeset
   583
        skipIfSame:false
18bcd32044c0 preparations for breakpointed lines
Claus Gittinger <cg@exept.de>
parents: 2084
diff changeset
   584
        silent:false
18bcd32044c0 preparations for breakpointed lines
Claus Gittinger <cg@exept.de>
parents: 2084
diff changeset
   585
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   586
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   587
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   588
compile:aString forClass:aClass inCategory:cat notifying:requestor
1815
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   589
		 install:install skipIfSame:skipIfSame
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   590
    "compile a source-string for a method in classToCompileFor.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   591
     The install-argument controls if the method is to be installed into the
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   592
     classes method-dictionary, or just to be compiled and a method object to be returned.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   593
     Errors are forwarded to requestor. The method will get cat as category.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   594
     If skipIsSame is true, and the source is the same as an existing
890
bc5c9b3bf477 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 833
diff changeset
   595
     methods source, this is a noop (for fast fileIn).
bc5c9b3bf477 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 833
diff changeset
   596
     Returns the new method, #Error or nil."
bc5c9b3bf477 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 833
diff changeset
   597
1815
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   598
    ^ self
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   599
	compile:aString
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   600
	forClass:aClass
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   601
	inCategory:cat
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   602
	notifying:requestor
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   603
	install:install
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   604
	skipIfSame:skipIfSame
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   605
	silent:false
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   606
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   607
84
claus
parents: 78
diff changeset
   608
compile:aString forClass:aClass inCategory:cat notifying:requestor
2091
18bcd32044c0 preparations for breakpointed lines
Claus Gittinger <cg@exept.de>
parents: 2084
diff changeset
   609
                 install:install skipIfSame:skipIfSame silent:silent
890
bc5c9b3bf477 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 833
diff changeset
   610
    "compile a source-string for a method in aClass.
bc5c9b3bf477 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 833
diff changeset
   611
     errors are forwarded to requestor.
bc5c9b3bf477 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 833
diff changeset
   612
     The method will get cat as category.
bc5c9b3bf477 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 833
diff changeset
   613
     if install is true, the method is installed in the class.
bc5c9b3bf477 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 833
diff changeset
   614
     if skipIfSame, the method is not installed if there is no change
bc5c9b3bf477 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 833
diff changeset
   615
     (used when filing in).
bc5c9b3bf477 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 833
diff changeset
   616
     if silent is true, no warnings are output.
bc5c9b3bf477 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 833
diff changeset
   617
     Returns the new method, #Error or nil."
230
54e13c76f143 allow constant folding to be turned off
Claus Gittinger <cg@exept.de>
parents: 217
diff changeset
   618
54e13c76f143 allow constant folding to be turned off
Claus Gittinger <cg@exept.de>
parents: 217
diff changeset
   619
    ^ self
2091
18bcd32044c0 preparations for breakpointed lines
Claus Gittinger <cg@exept.de>
parents: 2084
diff changeset
   620
        compile:aString
18bcd32044c0 preparations for breakpointed lines
Claus Gittinger <cg@exept.de>
parents: 2084
diff changeset
   621
        forClass:aClass
18bcd32044c0 preparations for breakpointed lines
Claus Gittinger <cg@exept.de>
parents: 2084
diff changeset
   622
        inCategory:cat
18bcd32044c0 preparations for breakpointed lines
Claus Gittinger <cg@exept.de>
parents: 2084
diff changeset
   623
        notifying:requestor
18bcd32044c0 preparations for breakpointed lines
Claus Gittinger <cg@exept.de>
parents: 2084
diff changeset
   624
        install:install
18bcd32044c0 preparations for breakpointed lines
Claus Gittinger <cg@exept.de>
parents: 2084
diff changeset
   625
        skipIfSame:skipIfSame
18bcd32044c0 preparations for breakpointed lines
Claus Gittinger <cg@exept.de>
parents: 2084
diff changeset
   626
        silent:silent
18bcd32044c0 preparations for breakpointed lines
Claus Gittinger <cg@exept.de>
parents: 2084
diff changeset
   627
        foldConstants:true
230
54e13c76f143 allow constant folding to be turned off
Claus Gittinger <cg@exept.de>
parents: 217
diff changeset
   628
!
54e13c76f143 allow constant folding to be turned off
Claus Gittinger <cg@exept.de>
parents: 217
diff changeset
   629
1221
2768cbe3be2b finished remove unused vars;
Claus Gittinger <cg@exept.de>
parents: 1219
diff changeset
   630
compile:aStringArg forClass:aClassArg inCategory:cat notifying:requestor
2091
18bcd32044c0 preparations for breakpointed lines
Claus Gittinger <cg@exept.de>
parents: 2084
diff changeset
   631
                 install:install skipIfSame:skipIfSame silent:silent foldConstants:fold
20
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   632
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   633
    "the basic workhorse method for compiling:
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   634
     compile a source-string for a method in classToCompileFor.
1815
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   635
     errors are forwarded to requestor
890
bc5c9b3bf477 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 833
diff changeset
   636
     (report on Transcript and return #Error, if requestor is nil).
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   637
1815
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   638
     The new method will get cat as category.
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   639
     If install is true, the method will go into the classes method-table,
20
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   640
     otherwise the method is simply returned (for anonymous methods).
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   641
     If skipIsSame is true, and the source is the same as an existing
20
f8dd8ba75205 *** empty log message ***
claus
parents: 19
diff changeset
   642
     methods source, this is a noop (for fast fileIn).
890
bc5c9b3bf477 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 833
diff changeset
   643
     The argument, silent controls if errors are to be reported.
bc5c9b3bf477 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 833
diff changeset
   644
     Returns the method, #Error or nil."
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   645
1363
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
   646
    ^ self new
2091
18bcd32044c0 preparations for breakpointed lines
Claus Gittinger <cg@exept.de>
parents: 2084
diff changeset
   647
        compile:aStringArg 
18bcd32044c0 preparations for breakpointed lines
Claus Gittinger <cg@exept.de>
parents: 2084
diff changeset
   648
        forClass:aClassArg 
18bcd32044c0 preparations for breakpointed lines
Claus Gittinger <cg@exept.de>
parents: 2084
diff changeset
   649
        inCategory:cat 
18bcd32044c0 preparations for breakpointed lines
Claus Gittinger <cg@exept.de>
parents: 2084
diff changeset
   650
        notifying:requestor
18bcd32044c0 preparations for breakpointed lines
Claus Gittinger <cg@exept.de>
parents: 2084
diff changeset
   651
        install:install 
18bcd32044c0 preparations for breakpointed lines
Claus Gittinger <cg@exept.de>
parents: 2084
diff changeset
   652
        skipIfSame:skipIfSame 
18bcd32044c0 preparations for breakpointed lines
Claus Gittinger <cg@exept.de>
parents: 2084
diff changeset
   653
        silent:silent 
18bcd32044c0 preparations for breakpointed lines
Claus Gittinger <cg@exept.de>
parents: 2084
diff changeset
   654
        foldConstants:fold
128
61eb0b356b89 change classes versionString when class changes (prepare for sourceCode system)
Claus Gittinger <cg@exept.de>
parents: 126
diff changeset
   655
!
61eb0b356b89 change classes versionString when class changes (prepare for sourceCode system)
Claus Gittinger <cg@exept.de>
parents: 126
diff changeset
   656
1466
c05b6aa03a47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1459
diff changeset
   657
compile:methodText forClass:classToCompileFor install:doInstall
c05b6aa03a47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1459
diff changeset
   658
    "compile a source-string for a method in classToCompileFor.
c05b6aa03a47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1459
diff changeset
   659
     The install-argument controls if the method is to be installed into the
c05b6aa03a47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1459
diff changeset
   660
     classes method-dictionary, or just to be compiled and a method object to be returned.
c05b6aa03a47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1459
diff changeset
   661
     Returns the new method, #Error or nil."
c05b6aa03a47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1459
diff changeset
   662
1815
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   663
    ^ self
3281
b4b91a50efc4 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
   664
        compile:methodText
b4b91a50efc4 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
   665
        forClass:classToCompileFor
b4b91a50efc4 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
   666
        inCategory:(self defaultMethodCategory)
b4b91a50efc4 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
   667
        notifying:nil
b4b91a50efc4 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
   668
        install:doInstall
b4b91a50efc4 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
   669
        skipIfSame:false
b4b91a50efc4 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
   670
        silent:false
1466
c05b6aa03a47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1459
diff changeset
   671
!
c05b6aa03a47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1459
diff changeset
   672
128
61eb0b356b89 change classes versionString when class changes (prepare for sourceCode system)
Claus Gittinger <cg@exept.de>
parents: 126
diff changeset
   673
compile:methodText forClass:classToCompileFor notifying:requestor
61eb0b356b89 change classes versionString when class changes (prepare for sourceCode system)
Claus Gittinger <cg@exept.de>
parents: 126
diff changeset
   674
    "compile a source-string for a method in classToCompileFor.
890
bc5c9b3bf477 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 833
diff changeset
   675
     Errors are forwarded to requestor.
bc5c9b3bf477 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 833
diff changeset
   676
     Returns the new method, #Error or nil."
bc5c9b3bf477 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 833
diff changeset
   677
1815
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   678
    ^ self
3281
b4b91a50efc4 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
   679
        compile:methodText
b4b91a50efc4 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
   680
        forClass:classToCompileFor
b4b91a50efc4 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
   681
        inCategory:(self defaultMethodCategory)
b4b91a50efc4 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
   682
        notifying:requestor
b4b91a50efc4 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
   683
        install:true
b4b91a50efc4 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
   684
        skipIfSame:false
b4b91a50efc4 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
   685
        silent:false
128
61eb0b356b89 change classes versionString when class changes (prepare for sourceCode system)
Claus Gittinger <cg@exept.de>
parents: 126
diff changeset
   686
!
61eb0b356b89 change classes versionString when class changes (prepare for sourceCode system)
Claus Gittinger <cg@exept.de>
parents: 126
diff changeset
   687
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   688
compile:textOrStream in:aClass notifying:requestor ifFail:exceptionBlock
890
bc5c9b3bf477 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 833
diff changeset
   689
    "name alias for ST-80 compatibility.
1201
d38dbc8f2961 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
   690
     Returns the new method, or the value from exceptionBlock."
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   691
2091
18bcd32044c0 preparations for breakpointed lines
Claus Gittinger <cg@exept.de>
parents: 2084
diff changeset
   692
    ^ self new 
18bcd32044c0 preparations for breakpointed lines
Claus Gittinger <cg@exept.de>
parents: 2084
diff changeset
   693
        compile:textOrStream 
18bcd32044c0 preparations for breakpointed lines
Claus Gittinger <cg@exept.de>
parents: 2084
diff changeset
   694
        in:aClass 
18bcd32044c0 preparations for breakpointed lines
Claus Gittinger <cg@exept.de>
parents: 2084
diff changeset
   695
        notifying:requestor 
18bcd32044c0 preparations for breakpointed lines
Claus Gittinger <cg@exept.de>
parents: 2084
diff changeset
   696
        ifFail:exceptionBlock
1549
dd2913f2fbb3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1508
diff changeset
   697
!
dd2913f2fbb3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1508
diff changeset
   698
2428
3e8b7caa22cb added: #compile:in:notifying:install:ifFail:
Claus Gittinger <cg@exept.de>
parents: 2338
diff changeset
   699
compile:textOrStream in:aClass notifying:requestor install:install ifFail:exceptionBlock
3e8b7caa22cb added: #compile:in:notifying:install:ifFail:
Claus Gittinger <cg@exept.de>
parents: 2338
diff changeset
   700
    "name alias for ST-80 compatibility.
3e8b7caa22cb added: #compile:in:notifying:install:ifFail:
Claus Gittinger <cg@exept.de>
parents: 2338
diff changeset
   701
     Returns the new method, or the value from exceptionBlock."
3e8b7caa22cb added: #compile:in:notifying:install:ifFail:
Claus Gittinger <cg@exept.de>
parents: 2338
diff changeset
   702
3e8b7caa22cb added: #compile:in:notifying:install:ifFail:
Claus Gittinger <cg@exept.de>
parents: 2338
diff changeset
   703
    ^ self new 
3e8b7caa22cb added: #compile:in:notifying:install:ifFail:
Claus Gittinger <cg@exept.de>
parents: 2338
diff changeset
   704
        compile:textOrStream 
3e8b7caa22cb added: #compile:in:notifying:install:ifFail:
Claus Gittinger <cg@exept.de>
parents: 2338
diff changeset
   705
        in:aClass 
3e8b7caa22cb added: #compile:in:notifying:install:ifFail:
Claus Gittinger <cg@exept.de>
parents: 2338
diff changeset
   706
        notifying:requestor
3e8b7caa22cb added: #compile:in:notifying:install:ifFail:
Claus Gittinger <cg@exept.de>
parents: 2338
diff changeset
   707
        install:install
3e8b7caa22cb added: #compile:in:notifying:install:ifFail:
Claus Gittinger <cg@exept.de>
parents: 2338
diff changeset
   708
        ifFail:exceptionBlock
3e8b7caa22cb added: #compile:in:notifying:install:ifFail:
Claus Gittinger <cg@exept.de>
parents: 2338
diff changeset
   709
3e8b7caa22cb added: #compile:in:notifying:install:ifFail:
Claus Gittinger <cg@exept.de>
parents: 2338
diff changeset
   710
    "Created: / 15-10-2010 / 10:39:27 / cg"
3e8b7caa22cb added: #compile:in:notifying:install:ifFail:
Claus Gittinger <cg@exept.de>
parents: 2338
diff changeset
   711
!
3e8b7caa22cb added: #compile:in:notifying:install:ifFail:
Claus Gittinger <cg@exept.de>
parents: 2338
diff changeset
   712
1549
dd2913f2fbb3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1508
diff changeset
   713
stcCompileMethod:aMethod
1815
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   714
    ParserFlags
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   715
	withSTCCompilation:#always
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   716
	do:[
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   717
	    self
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   718
		compile:(aMethod source)
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   719
		forClass:(aMethod mclass)
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   720
		inCategory:(aMethod category)
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   721
	].
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   722
! !
7ad01559b262 Initial revision
claus
parents:
diff changeset
   723
372
98da4d230a8d prepare support for 16-bit lineNumbers
Claus Gittinger <cg@exept.de>
parents: 357
diff changeset
   724
!ByteCodeCompiler class methodsFor:'constants'!
15
992c3d87edbf *** empty log message ***
claus
parents: 13
diff changeset
   725
992c3d87edbf *** empty log message ***
claus
parents: 13
diff changeset
   726
byteCodeFor:aSymbol
246
abf09d4821fe new code for faster global pushes
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
   727
    "returns the numeric code for some symbolic bytecodes."
15
992c3d87edbf *** empty log message ***
claus
parents: 13
diff changeset
   728
25
865d6cfaf90d changed bytecodes
claus
parents: 20
diff changeset
   729
    (aSymbol == #retNil) ifTrue:[^ 1].
865d6cfaf90d changed bytecodes
claus
parents: 20
diff changeset
   730
    (aSymbol == #retTrue) ifTrue:[^ 2].
865d6cfaf90d changed bytecodes
claus
parents: 20
diff changeset
   731
    (aSymbol == #retFalse) ifTrue:[^ 3].
865d6cfaf90d changed bytecodes
claus
parents: 20
diff changeset
   732
    (aSymbol == #ret0) ifTrue:[^ 4].
1402
2cf2b7e79168 Fix typos
Stefan Vogel <sv@exept.de>
parents: 1378
diff changeset
   733
    (aSymbol == #retSelf) ifTrue:[^5].
1300
be5542fc877e more bytecodes in #byteCodeFor class method
Stefan Vogel <sv@exept.de>
parents: 1280
diff changeset
   734
    (aSymbol == #retNum) ifTrue:[^ 127].
25
865d6cfaf90d changed bytecodes
claus
parents: 20
diff changeset
   735
    (aSymbol == #retTop) ifTrue:[^ 0].
865d6cfaf90d changed bytecodes
claus
parents: 20
diff changeset
   736
1300
be5542fc877e more bytecodes in #byteCodeFor class method
Stefan Vogel <sv@exept.de>
parents: 1280
diff changeset
   737
    (aSymbol == #mk0Block) ifTrue:[^ 156].
be5542fc877e more bytecodes in #byteCodeFor class method
Stefan Vogel <sv@exept.de>
parents: 1280
diff changeset
   738
    (aSymbol == #mkNilBlock) ifTrue:[^ 157].
be5542fc877e more bytecodes in #byteCodeFor class method
Stefan Vogel <sv@exept.de>
parents: 1280
diff changeset
   739
15
992c3d87edbf *** empty log message ***
claus
parents: 13
diff changeset
   740
    (aSymbol == #push0) ifTrue:[^120].
992c3d87edbf *** empty log message ***
claus
parents: 13
diff changeset
   741
    (aSymbol == #push1) ifTrue:[^121].
992c3d87edbf *** empty log message ***
claus
parents: 13
diff changeset
   742
    (aSymbol == #push2) ifTrue:[^139].
992c3d87edbf *** empty log message ***
claus
parents: 13
diff changeset
   743
    (aSymbol == #pushMinus1) ifTrue:[^122].
992c3d87edbf *** empty log message ***
claus
parents: 13
diff changeset
   744
    (aSymbol == #pushNil) ifTrue:[^ 10].
992c3d87edbf *** empty log message ***
claus
parents: 13
diff changeset
   745
    (aSymbol == #pushTrue) ifTrue:[^ 11].
992c3d87edbf *** empty log message ***
claus
parents: 13
diff changeset
   746
    (aSymbol == #pushFalse) ifTrue:[^ 12].
992c3d87edbf *** empty log message ***
claus
parents: 13
diff changeset
   747
    (aSymbol == #pushSelf) ifTrue:[^ 15].
1402
2cf2b7e79168 Fix typos
Stefan Vogel <sv@exept.de>
parents: 1378
diff changeset
   748
    self error:'unknown instruction'.
15
992c3d87edbf *** empty log message ***
claus
parents: 13
diff changeset
   749
! !
992c3d87edbf *** empty log message ***
claus
parents: 13
diff changeset
   750
1324
fb29e5557fd6 default method category
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   751
!ByteCodeCompiler class methodsFor:'defaults'!
fb29e5557fd6 default method category
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   752
1666
750da2bec865 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1661
diff changeset
   753
allowExtensionsToPrivateClasses
750da2bec865 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1661
diff changeset
   754
    ^ ParserFlags allowExtensionsToPrivateClasses
750da2bec865 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1661
diff changeset
   755
!
750da2bec865 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1661
diff changeset
   756
3281
b4b91a50efc4 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
   757
asYetUncategorizedMethodCategory
b4b91a50efc4 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
   758
    ^ '* As yet uncategorized *'
b4b91a50efc4 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
   759
!
b4b91a50efc4 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
   760
1324
fb29e5557fd6 default method category
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   761
defaultMethodCategory
fb29e5557fd6 default method category
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   762
    "/ ^ '** As yet uncategorized **'.
fb29e5557fd6 default method category
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   763
    ^ '* uncategorized *'
fb29e5557fd6 default method category
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   764
! !
fb29e5557fd6 default method category
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   765
1414
613ec963af7c method category rename
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
   766
!ByteCodeCompiler class methodsFor:'private-utilities'!
1280
73fa8c2f6b1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1263
diff changeset
   767
73fa8c2f6b1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1263
diff changeset
   768
stringWithSimpleCRs:aString
73fa8c2f6b1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1263
diff changeset
   769
    |src dst ch|
73fa8c2f6b1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1263
diff changeset
   770
1496
7f31982d2933 replaced '' writeStream by String writeStream
Claus Gittinger <cg@exept.de>
parents: 1479
diff changeset
   771
    dst := String writeStream.
1280
73fa8c2f6b1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1263
diff changeset
   772
    src := aString readStream.
73fa8c2f6b1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1263
diff changeset
   773
    [src atEnd] whileFalse:[
1815
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   774
	ch := src next.
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   775
	ch = Character return ifTrue:[
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   776
	    src peek == Character linefeed ifTrue:[
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   777
		src next.
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   778
	    ].
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   779
	    ch := Character cr.
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   780
	].
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   781
	dst nextPut:ch
1280
73fa8c2f6b1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1263
diff changeset
   782
    ].
73fa8c2f6b1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1263
diff changeset
   783
    ^ dst contents
73fa8c2f6b1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1263
diff changeset
   784
! !
73fa8c2f6b1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1263
diff changeset
   785
372
98da4d230a8d prepare support for 16-bit lineNumbers
Claus Gittinger <cg@exept.de>
parents: 357
diff changeset
   786
!ByteCodeCompiler class methodsFor:'stc compilation defaults'!
54
86c5b39c2eca *** empty log message ***
claus
parents: 49
diff changeset
   787
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   788
canCreateMachineCode
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   789
    "return true, if compilation to machine code is supported.
1666
750da2bec865 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1661
diff changeset
   790
     Currently, all SYSV4, Linux and WinNT/XP systems do so;
1815
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   791
     REAL/IX and HPUX9.x do not
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   792
	(due to the need for dynamic loading of object files, which is not supported by those).
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   793
     MIPS ULTRIX is almost finished, but not yet released.
1666
750da2bec865 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1661
diff changeset
   794
     (late note - we no longer care for REAL/IX, HPUX9.x and MIPS ULTRIX)"
750da2bec865 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1661
diff changeset
   795
750da2bec865 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1661
diff changeset
   796
    ^ ObjectFileLoader notNil and:[ ObjectFileLoader canLoadObjectFiles ].
124
claus
parents: 120
diff changeset
   797
claus
parents: 120
diff changeset
   798
    "
1815
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   799
     Compiler canCreateMachineCode
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   800
    "
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   801
769
cabe7bdb46ec changes for WIN32 machineCode generation & loading
Claus Gittinger <cg@exept.de>
parents: 768
diff changeset
   802
    "Modified: / 13.9.1995 / 15:15:11 / claus"
cabe7bdb46ec changes for WIN32 machineCode generation & loading
Claus Gittinger <cg@exept.de>
parents: 768
diff changeset
   803
    "Modified: / 3.9.1998 / 15:56:07 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   804
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   805
411
d4ca24ab1f4c more control over cc command;
Claus Gittinger <cg@exept.de>
parents: 410
diff changeset
   806
ccCompilationOptions
4101
dfb2a46bb26a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4020
diff changeset
   807
    <resource: #obsolete>
dfb2a46bb26a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4020
diff changeset
   808
dfb2a46bb26a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4020
diff changeset
   809
    "return the options used with cc compilation.
dfb2a46bb26a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4020
diff changeset
   810
     This method remains here for backward compatibility (older script files)"
411
d4ca24ab1f4c more control over cc command;
Claus Gittinger <cg@exept.de>
parents: 410
diff changeset
   811
1666
750da2bec865 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1661
diff changeset
   812
    ^ ParserFlags ccCompilationOptions
411
d4ca24ab1f4c more control over cc command;
Claus Gittinger <cg@exept.de>
parents: 410
diff changeset
   813
d4ca24ab1f4c more control over cc command;
Claus Gittinger <cg@exept.de>
parents: 410
diff changeset
   814
    "
d4ca24ab1f4c more control over cc command;
Claus Gittinger <cg@exept.de>
parents: 410
diff changeset
   815
     Compiler ccCompilationOptions
d4ca24ab1f4c more control over cc command;
Claus Gittinger <cg@exept.de>
parents: 410
diff changeset
   816
    "
d4ca24ab1f4c more control over cc command;
Claus Gittinger <cg@exept.de>
parents: 410
diff changeset
   817
d4ca24ab1f4c more control over cc command;
Claus Gittinger <cg@exept.de>
parents: 410
diff changeset
   818
    "Modified: 5.11.1996 / 17:38:56 / cg"
d4ca24ab1f4c more control over cc command;
Claus Gittinger <cg@exept.de>
parents: 410
diff changeset
   819
!
d4ca24ab1f4c more control over cc command;
Claus Gittinger <cg@exept.de>
parents: 410
diff changeset
   820
4193
f6e06c574f0d #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4192
diff changeset
   821
ccCompilationOptions:aString
f6e06c574f0d #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4192
diff changeset
   822
    <resource: #obsolete>
f6e06c574f0d #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4192
diff changeset
   823
    
f6e06c574f0d #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4192
diff changeset
   824
    "define the compilation options
f6e06c574f0d #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4192
diff changeset
   825
     to be used when compiling to machine code.
f6e06c574f0d #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4192
diff changeset
   826
     These are passed to cc. Can be set from your private.rc file.
f6e06c574f0d #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4192
diff changeset
   827
     This method remains here for backward compatibility (older script files)"
f6e06c574f0d #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4192
diff changeset
   828
f6e06c574f0d #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4192
diff changeset
   829
    ParserFlags ccCompilationOptions:aString
f6e06c574f0d #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4192
diff changeset
   830
f6e06c574f0d #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4192
diff changeset
   831
    "
f6e06c574f0d #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4192
diff changeset
   832
     Compiler ccCompilationOptions:'-O'
f6e06c574f0d #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4192
diff changeset
   833
     Compiler ccCompilationOptions:'-O -fPIC'
f6e06c574f0d #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4192
diff changeset
   834
     Compiler ccCompilationOptions
f6e06c574f0d #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4192
diff changeset
   835
    "
f6e06c574f0d #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4192
diff changeset
   836
f6e06c574f0d #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4192
diff changeset
   837
    "Created: 5.11.1996 / 17:37:05 / cg"
f6e06c574f0d #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4192
diff changeset
   838
    "Modified: 5.11.1996 / 17:38:32 / cg"
f6e06c574f0d #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4192
diff changeset
   839
!
f6e06c574f0d #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4192
diff changeset
   840
1815
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   841
ccPath
4101
dfb2a46bb26a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4020
diff changeset
   842
    <resource: #obsolete>
dfb2a46bb26a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4020
diff changeset
   843
dfb2a46bb26a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4020
diff changeset
   844
    "return the path to (name of) the cc command for incremental method compilation.
dfb2a46bb26a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4020
diff changeset
   845
     This method remains here for backward compatibility (older script files)"
411
d4ca24ab1f4c more control over cc command;
Claus Gittinger <cg@exept.de>
parents: 410
diff changeset
   846
1666
750da2bec865 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1661
diff changeset
   847
    ^ ParserFlags ccPath
411
d4ca24ab1f4c more control over cc command;
Claus Gittinger <cg@exept.de>
parents: 410
diff changeset
   848
d4ca24ab1f4c more control over cc command;
Claus Gittinger <cg@exept.de>
parents: 410
diff changeset
   849
    "
772
bd6fcf9e44e4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 769
diff changeset
   850
     CC := nil
1815
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   851
     Compiler ccPath
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   852
     Compiler ccPath:'gcc'
411
d4ca24ab1f4c more control over cc command;
Claus Gittinger <cg@exept.de>
parents: 410
diff changeset
   853
    "
d4ca24ab1f4c more control over cc command;
Claus Gittinger <cg@exept.de>
parents: 410
diff changeset
   854
769
cabe7bdb46ec changes for WIN32 machineCode generation & loading
Claus Gittinger <cg@exept.de>
parents: 768
diff changeset
   855
    "Modified: / 13.9.1995 / 15:15:04 / claus"
cabe7bdb46ec changes for WIN32 machineCode generation & loading
Claus Gittinger <cg@exept.de>
parents: 768
diff changeset
   856
    "Created: / 5.11.1996 / 17:35:40 / cg"
772
bd6fcf9e44e4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 769
diff changeset
   857
    "Modified: / 4.9.1998 / 15:48:40 / cg"
411
d4ca24ab1f4c more control over cc command;
Claus Gittinger <cg@exept.de>
parents: 410
diff changeset
   858
!
d4ca24ab1f4c more control over cc command;
Claus Gittinger <cg@exept.de>
parents: 410
diff changeset
   859
1815
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   860
ccPath:aPathOrCommandName
4101
dfb2a46bb26a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4020
diff changeset
   861
    <resource: #obsolete>
dfb2a46bb26a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4020
diff changeset
   862
dfb2a46bb26a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4020
diff changeset
   863
    "set the path to the cc command for incremental method compilation.
dfb2a46bb26a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4020
diff changeset
   864
     This method remains here for backward compatibility (older script files)"
411
d4ca24ab1f4c more control over cc command;
Claus Gittinger <cg@exept.de>
parents: 410
diff changeset
   865
1666
750da2bec865 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1661
diff changeset
   866
    ParserFlags ccPath:aPathOrCommandName
411
d4ca24ab1f4c more control over cc command;
Claus Gittinger <cg@exept.de>
parents: 410
diff changeset
   867
d4ca24ab1f4c more control over cc command;
Claus Gittinger <cg@exept.de>
parents: 410
diff changeset
   868
    "
1815
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   869
     Compiler ccPath
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   870
     Compiler ccPath:'gcc'
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   871
     Compiler ccPath:'bcc32'
411
d4ca24ab1f4c more control over cc command;
Claus Gittinger <cg@exept.de>
parents: 410
diff changeset
   872
    "
d4ca24ab1f4c more control over cc command;
Claus Gittinger <cg@exept.de>
parents: 410
diff changeset
   873
773
1e2375488d3b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 772
diff changeset
   874
    "Modified: / 13.9.1995 / 15:15:04 / claus"
1e2375488d3b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 772
diff changeset
   875
    "Created: / 5.11.1996 / 17:38:11 / cg"
1e2375488d3b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 772
diff changeset
   876
    "Modified: / 23.8.1998 / 13:58:57 / cg"
411
d4ca24ab1f4c more control over cc command;
Claus Gittinger <cg@exept.de>
parents: 410
diff changeset
   877
!
d4ca24ab1f4c more control over cc command;
Claus Gittinger <cg@exept.de>
parents: 410
diff changeset
   878
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   879
stcCompilation
4101
dfb2a46bb26a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4020
diff changeset
   880
    <resource: #obsolete>
dfb2a46bb26a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4020
diff changeset
   881
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   882
    "return the flag which controls compilation to machine code.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   883
     If #always, methods are always compiled to machine code (which takes
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   884
     longer, but provides faster code). If #none, methods are never compiled
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   885
     to machine code, instead for non-primitive ones, compilation is to bytecode
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   886
     and for primitive ones, a trapping stub is generated.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   887
     Anything else lets the compiler compile to bytecode,
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   888
     except for methods containing primitive code.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   889
     This can be set from your private.rc file or from a workspace
4101
dfb2a46bb26a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4020
diff changeset
   890
     for selective compilation to machine code.
dfb2a46bb26a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4020
diff changeset
   891
     This method remains here for backward compatibility (older script files)"
124
claus
parents: 120
diff changeset
   892
1661
6b500fab2c0b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   893
    ^ ParserFlags stcCompilation
54
86c5b39c2eca *** empty log message ***
claus
parents: 49
diff changeset
   894
86c5b39c2eca *** empty log message ***
claus
parents: 49
diff changeset
   895
    "
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   896
     Compiler stcCompilation
124
claus
parents: 120
diff changeset
   897
    "
128
61eb0b356b89 change classes versionString when class changes (prepare for sourceCode system)
Claus Gittinger <cg@exept.de>
parents: 126
diff changeset
   898
!
61eb0b356b89 change classes versionString when class changes (prepare for sourceCode system)
Claus Gittinger <cg@exept.de>
parents: 126
diff changeset
   899
61eb0b356b89 change classes versionString when class changes (prepare for sourceCode system)
Claus Gittinger <cg@exept.de>
parents: 126
diff changeset
   900
stcCompilation:how
4101
dfb2a46bb26a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4020
diff changeset
   901
    <resource: #obsolete>
dfb2a46bb26a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4020
diff changeset
   902
128
61eb0b356b89 change classes versionString when class changes (prepare for sourceCode system)
Claus Gittinger <cg@exept.de>
parents: 126
diff changeset
   903
    "set the flag which controls compilation to machine code.
61eb0b356b89 change classes versionString when class changes (prepare for sourceCode system)
Claus Gittinger <cg@exept.de>
parents: 126
diff changeset
   904
     If #always, methods are always compiled to machine code (which takes
61eb0b356b89 change classes versionString when class changes (prepare for sourceCode system)
Claus Gittinger <cg@exept.de>
parents: 126
diff changeset
   905
     longer, but provides faster code). If #none, methods are never compiled
61eb0b356b89 change classes versionString when class changes (prepare for sourceCode system)
Claus Gittinger <cg@exept.de>
parents: 126
diff changeset
   906
     to machine code, instead for non-primitive ones, compilation is to bytecode
61eb0b356b89 change classes versionString when class changes (prepare for sourceCode system)
Claus Gittinger <cg@exept.de>
parents: 126
diff changeset
   907
     and for primitive ones, a trapping stub is generated.
61eb0b356b89 change classes versionString when class changes (prepare for sourceCode system)
Claus Gittinger <cg@exept.de>
parents: 126
diff changeset
   908
     Anything else lets the compiler compile to bytecode,
61eb0b356b89 change classes versionString when class changes (prepare for sourceCode system)
Claus Gittinger <cg@exept.de>
parents: 126
diff changeset
   909
     except for methods containing primitive code.
61eb0b356b89 change classes versionString when class changes (prepare for sourceCode system)
Claus Gittinger <cg@exept.de>
parents: 126
diff changeset
   910
     This can be set from your private.rc file or from a workspace
4101
dfb2a46bb26a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4020
diff changeset
   911
     for selective compilation to machine code.
dfb2a46bb26a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4020
diff changeset
   912
     This method remains here for backward compatibility (older script files)"
128
61eb0b356b89 change classes versionString when class changes (prepare for sourceCode system)
Claus Gittinger <cg@exept.de>
parents: 126
diff changeset
   913
61eb0b356b89 change classes versionString when class changes (prepare for sourceCode system)
Claus Gittinger <cg@exept.de>
parents: 126
diff changeset
   914
    |ret|
61eb0b356b89 change classes versionString when class changes (prepare for sourceCode system)
Claus Gittinger <cg@exept.de>
parents: 126
diff changeset
   915
1661
6b500fab2c0b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   916
    ret := ParserFlags stcCompilation.
6b500fab2c0b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   917
    ParserFlags stcCompilation:how.
128
61eb0b356b89 change classes versionString when class changes (prepare for sourceCode system)
Claus Gittinger <cg@exept.de>
parents: 126
diff changeset
   918
    ^ ret
61eb0b356b89 change classes versionString when class changes (prepare for sourceCode system)
Claus Gittinger <cg@exept.de>
parents: 126
diff changeset
   919
61eb0b356b89 change classes versionString when class changes (prepare for sourceCode system)
Claus Gittinger <cg@exept.de>
parents: 126
diff changeset
   920
    "
61eb0b356b89 change classes versionString when class changes (prepare for sourceCode system)
Claus Gittinger <cg@exept.de>
parents: 126
diff changeset
   921
     Compiler stcCompilation:#always
1815
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   922
     Compiler stcCompilation:#never
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   923
     Compiler stcCompilation:#default
128
61eb0b356b89 change classes versionString when class changes (prepare for sourceCode system)
Claus Gittinger <cg@exept.de>
parents: 126
diff changeset
   924
    "
61eb0b356b89 change classes versionString when class changes (prepare for sourceCode system)
Claus Gittinger <cg@exept.de>
parents: 126
diff changeset
   925
!
61eb0b356b89 change classes versionString when class changes (prepare for sourceCode system)
Claus Gittinger <cg@exept.de>
parents: 126
diff changeset
   926
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   927
stcCompilationDefines
4101
dfb2a46bb26a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4020
diff changeset
   928
    <resource: #obsolete>
dfb2a46bb26a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4020
diff changeset
   929
dfb2a46bb26a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4020
diff changeset
   930
    "return the defines used with stc compilation.
dfb2a46bb26a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4020
diff changeset
   931
     This method remains here for backward compatibility (older script files)"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   932
1666
750da2bec865 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1661
diff changeset
   933
    ^ ParserFlags stcCompilationDefines
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   934
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   935
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   936
stcCompilationDefines:aString
4101
dfb2a46bb26a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4020
diff changeset
   937
    <resource: #obsolete>
dfb2a46bb26a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4020
diff changeset
   938
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   939
    "define the flags (for example, additional -D defines)
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   940
     to be used when compiling to machine code.
4101
dfb2a46bb26a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4020
diff changeset
   941
     These are passed to stc. Can be set from your private.rc file.
dfb2a46bb26a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4020
diff changeset
   942
     This method remains here for backward compatibility (older script files)"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   943
1666
750da2bec865 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1661
diff changeset
   944
    ParserFlags stcCompilationDefines:aString
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   945
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   946
    "
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   947
     Compiler stcCompilationDefines:'-DVGL -DDEBUG'
773
1e2375488d3b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 772
diff changeset
   948
     Compiler stcCompilationDefines:'-DWIN32'
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   949
    "
773
1e2375488d3b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 772
diff changeset
   950
1e2375488d3b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 772
diff changeset
   951
    "Modified: / 23.8.1998 / 14:00:40 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   952
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   953
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   954
stcCompilationIncludes
4101
dfb2a46bb26a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4020
diff changeset
   955
    <resource: #obsolete>
dfb2a46bb26a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4020
diff changeset
   956
dfb2a46bb26a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4020
diff changeset
   957
    "return the includes used with stc compilation.
dfb2a46bb26a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4020
diff changeset
   958
     This method remains here for backward compatibility (older script files)"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   959
1666
750da2bec865 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1661
diff changeset
   960
    ^ ParserFlags stcCompilationIncludes
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   961
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   962
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   963
stcCompilationIncludes:aString
4101
dfb2a46bb26a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4020
diff changeset
   964
    <resource: #obsolete>
dfb2a46bb26a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4020
diff changeset
   965
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   966
    "define the include directories via additional -I flags.
4101
dfb2a46bb26a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4020
diff changeset
   967
     These are passed to stc. Can be set in your private.rc file.
dfb2a46bb26a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4020
diff changeset
   968
     This method remains here for backward compatibility (older script files)"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   969
1666
750da2bec865 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1661
diff changeset
   970
    ParserFlags stcCompilationIncludes:aString
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   971
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   972
    "
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   973
     Compiler stcCompilationIncludes:'-I/usr/local/include -I../../include'
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   974
     Compiler stcCompilationIncludes:(Compiler stcCompilationIncludes , ' -I../../libxt')
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   975
    "
586
e9ef451f36d0 automatically include STX_LIBDIR in -I-list
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   976
e9ef451f36d0 automatically include STX_LIBDIR in -I-list
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   977
    "Modified: 18.7.1997 / 18:04:25 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   978
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   979
124
claus
parents: 120
diff changeset
   980
stcCompilationOptions
4101
dfb2a46bb26a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4020
diff changeset
   981
    <resource: #obsolete>
dfb2a46bb26a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4020
diff changeset
   982
dfb2a46bb26a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4020
diff changeset
   983
    "return the options used with stc compilation.
dfb2a46bb26a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4020
diff changeset
   984
     This method remains here for backward compatibility (older script files)"
124
claus
parents: 120
diff changeset
   985
1666
750da2bec865 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1661
diff changeset
   986
    ^ ParserFlags stcCompilationOptions
124
claus
parents: 120
diff changeset
   987
!
claus
parents: 120
diff changeset
   988
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   989
stcCompilationOptions:aString
4101
dfb2a46bb26a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4020
diff changeset
   990
    <resource: #obsolete>
dfb2a46bb26a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4020
diff changeset
   991
1815
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
   992
    "define the compilation options
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
   993
     to be used when compiling to machine code.
4101
dfb2a46bb26a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4020
diff changeset
   994
     These are passed to stc. Can be set from your private.rc file.
dfb2a46bb26a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4020
diff changeset
   995
     This method remains here for backward compatibility (older script files)"
101
claus
parents: 98
diff changeset
   996
1666
750da2bec865 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1661
diff changeset
   997
    ParserFlags stcCompilationOptions:aString
101
claus
parents: 98
diff changeset
   998
claus
parents: 98
diff changeset
   999
    "
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  1000
     Compiler stcCompilationOptions:'+optinline'
101
claus
parents: 98
diff changeset
  1001
    "
claus
parents: 98
diff changeset
  1002
!
claus
parents: 98
diff changeset
  1003
301
5c0add6f00e2 create temporary method object files in an extra directory;
Claus Gittinger <cg@exept.de>
parents: 298
diff changeset
  1004
stcModulePath
4101
dfb2a46bb26a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4020
diff changeset
  1005
    <resource: #obsolete>
dfb2a46bb26a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4020
diff changeset
  1006
dfb2a46bb26a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4020
diff changeset
  1007
    "return the path, where temporary modules are created.
dfb2a46bb26a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4020
diff changeset
  1008
     This method remains here for backward compatibility (older script files)"
301
5c0add6f00e2 create temporary method object files in an extra directory;
Claus Gittinger <cg@exept.de>
parents: 298
diff changeset
  1009
1666
750da2bec865 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1661
diff changeset
  1010
    ^ ParserFlags stcModulePath
301
5c0add6f00e2 create temporary method object files in an extra directory;
Claus Gittinger <cg@exept.de>
parents: 298
diff changeset
  1011
5c0add6f00e2 create temporary method object files in an extra directory;
Claus Gittinger <cg@exept.de>
parents: 298
diff changeset
  1012
    "Created: 12.7.1996 / 12:15:26 / cg"
5c0add6f00e2 create temporary method object files in an extra directory;
Claus Gittinger <cg@exept.de>
parents: 298
diff changeset
  1013
!
5c0add6f00e2 create temporary method object files in an extra directory;
Claus Gittinger <cg@exept.de>
parents: 298
diff changeset
  1014
5c0add6f00e2 create temporary method object files in an extra directory;
Claus Gittinger <cg@exept.de>
parents: 298
diff changeset
  1015
stcModulePath:aPath
4101
dfb2a46bb26a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4020
diff changeset
  1016
    <resource: #obsolete>
dfb2a46bb26a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4020
diff changeset
  1017
4014
b7fae905c8f4 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3856
diff changeset
  1018
    "set the path to the directory, where temporary modules are created.
b7fae905c8f4 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3856
diff changeset
  1019
     Obsolete; knowledge moved to parserFlags,
b7fae905c8f4 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3856
diff changeset
  1020
     where it is also obsolete now, as this should not be set from the outside,
4101
dfb2a46bb26a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4020
diff changeset
  1021
     but instead rely totally on the userPreferences.
dfb2a46bb26a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4020
diff changeset
  1022
     This method remains here for backward compatibility (older script files)"
301
5c0add6f00e2 create temporary method object files in an extra directory;
Claus Gittinger <cg@exept.de>
parents: 298
diff changeset
  1023
1666
750da2bec865 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1661
diff changeset
  1024
    ParserFlags stcModulePath:aPath
301
5c0add6f00e2 create temporary method object files in an extra directory;
Claus Gittinger <cg@exept.de>
parents: 298
diff changeset
  1025
5c0add6f00e2 create temporary method object files in an extra directory;
Claus Gittinger <cg@exept.de>
parents: 298
diff changeset
  1026
    "Created: 12.7.1996 / 12:15:49 / cg"
5c0add6f00e2 create temporary method object files in an extra directory;
Claus Gittinger <cg@exept.de>
parents: 298
diff changeset
  1027
!
5c0add6f00e2 create temporary method object files in an extra directory;
Claus Gittinger <cg@exept.de>
parents: 298
diff changeset
  1028
1815
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  1029
stcPath
4101
dfb2a46bb26a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4020
diff changeset
  1030
    <resource: #obsolete>
dfb2a46bb26a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4020
diff changeset
  1031
dfb2a46bb26a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4020
diff changeset
  1032
    "return the path to the stc command, or nil if not found.
dfb2a46bb26a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4020
diff changeset
  1033
     This method remains here for backward compatibility (older script files)"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  1034
1666
750da2bec865 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1661
diff changeset
  1035
    ^ ParserFlags stcPath
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  1036
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  1037
    "
1815
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  1038
     Compiler stcPath
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  1039
    "
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  1040
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  1041
    "Modified: 13.9.1995 / 14:37:26 / claus"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  1042
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  1043
1815
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  1044
stcPath:aPath
4101
dfb2a46bb26a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4020
diff changeset
  1045
    <resource: #obsolete>
dfb2a46bb26a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4020
diff changeset
  1046
dfb2a46bb26a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4020
diff changeset
  1047
    "set the path to the stc command - useful if private stc is wanted.
dfb2a46bb26a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4020
diff changeset
  1048
     This method remains here for backward compatibility (older script files)"
695
90e875507838 allow change of the stc path
Claus Gittinger <cg@exept.de>
parents: 682
diff changeset
  1049
1666
750da2bec865 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1661
diff changeset
  1050
    ParserFlags stcPath:aPath
695
90e875507838 allow change of the stc path
Claus Gittinger <cg@exept.de>
parents: 682
diff changeset
  1051
90e875507838 allow change of the stc path
Claus Gittinger <cg@exept.de>
parents: 682
diff changeset
  1052
    "
1815
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  1053
     Compiler stcPath:'../../stc/stc'
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  1054
     Compiler stcPath:'..\stc\stc'
695
90e875507838 allow change of the stc path
Claus Gittinger <cg@exept.de>
parents: 682
diff changeset
  1055
    "
90e875507838 allow change of the stc path
Claus Gittinger <cg@exept.de>
parents: 682
diff changeset
  1056
773
1e2375488d3b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 772
diff changeset
  1057
    "Modified: / 13.9.1995 / 14:37:26 / claus"
1e2375488d3b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 772
diff changeset
  1058
    "Modified: / 23.8.1998 / 13:59:24 / cg"
695
90e875507838 allow change of the stc path
Claus Gittinger <cg@exept.de>
parents: 682
diff changeset
  1059
!
90e875507838 allow change of the stc path
Claus Gittinger <cg@exept.de>
parents: 682
diff changeset
  1060
1815
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  1061
stcPathOf:command
120
claus
parents: 118
diff changeset
  1062
    "return the path to an stc command, or nil if not found."
101
claus
parents: 98
diff changeset
  1063
623
6dd4e417ddb8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 611
diff changeset
  1064
    |f d reqdSuffix cmd|
6dd4e417ddb8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 611
diff changeset
  1065
6dd4e417ddb8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 611
diff changeset
  1066
    "/
6dd4e417ddb8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 611
diff changeset
  1067
    "/ care for executable suffix
6dd4e417ddb8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 611
diff changeset
  1068
    "/
6dd4e417ddb8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 611
diff changeset
  1069
    cmd := command.
6dd4e417ddb8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 611
diff changeset
  1070
    OperatingSystem isMSDOSlike ifTrue:[
6dd4e417ddb8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 611
diff changeset
  1071
	reqdSuffix := 'exe'
6dd4e417ddb8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 611
diff changeset
  1072
    ] ifFalse:[
6dd4e417ddb8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 611
diff changeset
  1073
	OperatingSystem isVMSlike ifTrue:[
6dd4e417ddb8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 611
diff changeset
  1074
	    reqdSuffix := 'EXE'
6dd4e417ddb8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 611
diff changeset
  1075
	].
6dd4e417ddb8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 611
diff changeset
  1076
    ].
6dd4e417ddb8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 611
diff changeset
  1077
    reqdSuffix notNil ifTrue:[
658
fff35b3c95e2 stcPathOf: fixed
Claus Gittinger <cg@exept.de>
parents: 649
diff changeset
  1078
	(f := cmd asFilename) suffix isEmpty ifTrue:[
fff35b3c95e2 stcPathOf: fixed
Claus Gittinger <cg@exept.de>
parents: 649
diff changeset
  1079
	    cmd := (f withSuffix:reqdSuffix) name
623
6dd4e417ddb8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 611
diff changeset
  1080
	]
6dd4e417ddb8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 611
diff changeset
  1081
    ].
6dd4e417ddb8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 611
diff changeset
  1082
    "/
6dd4e417ddb8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 611
diff changeset
  1083
    "/ for our convenience, also check in current
6dd4e417ddb8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 611
diff changeset
  1084
    "/ and parent directories; even if PATH does not
6dd4e417ddb8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 611
diff changeset
  1085
    "/ include them ...
6dd4e417ddb8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 611
diff changeset
  1086
    "/
658
fff35b3c95e2 stcPathOf: fixed
Claus Gittinger <cg@exept.de>
parents: 649
diff changeset
  1087
    "/ look in current ...
623
6dd4e417ddb8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 611
diff changeset
  1088
    d := Filename currentDirectory.
6dd4e417ddb8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 611
diff changeset
  1089
    (f := d construct:cmd) isExecutable ifTrue:[
101
claus
parents: 98
diff changeset
  1090
	^ f pathName
claus
parents: 98
diff changeset
  1091
    ].
658
fff35b3c95e2 stcPathOf: fixed
Claus Gittinger <cg@exept.de>
parents: 649
diff changeset
  1092
    "/ look in ../stc ...
623
6dd4e417ddb8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 611
diff changeset
  1093
    d := d construct:'..'.
6dd4e417ddb8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 611
diff changeset
  1094
    (f := (d construct:'stc') construct:cmd) isExecutable ifTrue:[
6dd4e417ddb8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 611
diff changeset
  1095
	^ f pathName
6dd4e417ddb8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 611
diff changeset
  1096
    ].
658
fff35b3c95e2 stcPathOf: fixed
Claus Gittinger <cg@exept.de>
parents: 649
diff changeset
  1097
    "/ look in ../../stc ...
623
6dd4e417ddb8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 611
diff changeset
  1098
    d := d construct:'..'.
6dd4e417ddb8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 611
diff changeset
  1099
    (f := (d construct:'stc') construct:cmd) isExecutable ifTrue:[
6dd4e417ddb8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 611
diff changeset
  1100
	^ f pathName
6dd4e417ddb8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 611
diff changeset
  1101
    ].
6dd4e417ddb8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 611
diff changeset
  1102
6dd4e417ddb8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 611
diff changeset
  1103
    "/
6dd4e417ddb8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 611
diff changeset
  1104
    "/ ok, stc must be installed in some directory along the PATH
6dd4e417ddb8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 611
diff changeset
  1105
    "/
126
Claus Gittinger <cg@exept.de>
parents: 125
diff changeset
  1106
    ^ OperatingSystem pathOfCommand:command
97
claus
parents: 96
diff changeset
  1107
claus
parents: 96
diff changeset
  1108
    "
1815
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  1109
     Compiler stcPathOf:'stc'
120
claus
parents: 118
diff changeset
  1110
    "
claus
parents: 118
diff changeset
  1111
claus
parents: 118
diff changeset
  1112
    "Created: 13.9.1995 / 14:37:16 / claus"
54
86c5b39c2eca *** empty log message ***
claus
parents: 49
diff changeset
  1113
! !
86c5b39c2eca *** empty log message ***
claus
parents: 49
diff changeset
  1114
1417
7e97dd2df5ca method category rename
Claus Gittinger <cg@exept.de>
parents: 1414
diff changeset
  1115
!ByteCodeCompiler methodsFor:'Compatibility-ST80'!
128
61eb0b356b89 change classes versionString when class changes (prepare for sourceCode system)
Claus Gittinger <cg@exept.de>
parents: 126
diff changeset
  1116
61eb0b356b89 change classes versionString when class changes (prepare for sourceCode system)
Claus Gittinger <cg@exept.de>
parents: 126
diff changeset
  1117
compile:textOrStream in:aClass notifying:requestor ifFail:exceptionBlock
61eb0b356b89 change classes versionString when class changes (prepare for sourceCode system)
Claus Gittinger <cg@exept.de>
parents: 126
diff changeset
  1118
    "name alias for ST-80 compatibility"
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1119
1815
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  1120
    ^ self
3281
b4b91a50efc4 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
  1121
           compile:textOrStream
b4b91a50efc4 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
  1122
           forClass:aClass
b4b91a50efc4 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
  1123
           inCategory:(self class defaultMethodCategory)
b4b91a50efc4 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
  1124
           notifying:requestor
b4b91a50efc4 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
  1125
           install:true
b4b91a50efc4 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
  1126
           skipIfSame:false
b4b91a50efc4 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
  1127
           silent:false
b4b91a50efc4 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
  1128
           foldConstants:true
b4b91a50efc4 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
  1129
           ifFail:exceptionBlock.
2428
3e8b7caa22cb added: #compile:in:notifying:install:ifFail:
Claus Gittinger <cg@exept.de>
parents: 2338
diff changeset
  1130
!
3e8b7caa22cb added: #compile:in:notifying:install:ifFail:
Claus Gittinger <cg@exept.de>
parents: 2338
diff changeset
  1131
3e8b7caa22cb added: #compile:in:notifying:install:ifFail:
Claus Gittinger <cg@exept.de>
parents: 2338
diff changeset
  1132
compile:textOrStream in:aClass notifying:requestor install:install ifFail:exceptionBlock
3e8b7caa22cb added: #compile:in:notifying:install:ifFail:
Claus Gittinger <cg@exept.de>
parents: 2338
diff changeset
  1133
    "name alias for ST-80 compatibility"
3e8b7caa22cb added: #compile:in:notifying:install:ifFail:
Claus Gittinger <cg@exept.de>
parents: 2338
diff changeset
  1134
3e8b7caa22cb added: #compile:in:notifying:install:ifFail:
Claus Gittinger <cg@exept.de>
parents: 2338
diff changeset
  1135
    ^ self
3e8b7caa22cb added: #compile:in:notifying:install:ifFail:
Claus Gittinger <cg@exept.de>
parents: 2338
diff changeset
  1136
           compile:textOrStream
3e8b7caa22cb added: #compile:in:notifying:install:ifFail:
Claus Gittinger <cg@exept.de>
parents: 2338
diff changeset
  1137
           forClass:aClass
3281
b4b91a50efc4 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
  1138
           inCategory:(self class defaultMethodCategory)
2428
3e8b7caa22cb added: #compile:in:notifying:install:ifFail:
Claus Gittinger <cg@exept.de>
parents: 2338
diff changeset
  1139
           notifying:requestor
3e8b7caa22cb added: #compile:in:notifying:install:ifFail:
Claus Gittinger <cg@exept.de>
parents: 2338
diff changeset
  1140
           install:install
3e8b7caa22cb added: #compile:in:notifying:install:ifFail:
Claus Gittinger <cg@exept.de>
parents: 2338
diff changeset
  1141
           skipIfSame:false
3e8b7caa22cb added: #compile:in:notifying:install:ifFail:
Claus Gittinger <cg@exept.de>
parents: 2338
diff changeset
  1142
           silent:false
3e8b7caa22cb added: #compile:in:notifying:install:ifFail:
Claus Gittinger <cg@exept.de>
parents: 2338
diff changeset
  1143
           foldConstants:true
3e8b7caa22cb added: #compile:in:notifying:install:ifFail:
Claus Gittinger <cg@exept.de>
parents: 2338
diff changeset
  1144
           ifFail:exceptionBlock.
3e8b7caa22cb added: #compile:in:notifying:install:ifFail:
Claus Gittinger <cg@exept.de>
parents: 2338
diff changeset
  1145
3e8b7caa22cb added: #compile:in:notifying:install:ifFail:
Claus Gittinger <cg@exept.de>
parents: 2338
diff changeset
  1146
    "Created: / 15-10-2010 / 10:39:42 / cg"
2474
c2fb6e429e46 added: #from:class:context:notifying:
Claus Gittinger <cg@exept.de>
parents: 2469
diff changeset
  1147
!
c2fb6e429e46 added: #from:class:context:notifying:
Claus Gittinger <cg@exept.de>
parents: 2469
diff changeset
  1148
c2fb6e429e46 added: #from:class:context:notifying:
Claus Gittinger <cg@exept.de>
parents: 2469
diff changeset
  1149
from:aStream class:aClass context:ctx notifying:aRequestor
c2fb6e429e46 added: #from:class:context:notifying:
Claus Gittinger <cg@exept.de>
parents: 2469
diff changeset
  1150
    classToCompileFor := aClass.
c2fb6e429e46 added: #from:class:context:notifying:
Claus Gittinger <cg@exept.de>
parents: 2469
diff changeset
  1151
    self source:aStream.
c2fb6e429e46 added: #from:class:context:notifying:
Claus Gittinger <cg@exept.de>
parents: 2469
diff changeset
  1152
c2fb6e429e46 added: #from:class:context:notifying:
Claus Gittinger <cg@exept.de>
parents: 2469
diff changeset
  1153
    self setClassToCompileFor:aClass.
c2fb6e429e46 added: #from:class:context:notifying:
Claus Gittinger <cg@exept.de>
parents: 2469
diff changeset
  1154
    self notifying:aRequestor.
c2fb6e429e46 added: #from:class:context:notifying:
Claus Gittinger <cg@exept.de>
parents: 2469
diff changeset
  1155
c2fb6e429e46 added: #from:class:context:notifying:
Claus Gittinger <cg@exept.de>
parents: 2469
diff changeset
  1156
    "Created: / 30-01-2011 / 03:38:00 / cg"
128
61eb0b356b89 change classes versionString when class changes (prepare for sourceCode system)
Claus Gittinger <cg@exept.de>
parents: 126
diff changeset
  1157
! !
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1158
128
61eb0b356b89 change classes versionString when class changes (prepare for sourceCode system)
Claus Gittinger <cg@exept.de>
parents: 126
diff changeset
  1159
!ByteCodeCompiler methodsFor:'accessing'!
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1160
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1161
code
3
b63b8a6b71fb *** empty log message ***
claus
parents: 1
diff changeset
  1162
    "return the bytecode array - only valid after code-generation"
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1163
49
02660b790c3e *** empty log message ***
claus
parents: 46
diff changeset
  1164
    ^ codeBytes
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1165
!
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1166
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  1167
literalArray
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  1168
    "return the literal array - only valid after parsing"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  1169
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  1170
    ^ litArray
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  1171
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  1172
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1173
maxStackDepth
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1174
    "return the stack-need of the method - only valid after code-generation"
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1175
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1176
    ^ maxStackDepth
1094
745ec90c42c9 allow parametrizing the method class
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
  1177
!
745ec90c42c9 allow parametrizing the method class
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
  1178
745ec90c42c9 allow parametrizing the method class
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
  1179
methodClass
745ec90c42c9 allow parametrizing the method class
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
  1180
    ^ methodClass ? Method
745ec90c42c9 allow parametrizing the method class
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
  1181
!
745ec90c42c9 allow parametrizing the method class
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
  1182
745ec90c42c9 allow parametrizing the method class
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
  1183
methodClass:aClass
745ec90c42c9 allow parametrizing the method class
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
  1184
    methodClass := aClass
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1185
! !
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1186
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1187
!ByteCodeCompiler methodsFor:'code generation'!
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1188
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1189
byteCodeFor:aSymbol
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1190
    "given a symbolic instruction, return the corresponding bytecode.
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1191
     as a side-effect, leave number of bytes pushed/popped by this instr.
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1192
     in stackDelta, and, if the instruction needs extra arguments, leave
246
abf09d4821fe new code for faster global pushes
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
  1193
     this info in extra. Also lineno is set to true, if this code has line
abf09d4821fe new code for faster global pushes
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
  1194
     information and extraLiteral is set if any hidden send is performed by it."
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1195
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1196
    "standard bytecodes"
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1197
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1198
    (aSymbol == #pushNil) ifTrue:[stackDelta := 1. ^ 10].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1199
    (aSymbol == #pushTrue) ifTrue:[stackDelta := 1. ^ 11].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1200
    (aSymbol == #pushFalse) ifTrue:[stackDelta := 1. ^ 12].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1201
    (aSymbol == #pushLit) ifTrue:[stackDelta := 1. extra := #lit. ^ 14].
105
claus
parents: 104
diff changeset
  1202
    (aSymbol == #pushLitS) ifTrue:[stackDelta := 1. extra := #index. ^ 14].
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1203
    (aSymbol == #pushSelf) ifTrue:[stackDelta := 1. ^ 15].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1204
    (aSymbol == #pushNum) ifTrue:[stackDelta := 1. extra := #number. ^ 16].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1205
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1206
    (aSymbol == #pushMethodArg) ifTrue:[stackDelta := 1. extra := #index. ^ 30].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1207
    (aSymbol == #pushMethodVar) ifTrue:[stackDelta := 1. extra := #index. ^ 31].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1208
    (aSymbol == #pushBlockArg) ifTrue:[stackDelta := 1. extra := #index. ^ 32].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1209
    (aSymbol == #pushBlockVar) ifTrue:[stackDelta := 1. extra := #index. ^ 33].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1210
    (aSymbol == #pushInstVar) ifTrue:[stackDelta := 1. extra := #index. ^ 34].
1
77da9f5728e5 *** empty log message ***
claus
parents: 0
diff changeset
  1211
    (aSymbol == #pushOuterBlockArg) ifTrue:[stackDelta := 1. extra := #indexLevel. ^ 42].
77da9f5728e5 *** empty log message ***
claus
parents: 0
diff changeset
  1212
    (aSymbol == #pushOuterBlockVar) ifTrue:[stackDelta := 1. extra := #indexLevel. ^ 128].
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1213
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1214
    (aSymbol == #retTop) ifTrue:[stackDelta := -1. ^ 0].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1215
    (aSymbol == #retSelf) ifTrue:[^5].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1216
246
abf09d4821fe new code for faster global pushes
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
  1217
    (aSymbol == #==) ifTrue:[stackDelta := -1. extraLiteral := aSymbol. ^ 45].
abf09d4821fe new code for faster global pushes
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
  1218
    (aSymbol == #~~) ifTrue:[stackDelta := -1. extraLiteral := aSymbol. ^ 46].
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1219
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1220
    (aSymbol == #falseJump) ifTrue:[stackDelta := -1. extra := #offset. ^ 50].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1221
    (aSymbol == #trueJump) ifTrue:[stackDelta := -1. extra := #offset. ^ 51].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1222
    (aSymbol == #nilJump) ifTrue:[stackDelta := -1. extra := #offset. ^ 52].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1223
    (aSymbol == #notNilJump) ifTrue:[stackDelta := -1. extra := #offset. ^ 53].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1224
    (aSymbol == #jump) ifTrue:[extra := #offset. ^ 54].
1
77da9f5728e5 *** empty log message ***
claus
parents: 0
diff changeset
  1225
    (aSymbol == #makeBlock) ifTrue:[stackDelta := 1. extra := #offsetNvarNarg. ^ 55].
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1226
    (aSymbol == #zeroJump) ifTrue:[stackDelta := -1. extra := #offset. ^ 56].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1227
    (aSymbol == #notZeroJump) ifTrue:[stackDelta := -1. extra := #offset. ^ 57].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1228
    (aSymbol == #eqJump) ifTrue:[stackDelta := -2. extra := #offset. ^ 58].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1229
    (aSymbol == #notEqJump) ifTrue:[stackDelta := -2. extra := #offset. ^ 59].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1230
54
86c5b39c2eca *** empty log message ***
claus
parents: 49
diff changeset
  1231
    (aSymbol == #lineno) ifTrue:[lineno := true. ^ 8].
372
98da4d230a8d prepare support for 16-bit lineNumbers
Claus Gittinger <cg@exept.de>
parents: 357
diff changeset
  1232
    (aSymbol == #lineno16) ifTrue:[lineno := true. ^ 9].
54
86c5b39c2eca *** empty log message ***
claus
parents: 49
diff changeset
  1233
3645
695fc26d7207 Block source position support [1/2]: generate SOURCEPOS pseudoinstruction before each MAKE_BLOCK insn
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3641
diff changeset
  1234
    (aSymbol == #sourcepos8)  ifTrue:[extra := #index.      ^ 244].
695fc26d7207 Block source position support [1/2]: generate SOURCEPOS pseudoinstruction before each MAKE_BLOCK insn
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3641
diff changeset
  1235
    (aSymbol == #sourcepos16) ifTrue:[extra := #unsigned16. ^ 245].
695fc26d7207 Block source position support [1/2]: generate SOURCEPOS pseudoinstruction before each MAKE_BLOCK insn
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3641
diff changeset
  1236
    (aSymbol == #sourcepos32) ifTrue:[extra := #unsigned32. ^ 246].
695fc26d7207 Block source position support [1/2]: generate SOURCEPOS pseudoinstruction before each MAKE_BLOCK insn
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3641
diff changeset
  1237
106
claus
parents: 105
diff changeset
  1238
    (aSymbol == #send) ifTrue:[lineno := true. extra := #special. ^ 19].
claus
parents: 105
diff changeset
  1239
    (aSymbol == #superSend) ifTrue:[lineno := true. extra := #special. ^ 20].
117
claus
parents: 111
diff changeset
  1240
    (aSymbol == #sendSelf) ifTrue:[lineno := true. extra := #special. ^ 13].
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1241
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1242
    (aSymbol == #drop) ifTrue:[stackDelta := -1. ^ 18].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1243
    (aSymbol == #dup) ifTrue:[stackDelta := 1. ^ 47].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1244
117
claus
parents: 111
diff changeset
  1245
    (aSymbol == #storeMethodVar) ifTrue:[extra := #index. stackDelta := -1. ^ 37].
claus
parents: 111
diff changeset
  1246
    (aSymbol == #storeBlockVar) ifTrue:[extra := #index. stackDelta := -1. ^ 38].
claus
parents: 111
diff changeset
  1247
    (aSymbol == #storeInstVar) ifTrue:[extra := #index. stackDelta := -1. ^ 39].
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1248
117
claus
parents: 111
diff changeset
  1249
    (aSymbol == #pushClassVarS) ifTrue:[stackDelta := 1. extra := #speciallitS. ^ 35].
356
bb3beb18de1f 6empty slots in GLOBL/CLASSVAR bytecodes removed
Claus Gittinger <cg@exept.de>
parents: 350
diff changeset
  1250
    (aSymbol == #pushGlobalS) ifTrue:[stackDelta := 1. extra := #speciallitS. ^ 36].
117
claus
parents: 111
diff changeset
  1251
claus
parents: 111
diff changeset
  1252
    (aSymbol == #storeClassVarS) ifTrue:[extra := #speciallitS.stackDelta := -1. ^ 40].
356
bb3beb18de1f 6empty slots in GLOBL/CLASSVAR bytecodes removed
Claus Gittinger <cg@exept.de>
parents: 350
diff changeset
  1253
    (aSymbol == #storeGlobalS) ifTrue:[extra := #speciallitS. stackDelta := -1. ^ 41].
247
fbb6e3b5764c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 246
diff changeset
  1254
    (aSymbol == #pushSpecialGlobal) ifTrue:[stackDelta := 1. extra := #index. ^ 200].
117
claus
parents: 111
diff changeset
  1255
1
77da9f5728e5 *** empty log message ***
claus
parents: 0
diff changeset
  1256
    (aSymbol == #storeOuterBlockVar) ifTrue:[stackDelta := -1. extra := #indexLevel. ^ 129].
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1257
117
claus
parents: 111
diff changeset
  1258
    (aSymbol == #pushClassInstVar) ifTrue:[stackDelta := 1. extra := #index. ^ 176].
claus
parents: 111
diff changeset
  1259
    (aSymbol == #storeClassInstVar) ifTrue:[extra := #index.stackDelta := -1. ^ 177].
105
claus
parents: 104
diff changeset
  1260
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1261
    "optimized bytecodes"
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1262
1822
f9db06526cdd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1815
diff changeset
  1263
    (aSymbol == #pushMethodVar1) ifTrue:[stackDelta := 1. ^80].
f9db06526cdd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1815
diff changeset
  1264
    (aSymbol == #pushMethodVar2) ifTrue:[stackDelta := 1. ^81].
f9db06526cdd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1815
diff changeset
  1265
    (aSymbol == #pushMethodVar3) ifTrue:[stackDelta := 1. ^82].
f9db06526cdd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1815
diff changeset
  1266
    (aSymbol == #pushMethodVar4) ifTrue:[stackDelta := 1. ^83].
f9db06526cdd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1815
diff changeset
  1267
    (aSymbol == #pushMethodVar5) ifTrue:[stackDelta := 1. ^84].
f9db06526cdd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1815
diff changeset
  1268
    (aSymbol == #pushMethodVar6) ifTrue:[stackDelta := 1. ^85].
f9db06526cdd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1815
diff changeset
  1269
f9db06526cdd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1815
diff changeset
  1270
    (aSymbol == #pushMethodArg1) ifTrue:[stackDelta := 1. ^86].
f9db06526cdd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1815
diff changeset
  1271
    (aSymbol == #pushMethodArg2) ifTrue:[stackDelta := 1. ^87].
f9db06526cdd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1815
diff changeset
  1272
    (aSymbol == #pushMethodArg3) ifTrue:[stackDelta := 1. ^88].
f9db06526cdd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1815
diff changeset
  1273
    (aSymbol == #pushMethodArg4) ifTrue:[stackDelta := 1. ^89].
f9db06526cdd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1815
diff changeset
  1274
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1275
    (aSymbol == #retNil) ifTrue:[^ 1].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1276
    (aSymbol == #retTrue) ifTrue:[^ 2].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1277
    (aSymbol == #retFalse) ifTrue:[^ 3].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1278
    (aSymbol == #ret0) ifTrue:[^ 4].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1279
    (aSymbol == #retNum) ifTrue:[extra := #number. ^ 127].
25
865d6cfaf90d changed bytecodes
claus
parents: 20
diff changeset
  1280
    (aSymbol == #homeRetTop) ifTrue:[^ 7].
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1281
46
a8c1e932ed6a 16bit literal offsets
claus
parents: 45
diff changeset
  1282
    (aSymbol == #pushNum16) ifTrue:[stackDelta := 1. extra := #number16. ^ 17].
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1283
    (aSymbol == #push0) ifTrue:[stackDelta := 1. ^120].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1284
    (aSymbol == #push1) ifTrue:[stackDelta := 1. ^121].
3
b63b8a6b71fb *** empty log message ***
claus
parents: 1
diff changeset
  1285
    (aSymbol == #push2) ifTrue:[stackDelta := 1. ^139].
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1286
    (aSymbol == #pushMinus1) ifTrue:[stackDelta := 1. ^122].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1287
106
claus
parents: 105
diff changeset
  1288
    (aSymbol == #send0) ifTrue:[lineno := true. extra := #index. ^21].
claus
parents: 105
diff changeset
  1289
    (aSymbol == #send1) ifTrue:[lineno := true. extra := #index. stackDelta := -1. ^22].
claus
parents: 105
diff changeset
  1290
    (aSymbol == #send2) ifTrue:[lineno := true. extra := #index. stackDelta := -2. ^23].
claus
parents: 105
diff changeset
  1291
    (aSymbol == #send3) ifTrue:[lineno := true. extra := #index. stackDelta := -3. ^24].
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1292
106
claus
parents: 105
diff changeset
  1293
    (aSymbol == #sendSelf0) ifTrue:[lineno := true. extra := #index. stackDelta := 1. ^180].
claus
parents: 105
diff changeset
  1294
    (aSymbol == #sendSelf1) ifTrue:[lineno := true. extra := #index. ^181].
claus
parents: 105
diff changeset
  1295
    (aSymbol == #sendSelf2) ifTrue:[lineno := true. extra := #index. stackDelta := -1. ^182].
claus
parents: 105
diff changeset
  1296
    (aSymbol == #sendSelf3) ifTrue:[lineno := true. extra := #index. stackDelta := -2. ^183].
claus
parents: 105
diff changeset
  1297
    (aSymbol == #sendSelfDrop0) ifTrue:[lineno := true. extra := #index. ^184].
claus
parents: 105
diff changeset
  1298
    (aSymbol == #sendSelfDrop1) ifTrue:[lineno := true. extra := #index. stackDelta := -1. ^185].
claus
parents: 105
diff changeset
  1299
    (aSymbol == #sendSelfDrop2) ifTrue:[lineno := true. extra := #index. stackDelta := -2. ^186].
claus
parents: 105
diff changeset
  1300
    (aSymbol == #sendSelfDrop3) ifTrue:[lineno := true. extra := #index. stackDelta := -3. ^187].
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1301
106
claus
parents: 105
diff changeset
  1302
    (aSymbol == #sendDrop) ifTrue:[lineno := true. extra := #special. ^25].
claus
parents: 105
diff changeset
  1303
    (aSymbol == #sendDrop0) ifTrue:[lineno := true. extra := #index. stackDelta := -1. ^26].
claus
parents: 105
diff changeset
  1304
    (aSymbol == #sendDrop1) ifTrue:[lineno := true. extra := #index. stackDelta := -2. ^27].
claus
parents: 105
diff changeset
  1305
    (aSymbol == #sendDrop2) ifTrue:[lineno := true. extra := #index. stackDelta := -3. ^28].
claus
parents: 105
diff changeset
  1306
    (aSymbol == #sendDrop3) ifTrue:[lineno := true. extra := #index. stackDelta := -4. ^29].
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1307
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1308
    (aSymbol == #pushInstVar1) ifTrue:[stackDelta := 1. ^90].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1309
    (aSymbol == #pushInstVar2) ifTrue:[stackDelta := 1. ^91].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1310
    (aSymbol == #pushInstVar3) ifTrue:[stackDelta := 1. ^92].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1311
    (aSymbol == #pushInstVar4) ifTrue:[stackDelta := 1. ^93].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1312
    (aSymbol == #pushInstVar5) ifTrue:[stackDelta := 1. ^94].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1313
    (aSymbol == #pushInstVar6) ifTrue:[stackDelta := 1. ^95].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1314
    (aSymbol == #pushInstVar7) ifTrue:[stackDelta := 1. ^96].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1315
    (aSymbol == #pushInstVar8) ifTrue:[stackDelta := 1. ^97].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1316
    (aSymbol == #pushInstVar9) ifTrue:[stackDelta := 1. ^98].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1317
    (aSymbol == #pushInstVar10) ifTrue:[stackDelta := 1. ^99].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1318
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1319
    (aSymbol == #storeMethodVar1) ifTrue:[stackDelta := -1. ^100].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1320
    (aSymbol == #storeMethodVar2) ifTrue:[stackDelta := -1. ^101].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1321
    (aSymbol == #storeMethodVar3) ifTrue:[stackDelta := -1. ^102].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1322
    (aSymbol == #storeMethodVar4) ifTrue:[stackDelta := -1. ^103].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1323
    (aSymbol == #storeMethodVar5) ifTrue:[stackDelta := -1. ^104].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1324
    (aSymbol == #storeMethodVar6) ifTrue:[stackDelta := -1. ^105].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1325
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1326
    (aSymbol == #storeInstVar1) ifTrue:[stackDelta := -1. ^110].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1327
    (aSymbol == #storeInstVar2) ifTrue:[stackDelta := -1. ^111].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1328
    (aSymbol == #storeInstVar3) ifTrue:[stackDelta := -1. ^112].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1329
    (aSymbol == #storeInstVar4) ifTrue:[stackDelta := -1. ^113].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1330
    (aSymbol == #storeInstVar5) ifTrue:[stackDelta := -1. ^114].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1331
    (aSymbol == #storeInstVar6) ifTrue:[stackDelta := -1. ^115].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1332
    (aSymbol == #storeInstVar7) ifTrue:[stackDelta := -1. ^116].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1333
    (aSymbol == #storeInstVar8) ifTrue:[stackDelta := -1. ^117].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1334
    (aSymbol == #storeInstVar9) ifTrue:[stackDelta := -1. ^118].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1335
    (aSymbol == #storeInstVar10) ifTrue:[stackDelta := -1. ^119].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1336
103
claus
parents: 102
diff changeset
  1337
    (aSymbol == #pushLit1) ifTrue:[stackDelta := 1. ^ 222].
claus
parents: 102
diff changeset
  1338
    (aSymbol == #pushLit2) ifTrue:[stackDelta := 1. ^ 223].
claus
parents: 102
diff changeset
  1339
    (aSymbol == #pushLit3) ifTrue:[stackDelta := 1. ^ 224].
claus
parents: 102
diff changeset
  1340
    (aSymbol == #pushLit4) ifTrue:[stackDelta := 1. ^ 225].
claus
parents: 102
diff changeset
  1341
    (aSymbol == #pushLit5) ifTrue:[stackDelta := 1. ^ 226].
claus
parents: 102
diff changeset
  1342
    (aSymbol == #pushLit6) ifTrue:[stackDelta := 1. ^ 227].
claus
parents: 102
diff changeset
  1343
    (aSymbol == #pushLit7) ifTrue:[stackDelta := 1. ^ 228].
claus
parents: 102
diff changeset
  1344
    (aSymbol == #pushLit8) ifTrue:[stackDelta := 1. ^ 229].
claus
parents: 102
diff changeset
  1345
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1346
    (aSymbol == #retMethodVar1) ifTrue:[^160].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1347
    (aSymbol == #retMethodVar2) ifTrue:[^161].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1348
    (aSymbol == #retMethodVar3) ifTrue:[^162].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1349
    (aSymbol == #retMethodVar4) ifTrue:[^163].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1350
    (aSymbol == #retMethodVar5) ifTrue:[^164].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1351
    (aSymbol == #retMethodVar6) ifTrue:[^165].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1352
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1353
    (aSymbol == #retInstVar1) ifTrue:[^166].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1354
    (aSymbol == #retInstVar2) ifTrue:[^167].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1355
    (aSymbol == #retInstVar3) ifTrue:[^168].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1356
    (aSymbol == #retInstVar4) ifTrue:[^169].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1357
    (aSymbol == #retInstVar5) ifTrue:[^170].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1358
    (aSymbol == #retInstVar6) ifTrue:[^171].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1359
    (aSymbol == #retInstVar7) ifTrue:[^172].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1360
    (aSymbol == #retInstVar8) ifTrue:[^173].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1361
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1362
    (aSymbol == #retMethodArg1) ifTrue:[^174].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1363
    (aSymbol == #retMethodArg2) ifTrue:[^175].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1364
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1365
    (aSymbol == #pushBlockArg1) ifTrue:[stackDelta := 1. ^140].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1366
    (aSymbol == #pushBlockArg2) ifTrue:[stackDelta := 1. ^141].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1367
    (aSymbol == #pushBlockArg3) ifTrue:[stackDelta := 1. ^142].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1368
    (aSymbol == #pushBlockArg4) ifTrue:[stackDelta := 1. ^143].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1369
1
77da9f5728e5 *** empty log message ***
claus
parents: 0
diff changeset
  1370
    (aSymbol == #pushOuter1BlockArg) ifTrue:[stackDelta := 1. extra := #index. ^ 43].
77da9f5728e5 *** empty log message ***
claus
parents: 0
diff changeset
  1371
    (aSymbol == #pushOuter2BlockArg) ifTrue:[stackDelta := 1. extra := #index. ^ 44].
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1372
246
abf09d4821fe new code for faster global pushes
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
  1373
    (aSymbol == #=) ifTrue:[lineno := true. stackDelta := -1. extraLiteral := aSymbol. ^130].
abf09d4821fe new code for faster global pushes
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
  1374
    (aSymbol == #+) ifTrue:[lineno := true. stackDelta := -1. extraLiteral := aSymbol. ^131].
abf09d4821fe new code for faster global pushes
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
  1375
    (aSymbol == #~=) ifTrue:[lineno := true. stackDelta := -1. extraLiteral := aSymbol. ^132].
abf09d4821fe new code for faster global pushes
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
  1376
    (aSymbol == #-) ifTrue:[lineno := true. stackDelta := -1. extraLiteral := aSymbol. ^133].
abf09d4821fe new code for faster global pushes
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
  1377
    (aSymbol == #*) ifTrue:[lineno := true. stackDelta := -1. extraLiteral := aSymbol. ^230].
abf09d4821fe new code for faster global pushes
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
  1378
    (aSymbol == #class) ifTrue:[extraLiteral := aSymbol. ^134].
400
e5cfc008be47 bytecode changes - some more are now special-send codes
Claus Gittinger <cg@exept.de>
parents: 383
diff changeset
  1379
"/    (aSymbol == #x) ifTrue:[lineno := true. extraLiteral := aSymbol. ^106].
e5cfc008be47 bytecode changes - some more are now special-send codes
Claus Gittinger <cg@exept.de>
parents: 383
diff changeset
  1380
"/    (aSymbol == #y) ifTrue:[lineno := true. extraLiteral := aSymbol. ^107].
e5cfc008be47 bytecode changes - some more are now special-send codes
Claus Gittinger <cg@exept.de>
parents: 383
diff changeset
  1381
"/    (aSymbol == #width) ifTrue:[lineno := true. extraLiteral := aSymbol. ^108].
e5cfc008be47 bytecode changes - some more are now special-send codes
Claus Gittinger <cg@exept.de>
parents: 383
diff changeset
  1382
"/    (aSymbol == #height) ifTrue:[lineno := true. extraLiteral := aSymbol. ^109].
e5cfc008be47 bytecode changes - some more are now special-send codes
Claus Gittinger <cg@exept.de>
parents: 383
diff changeset
  1383
"/    (aSymbol == #origin) ifTrue:[lineno := true. extraLiteral := aSymbol. ^154].
e5cfc008be47 bytecode changes - some more are now special-send codes
Claus Gittinger <cg@exept.de>
parents: 383
diff changeset
  1384
"/    (aSymbol == #extent) ifTrue:[lineno := true. extraLiteral := aSymbol. ^155].
246
abf09d4821fe new code for faster global pushes
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
  1385
    (aSymbol == #at:) ifTrue:[lineno := true. stackDelta := -1. extraLiteral := aSymbol. ^135].
abf09d4821fe new code for faster global pushes
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
  1386
    (aSymbol == #at:put:)ifTrue:[lineno := true. stackDelta := -2. extraLiteral := aSymbol. ^136].
abf09d4821fe new code for faster global pushes
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
  1387
    (aSymbol == #bitAnd:) ifTrue:[lineno := true. stackDelta := -1. extraLiteral := aSymbol. ^137].
abf09d4821fe new code for faster global pushes
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
  1388
    (aSymbol == #bitOr:) ifTrue:[lineno := true. stackDelta := -1. extraLiteral := aSymbol. ^138].
abf09d4821fe new code for faster global pushes
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
  1389
    (aSymbol == #plus1) ifTrue:[lineno := true. extraLiteral := #+. ^123].
abf09d4821fe new code for faster global pushes
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
  1390
    (aSymbol == #minus1) ifTrue:[lineno := true. extraLiteral := #-. ^124].
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1391
246
abf09d4821fe new code for faster global pushes
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
  1392
    (aSymbol == #incMethodVar) ifTrue:[lineno := true. extraLiteral := #+. extra := #index. ^125].
abf09d4821fe new code for faster global pushes
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
  1393
    (aSymbol == #decMethodVar) ifTrue:[lineno := true. extraLiteral := #-. extra := #index. ^126].
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1394
246
abf09d4821fe new code for faster global pushes
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
  1395
    (aSymbol == #eq0) ifTrue:[extraLiteral := #==. ^48].
abf09d4821fe new code for faster global pushes
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
  1396
    (aSymbol == #ne0) ifTrue:[extraLiteral := #~~. ^49].
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1397
246
abf09d4821fe new code for faster global pushes
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
  1398
    (aSymbol == #>) ifTrue:[lineno := true. extraLiteral := aSymbol. stackDelta := -1. ^ 145].
abf09d4821fe new code for faster global pushes
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
  1399
    (aSymbol == #>=) ifTrue:[lineno := true. extraLiteral := aSymbol. stackDelta := -1. ^ 146].
abf09d4821fe new code for faster global pushes
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
  1400
    (aSymbol == #<) ifTrue:[lineno := true. extraLiteral := aSymbol. stackDelta := -1. ^ 147].
abf09d4821fe new code for faster global pushes
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
  1401
    (aSymbol == #<=) ifTrue:[lineno := true. extraLiteral := aSymbol. stackDelta := -1. ^ 148].
400
e5cfc008be47 bytecode changes - some more are now special-send codes
Claus Gittinger <cg@exept.de>
parents: 383
diff changeset
  1402
"/    (aSymbol == #next) ifTrue:[lineno := true. extraLiteral := aSymbol. ^ 149].
e5cfc008be47 bytecode changes - some more are now special-send codes
Claus Gittinger <cg@exept.de>
parents: 383
diff changeset
  1403
"/    (aSymbol == #peek) ifTrue:[lineno := true. extraLiteral := aSymbol. ^ 150].
246
abf09d4821fe new code for faster global pushes
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
  1404
    (aSymbol == #value) ifTrue:[lineno := true. extraLiteral := aSymbol. ^ 151].
abf09d4821fe new code for faster global pushes
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
  1405
    (aSymbol == #value:) ifTrue:[lineno := true. extraLiteral := aSymbol.  stackDelta := -1. ^ 152].
abf09d4821fe new code for faster global pushes
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
  1406
    (aSymbol == #value:value:) ifTrue:[lineno := true. extraLiteral := aSymbol.  stackDelta := -2. ^ 178].
abf09d4821fe new code for faster global pushes
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
  1407
    (aSymbol == #size) ifTrue:[lineno := true. extraLiteral := aSymbol. ^ 153].
400
e5cfc008be47 bytecode changes - some more are now special-send codes
Claus Gittinger <cg@exept.de>
parents: 383
diff changeset
  1408
"/    (aSymbol == #asInteger) ifTrue:[lineno := true. extraLiteral := aSymbol. ^ 158].
e5cfc008be47 bytecode changes - some more are now special-send codes
Claus Gittinger <cg@exept.de>
parents: 383
diff changeset
  1409
"/    (aSymbol == #rounded) ifTrue:[lineno := true. extraLiteral := aSymbol. ^ 159].
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1410
    (aSymbol == #mk0Block) ifTrue:[^ 156].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1411
    (aSymbol == #mkNilBlock) ifTrue:[^ 157].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1412
246
abf09d4821fe new code for faster global pushes
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
  1413
    (aSymbol == #gt0) ifTrue:[lineno := true. extraLiteral := #>. ^ 212].
abf09d4821fe new code for faster global pushes
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
  1414
    (aSymbol == #pushgt0) ifTrue:[lineno := true. stackDelta := 1. extraLiteral := #>. ^ 208].
abf09d4821fe new code for faster global pushes
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
  1415
    (aSymbol == #basicNew) ifTrue:[lineno := true. extraLiteral := aSymbol. ^ 211].
abf09d4821fe new code for faster global pushes
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
  1416
    (aSymbol == #new) ifTrue:[lineno := true. extraLiteral := aSymbol. ^ 213].
abf09d4821fe new code for faster global pushes
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
  1417
    (aSymbol == #basicNew:) ifTrue:[lineno := true. extraLiteral := aSymbol. ^ 214].
abf09d4821fe new code for faster global pushes
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
  1418
    (aSymbol == #new:) ifTrue:[lineno := true. extraLiteral := aSymbol. ^ 215].
103
claus
parents: 102
diff changeset
  1419
217
eba0ee7232aa new opcodes
Claus Gittinger <cg@exept.de>
parents: 215
diff changeset
  1420
    (aSymbol == #pushBlockVar1) ifTrue:[stackDelta := 1. ^ 232].
eba0ee7232aa new opcodes
Claus Gittinger <cg@exept.de>
parents: 215
diff changeset
  1421
    (aSymbol == #pushBlockVar2) ifTrue:[stackDelta := 1. ^ 233].
eba0ee7232aa new opcodes
Claus Gittinger <cg@exept.de>
parents: 215
diff changeset
  1422
    (aSymbol == #pushBlockVar3) ifTrue:[stackDelta := 1. ^ 234].
eba0ee7232aa new opcodes
Claus Gittinger <cg@exept.de>
parents: 215
diff changeset
  1423
    (aSymbol == #storeBlockVar1) ifTrue:[stackDelta := -1. ^ 235].
eba0ee7232aa new opcodes
Claus Gittinger <cg@exept.de>
parents: 215
diff changeset
  1424
    (aSymbol == #storeBlockVar2) ifTrue:[stackDelta := -1. ^ 236].
eba0ee7232aa new opcodes
Claus Gittinger <cg@exept.de>
parents: 215
diff changeset
  1425
    (aSymbol == #storeBlockVar3) ifTrue:[stackDelta := -1. ^ 237].
eba0ee7232aa new opcodes
Claus Gittinger <cg@exept.de>
parents: 215
diff changeset
  1426
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1427
    (aSymbol == #falseJumpabs) ifTrue:[stackDelta := -1. extra := #absoffset. ^ 190].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1428
    (aSymbol == #trueJumpabs) ifTrue:[stackDelta := -1. extra := #absoffset. ^ 191].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1429
    (aSymbol == #nilJumpabs) ifTrue:[stackDelta := -1. extra := #absoffset. ^ 192].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1430
    (aSymbol == #notNilJumpabs) ifTrue:[stackDelta := -1. extra := #absoffset. ^ 193].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1431
    (aSymbol == #jumpabs) ifTrue:[extra := #absoffset. ^ 194].
1
77da9f5728e5 *** empty log message ***
claus
parents: 0
diff changeset
  1432
    (aSymbol == #makeBlockabs) ifTrue:[stackDelta := 1. extra := #absoffsetNvarNarg. ^ 195].
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1433
    (aSymbol == #zeroJumpabs) ifTrue:[stackDelta := -1. extra := #absoffset. ^ 196].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1434
    (aSymbol == #notZeroJumpabs) ifTrue:[stackDelta := -1. extra := #absoffset. ^ 197].
1
77da9f5728e5 *** empty log message ***
claus
parents: 0
diff changeset
  1435
    (aSymbol == #eqJumpabs) ifTrue:[stackDelta := -2. extra := #absoffset. ^ 198].
77da9f5728e5 *** empty log message ***
claus
parents: 0
diff changeset
  1436
    (aSymbol == #notEqJumpabs) ifTrue:[stackDelta := -2. extra := #absoffset. ^ 199].
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1437
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1438
    (aSymbol == #pushThisContext) ifTrue:[stackDelta := 1. ^ 144].
7ad01559b262 Initial revision
claus
parents:
diff changeset
  1439
1466
c05b6aa03a47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1459
diff changeset
  1440
    (aSymbol == #isNil) ifTrue:["extraLiteral := aSymbol. -- could be synthetic" ^ 188].
c05b6aa03a47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1459
diff changeset
  1441
    (aSymbol == #notNil) ifTrue:["extraLiteral := aSymbol. -- could be synthetic" ^ 189].
425
b046a32edb08 remember &, | and not in literal array
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  1442
    (aSymbol == #not) ifTrue:[extraLiteral := aSymbol. lineno := true. ^ 179].
b046a32edb08 remember &, | and not in literal array
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  1443
    (aSymbol == #&) ifTrue:[extraLiteral := aSymbol. lineno := true. ^ 216].
b046a32edb08 remember &, | and not in literal array
Claus Gittinger <cg@exept.de>
parents: 415
diff changeset
  1444
    (aSymbol == #|) ifTrue:[extraLiteral := aSymbol. lineno := true. ^ 217].
76
55d64cb1ffea *** empty log message ***
claus
parents: 54
diff changeset
  1445
117
claus
parents: 111
diff changeset
  1446
    (aSymbol == #pushClassVarL) ifTrue:[stackDelta := 1. extra := #speciallitL. ^ 218].
claus
parents: 111
diff changeset
  1447
    (aSymbol == #pushGlobalL) ifTrue:[stackDelta := 1. extra := #speciallitL. ^ 218].
claus
parents: 111
diff changeset
  1448
    (aSymbol == #storeClassVarL) ifTrue:[extra := #speciallitL.stackDelta := -1. ^ 219].
claus
parents: 111
diff changeset
  1449
    (aSymbol == #storeGlobalL) ifTrue:[extra := #speciallitL. stackDelta := -1. ^ 219].
claus
parents: 111
diff changeset
  1450
    (aSymbol == #pushLitL) ifTrue:[stackDelta := 1. extra := #unsigned16. ^ 201].
claus
parents: 111
diff changeset
  1451
claus
parents: 111
diff changeset
  1452
    (aSymbol == #sendL) ifTrue:[lineno := true. extra := #specialL. ^ 205].
claus
parents: 111
diff changeset
  1453
    (aSymbol == #sendSelfL) ifTrue:[lineno := true. extra := #specialL. ^ 207].
claus
parents: 111
diff changeset
  1454
    (aSymbol == #sendDropL) ifTrue:[lineno := true. extra := #specialL. ^ 204].
claus
parents: 111
diff changeset
  1455
    (aSymbol == #superSendL) ifTrue:[lineno := true. extra := #specialL. ^ 206].
106
claus
parents: 105
diff changeset
  1456
246
abf09d4821fe new code for faster global pushes
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
  1457
    (aSymbol == #top) ifTrue:[lineno := true. extraLiteral := aSymbol. extra := #specialSend. ^ 231].
abf09d4821fe new code for faster global pushes
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
  1458
    (aSymbol == #bottom) ifTrue:[lineno := true. extraLiteral := aSymbol. extra := #specialSend. ^ 231].
abf09d4821fe new code for faster global pushes
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
  1459
    (aSymbol == #left) ifTrue:[lineno := true. extraLiteral := aSymbol. extra := #specialSend. ^ 231].
abf09d4821fe new code for faster global pushes
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
  1460
    (aSymbol == #right) ifTrue:[lineno := true. extraLiteral := aSymbol. extra := #specialSend. ^ 231].
199
1b3b350a3f59 moved bytecode query methods into compiler;
Claus Gittinger <cg@exept.de>
parents: 197
diff changeset
  1461
400
e5cfc008be47 bytecode changes - some more are now special-send codes
Claus Gittinger <cg@exept.de>
parents: 383
diff changeset
  1462
    (aSymbol == #x) ifTrue:[lineno := true. extraLiteral := aSymbol. extra := #specialSend. ^ 231].
e5cfc008be47 bytecode changes - some more are now special-send codes
Claus Gittinger <cg@exept.de>
parents: 383
diff changeset
  1463
    (aSymbol == #y) ifTrue:[lineno := true. extraLiteral := aSymbol. extra := #specialSend. ^ 231].
e5cfc008be47 bytecode changes - some more are now special-send codes
Claus Gittinger <cg@exept.de>
parents: 383
diff changeset
  1464
    (aSymbol == #width) ifTrue:[lineno := true. extraLiteral := aSymbol. extra := #specialSend. ^ 231].
e5cfc008be47 bytecode changes - some more are now special-send codes
Claus Gittinger <cg@exept.de>
parents: 383
diff changeset
  1465
    (aSymbol == #height) ifTrue:[lineno := true. extraLiteral := aSymbol. extra := #specialSend. ^ 231].
e5cfc008be47 bytecode changes - some more are now special-send codes
Claus Gittinger <cg@exept.de>
parents: 383
diff changeset
  1466
    (aSymbol == #origin) ifTrue:[lineno := true. extraLiteral := aSymbol. extra := #specialSend. ^ 231].
e5cfc008be47 bytecode changes - some more are now special-send codes
Claus Gittinger <cg@exept.de>
parents: 383
diff changeset
  1467
    (aSymbol == #extent) ifTrue:[lineno := true. extraLiteral := aSymbol. extra := #specialSend. ^ 231].
e5cfc008be47 bytecode changes - some more are now special-send codes
Claus Gittinger <cg@exept.de>
parents: 383
diff changeset
  1468
    (aSymbol == #next) ifTrue:[lineno := true. extraLiteral := aSymbol. extra := #specialSend. ^ 231].
e5cfc008be47 bytecode changes - some more are now special-send codes
Claus Gittinger <cg@exept.de>
parents: 383
diff changeset
  1469
    (aSymbol == #peek) ifTrue:[lineno := true. extraLiteral := aSymbol. extra := #specialSend. ^ 231].
e5cfc008be47 bytecode changes - some more are now special-send codes
Claus Gittinger <cg@exept.de>
parents: 383
diff changeset
  1470
    (aSymbol == #asInteger) ifTrue:[lineno := true. extraLiteral := aSymbol. extra := #specialSend. ^ 231].
e5cfc008be47 bytecode changes - some more are now special-send codes
Claus Gittinger <cg@exept.de>
parents: 383
diff changeset
  1471
    (aSymbol == #rounded) ifTrue:[lineno := true. extraLiteral := aSymbol. extra := #specialSend. ^ 231].
e5cfc008be47 bytecode changes - some more are now special-send codes
Claus Gittinger <cg@exept.de>
parents: 383
diff changeset
  1472
217
eba0ee7232aa new opcodes
Claus Gittinger <cg@exept.de>
parents: 215
diff changeset
  1473
    (aSymbol == #blockRef) ifTrue:[stackDelta := 0. ^ 238].
549
e403281da682 added #over code
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
  1474
    (aSymbol == #over) ifTrue:[stackDelta := 1. ^ 6].
1799
121a51d444a6 more long ops
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
  1475
121a51d444a6 more long ops
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
  1476
    (aSymbol == #sendVL) ifTrue:[lineno := true. extra := #specialVL. extraOP := 0. ^ 204].
121a51d444a6 more long ops
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
  1477
    (aSymbol == #superSendVL) ifTrue:[lineno := true. extra := #specialVL. extraOP := 1. ^ 204].
1792
87315c3bd290 preps for vl literals
Claus Gittinger <cg@exept.de>
parents: 1790
diff changeset
  1478
    (aSymbol == #pushLitVL) ifTrue:[stackDelta := 1. extra := #unsigned32. extraOP := 2. ^ 204].
1799
121a51d444a6 more long ops
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
  1479
    (aSymbol == #pushGlobalVL) ifTrue:[stackDelta := 1. extra := #speciallitVL. extraOP := 3. ^ 204].
121a51d444a6 more long ops
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
  1480
    (aSymbol == #storeGlobalVL) ifTrue:[stackDelta := -1. extra := #speciallitVL. extraOP := 4. ^ 204].
217
eba0ee7232aa new opcodes
Claus Gittinger <cg@exept.de>
parents: 215
diff changeset
  1481
2756
4b1b41756f13 comment/format in: #byteCodeFor:
Claus Gittinger <cg@exept.de>
parents: 2752
diff changeset
  1482
    "/ the next 2 are to be obsoleted soon (renamed as MethodLocal)
1822
f9db06526cdd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1815
diff changeset
  1483
    (aSymbol == #pushLocal) ifTrue:[ stackDelta := 1. extra := #index. ^ 239].
f9db06526cdd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1815
diff changeset
  1484
    (aSymbol == #storeLocal) ifTrue:[ stackDelta := -1. extra := #index. ^ 240].
f9db06526cdd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1815
diff changeset
  1485
2752
8ad917ec2b3a changed: #byteCodeFor:
Claus Gittinger <cg@exept.de>
parents: 2735
diff changeset
  1486
    (aSymbol == #pushMethodLocal) ifTrue:[ stackDelta := 1. extra := #index. ^ 239].
8ad917ec2b3a changed: #byteCodeFor:
Claus Gittinger <cg@exept.de>
parents: 2735
diff changeset
  1487
    (aSymbol == #storeMethodLocal) ifTrue:[ stackDelta := -1. extra := #index. ^ 240].
8ad917ec2b3a changed: #byteCodeFor:
Claus Gittinger <cg@exept.de>
parents: 2735
diff changeset
  1488
    (aSymbol == #storeBlockLocal) ifTrue:[ stackDelta := -1. extra := #index. ^ 241].
8ad917ec2b3a changed: #byteCodeFor:
Claus Gittinger <cg@exept.de>
parents: 2735
diff changeset
  1489
    (aSymbol == #storeOuterBlockLocal) ifTrue:[ stackDelta := -1. extra := #indexLevel. ^ 242].
3169
909acdf40ba0 class: ByteCodeCompiler
Stefan Vogel <sv@exept.de>
parents: 3162
diff changeset
  1490
    (aSymbol == #swap) ifTrue:[stackDelta := 0. ^ 243].
2752
8ad917ec2b3a changed: #byteCodeFor:
Claus Gittinger <cg@exept.de>
parents: 2735
diff changeset
  1491
3071
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  1492
    self codeGeneratorError:'invalid code symbol'.
117
claus
parents: 111
diff changeset
  1493
1822
f9db06526cdd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1815
diff changeset
  1494
    "Modified: / 03-09-1995 / 12:58:47 / claus"
2752
8ad917ec2b3a changed: #byteCodeFor:
Claus Gittinger <cg@exept.de>
parents: 2735
diff changeset
  1495
    "Modified: / 25-10-2011 / 21:56:43 / cg"
2756
4b1b41756f13 comment/format in: #byteCodeFor:
Claus Gittinger <cg@exept.de>
parents: 2752
diff changeset
  1496
    "Modified (comment): / 31-10-2011 / 11:34:37 / cg"
3645
695fc26d7207 Block source position support [1/2]: generate SOURCEPOS pseudoinstruction before each MAKE_BLOCK insn
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3641
diff changeset
  1497
    "Modified (format): / 31-05-2015 / 03:55:47 / Jan Vrany <jan.vrany@fit.cvut.cz>"
128
61eb0b356b89 change classes versionString when class changes (prepare for sourceCode system)
Claus Gittinger <cg@exept.de>
parents: 126
diff changeset
  1498
!
61eb0b356b89 change classes versionString when class changes (prepare for sourceCode system)
Claus Gittinger <cg@exept.de>
parents: 126
diff changeset
  1499
209
b858b6a6880f compare categoryStrings equal before writing a change record
Claus Gittinger <cg@exept.de>
parents: 199
diff changeset
  1500
checkForCommonCode:symbolicCodeArray
b858b6a6880f compare categoryStrings equal before writing a change record
Claus Gittinger <cg@exept.de>
parents: 199
diff changeset
  1501
    "hook to return the code for common code sequences.
212
ff39051e219f more constant folding options
Claus Gittinger <cg@exept.de>
parents: 211
diff changeset
  1502
     This reduces the in-memory number of byteArrays somewhat.
ff39051e219f more constant folding options
Claus Gittinger <cg@exept.de>
parents: 211
diff changeset
  1503
1095
8963fe0f984f comment
Claus Gittinger <cg@exept.de>
parents: 1094
diff changeset
  1504
     Not yet fully implemented - just an idea ... there is certainly more to do here
212
ff39051e219f more constant folding options
Claus Gittinger <cg@exept.de>
parents: 211
diff changeset
  1505
     (does it make sense to scan all methods, collect code in a set and unify things
ff39051e219f more constant folding options
Claus Gittinger <cg@exept.de>
parents: 211
diff changeset
  1506
      automatically in the background - or upon request ?)"
199
1b3b350a3f59 moved bytecode query methods into compiler;
Claus Gittinger <cg@exept.de>
parents: 197
diff changeset
  1507
209
b858b6a6880f compare categoryStrings equal before writing a change record
Claus Gittinger <cg@exept.de>
parents: 199
diff changeset
  1508
    |sz insn1|
199
1b3b350a3f59 moved bytecode query methods into compiler;
Claus Gittinger <cg@exept.de>
parents: 197
diff changeset
  1509
209
b858b6a6880f compare categoryStrings equal before writing a change record
Claus Gittinger <cg@exept.de>
parents: 199
diff changeset
  1510
    (sz := symbolicCodeArray size) == 2 ifTrue:[
1815
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  1511
	"/
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  1512
	"/ a very common sequence: return the first literal
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  1513
	"/
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  1514
	(insn1 := symbolicCodeArray at:1) == #pushLit1 ifTrue:[
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  1515
	    (symbolicCodeArray at:2) == #retTop ifTrue:[
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  1516
		^ #[222 0]
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  1517
	    ]
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  1518
	]
209
b858b6a6880f compare categoryStrings equal before writing a change record
Claus Gittinger <cg@exept.de>
parents: 199
diff changeset
  1519
    ].
b858b6a6880f compare categoryStrings equal before writing a change record
Claus Gittinger <cg@exept.de>
parents: 199
diff changeset
  1520
    sz == 1 ifTrue:[
1815
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  1521
	"/
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  1522
	"/ other common sequences: return the receiver, nil, true or false
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  1523
	"/
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  1524
	(insn1 := symbolicCodeArray at:1) == #retSelf ifTrue:[
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  1525
	    ^ #[5]
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  1526
	].
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  1527
	insn1 == #retNil ifTrue:[
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  1528
	    ^ #[1]
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  1529
	].
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  1530
	insn1 == #retTrue ifTrue:[
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  1531
	    ^ #[2]
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  1532
	].
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  1533
	insn1 == #retFalse ifTrue:[
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  1534
	    ^ #[3]
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  1535
	].
209
b858b6a6880f compare categoryStrings equal before writing a change record
Claus Gittinger <cg@exept.de>
parents: 199
diff changeset
  1536
    ].
b858b6a6880f compare categoryStrings equal before writing a change record
Claus Gittinger <cg@exept.de>
parents: 199
diff changeset
  1537
    ^ nil
199
1b3b350a3f59 moved bytecode query methods into compiler;
Claus Gittinger <cg@exept.de>
parents: 197
diff changeset
  1538
!
1b3b350a3f59 moved bytecode query methods into compiler;
Claus Gittinger <cg@exept.de>
parents: 197
diff changeset
  1539
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  1540
checkForPrimitiveCode:nr
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  1541
    "return the code for an ST-80 primitive method.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  1542
     Since many primitives available on ST-80 should also be available
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  1543
     somewhere in ST/X, this may work for many primitive numbers.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  1544
     However, more information is needed and more things to be added below.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  1545
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  1546
     This was added to allow emulation of (some) ST-80
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  1547
     primitives (to fileIn RemoteInvocation & Monitor41 packages)"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  1548
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  1549
    |cls sel|
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  1550
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  1551
    (nr == 75)  ifTrue:[ cls := Object. sel := #identityHash ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  1552
    (nr == 110) ifTrue:[ cls := Object. sel := #==           ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  1553
    (nr == 111) ifTrue:[ cls := Object. sel := #class        ].
1228
5ee632d481f2 comment
Claus Gittinger <cg@exept.de>
parents: 1223
diff changeset
  1554
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  1555
    "
1228
5ee632d481f2 comment
Claus Gittinger <cg@exept.de>
parents: 1223
diff changeset
  1556
     should add more here, to be able to fileIn ST-80 and Squeak methods
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  1557
     containing primitive calls (who gives me the numbers ... ?)
512
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1558
     mhmh - got some ..."
1228
5ee632d481f2 comment
Claus Gittinger <cg@exept.de>
parents: 1223
diff changeset
  1559
5ee632d481f2 comment
Claus Gittinger <cg@exept.de>
parents: 1223
diff changeset
  1560
     "/ ST80 and Squeak common:
5ee632d481f2 comment
Claus Gittinger <cg@exept.de>
parents: 1223
diff changeset
  1561
     "/            18 Number @
5ee632d481f2 comment
Claus Gittinger <cg@exept.de>
parents: 1223
diff changeset
  1562
     "/            41 Float +
5ee632d481f2 comment
Claus Gittinger <cg@exept.de>
parents: 1223
diff changeset
  1563
     "/            42 Float -
5ee632d481f2 comment
Claus Gittinger <cg@exept.de>
parents: 1223
diff changeset
  1564
     "/            49 Float *
5ee632d481f2 comment
Claus Gittinger <cg@exept.de>
parents: 1223
diff changeset
  1565
     "/            50 Float /
5ee632d481f2 comment
Claus Gittinger <cg@exept.de>
parents: 1223
diff changeset
  1566
     "/            52 Float fractionPart
5ee632d481f2 comment
Claus Gittinger <cg@exept.de>
parents: 1223
diff changeset
  1567
     "/            54 Float timesTwoPower:
5ee632d481f2 comment
Claus Gittinger <cg@exept.de>
parents: 1223
diff changeset
  1568
907
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1569
     "/ ST80:
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1570
     "/
1228
5ee632d481f2 comment
Claus Gittinger <cg@exept.de>
parents: 1223
diff changeset
  1571
     "/            18 Number @
5ee632d481f2 comment
Claus Gittinger <cg@exept.de>
parents: 1223
diff changeset
  1572
     "/            21 LargePositiveInteger +
5ee632d481f2 comment
Claus Gittinger <cg@exept.de>
parents: 1223
diff changeset
  1573
     "/            22 LargePositiveInteger -
5ee632d481f2 comment
Claus Gittinger <cg@exept.de>
parents: 1223
diff changeset
  1574
     "/            29 LargePositiveInteger *
5ee632d481f2 comment
Claus Gittinger <cg@exept.de>
parents: 1223
diff changeset
  1575
     "/            30 LargePositiveInteger /
1815
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  1576
     "/            31 LargePositiveInteger \\
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  1577
     "/            32 LargePositiveInteger //
1228
5ee632d481f2 comment
Claus Gittinger <cg@exept.de>
parents: 1223
diff changeset
  1578
     "/            34 LargePositiveInteger bitAnd:
5ee632d481f2 comment
Claus Gittinger <cg@exept.de>
parents: 1223
diff changeset
  1579
     "/            35 LargePositiveInteger bitOr:
5ee632d481f2 comment
Claus Gittinger <cg@exept.de>
parents: 1223
diff changeset
  1580
     "/            36 LargePositiveInteger bitXor:
5ee632d481f2 comment
Claus Gittinger <cg@exept.de>
parents: 1223
diff changeset
  1581
     "/            37 LargePositiveInteger bitShift:
5ee632d481f2 comment
Claus Gittinger <cg@exept.de>
parents: 1223
diff changeset
  1582
     "/            40 SmallInteger asFloat
5ee632d481f2 comment
Claus Gittinger <cg@exept.de>
parents: 1223
diff changeset
  1583
     "/            41 Float +
5ee632d481f2 comment
Claus Gittinger <cg@exept.de>
parents: 1223
diff changeset
  1584
     "/            42 Float -
5ee632d481f2 comment
Claus Gittinger <cg@exept.de>
parents: 1223
diff changeset
  1585
     "/            49 Float *
1815
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  1586
     "/            50 Float /
1228
5ee632d481f2 comment
Claus Gittinger <cg@exept.de>
parents: 1223
diff changeset
  1587
     "/            52 Float fractionPart
5ee632d481f2 comment
Claus Gittinger <cg@exept.de>
parents: 1223
diff changeset
  1588
     "/            54 Float timesTwoPower:
5ee632d481f2 comment
Claus Gittinger <cg@exept.de>
parents: 1223
diff changeset
  1589
     "/            70 Behavior basicNew
5ee632d481f2 comment
Claus Gittinger <cg@exept.de>
parents: 1223
diff changeset
  1590
     "/            71 Behavior basicNew:
5ee632d481f2 comment
Claus Gittinger <cg@exept.de>
parents: 1223
diff changeset
  1591
     "/            89 Behavior flushVMmethodCache
5ee632d481f2 comment
Claus Gittinger <cg@exept.de>
parents: 1223
diff changeset
  1592
     "/            91 InputState primCursorLocPut:
512
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1593
     "/           105 ByteArray replaceElementsFrom:to:withByteArray:startingAt:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1594
     "/           223 ByteString =
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1595
     "/           306 ObjectMemory class sizesAtStartup
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1596
     "/           307 ObjectMemory class defaultSizesAtStartup
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1597
     "/           309 ObjectMemory class defaultThresholds
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1598
     "/           326 ObjectMemory class getMemoryUsageAndZeroFragmentationStatisticsIf:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1599
     "/           395 ExternalInterface ???
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1600
     "/           400 FormBitmap class newWidth:height:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1601
     "/           414 TwoByteString replaceElementsFrom:to:withTwoByteString:startingAt:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1602
     "/           415 TwoByteString =
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1603
     "/           417 String trueCompare:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1604
     "/           418 ByteString nextIndexOf:from:to:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1605
     "/           419 ByteString prevIndexOf:from:to:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1606
     "/           422 WeakArray indexOf:replaceWith:startingAt:stoppingAt:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1607
     "/           522 Behavior flushVMmethodCacheEntriesFor:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1608
     "/           524 Context nFromVPC:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1609
     "/           525 Context vFromNPC:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1610
     "/           532 Object shallowCopy
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1611
     "/           536 Behavior atomicAllInstances
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1612
     "/           537 Object allOwners
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1613
     "/           538 ObjectMemory class allObjects
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1614
     "/           546 UninterpretedBytes longAt:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1615
     "/           548 UninterpretedBytes floatAt:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1616
     "/           550 UninterpretedBytes longFloatAt:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1617
     "/           544 UninterpretedBytes unsignedLongAt:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1618
     "/           559 ByteArray replaceBytesFrom:to:with:startingAt:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1619
     "/           560 Double class fromNumber:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1620
     "/           561 Double +
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1621
     "/           562 Double -
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1622
     "/           569 Double *
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1623
     "/           570 Double /
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1624
     "/           572 Double fractionPart
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1625
     "/           574 Double timesTwoPower:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1626
     "/           576 Double sin
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1627
     "/           577 Double cos
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1628
     "/           578 Double tan
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1629
     "/           579 Double arcSin
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1630
     "/           580 Double arcCos
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1631
     "/           581 Double arcTan
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1632
     "/           582 Double sqrt
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1633
     "/           583 Double ln
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1634
     "/           584 Double exp
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1635
     "/           585 Double raisedTo:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1636
     "/           587 Double floorLog10
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1637
     "/           588 Double asFloat
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1638
     "/           591 Float cos
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1639
     "/           592 Float arcSin
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1640
     "/           593 Float arcCos
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1641
     "/           600 Float sin
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1642
     "/           601 Float tan
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1643
     "/           602 Float arcTan
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1644
     "/           603 Float sqrt
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1645
     "/           604 Float ln
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1646
     "/           605 Float exp
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1647
     "/           606 Float raisedTo:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1648
     "/           609 Float floorLog10
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1649
     "/           610 Filename getDatesErrInto:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1650
     "/           614 DosFilename class getVolumes
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1651
     "/           615 UnixFilename primSetProtection:errInto:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1652
     "/           616 UnixFilename class primSetCreationMask:errInto:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1653
     "/           617 UnixFilename primGetProtectionErrInto:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1654
     "/           620 Filename listDirectoryErrInto:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1655
     "/           621 Filename deleteErrInto:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1656
     "/           622 Filename isDirectoryErrInto:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1657
     "/           623 Filename renameTo:errInto:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1658
     "/           624 Filename makeDirectoryErrInto:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1659
     "/           625 Filename class defaultDirectoryErrInto:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1660
     "/           626 Filename fileSizeErrInto:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1661
     "/           627 Filename isWritableErrInto:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1662
     "/           628 Filename setWritable:errInto:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1663
     "/           629 Filename existsErrInto:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1664
     "/           630 SocketAccessor setOptionsLevel:name:value:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1665
     "/           631 SocketAccessor getOptionsLevel:name:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1666
     "/           632 SocketAccessor primGetName
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1667
     "/           633 SocketAccessor primGetPeer
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1668
     "/           634 SocketAccessor atMark
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1669
     "/           637 UnixTtyAccessor primGetOptions
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1670
     "/           638 UnixTtyAccessor setOptions:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1671
     "/           639 UnixRealTtyAccessor modemBits:mask:sendBreak:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1672
     "/           640 IPSocketAddress class primHostAddressByName:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1673
     "/           641 IPSocketAddress class netAddressByName:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1674
     "/           642 IPSocketAddress class protocolNumberByName:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1675
     "/           643 IPSocketAddress class servicePortByName:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1676
     "/           645 IPSocketAddress class primHostNameByAddress:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1677
     "/           646 IPSocketAddress class netNameByAddress:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1678
     "/           647 IPSocketAddress class protocolNameByNumber:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1679
     "/           648 IPSocketAddress class serviceNameByPort:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1680
     "/           649 SocketAccessor class getHostname
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1681
     "/           650 Filename primOpenFileNamed:direction:creation:errorInto:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1682
     "/           651 IOAccessor primClose
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1683
     "/           652 UnixPipeAccessor class primPipeErrorInto:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1684
     "/           653 UnixPseudoTtyAccessor class primPtyErrorInto:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1685
     "/           654 SocketAccessor class primPairErrorInto:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1686
     "/           655 UnixRealTtyAccessor class primOpen:errInto:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1687
     "/           660 IOAccessor primReadInto:startingAt:for:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1688
     "/           661 IOAccessor primWriteFrom:startingAt:for:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1689
     "/           662 IOAccessor primSeekTo:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1690
     "/           664 IOAccessor truncateTo:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1691
     "/           665 DosDiskFileAccessor commit
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1692
     "/           666 IOAccessor primGetSize
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1693
     "/           667 MacDiskFileAccessor lock:for:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1694
     "/           669 UnixIOAccessor bytesForRead
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1695
     "/           670 SocketAccessor class primFamily:type:protocol:errInto:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1696
     "/           671 SocketAccessor primAccept
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1697
     "/           672 SocketAccessor bindTo:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1698
     "/           673 SocketAccessor listenFor:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1699
     "/           674 SocketAccessor primConnectTo:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1700
     "/           675 SocketAccessor primReceiveFrom:buffer:start:for:flags:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1701
     "/           676 SocketAccessor sendTo:buffer:start:for:flags:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1702
     "/           677 SocketAccessor shutdown:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1703
     "/           681 UnixProcess class primFork:arguments:environment:descriptors:errorTo:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1704
     "/           682 UnixProcess class reapOne
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1705
     "/           683 UnixProcess kill:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1706
     "/           690 CEnvironment class primEnvironment
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1707
     "/           697 OSErrorHolder class errorDescriptionFor:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1708
     "/           697 ErrorHolder class errorDescriptionFor:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1709
     "/           698 SocketAccessor class primInit:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1710
     "/           700 ParagraphEditor class getExternalSelectionOrNil:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1711
     "/           701 ParagraphEditor class putExternalSelection:with:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1712
     "/           705 Screen ringBell
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1713
     "/           706 Cursor class primOpenImage:mask:hotSpotX:hotSpotY:background:foreground:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1714
     "/           707 Cursor primBeCursor
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1715
     "/           708 Cursor primFreeCursor
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1716
     "/           772 SoundManager enumerateSoundsFrom:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1717
     "/           773 SoundManager playSoundFrom:sound:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1718
     "/           774 SoundManager simpleBeep:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1719
     "/           775 Pixmap primFromClipboard
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1720
     "/           776 Pixmap toClipboard
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1721
     "/           808 Context findNextMarkedUpTo:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1722
     "/           809 Context terminateTo:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1723
     "/           710 DosTtyAccessor class primOpen:errInto:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1724
     "/           711 DosTtyAccessor primClose
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1725
     "/           712 DosTtyAccessor primReadInto:startingAt:for:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1726
     "/           713 DosTtyAccessor primWriteFrom:startingAt:for:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1727
     "/           714 DosTtyAccessor primGetOptions
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1728
     "/           715 DosTtyAccessor primSetOptions:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1729
     "/           716 DosTtyAccessor setSem:forWrite:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1730
     "/           717 DosTtyAccessor modemBits:mask:sendBreak:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1731
     "/           750 MacFilename class getVolumes
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1732
     "/           752 MacFilename primSetCreator:type:errInto:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1733
     "/           754 MacIOAccessor class getAccessories
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1734
     "/           755 MacIOAccessor class runAccessory:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1735
     "/           756 MacOSFilename class getFileTypes:errInto:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1736
     "/           757 MacOSFilename putFileWithPrompt:errInto:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1737
     "/           758 MacOSFilename getFileInfoErrInto:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1738
     "/           759 MacOSFilename stringFromVRefErrInto:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1739
     "/           761 MacOSFilename class getStartupFilesErrInto:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1740
     "/           770 DosFilename printPSFileErrInto:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1741
     "/           771 DosFilename printTextFileErrInto:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1742
     "/           780 MacTtyAccessor class primOpen:errInto:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1743
     "/           781 MacTtyAccessor primClose
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1744
     "/           782 MacTtyAccessor primReadInto:startingAt:for:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1745
     "/           783 MacTtyAccessor primWriteFrom:startingAt:for:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1746
     "/           786 MacTtyAccessor primGetOptions
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1747
     "/           787 MacTtyAccessor setOptions:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1748
     "/           788 MacTtyAccessor primBreak:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1749
     "/           790 MacTtyAccessor primGetStatus
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1750
     "/           792 MacTtyAccessor setSem:forWrite:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1751
     "/           793 MacTtyAccessor primAssertDTR:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1752
     "/           794 MacTtyAccessor primGetSize
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1753
     "/           933 ByteArray copyBitsClippedStride:...
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1754
     "/           934 ByteArray tileBits32By32Stride:...
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1755
     "/           935 Screen dragShape:...
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1756
     "/           936 Screen resizeRectangle...
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1757
     "/           937 Screen displayShape:...
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1758
     "/           938 Window resizeFromUserWithMinimum:maximum:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1759
     "/           940 Window primClose
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1760
     "/           942 Window getDimensions
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1761
     "/           943 Window moveTo:resize:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1762
     "/           944 Window primMap
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1763
     "/           945 Window class primNewAt:extent:min:max:windowType:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1764
     "/           946 Screen flush
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1765
     "/           947 Screen getScreenDimensions
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1766
     "/           948 Window unmap
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1767
     "/           950 Screen sync
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1768
     "/           951 Window setIconMask:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1769
     "/           952 Window label:iconLabel:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1770
     "/           953 Window raise
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1771
     "/           954 Window lower
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1772
     "/           955 Screen queryStackingOrder
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1773
     "/           956 TextMeasurer primScanCharactersFrom:...
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1774
     "/           957 GraphicsContext displayMappedString:from:to:at:withMap:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1775
     "/           959 Window setBackgroundPixel:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1776
     "/           960 Screen class primOpen:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1777
     "/           965 UnmappableSurface contentsOfAreaOriginX:y:width:height:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1778
     "/           966 Window contentsOfAreaOriginX:y:width:height:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1779
     "/           967 Screen contentsOfAreaOriginX:y:width:height:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1780
     "/           970 Mask class primExtent:depth:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1781
     "/           971 Mask privateClose
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1782
     "/           976 GraphicsContext displayCharacterOfIndex:at:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1783
     "/           978 DeviceFont class listFonts
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1784
     "/           979 DeviceFont primLoadFont
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1785
     "/           980 DeviceFont primUnLoadFont
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1786
     "/           985 GraphicsContext displayLineFrom:to:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1787
     "/           986 GraphicsContext displayPolyline:at:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1788
     "/           987 GraphicsContext displayPolygon:at:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1789
     "/           988 GraphicsContext primDisplayRectangleOrigin:extent:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1790
     "/           989 GraphicsContext primDisplayRectangularBorderOrigin:extent:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1791
     "/           990 GraphicsContext primDisplayArcBBoxOrigin:extent:startAngle:sweepAngle:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1792
     "/           991 GraphicsContext primDisplayWedgeBBoxOrigin:extent:startAngle:sweepAngle:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1793
     "/           992 GraphicsContext displayMask:at:"
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1794
     "/           993 GraphicsContext displayUninterpretedImageBits:at:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1795
     "/           994 GraphicsContext primCopyRectangularAreaExtent:from:sourceOffset:destinationOffset:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1796
     "/           995 GraphicsContext primCopyMaskedArea:from:sourceOffset:destinationOffset:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1797
     "/           996 Screen deviceColormap
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1798
     "/           998 GraphicsContext displayUninterpretedMonoImageBits:foreground:background:at:
fed48886aff9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 510
diff changeset
  1799
907
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1800
     "/ Squeak:
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1801
     "/
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1802
     "/             1 +
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1803
     "/             2 -
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1804
     "/             3 <
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1805
     "/             4 >
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1806
     "/             5 <=
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1807
     "/             6 >=
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1808
     "/             7 =
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1809
     "/             8 ~=
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1810
     "/             9 *
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1811
     "/            10 /
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1812
     "/            11 mod:
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1813
     "/            12 div:
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1814
     "/            13 quo:
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1815
     "/            14 bitAnd:
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1816
     "/            15 bitOr:
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1817
     "/            16 bitXor:
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1818
     "/            17 bitShift:
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1819
     "/            18 @
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1820
     "/            19
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1821
     "/            ...
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1822
     "/            39 fail - reserved/unimplemented
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1823
     "/            40 asFloat
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1824
     "/            41 Float +
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1825
     "/            42 Float -
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1826
     "/            43 Float <
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1827
     "/            44 Float >
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1828
     "/            45 Float <=
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1829
     "/            46 Float >=
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1830
     "/            47 Float =
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1831
     "/            48 Float ~=
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1832
     "/            49 Float *
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1833
     "/            50 Float /
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1834
     "/            51 Float truncated
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1835
     "/            52 Float fractionalPart
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1836
     "/            53 Float exponent
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1837
     "/            54 Float timeTwoPower
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1838
     "/            55 Float sqrt
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1839
     "/            56 Float sine
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1840
     "/            57 Float arcTan
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1841
     "/            58 Float logN
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1842
     "/            59 Float exp
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1843
     "/            60 at:
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1844
     "/            61 at:put:
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1845
     "/            62 size
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1846
     "/            63 stringAt:
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1847
     "/            64 stringAt:put:
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1848
     "/            65 next
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1849
     "/            66 nextPut:
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1850
     "/            67 atEnd
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1851
     "/            68 objectAt:
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1852
     "/            69 objectAt:put:
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1853
     "/            70 new
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1854
     "/            71 new:
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1855
     "/            72 becomeOneWay
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1856
     "/            73 instVarAt:
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1857
     "/            74 instVarAtPut:
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1858
     "/            75 asOop
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1859
     "/            76 storeStackP
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1860
     "/            77 someInstance
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1861
     "/            78 nextInstance
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1862
     "/            79 newMethod
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1863
     "/            80 blockCopy
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1864
     "/            81 value
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1865
     "/            82 valueWithArgs
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1866
     "/            83 perform
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1867
     "/            84 performWithArgs
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1868
     "/            85 signal
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1869
     "/            86 wait
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1870
     "/            87 resume
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1871
     "/            88 suspend
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1872
     "/            89 flushCache
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1873
     "/            90 mousePoint
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1874
     "/            91 fail/unimplemented/reserved
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1875
     "/            92 fail/unimplemented/reserved
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1876
     "/            93 inputSemaphore
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1877
     "/            94 fail/unimplemented/reserved
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1878
     "/            95 inputWord
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1879
     "/            96 copyBits
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1880
     "/            97 snapShot
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1881
     "/            98 fail/unimplemented/reserved
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1882
     "/            99 fail/unimplemented/reserved
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1883
     "/           100 fail/unimplemented/reserved
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1884
     "/           101 beCursor
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1885
     "/           102 beDisplay
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1886
     "/           103 scanCharacters
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1887
     "/           104 drawLoop
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1888
     "/           105 stringReplace
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1889
     "/           106 screenSize
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1890
     "/           107 mouseButtons
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1891
     "/           108 kbdNext
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1892
     "/           109 kbdPeek
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1893
     "/           110 equivalent
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1894
     "/           111 class
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1895
     "/           112 bytesLeft
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1896
     "/           113 quit
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1897
     "/           114 exitToDebugger
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1898
     "/           115 fail/unimplemented/reserved
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1899
     "/           116 flushCacheByMethod
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1900
     "/           117 externalCall
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1901
     "/           118 doPrimitiveWithArg
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1902
     "/           119 flushCacheSelective
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1903
     "/           120 fail/unimplemented/reserved
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1904
     "/           121 imageName
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1905
     "/           122 noop
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1906
     "/           123 fail/unimplemented/reserved
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1907
     "/           124 lowSpaceSemaphore
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1908
     "/           125 signalAtBytesLeft
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1909
     "/           126 deferDisplayUpdate
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1910
     "/           127 showDisplayRect
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1911
     "/           128 arrayBecome
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1912
     "/           129 specialObjectsOop
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1913
     "/           130 fullGC
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1914
     "/           131 incrementalGC
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1915
     "/           132 objectPointsTo
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1916
     "/           133 setInterruptKey
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1917
     "/           134 interruptSemaphore
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1918
     "/           135 millisecondClock
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1919
     "/           136 signalAtMilliseconds
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1920
     "/           137 secondsClock
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1921
     "/           138 someObject
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1922
     "/           139 nextObject
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1923
     "/           140 beep
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1924
     "/           141 clipboardText
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1925
     "/           142 vmPath
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1926
     "/           143 shortAt
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1927
     "/           144 shortAtPut
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1928
     "/           145 constantFill
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1929
     "/           146 readJoystick
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1930
     "/           147 warpBits
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1931
     "/           148 clone
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1932
     "/           149 getAttribute
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1933
     "/           150 fileAtEnd
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1934
     "/           151 fileClose
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1935
     "/           152 fileGetPosition
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1936
     "/           153 fileOpen
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1937
     "/           154 fileRead
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1938
     "/           155 fileSetPosition
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1939
     "/           156 fileDelete
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1940
     "/           157 fileSize
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1941
     "/           158 fileWrite
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1942
     "/           159 fileRename
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1943
     "/           160 directoryCreate
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1944
     "/           161 directoryDelimiter
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1945
     "/           162 directoryLookup
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1946
     "/           163 fail
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1947
     "/           164 fail
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1948
     "/           165 fail
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1949
     "/           166 fail
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1950
     "/           167 fail
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1951
     "/           168 fail
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1952
     "/           169 directorySetMacType
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1953
     "/           170 soundStart
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1954
     "/           171 soundStartWithSemaphore
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1955
     "/           172 soundStop
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1956
     "/           173 soundAvailableSpace
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1957
     "/           174 soundPlaySamples
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1958
     "/           175 soundPlaySilence
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1959
     "/           176 waveTableSoundmixSampleCountIntoStarrtingAtpan
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1960
     "/           177 fmSoundmixSampleCountintostartingAtpan
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1961
     "/           178 pluckedSoundmixSampleCountintostartingAtpan
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1962
     "/           179 sampledSoundmixSampleCountintostartingAtpan
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1963
     "/           180 fmSoundmixSampleCountintostartingAtleftVolrightVol
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1964
     "/           181 pluckedSoundmixSampleCountintostartingAtleftVolrightVol
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1965
     "/           182 sampledSoundmixSampleCountintostartingAtleftVolrightVol
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1966
     "/           183 reverbSoundapplyReverbTostartingAtcount
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1967
     "/           184 loopedSampledSoundmixSampleCountintostartingAtleftVolrightVol
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1968
     "/           185 fail
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1969
     "/           186 fail
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1970
     "/           187 fail
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1971
     "/           188 fail
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1972
     "/           189 soundInsertSamples
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1973
     "/           190 soundStartRecording
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1974
     "/           191 soundStopRecording
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1975
     "/           192 soundGetRecordingSampleRate
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1976
     "/           193 soundRecordSamples
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1977
     "/           194 soundSetRecordLevel
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1978
     "/           195 fail
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1979
     "/           196 fail
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1980
     "/           197 fail
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1981
     "/           198 fail
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1982
     "/           199 fail
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1983
     "/           200 initializeNetwork
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1984
     "/           201 resolverStartNameLookup
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1985
     "/           202 resolverNameLookupResult
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1986
     "/           203 resolverStartAddressLookup
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1987
     "/           204 resolverAddressLookupResult
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1988
     "/           205 resolverAbortLookup
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1989
     "/           206 resolverLocalAddress
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1990
     "/           207 resolverStatus
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1991
     "/           208 resolverError
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1992
     "/           209 socketCreate
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1993
     "/           210 socketDestroy
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1994
     "/           211 socketConnectionStatus
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1995
     "/           212 socketError
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1996
     "/           213 socketLocalAddress
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1997
     "/           214 socketLocalPort
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1998
     "/           215 socketRemoteAddress
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  1999
     "/           216 socketRemotePort
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2000
     "/           217 socketConnectToPort
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2001
     "/           218 socketListenOnPort
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2002
     "/           219 socketCloseConnection
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2003
     "/           220 socketAbortConnection
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2004
     "/           221 socketReceiveDataBufCount
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2005
     "/           222 socketReceiveDataAvailable
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2006
     "/           223 socketSendDataBufCount
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2007
     "/           224 socketSendDone
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2008
     "/           225 fail
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2009
     "/           226 fail
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2010
     "/           227 fail
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2011
     "/           228 fail
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2012
     "/           229 fail
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2013
     "/           230 relinquishProcessor
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2014
     "/           231 forceDisplayUpdate
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2015
     "/           232 formPrint
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2016
     "/           233 setFullScreen
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2017
     "/           234 bitmapdecompressfromByteArrayat
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2018
     "/           235 stringcomparewithcollated
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2019
     "/           236 sampledSoundconvert8bitSignedFromto16Bit
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2020
     "/           237 bitmapcompresstoByteArray
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2021
     "/           238 serialPortOpen
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2022
     "/           239 serialPortClose
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2023
     "/           240 serialPortWrite
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2024
     "/           241 serialPortRead
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2025
     "/           242 fail
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2026
     "/           243 stringtranslatefromtotable
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2027
     "/           244 stringfindFirstInStringinSetstartingAt
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2028
     "/           245 stringindexOfAsciiinStringstartingAt
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2029
     "/           246 stringfindSubstringinstartingAtmatchTable
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2030
     "/           247 fail
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2031
     "/           248 fail
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2032
     "/           249 fail
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2033
     "/           250 clearProfile
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2034
     "/           251 dumpProfile
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2035
     "/           252 startProfiling
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2036
     "/           253 stopProfiling
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2037
     "/           254 vmParameter
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2038
     "/           255 instVarsPutFromStack
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2039
     "/           256 pushSelf
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2040
     "/           257 pushTrue
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2041
     "/           258 pushFalse
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2042
     "/           259 pushNil
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2043
     "/           260 pushMinusOne
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2044
     "/           261 pushZero
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2045
     "/           262 pushOne
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2046
     "/           263 pushTwo
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2047
     "/           264 loadInstVar
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2048
     "/           ..  loadInstVar
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2049
     "/           519 loadInstVar
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2050
     "/           520 fail
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2051
     "/           521 MIDIClosePort
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2052
     "/           522 MIDIGetClock
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2053
     "/           523 MIDIGetPortCount
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2054
     "/           524 MIDIGetPortDirectionality
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2055
     "/           525 MIDIGetPortName
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2056
     "/           526 MIDIOpenPort
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2057
     "/           527 MIDIParameterGetOrSet
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2058
     "/           528 MIDIRead
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2059
     "/           529 MIDIWrite
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2060
     "/           530 fail
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2061
     "/           ..  fail
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2062
     "/           539 fail
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2063
     "/           540 asyncFileClose
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2064
     "/           541 asyncFileOpen
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2065
     "/           542 asyncFileReadResult
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2066
     "/           543 asyncFileReadStart
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2067
     "/           544 asyncFileWriteResult
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2068
     "/           545 asyncFileWriteStart
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2069
     "/           546 fail
1815
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  2070
     "/           ..
907
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2071
     "/           700 fail
683b46536bc6 comment
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2072
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  2073
    cls notNil ifTrue:[
1815
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  2074
	^ (cls compiledMethodAt:sel) code
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  2075
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  2076
    ^ nil
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  2077
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  2078
3162
d7d32920c1b4 Emit #lineno16 byte codes only, if line number really changes
Stefan Vogel <sv@exept.de>
parents: 3161
diff changeset
  2079
codeLineNumber:nr on:codeStream
d7d32920c1b4 Emit #lineno16 byte codes only, if line number really changes
Stefan Vogel <sv@exept.de>
parents: 3161
diff changeset
  2080
    "generate lineNumber information"
d7d32920c1b4 Emit #lineno16 byte codes only, if line number really changes
Stefan Vogel <sv@exept.de>
parents: 3161
diff changeset
  2081
d7d32920c1b4 Emit #lineno16 byte codes only, if line number really changes
Stefan Vogel <sv@exept.de>
parents: 3161
diff changeset
  2082
    "/ caveat: (currently) there is no separate lineNumber or symbol table;
d7d32920c1b4 Emit #lineno16 byte codes only, if line number really changes
Stefan Vogel <sv@exept.de>
parents: 3161
diff changeset
  2083
    "/ the line numbers are coded right into the instruction stream.
d7d32920c1b4 Emit #lineno16 byte codes only, if line number really changes
Stefan Vogel <sv@exept.de>
parents: 3161
diff changeset
  2084
    "/ This might change in the future.
d7d32920c1b4 Emit #lineno16 byte codes only, if line number really changes
Stefan Vogel <sv@exept.de>
parents: 3161
diff changeset
  2085
    "/ (It is not a problem speed wise: the Jitter just skips them.)
d7d32920c1b4 Emit #lineno16 byte codes only, if line number really changes
Stefan Vogel <sv@exept.de>
parents: 3161
diff changeset
  2086
d7d32920c1b4 Emit #lineno16 byte codes only, if line number really changes
Stefan Vogel <sv@exept.de>
parents: 3161
diff changeset
  2087
    (currentLineNumber = nr or:[nr <= 0]) ifTrue:[
d7d32920c1b4 Emit #lineno16 byte codes only, if line number really changes
Stefan Vogel <sv@exept.de>
parents: 3161
diff changeset
  2088
        ^ self
d7d32920c1b4 Emit #lineno16 byte codes only, if line number really changes
Stefan Vogel <sv@exept.de>
parents: 3161
diff changeset
  2089
    ].
d7d32920c1b4 Emit #lineno16 byte codes only, if line number really changes
Stefan Vogel <sv@exept.de>
parents: 3161
diff changeset
  2090
3186
2c1b6673c461 class: ByteCodeCompiler
Stefan Vogel <sv@exept.de>
parents: 3178
diff changeset
  2091
    "don't need line number information, if still on same line"
3162
d7d32920c1b4 Emit #lineno16 byte codes only, if line number really changes
Stefan Vogel <sv@exept.de>
parents: 3161
diff changeset
  2092
    currentLineNumber := nr.
d7d32920c1b4 Emit #lineno16 byte codes only, if line number really changes
Stefan Vogel <sv@exept.de>
parents: 3161
diff changeset
  2093
d7d32920c1b4 Emit #lineno16 byte codes only, if line number really changes
Stefan Vogel <sv@exept.de>
parents: 3161
diff changeset
  2094
    nr <= 255 ifTrue:[
d7d32920c1b4 Emit #lineno16 byte codes only, if line number really changes
Stefan Vogel <sv@exept.de>
parents: 3161
diff changeset
  2095
        codeStream 
d7d32920c1b4 Emit #lineno16 byte codes only, if line number really changes
Stefan Vogel <sv@exept.de>
parents: 3161
diff changeset
  2096
            nextPut:#lineno;
d7d32920c1b4 Emit #lineno16 byte codes only, if line number really changes
Stefan Vogel <sv@exept.de>
parents: 3161
diff changeset
  2097
            nextPut:nr.
d7d32920c1b4 Emit #lineno16 byte codes only, if line number really changes
Stefan Vogel <sv@exept.de>
parents: 3161
diff changeset
  2098
    ] ifFalse:[
d7d32920c1b4 Emit #lineno16 byte codes only, if line number really changes
Stefan Vogel <sv@exept.de>
parents: 3161
diff changeset
  2099
        nr <= 16rFFFF ifTrue:[
d7d32920c1b4 Emit #lineno16 byte codes only, if line number really changes
Stefan Vogel <sv@exept.de>
parents: 3161
diff changeset
  2100
            codeStream 
d7d32920c1b4 Emit #lineno16 byte codes only, if line number really changes
Stefan Vogel <sv@exept.de>
parents: 3161
diff changeset
  2101
                nextPut:#lineno16;
3763
23db107ec4f6 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 3731
diff changeset
  2102
                nextPutInt16MSB:nr.
3162
d7d32920c1b4 Emit #lineno16 byte codes only, if line number really changes
Stefan Vogel <sv@exept.de>
parents: 3161
diff changeset
  2103
        ]
d7d32920c1b4 Emit #lineno16 byte codes only, if line number really changes
Stefan Vogel <sv@exept.de>
parents: 3161
diff changeset
  2104
    ].
d7d32920c1b4 Emit #lineno16 byte codes only, if line number really changes
Stefan Vogel <sv@exept.de>
parents: 3161
diff changeset
  2105
!
d7d32920c1b4 Emit #lineno16 byte codes only, if line number really changes
Stefan Vogel <sv@exept.de>
parents: 3161
diff changeset
  2106
3645
695fc26d7207 Block source position support [1/2]: generate SOURCEPOS pseudoinstruction before each MAKE_BLOCK insn
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3641
diff changeset
  2107
codeSourcePosition:nr on:codeStream
695fc26d7207 Block source position support [1/2]: generate SOURCEPOS pseudoinstruction before each MAKE_BLOCK insn
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3641
diff changeset
  2108
    "generate source position information"
695fc26d7207 Block source position support [1/2]: generate SOURCEPOS pseudoinstruction before each MAKE_BLOCK insn
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3641
diff changeset
  2109
695fc26d7207 Block source position support [1/2]: generate SOURCEPOS pseudoinstruction before each MAKE_BLOCK insn
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3641
diff changeset
  2110
    "/ caveat: (currently) there is no separate line number, position or symbol table;
695fc26d7207 Block source position support [1/2]: generate SOURCEPOS pseudoinstruction before each MAKE_BLOCK insn
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3641
diff changeset
  2111
    "/ the source positions are coded right into the instruction stream.
695fc26d7207 Block source position support [1/2]: generate SOURCEPOS pseudoinstruction before each MAKE_BLOCK insn
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3641
diff changeset
  2112
    "/ This might change in the future.
695fc26d7207 Block source position support [1/2]: generate SOURCEPOS pseudoinstruction before each MAKE_BLOCK insn
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3641
diff changeset
  2113
    "/ (It is not a problem speed wise: the Jitter just skips them.)
695fc26d7207 Block source position support [1/2]: generate SOURCEPOS pseudoinstruction before each MAKE_BLOCK insn
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3641
diff changeset
  2114
695fc26d7207 Block source position support [1/2]: generate SOURCEPOS pseudoinstruction before each MAKE_BLOCK insn
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3641
diff changeset
  2115
    nr <= 255 ifTrue:[
695fc26d7207 Block source position support [1/2]: generate SOURCEPOS pseudoinstruction before each MAKE_BLOCK insn
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3641
diff changeset
  2116
        codeStream 
695fc26d7207 Block source position support [1/2]: generate SOURCEPOS pseudoinstruction before each MAKE_BLOCK insn
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3641
diff changeset
  2117
            nextPut:#sourcepos8;
695fc26d7207 Block source position support [1/2]: generate SOURCEPOS pseudoinstruction before each MAKE_BLOCK insn
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3641
diff changeset
  2118
            nextPut:nr.
695fc26d7207 Block source position support [1/2]: generate SOURCEPOS pseudoinstruction before each MAKE_BLOCK insn
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3641
diff changeset
  2119
    ] ifFalse:[
695fc26d7207 Block source position support [1/2]: generate SOURCEPOS pseudoinstruction before each MAKE_BLOCK insn
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3641
diff changeset
  2120
        nr <= 16rFFFF ifTrue:[
695fc26d7207 Block source position support [1/2]: generate SOURCEPOS pseudoinstruction before each MAKE_BLOCK insn
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3641
diff changeset
  2121
            codeStream 
695fc26d7207 Block source position support [1/2]: generate SOURCEPOS pseudoinstruction before each MAKE_BLOCK insn
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3641
diff changeset
  2122
                nextPut:#sourcepos16;
3667
7884cf07e2c4 Fix in generating SOURCEPOS16/32 pseudo-insns.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3663
diff changeset
  2123
                nextPut:nr;
7884cf07e2c4 Fix in generating SOURCEPOS16/32 pseudo-insns.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3663
diff changeset
  2124
                nextPut:nil.
7884cf07e2c4 Fix in generating SOURCEPOS16/32 pseudo-insns.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3663
diff changeset
  2125
3645
695fc26d7207 Block source position support [1/2]: generate SOURCEPOS pseudoinstruction before each MAKE_BLOCK insn
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3641
diff changeset
  2126
        ] ifFalse:[ 
695fc26d7207 Block source position support [1/2]: generate SOURCEPOS pseudoinstruction before each MAKE_BLOCK insn
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3641
diff changeset
  2127
            nr <= 16rFFFFFFFF ifTrue:[ 
695fc26d7207 Block source position support [1/2]: generate SOURCEPOS pseudoinstruction before each MAKE_BLOCK insn
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3641
diff changeset
  2128
                codeStream 
695fc26d7207 Block source position support [1/2]: generate SOURCEPOS pseudoinstruction before each MAKE_BLOCK insn
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3641
diff changeset
  2129
                    nextPut:#sourcepos32;
3667
7884cf07e2c4 Fix in generating SOURCEPOS16/32 pseudo-insns.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3663
diff changeset
  2130
                    nextPut:nr;
7884cf07e2c4 Fix in generating SOURCEPOS16/32 pseudo-insns.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3663
diff changeset
  2131
                    nextPut:nil;
7884cf07e2c4 Fix in generating SOURCEPOS16/32 pseudo-insns.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3663
diff changeset
  2132
                    nextPut:nil;
7884cf07e2c4 Fix in generating SOURCEPOS16/32 pseudo-insns.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3663
diff changeset
  2133
                    nextPut:nil.
3645
695fc26d7207 Block source position support [1/2]: generate SOURCEPOS pseudoinstruction before each MAKE_BLOCK insn
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3641
diff changeset
  2134
            ].
695fc26d7207 Block source position support [1/2]: generate SOURCEPOS pseudoinstruction before each MAKE_BLOCK insn
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3641
diff changeset
  2135
        ].
695fc26d7207 Block source position support [1/2]: generate SOURCEPOS pseudoinstruction before each MAKE_BLOCK insn
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3641
diff changeset
  2136
    ].
695fc26d7207 Block source position support [1/2]: generate SOURCEPOS pseudoinstruction before each MAKE_BLOCK insn
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3641
diff changeset
  2137
695fc26d7207 Block source position support [1/2]: generate SOURCEPOS pseudoinstruction before each MAKE_BLOCK insn
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3641
diff changeset
  2138
    "Created: / 31-05-2015 / 03:43:44 / Jan Vrany <jan.vrany@fit.cvut.cz>"
695fc26d7207 Block source position support [1/2]: generate SOURCEPOS pseudoinstruction before each MAKE_BLOCK insn
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3641
diff changeset
  2139
!
695fc26d7207 Block source position support [1/2]: generate SOURCEPOS pseudoinstruction before each MAKE_BLOCK insn
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3641
diff changeset
  2140
277
0b599e23a936 set resourceFlag if method has a <resource> definition (prepare for fast search)
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  2141
createMethod
429
ffc4e2ab5581 cleanup
Claus Gittinger <cg@exept.de>
parents: 425
diff changeset
  2142
    |newMethod|
277
0b599e23a936 set resourceFlag if method has a <resource> definition (prepare for fast search)
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  2143
1094
745ec90c42c9 allow parametrizing the method class
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
  2144
    newMethod := self methodClass new:(litArray size).
292
163651658aee Move method's literals form literalArray to indexed instvars.
Stefan Vogel <sv@exept.de>
parents: 287
diff changeset
  2145
    litArray notNil ifTrue:[
2502
4d66e65e1c23 Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2475
diff changeset
  2146
        "/ fixup CheapBlocks method-field in literal array,
4d66e65e1c23 Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2475
diff changeset
  2147
        litArray do:[:aLiteral |
3416
6dd29888acf6 class: ByteCodeCompiler
Stefan Vogel <sv@exept.de>
parents: 3412
diff changeset
  2148
            (aLiteral isBlock and:[aLiteral isCheapBlock]) ifTrue:[
2502
4d66e65e1c23 Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2475
diff changeset
  2149
                aLiteral setMethod:newMethod.
4d66e65e1c23 Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2475
diff changeset
  2150
            ]
4d66e65e1c23 Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2475
diff changeset
  2151
        ].
4d66e65e1c23 Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2475
diff changeset
  2152
        newMethod literals:litArray
277
0b599e23a936 set resourceFlag if method has a <resource> definition (prepare for fast search)
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  2153
    ].
0b599e23a936 set resourceFlag if method has a <resource> definition (prepare for fast search)
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  2154
594
11ae33ac9b34 finally replaced all sends of #numberOfMethodVars with #numerOfVars
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  2155
    newMethod numberOfVars:(self numberOfMethodVars + (maxNumTemp ? 0)).
3648
a7e535c13f00 class: ByteCodeCompiler
Stefan Vogel <sv@exept.de>
parents: 3641
diff changeset
  2156
    newMethod numberOfArgs:(self numberOfMethodArgs).
277
0b599e23a936 set resourceFlag if method has a <resource> definition (prepare for fast search)
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  2157
    newMethod stackSize:(self maxStackDepth).
0b599e23a936 set resourceFlag if method has a <resource> definition (prepare for fast search)
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  2158
0b599e23a936 set resourceFlag if method has a <resource> definition (prepare for fast search)
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  2159
    primitiveResource notNil ifTrue:[
2502
4d66e65e1c23 Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2475
diff changeset
  2160
        newMethod setResourceFlag
4d66e65e1c23 Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2475
diff changeset
  2161
    ].
4d66e65e1c23 Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2475
diff changeset
  2162
2623
a006a3ecfda8 changed: #createMethod
Claus Gittinger <cg@exept.de>
parents: 2536
diff changeset
  2163
    annotations notEmptyOrNil ifTrue:[
3569
d2ca8339f9f7 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3566
diff changeset
  2164
        newMethod annotations: (self annotations copy).
2759
869b00393e4c changed: #createMethod
Claus Gittinger <cg@exept.de>
parents: 2756
diff changeset
  2165
        (Smalltalk at: #NamespaceAwareLookup) notNil ifTrue:[
3569
d2ca8339f9f7 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3566
diff changeset
  2166
            (annotations contains: [:annotation| (annotation key) == #namespace:])
2502
4d66e65e1c23 Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2475
diff changeset
  2167
                ifTrue:[newMethod lookupObject:NamespaceAwareLookup instance]
4d66e65e1c23 Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2475
diff changeset
  2168
        ]
277
0b599e23a936 set resourceFlag if method has a <resource> definition (prepare for fast search)
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  2169
    ].
0b599e23a936 set resourceFlag if method has a <resource> definition (prepare for fast search)
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  2170
0b599e23a936 set resourceFlag if method has a <resource> definition (prepare for fast search)
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  2171
    ^ newMethod
0b599e23a936 set resourceFlag if method has a <resource> definition (prepare for fast search)
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  2172
2502
4d66e65e1c23 Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2475
diff changeset
  2173
    "Created: / 18-05-1996 / 16:33:17 / cg"
4d66e65e1c23 Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2475
diff changeset
  2174
    "Modified: / 24-06-1996 / 12:32:50 / stefan"
4d66e65e1c23 Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2475
diff changeset
  2175
    "Modified: / 10-07-2010 / 21:40:10 / Jan Vrany <jan.vrany@fit.cvut.cz>"
2759
869b00393e4c changed: #createMethod
Claus Gittinger <cg@exept.de>
parents: 2756
diff changeset
  2176
    "Modified: / 29-11-2011 / 11:22:15 / cg"
277
0b599e23a936 set resourceFlag if method has a <resource> definition (prepare for fast search)
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  2177
!
0b599e23a936 set resourceFlag if method has a <resource> definition (prepare for fast search)
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  2178
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  2179
genByteCodeFrom:symbolicCodeArray
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  2180
    "convert symbolicCode into bytecodes"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  2181
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  2182
    |symIndex    "{Class: SmallInteger }"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  2183
     codeSize    "{Class: SmallInteger }"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  2184
     symCodeSize "{Class: SmallInteger }"
429
ffc4e2ab5581 cleanup
Claus Gittinger <cg@exept.de>
parents: 425
diff changeset
  2185
     index nextSym addr
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  2186
     codeSymbol nargs needRetry
429
ffc4e2ab5581 cleanup
Claus Gittinger <cg@exept.de>
parents: 425
diff changeset
  2187
     stackDepth relocInfo level nvars round|
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  2188
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  2189
    symbolicCodeArray isNil ifTrue:[^ self].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  2190
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  2191
    round := 0.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  2192
    needRetry := true.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  2193
    symCodeSize := symbolicCodeArray size.
192
5f5ecdcffc67 share common byteCodes - just an idea and more is needed for most compact code
Claus Gittinger <cg@exept.de>
parents: 191
diff changeset
  2194
    ShareCode ifTrue:[
3071
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2195
        codeBytes := self checkForCommonCode:symbolicCodeArray.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2196
        codeBytes notNil ifTrue:[
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2197
            ^ self
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2198
        ].
192
5f5ecdcffc67 share common byteCodes - just an idea and more is needed for most compact code
Claus Gittinger <cg@exept.de>
parents: 191
diff changeset
  2199
    ].
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  2200
    codeSize := symCodeSize.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  2201
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  2202
    [needRetry] whileTrue:[
3071
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2203
        stackDepth := 0.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2204
        maxStackDepth := 0.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2205
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2206
        codeBytes := ByteArray uninitializedNew:codeSize.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2207
        relocInfo := Array basicNew:(codeSize + 1).
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2208
        symIndex := 1.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2209
        codeIndex := 1.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2210
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2211
        needRetry := false.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2212
        round := round + 1.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2213
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2214
        [symIndex <= symCodeSize] whileTrue:[
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2215
            relocInfo at:symIndex put:codeIndex.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2216
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2217
            codeSymbol := symbolicCodeArray at:symIndex.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2218
            symIndex := symIndex + 1.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2219
            stackDelta := 0.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2220
            extra := extraLiteral := extraOP := nil.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2221
            lineno := false.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2222
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2223
            self appendByteCodeFor:codeSymbol.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2224
            extraOP notNil ifTrue:[
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2225
                self appendByte:extraOP.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2226
                symIndex := symIndex + 1.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2227
            ].
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2228
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2229
            extraLiteral notNil ifTrue:[
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2230
                self addLiteral:extraLiteral
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2231
            ].
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2232
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2233
            lineno ifTrue:[
3162
d7d32920c1b4 Emit #lineno16 byte codes only, if line number really changes
Stefan Vogel <sv@exept.de>
parents: 3161
diff changeset
  2234
                "the instruction requires a line number byte"
3071
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2235
                self appendByte:((symbolicCodeArray at:symIndex) min:255).
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2236
                symIndex := symIndex + 1.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2237
                codeSymbol == #lineno16 ifTrue:[
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2238
                    self appendByte:((symbolicCodeArray at:symIndex) min:255).
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2239
                    symIndex := symIndex + 1
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2240
                ]
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2241
            ].
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2242
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2243
            extra notNil ifTrue:[
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2244
                nextSym := symbolicCodeArray at:symIndex.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2245
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2246
                (extra == #number) ifTrue:[
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2247
                    index := nextSym.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2248
                    symIndex := symIndex + 1.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2249
                    self appendSignedByte:index
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2250
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2251
                ] ifFalse:[ (extra == #number16) ifTrue:[
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2252
                    index := nextSym.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2253
                    symIndex := symIndex + 2.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2254
                    self appendSignedWord:index
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2255
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2256
                ] ifFalse:[ (extra == #unsigned16) ifTrue:[
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2257
                    index := nextSym.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2258
                    symIndex := symIndex + 2.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2259
                    self appendWord:index
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2260
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2261
                ] ifFalse:[ (extra == #unsigned32) ifTrue:[
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2262
                    index := nextSym.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2263
                    symIndex := symIndex + 4.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2264
                    self appendLongWord:index
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2265
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2266
                ] ifFalse:[ (extra == #index) ifTrue:[
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2267
                    index := nextSym.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2268
                    symIndex := symIndex + 1.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2269
                    self appendByte:index
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2270
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2271
                ] ifFalse:[ (extra == #lit) ifTrue:[
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2272
                    index := self addLiteral:nextSym.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2273
                    symIndex := symIndex + 1.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2274
                    self appendByte:index
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2275
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2276
                ] ifFalse:[ (extra == #speciallit) ifTrue:[
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2277
                    index := self addLiteral:nextSym.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2278
                    index > 255 ifTrue:[
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2279
                        self codeGeneratorError:'too many globals (' ,
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2280
                                        (symbolicCodeArray at:symIndex) ,
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2281
                                        ' index=' , index printString ,
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2282
                                        ') in method - please simplify'.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2283
                        ^ #Error
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2284
                    ].
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2285
                    symIndex := symIndex + 1.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2286
                    self appendByte:index.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2287
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2288
                ] ifFalse:[ (extra == #speciallitS) ifTrue:[
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2289
                    index := nextSym.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2290
                    symIndex := symIndex + 1.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2291
                    self appendByte:index.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2292
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2293
                ] ifFalse:[ (extra == #speciallitL) ifTrue:[
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2294
                    index := nextSym.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2295
                    symIndex := symIndex + 2.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2296
                    self appendWord:index.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2297
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2298
                ] ifFalse:[ (extra == #offset) ifTrue:[
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2299
                    relocInfo at:symIndex put:codeIndex.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2300
                    self addReloc:symIndex.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2301
                    symIndex := symIndex + 1.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2302
                    self appendByte:0
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2303
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2304
                ] ifFalse:[ (extra == #indexLevel) ifTrue:[
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2305
                    index := nextSym.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2306
                    symIndex := symIndex + 1.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2307
                    self appendByte:index.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2308
                    level := symbolicCodeArray at:symIndex.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2309
                    symIndex := symIndex + 1.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2310
                    self appendByte:level
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2311
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2312
                ] ifFalse:[ (extra == #offsetNvarNarg) ifTrue:[
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2313
                    relocInfo at:symIndex put:codeIndex.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2314
                    self addReloc:symIndex.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2315
                    symIndex := symIndex + 1.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2316
                    self appendEmptyByte.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2317
                    nvars := symbolicCodeArray at:symIndex.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2318
                    symIndex := symIndex + 1.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2319
                    self appendByte:nvars.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2320
                    level := symbolicCodeArray at:symIndex.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2321
                    symIndex := symIndex + 1.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2322
                    self appendByte:level
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2323
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2324
                ] ifFalse:[ (extra == #absoffset) ifTrue:[
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2325
                    relocInfo at:symIndex put:codeIndex.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2326
                    self addReloc:symIndex.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2327
                    addr := symbolicCodeArray at:symIndex.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2328
                    symIndex := symIndex + 1.
3412
4d45e15e0de8 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3397
diff changeset
  2329
                    self appendWord:addr.
3071
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2330
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2331
                ] ifFalse:[ (extra == #absoffsetNvarNarg) ifTrue:[
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2332
                    relocInfo at:symIndex put:codeIndex.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2333
                    self addReloc:symIndex.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2334
                    addr := symbolicCodeArray at:symIndex.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2335
                    symIndex := symIndex + 1.
3412
4d45e15e0de8 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3397
diff changeset
  2336
                    self appendWord:addr.
3071
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2337
                    nvars := symbolicCodeArray at:symIndex.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2338
                    symIndex := symIndex + 1.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2339
                    self appendByte:nvars.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2340
                    level := symbolicCodeArray at:symIndex.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2341
                    symIndex := symIndex + 1.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2342
                    self appendByte:level
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2343
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2344
                ] ifFalse:[ (extra == #special) ifTrue:[
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2345
                    ((codeSymbol == #send)
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2346
                     or:[codeSymbol == #sendSelf
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2347
                     or:[codeSymbol == #superSend]]) ifTrue:[
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2348
                        index := nextSym.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2349
                        symIndex := symIndex + 1.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2350
                        nargs := symbolicCodeArray at:symIndex.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2351
                        symIndex := symIndex + 1.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2352
                        self appendByte:nargs.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2353
                        self appendByte:index.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2354
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2355
                        (codeSymbol == #superSend) ifTrue:[
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2356
                            index := symbolicCodeArray at:symIndex.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2357
                            symIndex := symIndex + 1.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2358
                            self appendByte:index
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2359
                        ].
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2360
                        stackDelta := nargs negated.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2361
                        codeSymbol == #sendSelf ifTrue:[
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2362
                            stackDelta := stackDelta + 1
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2363
                        ]
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2364
                    ] ifFalse:[ (codeSymbol == #sendDrop) ifTrue:[
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2365
                        index := nextSym.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2366
                        symIndex := symIndex + 1.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2367
                        nargs := symbolicCodeArray at:symIndex.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2368
                        symIndex := symIndex + 1.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2369
                        self appendByte:nargs.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2370
                        self appendByte:index.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2371
                        stackDelta := (nargs + 1) negated
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2372
                    ]]
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2373
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2374
                ] ifFalse:[ (extra == #specialL) ifTrue:[
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2375
                    ((codeSymbol == #sendL)
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2376
                     or:[codeSymbol == #sendDropL
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2377
                     or:[codeSymbol == #sendSelfL
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2378
                     or:[codeSymbol == #superSendL]]]) ifTrue:[
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2379
                        index := nextSym.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2380
                        symIndex := symIndex + 2.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2381
                        nargs := symbolicCodeArray at:symIndex.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2382
                        symIndex := symIndex + 1.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2383
                        self appendByte:nargs.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2384
                        self appendWord:index.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2385
                        (codeSymbol == #superSendL) ifTrue:[
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2386
                            index := symbolicCodeArray at:symIndex.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2387
                            symIndex := symIndex + 2.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2388
                            self appendWord:index.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2389
                        ].
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2390
                        stackDelta := nargs negated.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2391
                        codeSymbol == #sendSelfL ifTrue:[
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2392
                            stackDelta := stackDelta + 1
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2393
                        ]
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2394
                    ]
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2395
                ] ifFalse:[ (extra == #specialSend) ifTrue:[
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2396
                    index := nextSym.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2397
                    symIndex := symIndex + 1.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2398
                    self appendByte:index.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2399
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2400
                ] ifFalse:[ (extra == #specialVL) ifTrue:[
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2401
                    ((codeSymbol == #sendVL)
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2402
                     or:[codeSymbol == #superSendVL]) ifTrue:[
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2403
                        index := nextSym.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2404
                        symIndex := symIndex + 4.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2405
                        nargs := symbolicCodeArray at:symIndex.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2406
                        symIndex := symIndex + 1.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2407
                        self appendByte:nargs.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2408
                        self appendLongWord:index.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2409
                        (codeSymbol == #superSendVL) ifTrue:[
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2410
                            index := symbolicCodeArray at:symIndex.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2411
                            symIndex := symIndex + 4.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2412
                            self appendLongWord:index.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2413
                        ].
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2414
                        stackDelta := nargs negated.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2415
                    ]
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2416
                ] ifFalse:[
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2417
                    "/ self halt:'internal error'
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2418
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2419
                ]]]]]]]]]]]]]]]]]]
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2420
            ].
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2421
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2422
            stackDepth := stackDepth + stackDelta.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2423
            (stackDepth > maxStackDepth) ifTrue:[
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2424
                maxStackDepth := stackDepth
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2425
            ]
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2426
        ].
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2427
        relocInfo at:symIndex put:codeIndex.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2428
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2429
        needRetry ifFalse:[
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2430
            "
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2431
             now relocate - returns true if ok, false if we have to do it again
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2432
             (when short jumps have been changed to long jumps)
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2433
            "
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2434
            relocList notNil ifTrue:[
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2435
                needRetry := (self relocateWith:symbolicCodeArray relocInfo:relocInfo) not.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2436
                "
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2437
                 if returned with false, a relative jump was made into
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2438
                 an absolute jump - need to start over with one more byte space
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2439
                "
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2440
                needRetry ifTrue:[
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2441
                    relocList := nil.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2442
                    codeSize := codeSize + 1.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2443
                ]
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2444
            ]
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2445
        ] ifTrue:[
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2446
            'Compiler [info]: compiling again ...' infoPrintCR.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2447
        ]
128
61eb0b356b89 change classes versionString when class changes (prepare for sourceCode system)
Claus Gittinger <cg@exept.de>
parents: 126
diff changeset
  2448
    ].
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  2449
    "code printNL."
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  2450
    ^ errorFlag
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  2451
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  2452
    "Modified: 3.9.1995 / 12:59:43 / claus"
475
5bce2cf3dadc new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 459
diff changeset
  2453
    "Modified: 10.1.1997 / 15:17:51 / cg"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  2454
!
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  2455
937
21ca5ab983b7 support exception handle/raise/unwind pragmas
Claus Gittinger <cg@exept.de>
parents: 935
diff changeset
  2456
genSpecialStatement:selector on:codeStream
1738
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2457
    "/ generate: thisContext selector (to force a context).
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2458
1815
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  2459
    (StatementNode
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  2460
	expression:(UnaryNode receiver:(VariableNode type:#ThisContext context:contextToEvaluateIn)
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  2461
			      selector:selector))
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  2462
	    codeForSideEffectOn:codeStream inBlock:nil for:self.
937
21ca5ab983b7 support exception handle/raise/unwind pragmas
Claus Gittinger <cg@exept.de>
parents: 935
diff changeset
  2463
!
21ca5ab983b7 support exception handle/raise/unwind pragmas
Claus Gittinger <cg@exept.de>
parents: 935
diff changeset
  2464
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  2465
genSymbolicCode
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  2466
    "traverse the parse-tree producing symbolicCode - return the codeArray"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  2467
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  2468
    |codeStream code thisStatement lastStatement|
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  2469
4384
aee25576d864 DBG: teach `ByteCodeCompiler` to generate Smalltalk/X debug info
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4275
diff changeset
  2470
    diinfo := DIInfo new.
aee25576d864 DBG: teach `ByteCodeCompiler` to generate Smalltalk/X debug info
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4275
diff changeset
  2471
    litArray := OrderedCollection with: diinfo.
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  2472
    codeStream := WriteStream on:(OrderedCollection new:100).
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  2473
937
21ca5ab983b7 support exception handle/raise/unwind pragmas
Claus Gittinger <cg@exept.de>
parents: 935
diff changeset
  2474
    primitiveContextInfo notNil ifTrue:[
4369
c90356b6ad6b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4343
diff changeset
  2475
        (primitiveContextInfo includes:('exception:' -> #unwind)) ifTrue:[
c90356b6ad6b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4343
diff changeset
  2476
            self genSpecialStatement:#markForUnwind on:codeStream
c90356b6ad6b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4343
diff changeset
  2477
        ].
c90356b6ad6b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4343
diff changeset
  2478
        (primitiveContextInfo includes:('exception:' -> #handle)) ifTrue:[
c90356b6ad6b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4343
diff changeset
  2479
            self genSpecialStatement:#markForHandle on:codeStream
c90356b6ad6b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4343
diff changeset
  2480
        ].
c90356b6ad6b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4343
diff changeset
  2481
        (primitiveContextInfo includes:('exception:' -> #raise)) ifTrue:[
c90356b6ad6b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4343
diff changeset
  2482
            self genSpecialStatement:#markForRaise on:codeStream
c90356b6ad6b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4343
diff changeset
  2483
        ].
937
21ca5ab983b7 support exception handle/raise/unwind pragmas
Claus Gittinger <cg@exept.de>
parents: 935
diff changeset
  2484
    ].
21ca5ab983b7 support exception handle/raise/unwind pragmas
Claus Gittinger <cg@exept.de>
parents: 935
diff changeset
  2485
1738
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2486
    self startCodeGenerationHookOn:codeStream.
1312
3393e713d8e8 preps for special variables
Claus Gittinger <cg@exept.de>
parents: 1300
diff changeset
  2487
    self generateVariables:methodVars on:codeStream.
3393e713d8e8 preps for special variables
Claus Gittinger <cg@exept.de>
parents: 1300
diff changeset
  2488
3416
6dd29888acf6 class: ByteCodeCompiler
Stefan Vogel <sv@exept.de>
parents: 3412
diff changeset
  2489
    (tree notNil and:[tree isMethodNode]) ifTrue:[
4369
c90356b6ad6b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4343
diff changeset
  2490
        "kludge for VW compat."
c90356b6ad6b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4343
diff changeset
  2491
        tree codeForSideEffectOn:codeStream inBlock:nil for:self.
c90356b6ad6b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4343
diff changeset
  2492
        lastStatement := tree statements last.
1790
a40965dae8cb tree compilation support
Claus Gittinger <cg@exept.de>
parents: 1778
diff changeset
  2493
    ] ifFalse:[
4369
c90356b6ad6b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4343
diff changeset
  2494
        thisStatement := tree.
c90356b6ad6b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4343
diff changeset
  2495
        [thisStatement notNil] whileTrue:[
c90356b6ad6b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4343
diff changeset
  2496
            lastStatement := thisStatement.
c90356b6ad6b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4343
diff changeset
  2497
            thisStatement codeForSideEffectOn:codeStream inBlock:nil for:self.
c90356b6ad6b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4343
diff changeset
  2498
            thisStatement := thisStatement nextStatement
c90356b6ad6b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4343
diff changeset
  2499
        ].
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  2500
    ].
1738
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2501
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  2502
    (lastStatement isNil or:[lastStatement isReturnNode not])
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  2503
    ifTrue:[
4369
c90356b6ad6b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4343
diff changeset
  2504
        "not a return - add retSelf"
c90356b6ad6b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4343
diff changeset
  2505
        "
c90356b6ad6b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4343
diff changeset
  2506
         if the last statement was a send for side-effect,
c90356b6ad6b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4343
diff changeset
  2507
         replace the previous drop by a retSelf.
c90356b6ad6b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4343
diff changeset
  2508
         In this case we have to keep an extra retSelf bacause
c90356b6ad6b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4343
diff changeset
  2509
         it could be a jump target.
c90356b6ad6b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4343
diff changeset
  2510
        "
c90356b6ad6b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4343
diff changeset
  2511
        (lastStatement notNil
c90356b6ad6b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4343
diff changeset
  2512
         and:[(code := codeStream contents) notNil
c90356b6ad6b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4343
diff changeset
  2513
         and:[code size ~~ 0
c90356b6ad6b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4343
diff changeset
  2514
         and:[code last == #drop]]]) ifTrue:[
c90356b6ad6b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4343
diff changeset
  2515
            codeStream backStep.
c90356b6ad6b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4343
diff changeset
  2516
            codeStream nextPut:#retSelf
c90356b6ad6b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4343
diff changeset
  2517
        ].
c90356b6ad6b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4343
diff changeset
  2518
        codeStream nextPut:#retSelf
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  2519
    ].
4384
aee25576d864 DBG: teach `ByteCodeCompiler` to generate Smalltalk/X debug info
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4275
diff changeset
  2520
    self genDbgInfo.
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  2521
    ^ codeStream contents
328
c63c54ff95d3 Optimize double #retSelf.
Stefan Vogel <sv@exept.de>
parents: 325
diff changeset
  2522
1790
a40965dae8cb tree compilation support
Claus Gittinger <cg@exept.de>
parents: 1778
diff changeset
  2523
    "Modified: / 15-08-1996 / 17:35:02 / stefan"
a40965dae8cb tree compilation support
Claus Gittinger <cg@exept.de>
parents: 1778
diff changeset
  2524
    "Modified: / 06-08-2006 / 15:03:14 / cg"
4384
aee25576d864 DBG: teach `ByteCodeCompiler` to generate Smalltalk/X debug info
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4275
diff changeset
  2525
    "Modified: / 24-07-2018 / 16:06:31 / Jan Vrany <jan.vrany@fit.cvut.cz>"
4369
c90356b6ad6b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4343
diff changeset
  2526
    "Modified: / 01-03-2019 / 14:48:06 / Claus Gittinger"
128
61eb0b356b89 change classes versionString when class changes (prepare for sourceCode system)
Claus Gittinger <cg@exept.de>
parents: 126
diff changeset
  2527
!
61eb0b356b89 change classes versionString when class changes (prepare for sourceCode system)
Claus Gittinger <cg@exept.de>
parents: 126
diff changeset
  2528
1312
3393e713d8e8 preps for special variables
Claus Gittinger <cg@exept.de>
parents: 1300
diff changeset
  2529
generateVariables:varCollection on:codeStream
3393e713d8e8 preps for special variables
Claus Gittinger <cg@exept.de>
parents: 1300
diff changeset
  2530
    varCollection isNil ifTrue:[^ self].
3393e713d8e8 preps for special variables
Claus Gittinger <cg@exept.de>
parents: 1300
diff changeset
  2531
3393e713d8e8 preps for special variables
Claus Gittinger <cg@exept.de>
parents: 1300
diff changeset
  2532
    varCollection do:[:eachVar |
1815
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  2533
	eachVar type notNil ifTrue:[
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  2534
	    "/ generate code to set it up.
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  2535
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  2536
	    (AssignmentNode
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  2537
		variable:(self nodeForMethodVariable:eachVar name)
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  2538
		expression:(eachVar expressionForSetup))
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  2539
		    codeForSideEffectOn:codeStream inBlock:nil for:self.
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  2540
	]
1312
3393e713d8e8 preps for special variables
Claus Gittinger <cg@exept.de>
parents: 1300
diff changeset
  2541
    ]
3393e713d8e8 preps for special variables
Claus Gittinger <cg@exept.de>
parents: 1300
diff changeset
  2542
!
3393e713d8e8 preps for special variables
Claus Gittinger <cg@exept.de>
parents: 1300
diff changeset
  2543
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  2544
relocateWith:symbolicCodeArray relocInfo:relocInfo
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  2545
    "helper for genByteCodeFrom - relocate code using relocInfo.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  2546
     if relocation fails badly (due to long relative jumps) patch
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  2547
     symbolicCode to use absolute jumps instead and return false
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  2548
     (genByteCodeFrom will then try again). Otherwise return true.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  2549
     Also, on the fly, jumps to jumps and jumps to return are handled."
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  2550
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  2551
    |delta       "{Class: SmallInteger }"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  2552
     codePos     "{Class: SmallInteger }"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  2553
     opCodePos   "{Class: SmallInteger }"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  2554
     codeOffset  "{Class: SmallInteger }"
1815
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  2555
     symOffset
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  2556
     opcode      "{Class: SmallInteger }"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  2557
     dstOpcode jumpTarget
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  2558
     jumpCode deleteSet|
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  2559
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  2560
    deleteSet := OrderedCollection new.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  2561
    relocList do:[:sIndex |
4417
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2562
        "have to relocate symCode at sIndex ..."
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2563
        symOffset := symbolicCodeArray at:sIndex.   "the target in the symbolic code"
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2564
        codePos := relocInfo at:sIndex.             "position of the offet in byte code"
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2565
        codeOffset := relocInfo at:symOffset.       "position of the target in byte code"
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2566
        delta := codeOffset - codePos - 1.
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2567
        opCodePos := codePos - 1.
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2568
        opcode := codeBytes at:opCodePos.
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2569
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2570
        (opcode between:190 and:199) ifTrue:[
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2571
            "an absolute jump/makeBlock"
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2572
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2573
            codeBytes at:codePos put:(codeOffset bitAnd:16rFF).
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2574
            codeBytes at:(codePos + 1) put:(codeOffset bitShift:-8)
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2575
        ] ifFalse:[
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2576
            "get jump-code from long and vlong codes"
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2577
            (opcode between:50 and:59) ifFalse:[
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2578
                (opcode between:60 and:69) ifTrue:[
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2579
                    opcode := opcode - 10
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2580
                ] ifFalse:[
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2581
                    (opcode between:70 and:79) ifTrue:[
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2582
                        opcode := opcode - 20
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2583
                    ] ifFalse:[
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2584
                        self codeGeneratorError:'invalid code to relocate'
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2585
                    ]
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2586
                ].
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2587
            ].
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2588
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2589
            "optimize jump to return and jump to jump"
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2590
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2591
            (opcode == 54) ifTrue:[
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2592
                "a jump"
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2593
                dstOpcode := symbolicCodeArray at:symOffset.
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2594
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2595
                (#(retSelf retTop retNil retTrue retFalse ret0 "blockRetTop") includes:dstOpcode) ifTrue:[
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2596
                    "a jump to a return - put in the return instead jump"
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2597
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2598
                    symbolicCodeArray at:(sIndex - 1) put:dstOpcode.
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2599
                    symbolicCodeArray at:sIndex put:dstOpcode.
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2600
                    codeBytes at:opCodePos put:(self byteCodeFor:dstOpcode).
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2601
                    delta := 0.
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2602
                    deleteSet add:sIndex.
1815
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  2603
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  2604
"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  2605
'jump to return at: ' print. (sIndex - 1) printNL.
1815
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  2606
"
4417
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2607
                ] ifFalse:[
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2608
                    (dstOpcode == #jump) ifTrue:[
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2609
                        "jump to jump to be done soon"
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2610
                        jumpTarget := symbolicCodeArray at:(symOffset + 1).
1815
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  2611
"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  2612
'jump to jump at: ' print. (sIndex - 1) print.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  2613
'  newTarget:' print. jumpTarget printNL.
1815
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  2614
"
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  2615
4417
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2616
                        symbolicCodeArray at:sIndex put:jumpTarget.
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2617
                        symOffset := jumpTarget.
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2618
                        codeOffset := relocInfo at:symOffset.
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2619
                        delta := codeOffset - codePos - 1.
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2620
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2621
                        "continue with new delta"
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2622
                    ]
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2623
                ]
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2624
            ].
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2625
            (#[50 51 52 53 56 57 58 59] includes:opcode) ifTrue:[
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2626
                "a conditional jump"
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2627
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2628
                dstOpcode := symbolicCodeArray at:symOffset.
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2629
                (dstOpcode == #jump) ifTrue:[
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2630
                    "conditional jump to unconditional jump"
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2631
                    jumpTarget := symbolicCodeArray at:(symOffset + 1).
1815
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  2632
"
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  2633
'cond jump to jump at: ' print. (sIndex - 1) print.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  2634
'  newTarget:' print. jumpTarget printNL.
1815
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  2635
"
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  2636
4417
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2637
                    symbolicCodeArray at:sIndex put:jumpTarget.
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2638
                    symOffset := jumpTarget.
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2639
                    codeOffset := relocInfo at:symOffset.
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2640
                    delta := codeOffset - codePos - 1.
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2641
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2642
                    "continue with new delta"
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2643
                ].
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2644
            ].
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2645
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2646
            (delta >= 0) ifTrue:[
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2647
                (delta > 127) ifTrue:[
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2648
                    (opcode between:50 and:59) ifFalse:[
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2649
                        self codeGeneratorError:'invalid code to relocate'
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2650
                    ] ifTrue:[
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2651
                        (delta > 255) ifTrue:[
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2652
                            "change jmp into vljmp ..."
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2653
                            codeBytes at:opCodePos put:(opcode + 20).
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2654
                            delta := delta - 256
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2655
                        ] ifFalse:[
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2656
                            "change jmp into ljmp ..."
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2657
                            codeBytes at:opCodePos put:(opcode + 10).
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2658
                            delta := delta - 128
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2659
                        ].
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2660
                        (delta > 127) ifTrue:[
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2661
                            "change symbolic into a jump absolute and fail"
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2662
                            jumpCode := symbolicCodeArray at:(sIndex - 1).
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2663
                            symbolicCodeArray at:(sIndex - 1) put:(self absJumpFromJump:jumpCode).
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2664
                            symbolicCodeArray at:sIndex put:symOffset.
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  2665
"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  2666
'change short into abs jump' printNL.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  2667
"
4417
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2668
                            deleteSet do:[:d | relocList remove:d].
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2669
                            ^ false
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2670
                        ]
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2671
                    ].
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2672
                ].
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2673
                codeBytes at:codePos put:delta
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2674
            ] ifFalse:[
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2675
                (delta < -128) ifTrue:[
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2676
                    (opcode between:50 and:59) ifFalse:[
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2677
                        self codeGeneratorError:'invalid code to relocate'
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2678
                    ] ifTrue:[
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2679
                        (delta < -256) ifTrue:[
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2680
                            "change jmp into vljmp ..."
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2681
                            codeBytes at:opCodePos put:(opcode + 20).
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2682
                            delta := delta + 256
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2683
                        ] ifFalse:[
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2684
                            "change jmp into ljmp ..."
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2685
                            codeBytes at:opCodePos put:(opcode + 10).
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2686
                            delta := delta + 128
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2687
                        ].
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2688
                        (delta < -128) ifTrue:[
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2689
                            "change symbolic into a jump absolute and fail"
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2690
                            jumpCode := symbolicCodeArray at:(sIndex - 1).
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2691
                            symbolicCodeArray at:(sIndex - 1) put:(self absJumpFromJump:jumpCode).
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2692
                            symbolicCodeArray at:sIndex put:symOffset.
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  2693
"
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  2694
'change short into abs jump' printNL.
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  2695
"
4417
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2696
                            deleteSet do:[:d | relocList remove:d].
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2697
                            ^ false
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2698
                        ]
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2699
                    ]
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2700
                ].
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2701
                codeBytes at:codePos put:(256 + delta)
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2702
            ]
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2703
        ]
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  2704
    ].
4417
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2705
    self hasError ifTrue:[
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2706
        self codeGeneratorError:'relocation range error'
141
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  2707
    ].
d378d997aab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 137
diff changeset
  2708
    ^ true
4417
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2709
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  2710
    "Modified: / 23-05-2019 / 09:28:03 / Claus Gittinger"
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
  2711
! !
49
02660b790c3e *** empty log message ***
claus
parents: 46
diff changeset
  2712
556
4a3775ada5d2 preps to move variables of inlined blocks into outer context
Claus Gittinger <cg@exept.de>
parents: 549
diff changeset
  2713
!ByteCodeCompiler methodsFor:'code generation helpers'!
4a3775ada5d2 preps to move variables of inlined blocks into outer context
Claus Gittinger <cg@exept.de>
parents: 549
diff changeset
  2714
1738
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2715
absJumpFromJump:code
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2716
    "given a jump-symbolic code, return corresponding absolute jump"
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2717
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2718
    JumpToAbsJump isNil ifTrue:[
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2719
	JumpToAbsJump := IdentityDictionary new.
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2720
	JumpToAbsJump at:#jump put:#jumpabs.
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2721
	JumpToAbsJump at:#trueJump put:#trueJumpabs.
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2722
	JumpToAbsJump at:#falseJump put:#falseJumpabs.
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2723
	JumpToAbsJump at:#nilJump put:#nilJumpabs.
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2724
	JumpToAbsJump at:#notNilJump put:#notNilJumpabs.
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2725
	JumpToAbsJump at:#eqJump put:#eqJumpabs.
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2726
	JumpToAbsJump at:#notEqJump put:#notEqJumpabs.
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2727
	JumpToAbsJump at:#zeroJump put:#zeroJumpabs.
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2728
	JumpToAbsJump at:#notZeroJump put:#notZeroJumpabs.
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2729
	JumpToAbsJump at:#makeBlock put:#makeBlockabs.
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2730
    ].
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2731
    ^ JumpToAbsJump at:code
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2732
!
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2733
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2734
addLiteral:anObject
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2735
    "add a literal to the literalArray - watch for and eliminate
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2736
     duplicates. return the index of the literal in the Array"
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2737
3856
efac06865f8d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3765
diff changeset
  2738
    |index oldLit class sharable sharableValue|
1738
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2739
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2740
    litArray isNil ifTrue:[
2337
dd5065f997b9 changed: #addLiteral:
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
  2741
        litArray := OrderedCollection with:anObject.
dd5065f997b9 changed: #addLiteral:
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
  2742
        ^ 1
1738
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2743
    ].
1798
9491f62eac86 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1792
diff changeset
  2744
3856
efac06865f8d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3765
diff changeset
  2745
    sharable := sharableValue := false.
1810
977902a043fe tuned commin literal detection code
Claus Gittinger <cg@exept.de>
parents: 1799
diff changeset
  2746
    class := anObject class.
1815
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  2747
    class == Symbol
3856
efac06865f8d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3765
diff changeset
  2748
        ifTrue:[ sharable := true ]
2337
dd5065f997b9 changed: #addLiteral:
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
  2749
        ifFalse:[
3765
2db778a93b33 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 3763
diff changeset
  2750
            anObject isImmutable ifTrue:[
3856
efac06865f8d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3765
diff changeset
  2751
                sharable := true
3765
2db778a93b33 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 3763
diff changeset
  2752
            ] ifFalse:[    
2db778a93b33 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 3763
diff changeset
  2753
                ((class == String) or:[class == Array or:[class == ByteArray]]) ifTrue:[
2db778a93b33 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 3763
diff changeset
  2754
                    anObject isEmpty ifTrue:[
3856
efac06865f8d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3765
diff changeset
  2755
                        sharable := true
3765
2db778a93b33 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 3763
diff changeset
  2756
                    ]
2db778a93b33 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 3763
diff changeset
  2757
                ] ifFalse:[
2db778a93b33 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 3763
diff changeset
  2758
                    ((class == Float) or:[class == Fraction or:[class == LargeInteger]]) ifTrue:[
3856
efac06865f8d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3765
diff changeset
  2759
                        sharableValue := true
3765
2db778a93b33 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 3763
diff changeset
  2760
                    ]
2337
dd5065f997b9 changed: #addLiteral:
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
  2761
                ]
3765
2db778a93b33 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 3763
diff changeset
  2762
            ].
2337
dd5065f997b9 changed: #addLiteral:
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
  2763
        ].
1810
977902a043fe tuned commin literal detection code
Claus Gittinger <cg@exept.de>
parents: 1799
diff changeset
  2764
3856
efac06865f8d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3765
diff changeset
  2765
    (sharable not and:[sharableValue not]) ifTrue:[
2337
dd5065f997b9 changed: #addLiteral:
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
  2766
        litArray add:anObject.
dd5065f997b9 changed: #addLiteral:
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
  2767
        index := litArray size.
dd5065f997b9 changed: #addLiteral:
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
  2768
        ^ index.
1810
977902a043fe tuned commin literal detection code
Claus Gittinger <cg@exept.de>
parents: 1799
diff changeset
  2769
    ].
977902a043fe tuned commin literal detection code
Claus Gittinger <cg@exept.de>
parents: 1799
diff changeset
  2770
977902a043fe tuned commin literal detection code
Claus Gittinger <cg@exept.de>
parents: 1799
diff changeset
  2771
    "/ searching a dictionary is *much* faster; the code below starts to
1798
9491f62eac86 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1792
diff changeset
  2772
    "/ keep track of literals whenever we have collected more than a threshold
9491f62eac86 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1792
diff changeset
  2773
    allLiterals notNil ifTrue:[
3856
efac06865f8d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3765
diff changeset
  2774
        sharable ifTrue:[
2337
dd5065f997b9 changed: #addLiteral:
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
  2775
            index := allLiterals at:anObject ifAbsent:nil.
dd5065f997b9 changed: #addLiteral:
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
  2776
            index isNil ifTrue:[
dd5065f997b9 changed: #addLiteral:
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
  2777
                litArray add:anObject.
dd5065f997b9 changed: #addLiteral:
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
  2778
                index := litArray size.
dd5065f997b9 changed: #addLiteral:
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
  2779
                allLiterals at:anObject put:index.
dd5065f997b9 changed: #addLiteral:
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
  2780
                ^ index.
dd5065f997b9 changed: #addLiteral:
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
  2781
            ].
dd5065f997b9 changed: #addLiteral:
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
  2782
            (litArray at:index) class ~~ anObject class ifTrue:[
dd5065f997b9 changed: #addLiteral:
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
  2783
                index := nil.
dd5065f997b9 changed: #addLiteral:
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
  2784
            ].
dd5065f997b9 changed: #addLiteral:
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
  2785
        ].
1798
9491f62eac86 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1792
diff changeset
  2786
    ].
1810
977902a043fe tuned commin literal detection code
Claus Gittinger <cg@exept.de>
parents: 1799
diff changeset
  2787
    index isNil ifTrue:[
2337
dd5065f997b9 changed: #addLiteral:
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
  2788
        index := litArray identityIndexOf:anObject.
1810
977902a043fe tuned commin literal detection code
Claus Gittinger <cg@exept.de>
parents: 1799
diff changeset
  2789
    ].
1738
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2790
    (index == 0) ifTrue:[
2337
dd5065f997b9 changed: #addLiteral:
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
  2791
        "
dd5065f997b9 changed: #addLiteral:
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
  2792
         reuse constants if same value and same class
dd5065f997b9 changed: #addLiteral:
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
  2793
        "
dd5065f997b9 changed: #addLiteral:
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
  2794
        ((class == Float)
dd5065f997b9 changed: #addLiteral:
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
  2795
        or:[class == Fraction
dd5065f997b9 changed: #addLiteral:
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
  2796
        or:[class == LargeInteger
dd5065f997b9 changed: #addLiteral:
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
  2797
        "or:[class == String] --only if literalString option has been added---" ]]) ifTrue:[
dd5065f997b9 changed: #addLiteral:
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
  2798
            index := litArray indexOf:anObject.
dd5065f997b9 changed: #addLiteral:
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
  2799
            index ~~ 0 ifTrue:[
dd5065f997b9 changed: #addLiteral:
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
  2800
                oldLit := litArray at:index.
dd5065f997b9 changed: #addLiteral:
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
  2801
                oldLit class == class ifFalse:[
dd5065f997b9 changed: #addLiteral:
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
  2802
                    index := 0.
dd5065f997b9 changed: #addLiteral:
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
  2803
                ] ifTrue:[
3765
2db778a93b33 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 3763
diff changeset
  2804
                    "/ don't mess up negative with positive zeros
2337
dd5065f997b9 changed: #addLiteral:
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
  2805
                    anObject = 0.0 ifTrue:[
dd5065f997b9 changed: #addLiteral:
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
  2806
                        anObject isNegativeZero ~~ oldLit isNegativeZero ifTrue:[
dd5065f997b9 changed: #addLiteral:
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
  2807
                            index := 0
dd5065f997b9 changed: #addLiteral:
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
  2808
                        ]
dd5065f997b9 changed: #addLiteral:
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
  2809
                    ]
dd5065f997b9 changed: #addLiteral:
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
  2810
                ].
dd5065f997b9 changed: #addLiteral:
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
  2811
            ].
dd5065f997b9 changed: #addLiteral:
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
  2812
        ].
dd5065f997b9 changed: #addLiteral:
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
  2813
dd5065f997b9 changed: #addLiteral:
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
  2814
        "
dd5065f997b9 changed: #addLiteral:
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
  2815
         reuse empty collection literals
dd5065f997b9 changed: #addLiteral:
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
  2816
        "
dd5065f997b9 changed: #addLiteral:
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
  2817
        ((class == String) or:[class == Array or:[class == ByteArray]]) ifTrue:[
dd5065f997b9 changed: #addLiteral:
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
  2818
            anObject size == 0 ifTrue:[
dd5065f997b9 changed: #addLiteral:
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
  2819
                index := litArray indexOf:anObject.
2338
ee3c4b35ad49 changed: #addLiteral:
Claus Gittinger <cg@exept.de>
parents: 2337
diff changeset
  2820
                index ~~ 0 ifTrue:[
ee3c4b35ad49 changed: #addLiteral:
Claus Gittinger <cg@exept.de>
parents: 2337
diff changeset
  2821
                    oldLit := litArray at:index.
ee3c4b35ad49 changed: #addLiteral:
Claus Gittinger <cg@exept.de>
parents: 2337
diff changeset
  2822
                    oldLit class == class ifFalse:[
ee3c4b35ad49 changed: #addLiteral:
Claus Gittinger <cg@exept.de>
parents: 2337
diff changeset
  2823
                        index := 0.
ee3c4b35ad49 changed: #addLiteral:
Claus Gittinger <cg@exept.de>
parents: 2337
diff changeset
  2824
                    ]
2337
dd5065f997b9 changed: #addLiteral:
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
  2825
                ]
dd5065f997b9 changed: #addLiteral:
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
  2826
            ]
dd5065f997b9 changed: #addLiteral:
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
  2827
        ].
dd5065f997b9 changed: #addLiteral:
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
  2828
dd5065f997b9 changed: #addLiteral:
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
  2829
        (index == 0) ifTrue:[
dd5065f997b9 changed: #addLiteral:
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
  2830
            litArray add:anObject.
dd5065f997b9 changed: #addLiteral:
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
  2831
            index := litArray size.
dd5065f997b9 changed: #addLiteral:
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
  2832
            index > 30 ifTrue:[
dd5065f997b9 changed: #addLiteral:
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
  2833
                allLiterals isNil ifTrue:[
dd5065f997b9 changed: #addLiteral:
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
  2834
                    allLiterals := Dictionary new.
dd5065f997b9 changed: #addLiteral:
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
  2835
                    litArray keysAndValuesDo:[:idx :lit | allLiterals at:lit put:idx].
dd5065f997b9 changed: #addLiteral:
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
  2836
                ].
dd5065f997b9 changed: #addLiteral:
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
  2837
                allLiterals at:anObject put:index.
dd5065f997b9 changed: #addLiteral:
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
  2838
            ].
dd5065f997b9 changed: #addLiteral:
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
  2839
        ].
1738
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2840
    ].
1798
9491f62eac86 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1792
diff changeset
  2841
1738
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2842
    ^ index
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2843
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2844
    "Modified: / 12.11.1997 / 18:49:43 / cg"
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2845
!
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2846
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2847
addReloc:symIndex
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2848
    "remember to relocate offset at symIndex later ..."
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2849
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2850
    relocList isNil ifTrue:[
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2851
	relocList := OrderedCollection new.
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2852
    ].
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2853
    relocList add:symIndex
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2854
!
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2855
556
4a3775ada5d2 preps to move variables of inlined blocks into outer context
Claus Gittinger <cg@exept.de>
parents: 549
diff changeset
  2856
addTempVar
4a3775ada5d2 preps to move variables of inlined blocks into outer context
Claus Gittinger <cg@exept.de>
parents: 549
diff changeset
  2857
    "add a temporary variable; return its position (1-based).
4a3775ada5d2 preps to move variables of inlined blocks into outer context
Claus Gittinger <cg@exept.de>
parents: 549
diff changeset
  2858
     Used when a block with args/locals is inlined."
4a3775ada5d2 preps to move variables of inlined blocks into outer context
Claus Gittinger <cg@exept.de>
parents: 549
diff changeset
  2859
558
e7ecd861b86f preps to move vars of inlined blocks to outer context
Claus Gittinger <cg@exept.de>
parents: 556
diff changeset
  2860
    numTemp isNil ifTrue:[numTemp := maxNumTemp := 0].
e7ecd861b86f preps to move vars of inlined blocks to outer context
Claus Gittinger <cg@exept.de>
parents: 556
diff changeset
  2861
    numTemp := numTemp + 1.
e7ecd861b86f preps to move vars of inlined blocks to outer context
Claus Gittinger <cg@exept.de>
parents: 556
diff changeset
  2862
    maxNumTemp := maxNumTemp max:numTemp.
560
9311c79529d4 inline blocks withs args/vars
Claus Gittinger <cg@exept.de>
parents: 558
diff changeset
  2863
    ^ numTemp + methodVars size
9311c79529d4 inline blocks withs args/vars
Claus Gittinger <cg@exept.de>
parents: 558
diff changeset
  2864
9311c79529d4 inline blocks withs args/vars
Claus Gittinger <cg@exept.de>
parents: 558
diff changeset
  2865
    "Modified: 26.6.1997 / 10:22:23 / cg"
556
4a3775ada5d2 preps to move variables of inlined blocks into outer context
Claus Gittinger <cg@exept.de>
parents: 549
diff changeset
  2866
!
4a3775ada5d2 preps to move variables of inlined blocks into outer context
Claus Gittinger <cg@exept.de>
parents: 549
diff changeset
  2867
1738
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2868
appendByte:aByte
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2869
    "append a byte to the code-Array, checking for byte-range (debug-only)"
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2870
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2871
    |idx "{Class: SmallInteger }"|
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2872
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2873
    idx := codeIndex.
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2874
    (aByte between:0 and:255) ifTrue:[
3071
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2875
        codeBytes at:idx put:aByte.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2876
        codeIndex := idx + 1
1738
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2877
    ] ifFalse:[
3071
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2878
        self codeGeneratorError:'byte range error'.
1738
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2879
    ]
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2880
!
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2881
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2882
appendByteCodeFor:codeSymbol
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2883
    "append the byteCode for an instructionSymbol to the code-Array"
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2884
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2885
    |idx "{Class: SmallInteger }"|
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2886
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2887
    idx := codeIndex.
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2888
    codeBytes at:idx put:(self byteCodeFor:codeSymbol).
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2889
    codeIndex := idx + 1
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2890
!
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2891
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2892
appendEmptyByte
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2893
    "append an empty byte to the code-Array"
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2894
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2895
    |idx "{Class: SmallInteger }"|
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2896
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2897
    idx := codeIndex.
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2898
    codeBytes at:idx put:0.
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2899
    codeIndex := idx + 1
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2900
!
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2901
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2902
appendEmptyLong
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2903
    "append an empty long (4 bytes) to the code-Array"
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2904
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2905
    |idx "{Class: SmallInteger }"|
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2906
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2907
    idx := codeIndex.
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2908
    codeBytes at:idx put:0.
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2909
    codeBytes at:idx+1 put:0.
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2910
    codeBytes at:idx+2 put:0.
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2911
    codeBytes at:idx+3 put:0.
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2912
    codeIndex := idx + 4
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2913
!
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2914
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2915
appendEmptyShort
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2916
    "append an empty short (2 bytes) to the code-Array"
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2917
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2918
    |idx "{Class: SmallInteger }"|
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2919
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2920
    idx := codeIndex.
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2921
    codeBytes at:idx put:0.
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2922
    codeBytes at:idx+1 put:0.
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2923
    codeIndex := idx + 2
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2924
!
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2925
1792
87315c3bd290 preps for vl literals
Claus Gittinger <cg@exept.de>
parents: 1790
diff changeset
  2926
appendLongWord:aWord
1815
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  2927
    "append an unsigned long word (low-high) to the code-Array,
1792
87315c3bd290 preps for vl literals
Claus Gittinger <cg@exept.de>
parents: 1790
diff changeset
  2928
     checking for long word-range (debug-only)"
87315c3bd290 preps for vl literals
Claus Gittinger <cg@exept.de>
parents: 1790
diff changeset
  2929
87315c3bd290 preps for vl literals
Claus Gittinger <cg@exept.de>
parents: 1790
diff changeset
  2930
    |idx "{Class: SmallInteger }"|
87315c3bd290 preps for vl literals
Claus Gittinger <cg@exept.de>
parents: 1790
diff changeset
  2931
87315c3bd290 preps for vl literals
Claus Gittinger <cg@exept.de>
parents: 1790
diff changeset
  2932
    idx := codeIndex.
87315c3bd290 preps for vl literals
Claus Gittinger <cg@exept.de>
parents: 1790
diff changeset
  2933
    (aWord between:0 and:16rFFFFFFFF) ifTrue:[
3071
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2934
        codeBytes at:idx put:(aWord bitAnd:16rFF).
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2935
        idx := idx + 1.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2936
        codeBytes at:idx put:((aWord bitShift:-8) bitAnd:16rFF).
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2937
        idx := idx + 1.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2938
        codeBytes at:idx put:((aWord bitShift:-16) bitAnd:16rFF).
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2939
        idx := idx + 1.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2940
        codeBytes at:idx put:((aWord bitShift:-24) bitAnd:16rFF).
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2941
        codeIndex := idx + 1
1792
87315c3bd290 preps for vl literals
Claus Gittinger <cg@exept.de>
parents: 1790
diff changeset
  2942
    ] ifFalse:[
3071
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2943
        self codeGeneratorError:'long word range error'.
1792
87315c3bd290 preps for vl literals
Claus Gittinger <cg@exept.de>
parents: 1790
diff changeset
  2944
    ]
87315c3bd290 preps for vl literals
Claus Gittinger <cg@exept.de>
parents: 1790
diff changeset
  2945
!
87315c3bd290 preps for vl literals
Claus Gittinger <cg@exept.de>
parents: 1790
diff changeset
  2946
1738
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2947
appendSignedByte:aByte
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2948
    "append a signedbyte (as in jump-offsets) to the code-Array,
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2949
     check range and report an error if invalid"
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2950
1815
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  2951
    |b   "{Class: SmallInteger }"
1738
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2952
     idx "{Class: SmallInteger }"|
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2953
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2954
    idx := codeIndex.
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2955
    b := aByte.
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2956
    (b >= 0) ifTrue:[
3071
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2957
        (b > 127) ifTrue:[
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2958
            self codeGeneratorError:'jump-range error'.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2959
        ].
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2960
        codeBytes at:idx put:b
1738
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2961
    ] ifFalse:[
3071
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2962
        (b < -128) ifTrue:[
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2963
            self codeGeneratorError:'jump-range error'.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2964
        ].
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2965
        b := 256 + b
1738
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2966
    ].
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2967
    codeBytes at:idx put:b.
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2968
    codeIndex := idx + 1
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2969
!
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2970
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2971
appendSignedWord:aWord
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2972
    "append a signed word to the code-Array,
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2973
     check range and report an error if invalid"
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2974
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2975
    |w   "{Class: SmallInteger }"|
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2976
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2977
    w := aWord.
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2978
    (w >= 0) ifTrue:[
4338
Claus Gittinger <cg@exept.de>
parents: 4296
diff changeset
  2979
	(w > 16r7FFF) ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 4296
diff changeset
  2980
	    self codeGeneratorError:'word-range error'.
Claus Gittinger <cg@exept.de>
parents: 4296
diff changeset
  2981
	].
1738
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2982
    ] ifFalse:[
4338
Claus Gittinger <cg@exept.de>
parents: 4296
diff changeset
  2983
	(w < 16r-8000) ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 4296
diff changeset
  2984
	    self codeGeneratorError:'word-range error'.
Claus Gittinger <cg@exept.de>
parents: 4296
diff changeset
  2985
	].
Claus Gittinger <cg@exept.de>
parents: 4296
diff changeset
  2986
	w := (16r10000 + w).
1738
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2987
    ].
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2988
    self appendWord:w
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2989
!
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2990
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2991
appendWord:aWord
1815
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  2992
    "append an unsigned word (low-high) to the code-Array,
1738
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2993
     checking for word-range (debug-only)"
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2994
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2995
    |idx "{Class: SmallInteger }"|
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2996
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2997
    idx := codeIndex.
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  2998
    (aWord between:0 and:16rFFFF) ifTrue:[
3071
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  2999
        codeBytes at:idx put:(aWord bitAnd:16rFF).
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  3000
        idx := idx + 1.
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  3001
        codeBytes at:idx put:(aWord bitShift:-8).
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  3002
        codeIndex := idx + 1
1738
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3003
    ] ifFalse:[
3071
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  3004
        self codeGeneratorError:'word range error'.
1738
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3005
    ]
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3006
!
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3007
1999
a22a49d0c362 selectorNameSpace support
Claus Gittinger <cg@exept.de>
parents: 1984
diff changeset
  3008
nameSpaceSelectorFor:aSymbol
a22a49d0c362 selectorNameSpace support
Claus Gittinger <cg@exept.de>
parents: 1984
diff changeset
  3009
    "Caring for the current namespace, return the real selector used for a send."
a22a49d0c362 selectorNameSpace support
Claus Gittinger <cg@exept.de>
parents: 1984
diff changeset
  3010
a22a49d0c362 selectorNameSpace support
Claus Gittinger <cg@exept.de>
parents: 1984
diff changeset
  3011
    |ns usedSym|
a22a49d0c362 selectorNameSpace support
Claus Gittinger <cg@exept.de>
parents: 1984
diff changeset
  3012
a22a49d0c362 selectorNameSpace support
Claus Gittinger <cg@exept.de>
parents: 1984
diff changeset
  3013
    usedSym := aSymbol.
a22a49d0c362 selectorNameSpace support
Claus Gittinger <cg@exept.de>
parents: 1984
diff changeset
  3014
a22a49d0c362 selectorNameSpace support
Claus Gittinger <cg@exept.de>
parents: 1984
diff changeset
  3015
    Smalltalk hasSelectorNameSpaces ifTrue:[
4338
Claus Gittinger <cg@exept.de>
parents: 4296
diff changeset
  3016
	ns := self currentNameSpace.
Claus Gittinger <cg@exept.de>
parents: 4296
diff changeset
  3017
	(ns notNil and:[ns ~~ Smalltalk]) ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 4296
diff changeset
  3018
	    usedSym := (':',ns name,'::',aSymbol) asSymbol.
Claus Gittinger <cg@exept.de>
parents: 4296
diff changeset
  3019
	    Logger info:('compile ',aSymbol,' as ',usedSym).
Claus Gittinger <cg@exept.de>
parents: 4296
diff changeset
  3020
	].
1999
a22a49d0c362 selectorNameSpace support
Claus Gittinger <cg@exept.de>
parents: 1984
diff changeset
  3021
    ].
a22a49d0c362 selectorNameSpace support
Claus Gittinger <cg@exept.de>
parents: 1984
diff changeset
  3022
    ^ usedSym.
a22a49d0c362 selectorNameSpace support
Claus Gittinger <cg@exept.de>
parents: 1984
diff changeset
  3023
a22a49d0c362 selectorNameSpace support
Claus Gittinger <cg@exept.de>
parents: 1984
diff changeset
  3024
    "Created: / 05-03-2007 / 13:28:59 / cg"
4296
04e13c352104 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 4290
diff changeset
  3025
    "Modified: / 29-08-2018 / 12:52:48 / Claus Gittinger"
1999
a22a49d0c362 selectorNameSpace support
Claus Gittinger <cg@exept.de>
parents: 1984
diff changeset
  3026
!
a22a49d0c362 selectorNameSpace support
Claus Gittinger <cg@exept.de>
parents: 1984
diff changeset
  3027
556
4a3775ada5d2 preps to move variables of inlined blocks into outer context
Claus Gittinger <cg@exept.de>
parents: 549
diff changeset
  3028
removeTempVar
4a3775ada5d2 preps to move variables of inlined blocks into outer context
Claus Gittinger <cg@exept.de>
parents: 549
diff changeset
  3029
    "remove a temporary variable"
4a3775ada5d2 preps to move variables of inlined blocks into outer context
Claus Gittinger <cg@exept.de>
parents: 549
diff changeset
  3030
558
e7ecd861b86f preps to move vars of inlined blocks to outer context
Claus Gittinger <cg@exept.de>
parents: 556
diff changeset
  3031
    numTemp := numTemp - 1
556
4a3775ada5d2 preps to move variables of inlined blocks into outer context
Claus Gittinger <cg@exept.de>
parents: 549
diff changeset
  3032
4a3775ada5d2 preps to move variables of inlined blocks into outer context
Claus Gittinger <cg@exept.de>
parents: 549
diff changeset
  3033
    "Created: 25.6.1997 / 14:03:00 / cg"
558
e7ecd861b86f preps to move vars of inlined blocks to outer context
Claus Gittinger <cg@exept.de>
parents: 556
diff changeset
  3034
    "Modified: 25.6.1997 / 15:06:10 / cg"
556
4a3775ada5d2 preps to move variables of inlined blocks into outer context
Claus Gittinger <cg@exept.de>
parents: 549
diff changeset
  3035
! !
4a3775ada5d2 preps to move variables of inlined blocks into outer context
Claus Gittinger <cg@exept.de>
parents: 549
diff changeset
  3036
2714
8137c609a40e comments
Claus Gittinger <cg@exept.de>
parents: 2623
diff changeset
  3037
!ByteCodeCompiler methodsFor:'code generation hooks'!
1738
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3038
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3039
startCodeGenerationHookOn:codeStream
2714
8137c609a40e comments
Claus Gittinger <cg@exept.de>
parents: 2623
diff changeset
  3040
    "invoked before code is generated;
8137c609a40e comments
Claus Gittinger <cg@exept.de>
parents: 2623
diff changeset
  3041
     gives subclasses a chance to prepare and to inject code to be
8137c609a40e comments
Claus Gittinger <cg@exept.de>
parents: 2623
diff changeset
  3042
     executed on entry (instrumentation)"
8137c609a40e comments
Claus Gittinger <cg@exept.de>
parents: 2623
diff changeset
  3043
1738
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3044
    "intentionally left blank - hook for subclasses"
2714
8137c609a40e comments
Claus Gittinger <cg@exept.de>
parents: 2623
diff changeset
  3045
8137c609a40e comments
Claus Gittinger <cg@exept.de>
parents: 2623
diff changeset
  3046
    "Modified (comment): / 30-09-2011 / 12:16:40 / cg"
1738
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3047
! !
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3048
1363
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3049
!ByteCodeCompiler methodsFor:'compilation'!
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3050
2735
1989b1b9173a added: #compile:forClass:inCategory:
Claus Gittinger <cg@exept.de>
parents: 2714
diff changeset
  3051
compile:aString forClass:aClass inCategory:cat
1989b1b9173a added: #compile:forClass:inCategory:
Claus Gittinger <cg@exept.de>
parents: 2714
diff changeset
  3052
    "compile a source-string for a method in classToCompileFor.
1989b1b9173a added: #compile:forClass:inCategory:
Claus Gittinger <cg@exept.de>
parents: 2714
diff changeset
  3053
     The method will get cat as category.
1989b1b9173a added: #compile:forClass:inCategory:
Claus Gittinger <cg@exept.de>
parents: 2714
diff changeset
  3054
     Returns the new method, #Error or nil."
1989b1b9173a added: #compile:forClass:inCategory:
Claus Gittinger <cg@exept.de>
parents: 2714
diff changeset
  3055
1989b1b9173a added: #compile:forClass:inCategory:
Claus Gittinger <cg@exept.de>
parents: 2714
diff changeset
  3056
    ^ self
1989b1b9173a added: #compile:forClass:inCategory:
Claus Gittinger <cg@exept.de>
parents: 2714
diff changeset
  3057
        compile:aString
1989b1b9173a added: #compile:forClass:inCategory:
Claus Gittinger <cg@exept.de>
parents: 2714
diff changeset
  3058
        forClass:aClass
1989b1b9173a added: #compile:forClass:inCategory:
Claus Gittinger <cg@exept.de>
parents: 2714
diff changeset
  3059
        inCategory:cat
1989b1b9173a added: #compile:forClass:inCategory:
Claus Gittinger <cg@exept.de>
parents: 2714
diff changeset
  3060
        notifying:nil
1989b1b9173a added: #compile:forClass:inCategory:
Claus Gittinger <cg@exept.de>
parents: 2714
diff changeset
  3061
        install:true
1989b1b9173a added: #compile:forClass:inCategory:
Claus Gittinger <cg@exept.de>
parents: 2714
diff changeset
  3062
        skipIfSame:false
1989b1b9173a added: #compile:forClass:inCategory:
Claus Gittinger <cg@exept.de>
parents: 2714
diff changeset
  3063
        silent:false
1989b1b9173a added: #compile:forClass:inCategory:
Claus Gittinger <cg@exept.de>
parents: 2714
diff changeset
  3064
        foldConstants:true
1989b1b9173a added: #compile:forClass:inCategory:
Claus Gittinger <cg@exept.de>
parents: 2714
diff changeset
  3065
1989b1b9173a added: #compile:forClass:inCategory:
Claus Gittinger <cg@exept.de>
parents: 2714
diff changeset
  3066
    "Created: / 30-09-2011 / 12:44:50 / cg"
1989b1b9173a added: #compile:forClass:inCategory:
Claus Gittinger <cg@exept.de>
parents: 2714
diff changeset
  3067
!
1989b1b9173a added: #compile:forClass:inCategory:
Claus Gittinger <cg@exept.de>
parents: 2714
diff changeset
  3068
2091
18bcd32044c0 preparations for breakpointed lines
Claus Gittinger <cg@exept.de>
parents: 2084
diff changeset
  3069
compile:aStringArg forClass:aClassArg inCategory:cat notifying:aRequestor
4555
806a25fa298a #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 4417
diff changeset
  3070
                 install:install skipIfSame:skipIfSame silent:silent foldConstants:fold
1363
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3071
3532
cf71c91f5b7e class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3531
diff changeset
  3072
    aRequestor notNil ifTrue:[
4555
806a25fa298a #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 4417
diff changeset
  3073
        ^ self
806a25fa298a #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 4417
diff changeset
  3074
            compile:aStringArg
806a25fa298a #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 4417
diff changeset
  3075
            forClass:aClassArg
806a25fa298a #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 4417
diff changeset
  3076
            inCategory:cat
806a25fa298a #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 4417
diff changeset
  3077
            notifying:aRequestor
806a25fa298a #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 4417
diff changeset
  3078
            install:install
806a25fa298a #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 4417
diff changeset
  3079
            skipIfSame:skipIfSame
806a25fa298a #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 4417
diff changeset
  3080
            silent:silent
806a25fa298a #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 4417
diff changeset
  3081
            foldConstants:fold
806a25fa298a #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 4417
diff changeset
  3082
            ifFail:nil
3532
cf71c91f5b7e class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3531
diff changeset
  3083
    ].
cf71c91f5b7e class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3531
diff changeset
  3084
1459
f6ea05913a60 compatible interface
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  3085
    ^ self
4555
806a25fa298a #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 4417
diff changeset
  3086
        compile:aStringArg
806a25fa298a #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 4417
diff changeset
  3087
        forClass:aClassArg
806a25fa298a #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 4417
diff changeset
  3088
        inCategory:cat
806a25fa298a #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 4417
diff changeset
  3089
        notifying:aRequestor
806a25fa298a #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 4417
diff changeset
  3090
        install:install
806a25fa298a #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 4417
diff changeset
  3091
        skipIfSame:skipIfSame
806a25fa298a #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 4417
diff changeset
  3092
        silent:silent
806a25fa298a #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 4417
diff changeset
  3093
        foldConstants:fold
806a25fa298a #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 4417
diff changeset
  3094
        ifFail:[:exOrNil |
4676
c46189483f86 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4630
diff changeset
  3095
                 |newMethod|
c46189483f86 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4630
diff changeset
  3096
4555
806a25fa298a #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 4417
diff changeset
  3097
                 exOrNil notNil ifTrue:[
4563
ca84d6e425e4 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 4555
diff changeset
  3098
                    exOrNil "ParseError new"
4555
806a25fa298a #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 4417
diff changeset
  3099
                        errorMessage:(exOrNil errorMessage) startPosition:(exOrNil startPosition) endPosition:(exOrNil endPosition);
806a25fa298a #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 4417
diff changeset
  3100
                        parameter:exOrNil parameter;
806a25fa298a #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 4417
diff changeset
  3101
                        lineNumber:exOrNil lineNumber;
806a25fa298a #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 4417
diff changeset
  3102
                        raiseRequest.
806a25fa298a #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 4417
diff changeset
  3103
                 ] ifFalse:[
806a25fa298a #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 4417
diff changeset
  3104
                     ParseError raiseRequestErrorString:'compilation failed'. "/ #Error
806a25fa298a #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 4417
diff changeset
  3105
                 ].
806a25fa298a #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 4417
diff changeset
  3106
                 (install and:[selector notNil]) ifTrue:[
806a25fa298a #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 4417
diff changeset
  3107
                      "/ if proceeded, install a trap method
806a25fa298a #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 4417
diff changeset
  3108
                     newMethod := (Method trapMethodForNumArgs:selector argumentCount) copy.
806a25fa298a #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 4417
diff changeset
  3109
                     newMethod mclass:nil; setPackage:nil.
806a25fa298a #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 4417
diff changeset
  3110
                     newMethod makeInvalid.
806a25fa298a #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 4417
diff changeset
  3111
                     newMethod source:aStringArg.
806a25fa298a #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 4417
diff changeset
  3112
                     aClassArg basicAddSelector:selector withMethod:newMethod
806a25fa298a #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 4417
diff changeset
  3113
                 ].
4676
c46189483f86 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4630
diff changeset
  3114
                 newMethod
4555
806a25fa298a #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 4417
diff changeset
  3115
        ]
2469
ac59d3aa4a61 changed:
Claus Gittinger <cg@exept.de>
parents: 2462
diff changeset
  3116
4676
c46189483f86 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4630
diff changeset
  3117
    "Modified: / 09-06-2020 / 14:44:32 / cg"
1459
f6ea05913a60 compatible interface
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  3118
!
f6ea05913a60 compatible interface
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  3119
2091
18bcd32044c0 preparations for breakpointed lines
Claus Gittinger <cg@exept.de>
parents: 2084
diff changeset
  3120
compile:sourceCodeStringArg forClass:aClassArg inCategory:cat notifying:aRequestor
4343
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3121
                install:install skipIfSame:skipIfSame silent:silent foldConstants:fold
4630
d0efc42fccf3 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4605
diff changeset
  3122
                ifFail:failBlockWithOptionalArgument
1459
f6ea05913a60 compatible interface
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  3123
1363
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3124
    "the basic workhorse method for compiling:
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3125
     compile a source-string for a method in classToCompileFor.
1815
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  3126
     errors are forwarded to requestor
1459
f6ea05913a60 compatible interface
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  3127
     (report on Transcript and return the value of failBlock, if requestor is nil).
1363
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3128
1815
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  3129
     The new method will get cat as category.
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  3130
     If install is true, the method will go into the classes method-table,
1363
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3131
     otherwise the method is simply returned (for anonymous methods).
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3132
     If skipIsSame is true, and the source is the same as an existing
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3133
     methods source, this is a noop (for fast fileIn).
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3134
     The argument, silent controls if errors are to be reported.
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3135
     Returns the method, #Error or nil."
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3136
1984
1a5b562ddf42 Make code more readable
Stefan Vogel <sv@exept.de>
parents: 1955
diff changeset
  3137
    |newMethod tree symbolicCodeArray oldMethod silencio newSource primNr keptOldCode answer
4338
Claus Gittinger <cg@exept.de>
parents: 4296
diff changeset
  3138
     aClass sourceCodeString hasErrorInMethodHeader oldCategory newCategory oldPackage
3681
4db107dbec8a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3661
diff changeset
  3139
     newPackage installSelector ns dialogText failureReason annotationCategory|
1363
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3140
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3141
    aClass := aClassArg.
1730
f8121ec9a7dd Keep package when recompiling an existant method and no explicit
Stefan Vogel <sv@exept.de>
parents: 1671
diff changeset
  3142
    sourceCodeString := sourceCodeStringArg.
f8121ec9a7dd Keep package when recompiling an existant method and no explicit
Stefan Vogel <sv@exept.de>
parents: 1671
diff changeset
  3143
f8121ec9a7dd Keep package when recompiling an existant method and no explicit
Stefan Vogel <sv@exept.de>
parents: 1671
diff changeset
  3144
    sourceCodeString isNil ifTrue:[^ nil].
1815
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  3145
    silencio := silent
4343
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3146
                or:[Smalltalk silentLoading
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3147
                or:[ListCompiledMethods not]].
4338
Claus Gittinger <cg@exept.de>
parents: 4296
diff changeset
  3148
Claus Gittinger <cg@exept.de>
parents: 4296
diff changeset
  3149
    "/ when a correction has been made, this signal is raised to try again
3397
0638d768ec54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3393
diff changeset
  3150
    self class restartCompilationSignal handle:[:ex |
4343
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3151
        "/ class could have changed ...
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3152
        aClass := self classToCompileFor.
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3153
        sourceCodeString := self correctedSource ? sourceCodeStringArg.
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3154
        methodArgs := methodArgNames := methodVars := methodVarNames := nil.
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3155
        usedInstVars := usedClassVars := usedVars := nil.
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3156
        modifiedInstVars := modifiedClassVars := modifiedGlobals := nil.
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3157
        currentBlock := nil.
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3158
        ex restart
1363
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3159
    ] do:[
4343
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3160
        ParseError handle:[:ex |
4605
2a55645d55eb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4599
diff changeset
  3161
            ex creator isHandled ifTrue:[ex reject].
4599
cfe030ac351c #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4563
diff changeset
  3162
4630
d0efc42fccf3 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4605
diff changeset
  3163
            failBlockWithOptionalArgument isNil ifTrue:[
4343
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3164
                ex reject
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3165
            ].
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3166
            self showErrorMessageForClass:aClass.
4630
d0efc42fccf3 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4605
diff changeset
  3167
            ^ failBlockWithOptionalArgument valueWithOptionalArgument:ex.
4343
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3168
        ] do:[
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3169
            "create a compiler, let it parse and create the parsetree"
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3170
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3171
            self source:sourceCodeString.
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3172
            "/ not needed - done by source:-setter
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3173
            "/ sourceCodeString isString ifTrue:[
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3174
            "/     self source:(ReadStream on:sourceCodeString string).
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3175
            "/ ] ifFalse:[
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3176
            "/     self source:sourceCodeString readStream
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3177
            "/ ].
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3178
            self nextToken.
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3179
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3180
            self setClassToCompileFor:aClass.
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3181
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3182
            self parseForCode.
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3183
            fold ifFalse:[self foldConstants:nil].
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3184
            self notifying:aRequestor.
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3185
            silent ifTrue:[
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3186
                "/ self ignoreErrors:true.
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3187
                self ignoreWarnings:true.
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3188
                self warnUndeclared:false.
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3189
            ].
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3190
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3191
            hasErrorInMethodHeader := (self parseMethodSpec == #Error).
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3192
            hasErrorInMethodHeader ifTrue:[
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3193
                self parseError:'syntax error in method specification'.
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3194
                tree := #Error.
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3195
            ] ifFalse:[
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3196
                tree := self parseMethodBody.
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3197
                tree == #Error ifFalse:[
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3198
                    self checkForEndOfInput.
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3199
                    self tree:tree.
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3200
                ].
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3201
            ].
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3202
        ].
1363
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3203
    ].
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3204
1730
f8121ec9a7dd Keep package when recompiling an existant method and no explicit
Stefan Vogel <sv@exept.de>
parents: 1671
diff changeset
  3205
    hasErrorInMethodHeader ifTrue:[
4343
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3206
        self showErrorMessageForClass:aClass.
4630
d0efc42fccf3 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4605
diff changeset
  3207
        ^ failBlockWithOptionalArgument valueWithOptionalArgument:nil.
1730
f8121ec9a7dd Keep package when recompiling an existant method and no explicit
Stefan Vogel <sv@exept.de>
parents: 1671
diff changeset
  3208
    ].
f8121ec9a7dd Keep package when recompiling an existant method and no explicit
Stefan Vogel <sv@exept.de>
parents: 1671
diff changeset
  3209
1378
01bd44f4360c allow compiling a method for a nil class
Claus Gittinger <cg@exept.de>
parents: 1376
diff changeset
  3210
    (aClass notNil and:[selector notNil]) ifTrue:[
4343
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3211
        oldMethod := aClass compiledMethodAt:selector.
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3212
        oldMethod notNil ifTrue:[
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3213
            oldCategory := oldMethod category.
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3214
            oldPackage  := oldMethod package.
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3215
        ].
1363
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3216
    ].
1730
f8121ec9a7dd Keep package when recompiling an existant method and no explicit
Stefan Vogel <sv@exept.de>
parents: 1671
diff changeset
  3217
f8121ec9a7dd Keep package when recompiling an existant method and no explicit
Stefan Vogel <sv@exept.de>
parents: 1671
diff changeset
  3218
    (aClass notNil and:[aClass owningClass notNil
f8121ec9a7dd Keep package when recompiling an existant method and no explicit
Stefan Vogel <sv@exept.de>
parents: 1671
diff changeset
  3219
     and:[parserFlags allowExtensionsToPrivateClasses not]]) ifTrue:[
4343
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3220
        "inherit private classe's package from owning class"
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3221
        newPackage := aClass owningClass package
1730
f8121ec9a7dd Keep package when recompiling an existant method and no explicit
Stefan Vogel <sv@exept.de>
parents: 1671
diff changeset
  3222
    ] ifFalse:[
4343
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3223
        (aRequestor respondsTo:#packageToInstall) ifTrue:[
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3224
            "if there is an requestor who knows about the package, use it"
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3225
            newPackage := aRequestor packageToInstall
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3226
        ] ifFalse:[
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3227
            "if noone answers our package query, do not use the default
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3228
             but use an existing method's package instead"
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3229
            (oldPackage isNil or:[Class packageQuerySignal isHandled]) ifTrue:[
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3230
                newPackage := Class packageQuerySignal query.
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3231
            ] ifFalse:[
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3232
                newPackage := oldPackage.
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3233
            ].
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3234
        ].
1730
f8121ec9a7dd Keep package when recompiling an existant method and no explicit
Stefan Vogel <sv@exept.de>
parents: 1671
diff changeset
  3235
    ].
f8121ec9a7dd Keep package when recompiling an existant method and no explicit
Stefan Vogel <sv@exept.de>
parents: 1671
diff changeset
  3236
1363
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3237
    newCategory := cat.
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3238
    newCategory isNil ifTrue:[
4343
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3239
        newCategory := oldCategory ? (self class asYetUncategorizedMethodCategory).
1363
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3240
    ].
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3241
1790
a40965dae8cb tree compilation support
Claus Gittinger <cg@exept.de>
parents: 1778
diff changeset
  3242
    "check if same source"
4290
9d83c5d83330 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4289
diff changeset
  3243
    (skipIfSame
9d83c5d83330 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4289
diff changeset
  3244
      and:[oldMethod notNil
4338
Claus Gittinger <cg@exept.de>
parents: 4296
diff changeset
  3245
      and:[ (SourceCodeManagerError
4343
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3246
                handle:[:ex | nil]
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3247
                do:[oldMethod source]
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3248
            ) = sourceCodeString
4290
9d83c5d83330 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4289
diff changeset
  3249
    ]]) ifTrue:[
4343
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3250
        oldMethod isInvalid ifFalse:[
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3251
            silencio ifFalse:[
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3252
                Transcript showCR:('    unchanged: ',aClass name,' ',selector)
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3253
            ].
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3254
            "
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3255
             same. however, category may be different
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3256
            "
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3257
            (newCategory ~= oldCategory) ifTrue:[
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3258
                oldMethod category:newCategory.
1790
a40965dae8cb tree compilation support
Claus Gittinger <cg@exept.de>
parents: 1778
diff changeset
  3259
"/                                aClass updateRevisionString.
4343
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3260
                silencio ifFalse:[
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3261
                    Transcript showCR:('    (category change only)')
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3262
                ].
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3263
            ].
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3264
            "
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3265
             and package may be too.
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3266
            "
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3267
            (newPackage notNil and:[newPackage ~~ oldPackage]) ifTrue:[
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3268
                oldMethod package:newPackage.
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3269
                silencio ifFalse:[
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3270
                    Transcript showCR:('    (package-id change only)')
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3271
                ].
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3272
            ].
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3273
            ^ oldMethod
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3274
        ]
1363
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3275
    ].
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3276
4417
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  3277
    (self hasError or:[tree == #Error]) ifTrue:[
4343
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3278
        "error in method body"
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3279
        self showErrorMessageForClass:aClass.
4630
d0efc42fccf3 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4605
diff changeset
  3280
        ^ failBlockWithOptionalArgument valueWithOptionalArgument:nil
1363
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3281
    ].
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3282
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3283
    "if no error and also no selector ..."
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3284
    selector isNil ifTrue:[
4343
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3285
        "... it was just a comment or other empty stuff"
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3286
        ^ nil
1363
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3287
    ].
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3288
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3289
    "
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3290
     freak-out support for inline C-code...
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3291
    "
2936
cd787e6ed225 comment/format in: #showErrorNotification:
Stefan Vogel <sv@exept.de>
parents: 2868
diff changeset
  3292
    NewPrimitives ifFalse:[
4343
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3293
        ((self hasNonOptionalPrimitiveCode
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3294
          or:[(self hasPrimitiveCode and:[self class canCreateMachineCode])
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3295
          or:[ParserFlags stcCompilation == #always and:[selector ~~ #doIt]]])
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3296
         and:[(ParserFlags stcCompilation ~~ #never)]) ifTrue:[
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3297
            ParseError handle:[:ex |
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3298
                self parseError:(ex description) line:(ex lineNumber ? 1).
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3299
                newMethod := #Error.
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3300
            ] do:[
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3301
                newMethod :=
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3302
                    (STCCompilerInterface new
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3303
                            originator:self;
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3304
                            parserFlags:parserFlags)
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3305
                        compileToMachineCode:sourceCodeString
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3306
                        forClass:aClass
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3307
                        selector:selector
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3308
                        inCategory:cat
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3309
                        notifying:aRequestor
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3310
                        install:install
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3311
                        skipIfSame:skipIfSame
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3312
                        silent:silent.
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3313
            ].
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3314
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3315
            newMethod == #Error ifTrue:[
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3316
                self showErrorMessageForClass:aClass.
4630
d0efc42fccf3 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4605
diff changeset
  3317
                "/^ failBlock valueWithOptionalArgument:nil
4343
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3318
            ].
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3319
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3320
            (newMethod == #CannotLoad or:[newMethod == #Error]) ifTrue:[
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3321
                failureReason := newMethod.
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3322
                newMethod := self trappingStubMethodFor:sourceCodeString inCategory:newCategory.
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3323
                newMethod setPackage:newPackage.
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3324
                keptOldCode := false.
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3325
                install ifTrue:[
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3326
                    "/
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3327
                    "/ be very careful with existing methods
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3328
                    "/ (otherwise, you could easily make your system unusable in systems which cannot load)
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3329
                    "/
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3330
                    (oldMethod notNil and:[oldMethod code ~= newMethod code]) ifTrue:[
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3331
                        failureReason == #Error ifTrue:[
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3332
                            dialogText :=
2462
02ed895be692 changed: #compile:forClass:inCategory:notifying:install:skipIfSame:silent:foldConstants:ifFail:
Stefan Vogel <sv@exept.de>
parents: 2428
diff changeset
  3333
'STC-compilation of ''%1>>%2''
02ed895be692 changed: #compile:forClass:inCategory:notifying:install:skipIfSame:silent:foldConstants:ifFail:
Stefan Vogel <sv@exept.de>
parents: 2428
diff changeset
  3334
to machine code failed .
02ed895be692 changed: #compile:forClass:inCategory:notifying:install:skipIfSame:silent:foldConstants:ifFail:
Stefan Vogel <sv@exept.de>
parents: 2428
diff changeset
  3335
02ed895be692 changed: #compile:forClass:inCategory:notifying:install:skipIfSame:silent:foldConstants:ifFail:
Stefan Vogel <sv@exept.de>
parents: 2428
diff changeset
  3336
Shall I use the old methods functionality
02ed895be692 changed: #compile:forClass:inCategory:notifying:install:skipIfSame:silent:foldConstants:ifFail:
Stefan Vogel <sv@exept.de>
parents: 2428
diff changeset
  3337
or instead create a dummy trap method for it ?
02ed895be692 changed: #compile:forClass:inCategory:notifying:install:skipIfSame:silent:foldConstants:ifFail:
Stefan Vogel <sv@exept.de>
parents: 2428
diff changeset
  3338
02ed895be692 changed: #compile:forClass:inCategory:notifying:install:skipIfSame:silent:foldConstants:ifFail:
Stefan Vogel <sv@exept.de>
parents: 2428
diff changeset
  3339
Hint:
02ed895be692 changed: #compile:forClass:inCategory:notifying:install:skipIfSame:silent:foldConstants:ifFail:
Stefan Vogel <sv@exept.de>
parents: 2428
diff changeset
  3340
  if that method is needed by the system, you better leave the
02ed895be692 changed: #compile:forClass:inCategory:notifying:install:skipIfSame:silent:foldConstants:ifFail:
Stefan Vogel <sv@exept.de>
parents: 2428
diff changeset
  3341
  original functionality in the system.
02ed895be692 changed: #compile:forClass:inCategory:notifying:install:skipIfSame:silent:foldConstants:ifFail:
Stefan Vogel <sv@exept.de>
parents: 2428
diff changeset
  3342
02ed895be692 changed: #compile:forClass:inCategory:notifying:install:skipIfSame:silent:foldConstants:ifFail:
Stefan Vogel <sv@exept.de>
parents: 2428
diff changeset
  3343
Close this warnBox to abort the compilation.
02ed895be692 changed: #compile:forClass:inCategory:notifying:install:skipIfSame:silent:foldConstants:ifFail:
Stefan Vogel <sv@exept.de>
parents: 2428
diff changeset
  3344
'
4343
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3345
                        ] ifFalse:[
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3346
                            dialogText :=
2462
02ed895be692 changed: #compile:forClass:inCategory:notifying:install:skipIfSame:silent:foldConstants:ifFail:
Stefan Vogel <sv@exept.de>
parents: 2428
diff changeset
  3347
'installation of binary code for ''%1>>%2''
1363
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3348
is not possible or disabled.
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3349
3514
51d1435bab3b class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3451
diff changeset
  3350
Shall I use the old method''s functionality
1363
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3351
or instead create a dummy trap method for it ?
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3352
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3353
Hint:
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3354
  if that method is needed by the system, you better leave the
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3355
  original functionality in the system.
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3356
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3357
Close this warnBox to abort the compilation.
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3358
'
4343
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3359
                        ].
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3360
                        answer := Dialog
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3361
                                     confirmWithCancel:(dialogText bindWith:aClass name allBold with:selector allBold)
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3362
                                     labels:#('Cancel' 'Keep Old' 'Trap Code')
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3363
                                     default:2.
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3364
                        answer isNil ifTrue:[
4630
d0efc42fccf3 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4605
diff changeset
  3365
                            ^ failBlockWithOptionalArgument valueWithOptionalArgument:nil
4343
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3366
                        ].
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3367
                        answer == false ifTrue:[
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3368
                            newMethod code:(oldMethod code).
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3369
                            keptOldCode := true.
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3370
                        ].
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3371
                    ].
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3372
                    aClass addSelector:selector withMethod:newMethod
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3373
                ].
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3374
                (install or:[failureReason ~~ #CannotLoad]) ifTrue:[
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3375
                    "when compiling with STC andn install is false, #CannotLoad is always returned"
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3376
                    self showErrorNotification:(keptOldCode
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3377
                                                    ifTrue:['not really compiled - method still shows previous behavior']
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3378
                                                    ifFalse:['not compiled to machine code - created a stub instead.'])
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3379
                ].
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3380
            ].
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3381
            ^ newMethod
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3382
        ].
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3383
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3384
        self hasNonOptionalPrimitiveCode ifTrue:[
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3385
            "/
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3386
            "/ generate a trapping method, if primitive code is present
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3387
            "/
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3388
            newMethod := self trappingStubMethodFor:sourceCodeString inCategory:newCategory.
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3389
            install ifTrue:[
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3390
                aClass addSelector:selector withMethod:newMethod.
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3391
            ].
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3392
            self showErrorNotification:'not compiled to machine code - installed a stub instead.'.
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3393
            ^ newMethod
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3394
        ].
1363
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3395
    ].
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3396
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3397
    primNr := self primitiveNumber.
1730
f8121ec9a7dd Keep package when recompiling an existant method and no explicit
Stefan Vogel <sv@exept.de>
parents: 1671
diff changeset
  3398
    (NewPrimitives or:[primNr isNil]) ifTrue:[
4343
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3399
        "
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3400
         produce symbolic code first
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3401
        "
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3402
        symbolicCodeArray := self genSymbolicCode.
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3403
        (symbolicCodeArray == #Error) ifTrue:[
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3404
            self showErrorNotification:'translation error'.
4630
d0efc42fccf3 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4605
diff changeset
  3405
            ^ failBlockWithOptionalArgument valueWithOptionalArgument:nil
4343
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3406
        ].
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3407
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3408
        "
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3409
         take this, producing bytecode
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3410
         (machine code will be made by the VM when first called)
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3411
        "
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3412
        ((self genByteCodeFrom:symbolicCodeArray) == #Error) ifTrue:[
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3413
            self showErrorNotification:'relocation error - code must be simplified'.
4630
d0efc42fccf3 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4605
diff changeset
  3414
            ^ failBlockWithOptionalArgument valueWithOptionalArgument:nil
4343
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3415
        ].
1363
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3416
    ].
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3417
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3418
    "
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3419
     finally create the new method-object
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3420
    "
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3421
    newMethod := self createMethod.
1730
f8121ec9a7dd Keep package when recompiling an existant method and no explicit
Stefan Vogel <sv@exept.de>
parents: 1671
diff changeset
  3422
    NewPrimitives ifTrue:[
4343
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3423
        newMethod byteCode:(self code).
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3424
        primNr isNil ifTrue:[
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3425
            self hasNonOptionalPrimitiveCode ifTrue:[
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3426
                primNr := 0.
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3427
            ]
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3428
        ].
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3429
        primNr notNil ifTrue:[
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3430
            newMethod setPrimitiveNumber:primNr
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3431
        ]
1363
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3432
    ] ifFalse:[
4343
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3433
        primNr notNil ifTrue:[
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3434
            newMethod code:(self checkForPrimitiveCode:primNr).
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3435
        ] ifFalse:[
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3436
            newMethod byteCode:(self code).
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3437
        ].
1363
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3438
    ].
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3439
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3440
    "
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3441
     if there where any corrections, install the updated source
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3442
    "
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3443
    (newSource := self correctedSource) isNil ifTrue:[
4343
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3444
        newSource := sourceCodeString string.
1363
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3445
    ].
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3446
    (newSource includes:Character return) ifTrue:[
4343
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3447
        "/ see if it contains crlf's or only cr's
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3448
        newSource := self class stringWithSimpleCRs:newSource
1363
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3449
    ].
3178
24c2aa0da075 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3169
diff changeset
  3450
    newMethod source:newSource string.
3681
4db107dbec8a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3661
diff changeset
  3451
    (newMethod hasAnnotation: #'category:') ifTrue:[
4343
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3452
        annotationCategory := (newMethod annotationAt:#'category:') argumentAt:1.
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3453
        annotationCategory isString ifTrue:[
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3454
            newCategory := annotationCategory
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3455
        ].
3681
4db107dbec8a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3661
diff changeset
  3456
    ].
1363
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3457
    newMethod setCategory:newCategory.
1730
f8121ec9a7dd Keep package when recompiling an existant method and no explicit
Stefan Vogel <sv@exept.de>
parents: 1671
diff changeset
  3458
    newMethod setPackage:newPackage.
f8121ec9a7dd Keep package when recompiling an existant method and no explicit
Stefan Vogel <sv@exept.de>
parents: 1671
diff changeset
  3459
1363
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3460
    (self contextMustBeReturnable) ifTrue:[
4343
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3461
        newMethod contextMustBeReturnable:true
1363
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3462
    ].
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3463
    install ifTrue:[
4343
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3464
        installSelector := selector.
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3465
        "/ when adding an extension, care for the current namespace
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3466
        ns := self currentNameSpace.
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3467
        (ns notNil and:[ns ~~ Smalltalk]) ifTrue:[
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3468
            ns ~~ aClass nameSpace ifTrue:[
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3469
                installSelector := self nameSpaceSelectorFor:(selector asSymbol).
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3470
            ]
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3471
        ].
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3472
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3473
        aClass addSelector:installSelector withMethod:newMethod
1363
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3474
    ].
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3475
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3476
    silencio ifFalse:[
4343
4c1e0bd552a2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4338
diff changeset
  3477
        Transcript showCR:('    compiled: ', aClass name,' ', selector)
1363
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3478
    ].
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3479
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3480
    ^ newMethod
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3481
1790
a40965dae8cb tree compilation support
Claus Gittinger <cg@exept.de>
parents: 1778
diff changeset
  3482
    "Created: / 29-10-1995 / 19:59:36 / cg"
a40965dae8cb tree compilation support
Claus Gittinger <cg@exept.de>
parents: 1778
diff changeset
  3483
    "Modified: / 19-03-1999 / 08:31:09 / stefan"
2536
62a35499ff1d changed: #compile:forClass:inCategory:notifying:install:skipIfSame:silent:foldConstants:ifFail:
Claus Gittinger <cg@exept.de>
parents: 2502
diff changeset
  3484
    "Modified: / 05-07-2011 / 22:50:36 / cg"
4417
17f33a7b75a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4369
diff changeset
  3485
    "Modified: / 23-05-2019 / 09:28:00 / Claus Gittinger"
4630
d0efc42fccf3 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4605
diff changeset
  3486
    "Modified: / 11-02-2020 / 17:46:14 / Stefan Vogel"
1363
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3487
!
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3488
1778
cdb6be2cc6ee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1738
diff changeset
  3489
compile:methodText forClass:aBehavior install:doInstall
cdb6be2cc6ee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1738
diff changeset
  3490
    "compile a source-string for a method in classToCompileFor.
cdb6be2cc6ee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1738
diff changeset
  3491
     The install-argument controls if the method is to be installed into the
cdb6be2cc6ee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1738
diff changeset
  3492
     classes method-dictionary, or just to be compiled and a method object to be returned.
cdb6be2cc6ee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1738
diff changeset
  3493
     Returns the new method, #Error or nil."
cdb6be2cc6ee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1738
diff changeset
  3494
1815
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  3495
    ^ self
3281
b4b91a50efc4 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
  3496
        compile:methodText
b4b91a50efc4 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
  3497
        forClass:aBehavior
b4b91a50efc4 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
  3498
        inCategory:(self class defaultMethodCategory)
b4b91a50efc4 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
  3499
        notifying:nil
b4b91a50efc4 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
  3500
        install:doInstall
b4b91a50efc4 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
  3501
        skipIfSame:false
b4b91a50efc4 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
  3502
        silent:false
b4b91a50efc4 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
  3503
        foldConstants:true
b4b91a50efc4 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
  3504
        ifFail:[ #Error ]
1778
cdb6be2cc6ee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1738
diff changeset
  3505
cdb6be2cc6ee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1738
diff changeset
  3506
    "Created: / 17-07-2006 / 18:44:53 / cg"
cdb6be2cc6ee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1738
diff changeset
  3507
!
cdb6be2cc6ee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1738
diff changeset
  3508
3416
6dd29888acf6 class: ByteCodeCompiler
Stefan Vogel <sv@exept.de>
parents: 3412
diff changeset
  3509
compileTree:aTree forClass:aClass
2091
18bcd32044c0 preparations for breakpointed lines
Claus Gittinger <cg@exept.de>
parents: 2084
diff changeset
  3510
    "given an already parsed AST, generate code and return a method"
18bcd32044c0 preparations for breakpointed lines
Claus Gittinger <cg@exept.de>
parents: 2084
diff changeset
  3511
3416
6dd29888acf6 class: ByteCodeCompiler
Stefan Vogel <sv@exept.de>
parents: 3412
diff changeset
  3512
    |newMethod|
1790
a40965dae8cb tree compilation support
Claus Gittinger <cg@exept.de>
parents: 1778
diff changeset
  3513
a40965dae8cb tree compilation support
Claus Gittinger <cg@exept.de>
parents: 1778
diff changeset
  3514
    self tree:aTree.
a40965dae8cb tree compilation support
Claus Gittinger <cg@exept.de>
parents: 1778
diff changeset
  3515
a40965dae8cb tree compilation support
Claus Gittinger <cg@exept.de>
parents: 1778
diff changeset
  3516
    newMethod := self createMethod.
a40965dae8cb tree compilation support
Claus Gittinger <cg@exept.de>
parents: 1778
diff changeset
  3517
    newMethod byteCode:(self code).
a40965dae8cb tree compilation support
Claus Gittinger <cg@exept.de>
parents: 1778
diff changeset
  3518
a40965dae8cb tree compilation support
Claus Gittinger <cg@exept.de>
parents: 1778
diff changeset
  3519
    (self contextMustBeReturnable) ifTrue:[
2091
18bcd32044c0 preparations for breakpointed lines
Claus Gittinger <cg@exept.de>
parents: 2084
diff changeset
  3520
        newMethod contextMustBeReturnable:true
1790
a40965dae8cb tree compilation support
Claus Gittinger <cg@exept.de>
parents: 1778
diff changeset
  3521
    ].
a40965dae8cb tree compilation support
Claus Gittinger <cg@exept.de>
parents: 1778
diff changeset
  3522
a40965dae8cb tree compilation support
Claus Gittinger <cg@exept.de>
parents: 1778
diff changeset
  3523
    ^ newMethod
a40965dae8cb tree compilation support
Claus Gittinger <cg@exept.de>
parents: 1778
diff changeset
  3524
a40965dae8cb tree compilation support
Claus Gittinger <cg@exept.de>
parents: 1778
diff changeset
  3525
    "Modified: / 19-03-1999 / 08:31:09 / stefan"
a40965dae8cb tree compilation support
Claus Gittinger <cg@exept.de>
parents: 1778
diff changeset
  3526
    "Created: / 06-08-2006 / 03:25:39 / cg"
a40965dae8cb tree compilation support
Claus Gittinger <cg@exept.de>
parents: 1778
diff changeset
  3527
!
a40965dae8cb tree compilation support
Claus Gittinger <cg@exept.de>
parents: 1778
diff changeset
  3528
3416
6dd29888acf6 class: ByteCodeCompiler
Stefan Vogel <sv@exept.de>
parents: 3412
diff changeset
  3529
compileTree:aMethodNode forClass:aClass ifFail:failBlock
2091
18bcd32044c0 preparations for breakpointed lines
Claus Gittinger <cg@exept.de>
parents: 2084
diff changeset
  3530
    "given an already parsed AST, generate code and return a method"
18bcd32044c0 preparations for breakpointed lines
Claus Gittinger <cg@exept.de>
parents: 2084
diff changeset
  3531
3416
6dd29888acf6 class: ByteCodeCompiler
Stefan Vogel <sv@exept.de>
parents: 3412
diff changeset
  3532
    |newMethod symbolicCodeArray|
1790
a40965dae8cb tree compilation support
Claus Gittinger <cg@exept.de>
parents: 1778
diff changeset
  3533
a40965dae8cb tree compilation support
Claus Gittinger <cg@exept.de>
parents: 1778
diff changeset
  3534
    self tree:aMethodNode.
a40965dae8cb tree compilation support
Claus Gittinger <cg@exept.de>
parents: 1778
diff changeset
  3535
a40965dae8cb tree compilation support
Claus Gittinger <cg@exept.de>
parents: 1778
diff changeset
  3536
    selector := aMethodNode selector.
a40965dae8cb tree compilation support
Claus Gittinger <cg@exept.de>
parents: 1778
diff changeset
  3537
    methodArgs := aMethodNode arguments ? #().
a40965dae8cb tree compilation support
Claus Gittinger <cg@exept.de>
parents: 1778
diff changeset
  3538
    methodArgNames := methodArgs collect:[:eachVar | eachVar name].
a40965dae8cb tree compilation support
Claus Gittinger <cg@exept.de>
parents: 1778
diff changeset
  3539
    methodVars := aMethodNode locals ? #().
a40965dae8cb tree compilation support
Claus Gittinger <cg@exept.de>
parents: 1778
diff changeset
  3540
    methodVarNames := methodVars collect:[:eachVar | eachVar name].
a40965dae8cb tree compilation support
Claus Gittinger <cg@exept.de>
parents: 1778
diff changeset
  3541
a40965dae8cb tree compilation support
Claus Gittinger <cg@exept.de>
parents: 1778
diff changeset
  3542
    "
a40965dae8cb tree compilation support
Claus Gittinger <cg@exept.de>
parents: 1778
diff changeset
  3543
     produce symbolic code first
a40965dae8cb tree compilation support
Claus Gittinger <cg@exept.de>
parents: 1778
diff changeset
  3544
    "
a40965dae8cb tree compilation support
Claus Gittinger <cg@exept.de>
parents: 1778
diff changeset
  3545
    symbolicCodeArray := self genSymbolicCode.
3071
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  3546
    (symbolicCodeArray == #Error) ifTrue:[      "/ no longer happens
2091
18bcd32044c0 preparations for breakpointed lines
Claus Gittinger <cg@exept.de>
parents: 2084
diff changeset
  3547
        self showErrorNotification:'translation error'.
18bcd32044c0 preparations for breakpointed lines
Claus Gittinger <cg@exept.de>
parents: 2084
diff changeset
  3548
        ^ failBlock value
1790
a40965dae8cb tree compilation support
Claus Gittinger <cg@exept.de>
parents: 1778
diff changeset
  3549
    ].
a40965dae8cb tree compilation support
Claus Gittinger <cg@exept.de>
parents: 1778
diff changeset
  3550
a40965dae8cb tree compilation support
Claus Gittinger <cg@exept.de>
parents: 1778
diff changeset
  3551
    "
1815
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  3552
     take this, producing bytecode
1790
a40965dae8cb tree compilation support
Claus Gittinger <cg@exept.de>
parents: 1778
diff changeset
  3553
     (someone willin' to make machine code :-)
a40965dae8cb tree compilation support
Claus Gittinger <cg@exept.de>
parents: 1778
diff changeset
  3554
    "
a40965dae8cb tree compilation support
Claus Gittinger <cg@exept.de>
parents: 1778
diff changeset
  3555
    ((self genByteCodeFrom:symbolicCodeArray) == #Error) ifTrue:[
2091
18bcd32044c0 preparations for breakpointed lines
Claus Gittinger <cg@exept.de>
parents: 2084
diff changeset
  3556
        self showErrorNotification:'relocation error - code must be simplified'.
18bcd32044c0 preparations for breakpointed lines
Claus Gittinger <cg@exept.de>
parents: 2084
diff changeset
  3557
        ^ failBlock value
1790
a40965dae8cb tree compilation support
Claus Gittinger <cg@exept.de>
parents: 1778
diff changeset
  3558
    ].
a40965dae8cb tree compilation support
Claus Gittinger <cg@exept.de>
parents: 1778
diff changeset
  3559
a40965dae8cb tree compilation support
Claus Gittinger <cg@exept.de>
parents: 1778
diff changeset
  3560
    newMethod := self createMethod.
a40965dae8cb tree compilation support
Claus Gittinger <cg@exept.de>
parents: 1778
diff changeset
  3561
    newMethod byteCode:(self code).
a40965dae8cb tree compilation support
Claus Gittinger <cg@exept.de>
parents: 1778
diff changeset
  3562
a40965dae8cb tree compilation support
Claus Gittinger <cg@exept.de>
parents: 1778
diff changeset
  3563
    (self contextMustBeReturnable) ifTrue:[
2091
18bcd32044c0 preparations for breakpointed lines
Claus Gittinger <cg@exept.de>
parents: 2084
diff changeset
  3564
        newMethod contextMustBeReturnable:true
1790
a40965dae8cb tree compilation support
Claus Gittinger <cg@exept.de>
parents: 1778
diff changeset
  3565
    ].
a40965dae8cb tree compilation support
Claus Gittinger <cg@exept.de>
parents: 1778
diff changeset
  3566
a40965dae8cb tree compilation support
Claus Gittinger <cg@exept.de>
parents: 1778
diff changeset
  3567
    ^ newMethod
a40965dae8cb tree compilation support
Claus Gittinger <cg@exept.de>
parents: 1778
diff changeset
  3568
a40965dae8cb tree compilation support
Claus Gittinger <cg@exept.de>
parents: 1778
diff changeset
  3569
    "Modified: / 19-03-1999 / 08:31:09 / stefan"
a40965dae8cb tree compilation support
Claus Gittinger <cg@exept.de>
parents: 1778
diff changeset
  3570
    "Created: / 06-08-2006 / 03:26:27 / cg"
a40965dae8cb tree compilation support
Claus Gittinger <cg@exept.de>
parents: 1778
diff changeset
  3571
    "Modified: / 06-08-2006 / 15:14:26 / cg"
a40965dae8cb tree compilation support
Claus Gittinger <cg@exept.de>
parents: 1778
diff changeset
  3572
!
a40965dae8cb tree compilation support
Claus Gittinger <cg@exept.de>
parents: 1778
diff changeset
  3573
1363
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3574
showErrorNotification:message
2938
220928d3f06e changed:
Stefan Vogel <sv@exept.de>
parents: 2936
diff changeset
  3575
    |messageText|
220928d3f06e changed:
Stefan Vogel <sv@exept.de>
parents: 2936
diff changeset
  3576
220928d3f06e changed:
Stefan Vogel <sv@exept.de>
parents: 2936
diff changeset
  3577
    messageText := message.
2936
cd787e6ed225 comment/format in: #showErrorNotification:
Stefan Vogel <sv@exept.de>
parents: 2868
diff changeset
  3578
    selector notNil ifTrue:[
2938
220928d3f06e changed:
Stefan Vogel <sv@exept.de>
parents: 2936
diff changeset
  3579
        messageText := selector ,' ', messageText.
2936
cd787e6ed225 comment/format in: #showErrorNotification:
Stefan Vogel <sv@exept.de>
parents: 2868
diff changeset
  3580
    ].
2938
220928d3f06e changed:
Stefan Vogel <sv@exept.de>
parents: 2936
diff changeset
  3581
220928d3f06e changed:
Stefan Vogel <sv@exept.de>
parents: 2936
diff changeset
  3582
    self class parseWarningSignal isHandled ifTrue:[
220928d3f06e changed:
Stefan Vogel <sv@exept.de>
parents: 2936
diff changeset
  3583
        self class parseWarningSignal new
220928d3f06e changed:
Stefan Vogel <sv@exept.de>
parents: 2936
diff changeset
  3584
                errorMessage:messageText;
220928d3f06e changed:
Stefan Vogel <sv@exept.de>
parents: 2936
diff changeset
  3585
                parameter:self;
220928d3f06e changed:
Stefan Vogel <sv@exept.de>
parents: 2936
diff changeset
  3586
                raiseRequest.
220928d3f06e changed:
Stefan Vogel <sv@exept.de>
parents: 2936
diff changeset
  3587
    ] ifFalse:[
220928d3f06e changed:
Stefan Vogel <sv@exept.de>
parents: 2936
diff changeset
  3588
        Transcript show:'***'.
220928d3f06e changed:
Stefan Vogel <sv@exept.de>
parents: 2936
diff changeset
  3589
        Transcript showCR:messageText.
220928d3f06e changed:
Stefan Vogel <sv@exept.de>
parents: 2936
diff changeset
  3590
    ].
1363
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3591
! !
2ce77081f79a separated instance creation from parsing
penk
parents: 1343
diff changeset
  3592
4384
aee25576d864 DBG: teach `ByteCodeCompiler` to generate Smalltalk/X debug info
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4275
diff changeset
  3593
!ByteCodeCompiler methodsFor:'debug info'!
aee25576d864 DBG: teach `ByteCodeCompiler` to generate Smalltalk/X debug info
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4275
diff changeset
  3594
aee25576d864 DBG: teach `ByteCodeCompiler` to generate Smalltalk/X debug info
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4275
diff changeset
  3595
genDbgInfo
4385
16741aa9dc2e DBG: refactor variable table to use new flat format
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4384
diff changeset
  3596
    [        
4384
aee25576d864 DBG: teach `ByteCodeCompiler` to generate Smalltalk/X debug info
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4275
diff changeset
  3597
        diinfo addSection: self methodNode dbgVariableTable.
aee25576d864 DBG: teach `ByteCodeCompiler` to generate Smalltalk/X debug info
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4275
diff changeset
  3598
        litArray at: (litArray indexOf: diinfo) put: diinfo encoding.
aee25576d864 DBG: teach `ByteCodeCompiler` to generate Smalltalk/X debug info
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4275
diff changeset
  3599
    ] on: AbortOperationRequest do:[:ex | 
aee25576d864 DBG: teach `ByteCodeCompiler` to generate Smalltalk/X debug info
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4275
diff changeset
  3600
        ^ self
aee25576d864 DBG: teach `ByteCodeCompiler` to generate Smalltalk/X debug info
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4275
diff changeset
  3601
    ] on: Error do:[:ex |  
aee25576d864 DBG: teach `ByteCodeCompiler` to generate Smalltalk/X debug info
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4275
diff changeset
  3602
        ex pass.    
aee25576d864 DBG: teach `ByteCodeCompiler` to generate Smalltalk/X debug info
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4275
diff changeset
  3603
    ]
aee25576d864 DBG: teach `ByteCodeCompiler` to generate Smalltalk/X debug info
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4275
diff changeset
  3604
aee25576d864 DBG: teach `ByteCodeCompiler` to generate Smalltalk/X debug info
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4275
diff changeset
  3605
    "Created: / 14-07-2018 / 19:19:00 / Jan Vrany <jan.vrany@fit.cvut.cz>"
4385
16741aa9dc2e DBG: refactor variable table to use new flat format
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4384
diff changeset
  3606
    "Modified: / 07-02-2019 / 21:56:47 / Jan Vrany <jan.vrany@fit.cvut.cz>"
4384
aee25576d864 DBG: teach `ByteCodeCompiler` to generate Smalltalk/X debug info
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4275
diff changeset
  3607
! !
aee25576d864 DBG: teach `ByteCodeCompiler` to generate Smalltalk/X debug info
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4275
diff changeset
  3608
3071
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  3609
!ByteCodeCompiler methodsFor:'error handling'!
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  3610
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  3611
codeGeneratorError:aMessage
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  3612
    CompilationError raiseRequestWith:self errorString:aMessage.
3451
3bf71ab30730 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3436
diff changeset
  3613
    errorFlag := true.
3071
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  3614
    ^ #Error
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  3615
! !
a9f69e1c8b37 class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3043
diff changeset
  3616
49
02660b790c3e *** empty log message ***
claus
parents: 46
diff changeset
  3617
!ByteCodeCompiler methodsFor:'machine code generation'!
02660b790c3e *** empty log message ***
claus
parents: 46
diff changeset
  3618
97
claus
parents: 96
diff changeset
  3619
trappingStubMethodFor:aString inCategory:cat
claus
parents: 96
diff changeset
  3620
    "return a stub method which traps and reports an error whenever
claus
parents: 96
diff changeset
  3621
     called."
claus
parents: 96
diff changeset
  3622
292
163651658aee Move method's literals form literalArray to indexed instvars.
Stefan Vogel <sv@exept.de>
parents: 287
diff changeset
  3623
    |newMethod|
97
claus
parents: 96
diff changeset
  3624
1094
745ec90c42c9 allow parametrizing the method class
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
  3625
    newMethod := self methodClass new:(litArray size).
292
163651658aee Move method's literals form literalArray to indexed instvars.
Stefan Vogel <sv@exept.de>
parents: 287
diff changeset
  3626
    litArray notNil ifTrue:[
3648
a7e535c13f00 class: ByteCodeCompiler
Stefan Vogel <sv@exept.de>
parents: 3641
diff changeset
  3627
	newMethod literals:litArray
97
claus
parents: 96
diff changeset
  3628
    ].
277
0b599e23a936 set resourceFlag if method has a <resource> definition (prepare for fast search)
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  3629
124
claus
parents: 120
diff changeset
  3630
    newMethod makeUncompiled.
594
11ae33ac9b34 finally replaced all sends of #numberOfMethodVars with #numerOfVars
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
  3631
    newMethod numberOfVars:(self numberOfMethodVars).
3648
a7e535c13f00 class: ByteCodeCompiler
Stefan Vogel <sv@exept.de>
parents: 3641
diff changeset
  3632
    newMethod numberOfArgs:(self numberOfMethodArgs).
682
784f564b4b7a make certain that methods source is always a string
ca
parents: 658
diff changeset
  3633
    newMethod source:aString string.
1117
f03c007dadc6 methods send category-change notifications themself
Claus Gittinger <cg@exept.de>
parents: 1113
diff changeset
  3634
    newMethod setCategory:cat.
97
claus
parents: 96
diff changeset
  3635
    ^ newMethod
277
0b599e23a936 set resourceFlag if method has a <resource> definition (prepare for fast search)
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
  3636
831
9ad749e60f55 Use #query instead of #raise when invoking QuerySignals
Stefan Vogel <sv@exept.de>
parents: 810
diff changeset
  3637
    "Modified: / 1.8.1997 / 00:27:32 / cg"
9ad749e60f55 Use #query instead of #raise when invoking QuerySignals
Stefan Vogel <sv@exept.de>
parents: 810
diff changeset
  3638
    "Modified: / 18.3.1999 / 18:12:33 / stefan"
49
02660b790c3e *** empty log message ***
claus
parents: 46
diff changeset
  3639
! !
128
61eb0b356b89 change classes versionString when class changes (prepare for sourceCode system)
Claus Gittinger <cg@exept.de>
parents: 126
diff changeset
  3640
556
4a3775ada5d2 preps to move variables of inlined blocks into outer context
Claus Gittinger <cg@exept.de>
parents: 549
diff changeset
  3641
!ByteCodeCompiler methodsFor:'queries'!
4a3775ada5d2 preps to move variables of inlined blocks into outer context
Claus Gittinger <cg@exept.de>
parents: 549
diff changeset
  3642
1738
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3643
hasLineNumber:sel
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3644
    "return true, if special send code needs lineNr"
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3645
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3646
    (sel == #==) ifTrue:[^ false].
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3647
    (sel == #~~) ifTrue:[^ false].
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3648
    (sel == #class) ifTrue:[^ false].
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3649
    (sel == #isNil) ifTrue:[^ false].
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3650
    (sel == #notNil) ifTrue:[^ false].
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3651
    ^ true
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3652
!
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3653
1810
977902a043fe tuned commin literal detection code
Claus Gittinger <cg@exept.de>
parents: 1799
diff changeset
  3654
isBuiltInSelector:sel forReceiver:receiver
1815
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  3655
    "return true, if selector sel is built-in.
1738
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3656
     (i.e. there is a single bytecode for it)"
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3657
1810
977902a043fe tuned commin literal detection code
Claus Gittinger <cg@exept.de>
parents: 1799
diff changeset
  3658
    (sel == #value)  ifTrue:[^ true].
977902a043fe tuned commin literal detection code
Claus Gittinger <cg@exept.de>
parents: 1799
diff changeset
  3659
    (sel == #value:) ifTrue:[^ true].
977902a043fe tuned commin literal detection code
Claus Gittinger <cg@exept.de>
parents: 1799
diff changeset
  3660
    (sel == #class)  ifTrue:[^ true].
977902a043fe tuned commin literal detection code
Claus Gittinger <cg@exept.de>
parents: 1799
diff changeset
  3661
    (sel == #size)   ifTrue:[^ true].
977902a043fe tuned commin literal detection code
Claus Gittinger <cg@exept.de>
parents: 1799
diff changeset
  3662
    (sel == #isNil)  ifTrue:[^ true].
977902a043fe tuned commin literal detection code
Claus Gittinger <cg@exept.de>
parents: 1799
diff changeset
  3663
    (sel == #notNil) ifTrue:[^ true].
977902a043fe tuned commin literal detection code
Claus Gittinger <cg@exept.de>
parents: 1799
diff changeset
  3664
    (sel == #not)    ifTrue:[^ true].
977902a043fe tuned commin literal detection code
Claus Gittinger <cg@exept.de>
parents: 1799
diff changeset
  3665
977902a043fe tuned commin literal detection code
Claus Gittinger <cg@exept.de>
parents: 1799
diff changeset
  3666
    (sel == #new)    ifTrue:[^ true].
977902a043fe tuned commin literal detection code
Claus Gittinger <cg@exept.de>
parents: 1799
diff changeset
  3667
    (sel == #basicNew) ifTrue:[
1815
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  3668
	"/ this one is critical - some redefine it
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  3669
	receiver isGlobal ifTrue:[
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  3670
	    (#('String' 'ByteArray' 'Array'
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  3671
	       'Point' 'Rectangle' 'Object')
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  3672
	    includes:receiver name) ifTrue:[^ true].
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  3673
	].
1738
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3674
    ].
1810
977902a043fe tuned commin literal detection code
Claus Gittinger <cg@exept.de>
parents: 1799
diff changeset
  3675
    (sel == #basicNew:) ifTrue:[
1815
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  3676
	"/ this one is critical - some redefine it
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  3677
	receiver isGlobal ifTrue:[
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  3678
	    (#('String' 'ByteArray' 'Array'
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  3679
	      'Point' 'Rectangle' 'Object')
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  3680
	    includes:receiver name) ifTrue:[^ true].
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  3681
	].
1810
977902a043fe tuned commin literal detection code
Claus Gittinger <cg@exept.de>
parents: 1799
diff changeset
  3682
    ].
1738
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3683
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3684
    sel == #== ifTrue:[^ true].
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3685
    sel == #~~ ifTrue:[^ true].
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3686
    sel == #=  ifTrue:[^ true].
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3687
    sel == #~= ifTrue:[^ true].
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3688
    sel == #+  ifTrue:[^ true].
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3689
    sel == #-  ifTrue:[^ true].
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3690
    sel == #<  ifTrue:[^ true].
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3691
    sel == #<= ifTrue:[^ true].
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3692
    sel == #>  ifTrue:[^ true].
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3693
    sel == #>= ifTrue:[^ true].
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3694
    sel == #*  ifTrue:[^ true].
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3695
    sel == #&  ifTrue:[^ true].
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3696
    sel == #|  ifTrue:[^ true].
1810
977902a043fe tuned commin literal detection code
Claus Gittinger <cg@exept.de>
parents: 1799
diff changeset
  3697
977902a043fe tuned commin literal detection code
Claus Gittinger <cg@exept.de>
parents: 1799
diff changeset
  3698
    (sel == #at:)     ifTrue:[^ true].
977902a043fe tuned commin literal detection code
Claus Gittinger <cg@exept.de>
parents: 1799
diff changeset
  3699
    (sel == #at:put:) ifTrue:[^ true].
977902a043fe tuned commin literal detection code
Claus Gittinger <cg@exept.de>
parents: 1799
diff changeset
  3700
    (sel == #bitAnd:) ifTrue:[^ true].
977902a043fe tuned commin literal detection code
Claus Gittinger <cg@exept.de>
parents: 1799
diff changeset
  3701
    (sel == #bitOr:)  ifTrue:[^ true].
977902a043fe tuned commin literal detection code
Claus Gittinger <cg@exept.de>
parents: 1799
diff changeset
  3702
    (sel == #new:)    ifTrue:[^ true].
977902a043fe tuned commin literal detection code
Claus Gittinger <cg@exept.de>
parents: 1799
diff changeset
  3703
1738
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3704
    ^ false
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3705
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3706
    "Created: 17.4.1996 / 22:32:16 / cg"
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3707
    "Modified: 4.6.1997 / 12:23:30 / cg"
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3708
!
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3709
2084
a30b2599d2a5 Enable coding style checks only when compiling
Stefan Vogel <sv@exept.de>
parents: 2048
diff changeset
  3710
isCompiling
a30b2599d2a5 Enable coding style checks only when compiling
Stefan Vogel <sv@exept.de>
parents: 2048
diff changeset
  3711
    "return true if compiling code as opposed to evaluating"
a30b2599d2a5 Enable coding style checks only when compiling
Stefan Vogel <sv@exept.de>
parents: 2048
diff changeset
  3712
a30b2599d2a5 Enable coding style checks only when compiling
Stefan Vogel <sv@exept.de>
parents: 2048
diff changeset
  3713
    ^ true 
a30b2599d2a5 Enable coding style checks only when compiling
Stefan Vogel <sv@exept.de>
parents: 2048
diff changeset
  3714
!
a30b2599d2a5 Enable coding style checks only when compiling
Stefan Vogel <sv@exept.de>
parents: 2048
diff changeset
  3715
556
4a3775ada5d2 preps to move variables of inlined blocks into outer context
Claus Gittinger <cg@exept.de>
parents: 549
diff changeset
  3716
numberOfTempVars
4a3775ada5d2 preps to move variables of inlined blocks into outer context
Claus Gittinger <cg@exept.de>
parents: 549
diff changeset
  3717
    "return the number of additional temporary variables which
4a3775ada5d2 preps to move variables of inlined blocks into outer context
Claus Gittinger <cg@exept.de>
parents: 549
diff changeset
  3718
     were created from inlined blocks (valid after parsing)"
4a3775ada5d2 preps to move variables of inlined blocks into outer context
Claus Gittinger <cg@exept.de>
parents: 549
diff changeset
  3719
558
e7ecd861b86f preps to move vars of inlined blocks to outer context
Claus Gittinger <cg@exept.de>
parents: 556
diff changeset
  3720
    ^ maxNumTemp ? 0
556
4a3775ada5d2 preps to move variables of inlined blocks into outer context
Claus Gittinger <cg@exept.de>
parents: 549
diff changeset
  3721
4a3775ada5d2 preps to move variables of inlined blocks into outer context
Claus Gittinger <cg@exept.de>
parents: 549
diff changeset
  3722
    "Created: 25.6.1997 / 13:54:29 / cg"
558
e7ecd861b86f preps to move vars of inlined blocks to outer context
Claus Gittinger <cg@exept.de>
parents: 556
diff changeset
  3723
    "Modified: 25.6.1997 / 15:21:34 / cg"
1738
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3724
!
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3725
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3726
specialGlobalCodeFor:aSymbol
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3727
    "codeExtension for globals,
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3728
     which can be accessed by specialGlobal opCode"
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3729
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3730
    |idx|
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3731
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3732
    idx := self specialGlobals identityIndexOf:aSymbol ifAbsent:nil.
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3733
    idx isNil ifTrue:[^ idx].
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3734
    ^ idx - 1.
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3735
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3736
    "Modified: 4.6.1997 / 12:31:22 / cg"
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3737
!
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3738
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3739
specialGlobals
1815
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  3740
    "list of globals which can be accessed by specialGlobal opCode;
1738
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3741
     adding any here requires a new VM (i.e. you cannot change it)"
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3742
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3743
    ^ #(
3661
c16edf592f5d class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3648
diff changeset
  3744
        #Array                  "/ 0
c16edf592f5d class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3648
diff changeset
  3745
        #String                 "/ 1
c16edf592f5d class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3648
diff changeset
  3746
        #FloatArray             "/ 2
c16edf592f5d class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3648
diff changeset
  3747
        #DoubleArray            "/ 3
c16edf592f5d class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3648
diff changeset
  3748
        #Point                  "/ 4
c16edf592f5d class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3648
diff changeset
  3749
        #Symbol                 "/ 5
c16edf592f5d class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3648
diff changeset
  3750
        #Smalltalk              "/ 6
c16edf592f5d class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3648
diff changeset
  3751
        #Processor              "/ 7
c16edf592f5d class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3648
diff changeset
  3752
        #SmallInteger           "/ 8
c16edf592f5d class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3648
diff changeset
  3753
        #Character              "/ 9
c16edf592f5d class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3648
diff changeset
  3754
        #Float                  "/ 10
c16edf592f5d class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3648
diff changeset
  3755
        #Process                "/ 11
c16edf592f5d class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3648
diff changeset
  3756
        #Set                    "/ 12
c16edf592f5d class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3648
diff changeset
  3757
        #IdentitySet            "/ 13
c16edf592f5d class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3648
diff changeset
  3758
        #Dictionary             "/ 14
c16edf592f5d class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3648
diff changeset
  3759
        #IdentityDictionary     "/ 15
c16edf592f5d class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3648
diff changeset
  3760
        #Semaphore              "/ 16
c16edf592f5d class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 3648
diff changeset
  3761
        #OrderedCollection      "/ 17
1738
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3762
       )
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3763
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3764
    "Created: 4.6.1997 / 12:17:47 / cg"
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3765
    "Modified: 4.6.1997 / 12:31:35 / cg"
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3766
!
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3767
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3768
specialSendCodeFor:sel
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3769
    "return the codeExtension for sends,
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3770
     which can be performed by specialSend opCode"
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3771
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3772
    |idx|
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3773
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3774
    idx := self specialSends identityIndexOf:sel ifAbsent:nil.
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3775
    idx isNil ifTrue:[^ idx].
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3776
    ^ idx - 1.
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3777
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3778
    "Modified: 4.6.1997 / 12:31:08 / cg"
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3779
!
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3780
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3781
specialSends
1815
22a30bef6f91 *** empty log message ***
fm
parents: 1813
diff changeset
  3782
    "list of selectors which can be sent by specialSend opCode;
1738
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3783
     adding any here requires a new VM (i.e. you cannot change it)"
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3784
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3785
    ^ #(
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3786
	#top                    "/ 0
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3787
	#bottom                 "/ 1
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3788
	#left                   "/ 2
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3789
	#right                  "/ 3
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3790
	#x                      "/ 4
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3791
	#y                      "/ 5
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3792
	#width                  "/ 6
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3793
	#height                 "/ 7
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3794
	#origin                 "/ 8
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3795
	#extent                 "/ 9
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3796
	#asInteger              "/ 10
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3797
	#rounded                "/ 11
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3798
	#next                   "/ 12
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3799
	#peek                   "/ 13
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3800
       )
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3801
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3802
    "Created: 4.6.1997 / 12:20:28 / cg"
48362e8eb2d4 hooks for instrumenting compiler
Claus Gittinger <cg@exept.de>
parents: 1730
diff changeset
  3803
    "Modified: 4.6.1997 / 12:31:56 / cg"
556
4a3775ada5d2 preps to move variables of inlined blocks into outer context
Claus Gittinger <cg@exept.de>
parents: 549
diff changeset
  3804
! !
4a3775ada5d2 preps to move variables of inlined blocks into outer context
Claus Gittinger <cg@exept.de>
parents: 549
diff changeset
  3805
372
98da4d230a8d prepare support for 16-bit lineNumbers
Claus Gittinger <cg@exept.de>
parents: 357
diff changeset
  3806
!ByteCodeCompiler class methodsFor:'documentation'!
148
ef0e604209ec version method at the end
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
  3807
2735
1989b1b9173a added: #compile:forClass:inCategory:
Claus Gittinger <cg@exept.de>
parents: 2714
diff changeset
  3808
version
3648
a7e535c13f00 class: ByteCodeCompiler
Stefan Vogel <sv@exept.de>
parents: 3641
diff changeset
  3809
    ^ '$Header$'
2735
1989b1b9173a added: #compile:forClass:inCategory:
Claus Gittinger <cg@exept.de>
parents: 2714
diff changeset
  3810
!
1989b1b9173a added: #compile:forClass:inCategory:
Claus Gittinger <cg@exept.de>
parents: 2714
diff changeset
  3811
2502
4d66e65e1c23 Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2475
diff changeset
  3812
version_CVS
3648
a7e535c13f00 class: ByteCodeCompiler
Stefan Vogel <sv@exept.de>
parents: 3641
diff changeset
  3813
    ^ '$Header$'
2337
dd5065f997b9 changed: #addLiteral:
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
  3814
!
dd5065f997b9 changed: #addLiteral:
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
  3815
2502
4d66e65e1c23 Jan's changes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2475
diff changeset
  3816
version_SVN
3161
feda6f6706f1 class: ByteCodeCompiler
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3112
diff changeset
  3817
    ^ '$ Id $'
148
ef0e604209ec version method at the end
Claus Gittinger <cg@exept.de>
parents: 141
diff changeset
  3818
! !
1324
fb29e5557fd6 default method category
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
  3819
3043
9a514612b3ea class: ByteCodeCompiler
Claus Gittinger <cg@exept.de>
parents: 2938
diff changeset
  3820
209
b858b6a6880f compare categoryStrings equal before writing a change record
Claus Gittinger <cg@exept.de>
parents: 199
diff changeset
  3821
ByteCodeCompiler initialize!