Changes between Version 3 and Version 4 of LoritoPrimitives

Show
Ignore:
Timestamp:
02/25/10 23:34:29 (12 years ago)
Author:
cotto
Comment:

add some of the simpler smalltalk operations

Legend:

Unmodified
Added
Removed
Modified
  • LoritoPrimitives

    v3 v4  
    11The VM for the Smalltalk interpreter Squeak has a design similar to our eventual goal for Parrot, namely that it has a small core of operations implemented in C with the rest of the language being implemented in terms of these operations.  In hope of jumpstarting the design and implementation of Lorito (aka L1), this page lists the 42 operations used by Squeak's VM.  The hope is that a similar set of operations can be used as Lorito ops. 
    22 
    3 Because most Parrot developers are not familiar with Smalltalk, so the following table lists the operations used to implement Squeak (available [http://www.cosc.canterbury.ac.nz/wolfgang.kreutzer/cosc205/squeak.html here]), example Smalltalk code, a description, their equivalent in C syntax and an appropriate name for the Lorito op. 
     3Because most Parrot developers are not familiar with Smalltalk, so the following table lists the operations used to implement Squeak (available [http://www.cosc.canterbury.ac.nz/wolfgang.kreutzer/cosc205/squeak.html here]), example Smalltalk code, a description, their equivalent in C syntax and an appropriate name for the Lorito op.  Many definitions were stolen from [http://merd.sourceforge.net/pixel/language-study/syntax-across-languages-per-language/Smalltalk.html here]. 
    44 
    55Memory access goes through a set of 6 macros for reading and writing single bytes, 4-byte words and 8-byte floats.  
    66 
    7 ||Squeak operation||example Smalltalk code||description||equivalent C code||Lorito op|| 
    8 ||& |||||||||| 
    9 ||| |||||||||| 
    10 ||and: ||||||||||  
    11 ||or: ||||||||||  
    12 ||not||||||||||  
    13 ||+ ||||||||||  
    14 ||- |||||||||| 
    15 ||* ||||||||||  
    16 ||// ||||||||||  
    17 ||\\ ||||||||||  
    18 ||min: ||||||||||  
    19 ||max:||||||||||  
    20 ||bitAnd: ||||||||||  
    21 ||bitOr: ||||||||||  
    22 ||bitXor: |||||||||| 
    23 ||bitShift:||||||||||  
    24 ||< ||||||||||  
    25 ||<= ||||||||||  
    26 ||= |||||||||| 
    27 ||> |||||||||| 
    28 ||>= |||||||||| 
    29 ||~= |||||||||| 
    30 ||==|||||||||| 
    31 ||isNil|||||||| 
    32 ||notNil|||||||| 
    33 ||whileTrue: ||||||||||  
    34 ||whileFalse: |||||||||| 
    35 ||to:do: |||||||||| 
    36 ||to:by:do:||||||||||  
    37 ||ifTrue: |||||||||| 
    38 ||ifFalse: |||||||||| 
    39 ||ifTrue:ifFalse: ||||||||||  
    40 ||ifFalse:ifTrue:||||||||||  
    41 ||at: ||||||||||  
    42 ||at:put:||||||||||  
    43 ||<< ||||||||||  
    44 ||>> |||||||||| 
    45 ||bitInvert32 ||||||||||  
    46 ||preIncrement ||||||||||  
    47 ||integerValueOf:||||||||||  
    48 ||integerObjectOf: ||||||||||  
    49 ||isIntegerObject: ||||||||||  
     7||Squeak operation ||example Smalltalk code||description||equivalent C code||Lorito op name|| 
     8||&                ||                      ||           ||                 ||         || 
     9|||                ||                      ||           ||                 ||         || 
     10||and:             ||                      ||           ||                 ||         ||  
     11||or:              ||                      ||           ||                 ||         ||  
     12||not              ||                      ||           ||                 ||         ||  
     13||+                ||5+5                   ||addition   ||a = 5 + 5        ||add      ||  
     14||-                ||4-3                   ||subtraction||a = 4 - 3        ||sub      || 
     15||*                ||6*7                   ||multiplication||a = 6 * 7     ||mul      ||  
     16||//               ||15//5                 ||division   ||a = 15 / 5       ||div      ||  
     17||\\               ||7\\3                  ||mod        ||a  = 7 % 3       ||mod      ||  
     18||min:             ||                      ||           ||                 ||         ||  
     19||max:             ||                      ||           ||                 ||         ||  
     20||bitAnd :         ||                      ||           ||                 ||         ||  
     21||bitOr:           ||                      ||           ||                 ||         ||  
     22||bitXor:          ||                      ||           ||                 ||         || 
     23||bitShift:        ||                      ||           ||                 ||         ||  
     24||<                ||5<3                   ||less than  ||a = 5 < 3        ||lt       ||  
     25||<=               ||5<=3                  ||less than or equal||a = 5 <= 3||le       ||  
     26||=                ||5=3                   ||equality (deep)||a = 5 == 3   ||eqd      || 
     27||>                ||5>3                   ||greater than||a = 5 > 3       ||gt       || 
     28||>=               ||5>=3                  ||greater than or equal||a = 5 <= 3||ge    || 
     29||~=               ||5=~3                  ||inequality (deep)||           ||ned      || 
     30||==               ||5==5                  ||equality (shallow)||a = 5 == 5||eqs      || 
     31||isNil            ||                      ||           ||                 ||         || 
     32||notNil           ||                      ||           ||                 ||         || 
     33||whileTrue:       ||                      ||           ||                 ||         ||  
     34||whileFalse:      ||                      ||           ||                 ||         || 
     35||to:do:           ||                      ||           ||                 ||         || 
     36||to:by:do:        ||                      ||           ||                 ||         ||  
     37||ifTrue:          ||                      ||           ||                 ||         || 
     38||ifFalse:         ||                      ||           ||                 ||         || 
     39||ifTrue:ifFalse:  ||                      ||           ||                 ||         ||  
     40||ifFalse:ifTrue:  ||                      ||           ||                 ||         ||  
     41||at:              ||                      ||           ||                 ||         ||  
     42||at:put:          ||                      ||           ||                 ||         ||  
     43||<<               ||                      ||           ||                 ||         ||  
     44||>>               ||                      ||           ||                 ||         || 
     45||bitInvert32      ||                      ||           ||                 ||         ||  
     46||preIncrement     ||                      ||           ||                 ||         ||  
     47||integerValueOf:  ||                      ||           ||                 ||         ||  
     48||integerObjectOf: ||                      ||           ||                 ||         ||  
     49||isIntegerObject: ||                      ||           ||                 ||         ||