asm/AJStackInstruction.st
changeset 23 d2d9a2d4d6bf
parent 17 54798ae989cc
equal deleted inserted replaced
22:9ee423bb2e37 23:d2d9a2d4d6bf
       
     1 "
       
     2     Copyright (c) 2012-2016 Igor Stasenko
       
     3                             Martin McClure
       
     4                             Damien Pollet
       
     5                             Camillo Bruni
       
     6                             Guido Chari
       
     7                    2016-now Jan Vrany <jan.vrany [at] fit . cvut . cz>
       
     8 
       
     9     Permission is hereby granted, free of charge, to any person obtaining a copy
       
    10     of this software and associated documentation files (the 'Software'), to deal
       
    11     in the Software without restriction, including without limitation the rights
       
    12     to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
       
    13     copies of the Software, and to permit persons to whom the Software is
       
    14     furnished to do so, subject to the following conditions:
       
    15 
       
    16     The above copyright notice and this permission notice shall be included in all
       
    17     copies or substantial portions of the Software.
       
    18 
       
    19     THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
       
    20     IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
       
    21     FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
       
    22     AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
       
    23     LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
       
    24     OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
       
    25     SOFTWARE.
       
    26 "
     1 "{ Package: 'jv:dragonfly/asm' }"
    27 "{ Package: 'jv:dragonfly/asm' }"
     2 
    28 
     3 "{ NameSpace: Smalltalk }"
    29 "{ NameSpace: Smalltalk }"
     4 
    30 
     5 AJInstruction subclass:#AJStackInstruction
    31 AJInstruction subclass:#AJStackInstruction
     6 	instanceVariableNames:'callInfo'
    32 	instanceVariableNames:'callInfo'
     7 	classVariableNames:''
    33 	classVariableNames:''
     8 	poolDictionaries:''
    34 	poolDictionaries:''
     9 	category:'AsmJit-StackManagement'
    35 	category:'AsmJit-StackManagement'
    10 !
    36 !
       
    37 
       
    38 !AJStackInstruction class methodsFor:'documentation'!
       
    39 
       
    40 copyright
       
    41 "
       
    42     Copyright (c) 2012-2016 Igor Stasenko
       
    43                             Martin McClure
       
    44                             Damien Pollet
       
    45                             Camillo Bruni
       
    46                             Guido Chari
       
    47                    2016-now Jan Vrany <jan.vrany [at] fit . cvut . cz>
       
    48 
       
    49     Permission is hereby granted, free of charge, to any person obtaining a copy
       
    50     of this software and associated documentation files (the 'Software'), to deal
       
    51     in the Software without restriction, including without limitation the rights
       
    52     to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
       
    53     copies of the Software, and to permit persons to whom the Software is
       
    54     furnished to do so, subject to the following conditions:
       
    55 
       
    56     The above copyright notice and this permission notice shall be included in all
       
    57     copies or substantial portions of the Software.
       
    58 
       
    59     THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
       
    60     IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
       
    61     FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
       
    62     AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
       
    63     LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
       
    64     OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
       
    65     SOFTWARE.
       
    66 
       
    67 "
       
    68 ! !
    11 
    69 
    12 !AJStackInstruction methodsFor:'accessing'!
    70 !AJStackInstruction methodsFor:'accessing'!
    13 
    71 
    14 callInfo
    72 callInfo
    15 
    73