CompiledCodeObjectSectionFormat.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Fri, 17 Jun 2016 23:50:59 +0100
changeset 27 73e7acbd16ff
parent 12 6e775bad5027
permissions -rw-r--r--
Simple method prologue / epilogue implementation * prologue always allocate a new context and updates __thisContext register. * epilogue always fetches return value from retvalTemp and calls __MKREALCONTEXT5() This should do for now, even though this is not always the most effective way of doing things.

"
 COPYRIGHT (c) 2006 by eXept Software AG
              All Rights Reserved

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.
"
"{ Package: 'jv:dragonfly' }"

"{ NameSpace: Smalltalk }"

SharedPool subclass:#CompiledCodeObjectSectionFormat
	instanceVariableNames:''
	classVariableNames:'SectionFormatBytes SectionFormatText SectionFormatOBJVector
		SectionFormatILCVector SectionFormatINTVector'
	poolDictionaries:''
	category:'System-Compiler-Interface'
!

!CompiledCodeObjectSectionFormat class methodsFor:'documentation'!

copyright
"
 COPYRIGHT (c) 2006 by eXept Software AG
              All Rights Reserved

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.
"
! !

!CompiledCodeObjectSectionFormat class methodsFor:'initialization'!

initialize
    "Invoked at system start or when the class is dynamically loaded."

    "/ please change as required (and remove this comment)

    SectionFormatBytes := 0.
    SectionFormatText := 1.
    SectionFormatOBJVector := 2.
    SectionFormatILCVector := 4.
    SectionFormatINTVector := 5.

    "Modified: / 07-12-2015 / 21:43:52 / Jan Vrany <jan.vrany@fit.cvut.cz>"
! !

!CompiledCodeObjectSectionFormat class methodsFor:'documentation'!

version_HG

    ^ '$Changeset: <not expanded> $'
! !


CompiledCodeObjectSectionFormat initialize!